path
stringlengths 14
112
| content
stringlengths 0
6.32M
| size
int64 0
6.32M
| max_lines
int64 1
100k
| repo_name
stringclasses 2
values | autogenerated
bool 1
class |
---|---|---|---|---|---|
cosmopolitan/third_party/python/Include/moduleobject.h | #ifndef Py_MODULEOBJECT_H
#define Py_MODULEOBJECT_H
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
/* clang-format off */
extern PyTypeObject PyModule_Type;
#define PyModule_Check(op) PyObject_TypeCheck(op, &PyModule_Type)
#define PyModule_CheckExact(op) (Py_TYPE(op) == &PyModule_Type)
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyObject * PyModule_NewObject(
PyObject *name
);
#endif
PyObject * PyModule_New(
const char *name /* UTF-8 encoded string */
);
PyObject * PyModule_GetDict(PyObject *);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
PyObject * PyModule_GetNameObject(PyObject *);
#endif
const char * PyModule_GetName(PyObject *);
const char * PyModule_GetFilename(PyObject *);
PyObject * PyModule_GetFilenameObject(PyObject *);
#ifndef Py_LIMITED_API
void _PyModule_Clear(PyObject *);
void _PyModule_ClearDict(PyObject *);
#endif
struct PyModuleDef* PyModule_GetDef(PyObject*);
void* PyModule_GetState(PyObject*);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
/* New in 3.5 */
PyObject * PyModuleDef_Init(struct PyModuleDef*);
extern PyTypeObject PyModuleDef_Type;
#endif
typedef struct PyModuleDef_Base {
PyObject_HEAD
PyObject* (*m_init)(void);
Py_ssize_t m_index;
PyObject* m_copy;
} PyModuleDef_Base;
#define PyModuleDef_HEAD_INIT { \
PyObject_HEAD_INIT(NULL) \
NULL, /* m_init */ \
0, /* m_index */ \
NULL, /* m_copy */ \
}
struct PyModuleDef_Slot;
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
/* New in 3.5 */
typedef struct PyModuleDef_Slot{
int slot;
void *value;
} PyModuleDef_Slot;
#define Py_mod_create 1
#define Py_mod_exec 2
#ifndef Py_LIMITED_API
#define _Py_mod_LAST_SLOT 2
#endif
#endif /* New in 3.5 */
typedef struct PyModuleDef{
PyModuleDef_Base m_base;
const char* m_name;
const char* m_doc;
Py_ssize_t m_size;
PyMethodDef *m_methods;
struct PyModuleDef_Slot* m_slots;
traverseproc m_traverse;
inquiry m_clear;
freefunc m_free;
} PyModuleDef;
COSMOPOLITAN_C_END_
#endif /* !Py_MODULEOBJECT_H */
| 2,197 | 86 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/compile.h | #ifndef Py_COMPILE_H
#define Py_COMPILE_H
#include "third_party/python/Include/code.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pythonrun.h"
COSMOPOLITAN_C_START_
#define Py_single_input 256
#define Py_file_input 257
#define Py_eval_input 258
#ifndef Py_LIMITED_API
/* clang-format off */
/* Public interface */
struct _node; /* Declare the existence of this type */
PyCodeObject * PyNode_Compile(struct _node *, const char *);
/* Future feature support */
typedef struct {
int ff_features; /* flags set by future statements */
int ff_lineno; /* line number of last future statement */
} PyFutureFeatures;
#define FUTURE_NESTED_SCOPES "nested_scopes"
#define FUTURE_GENERATORS "generators"
#define FUTURE_DIVISION "division"
#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
#define FUTURE_WITH_STATEMENT "with_statement"
#define FUTURE_PRINT_FUNCTION "print_function"
#define FUTURE_UNICODE_LITERALS "unicode_literals"
#define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL"
#define FUTURE_GENERATOR_STOP "generator_stop"
struct _mod; /* Declare the existence of this type */
#define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
PyCodeObject * PyAST_CompileEx(
struct _mod *mod,
const char *filename, /* decoded from the filesystem encoding */
PyCompilerFlags *flags,
int optimize,
PyArena *arena);
PyCodeObject * PyAST_CompileObject(
struct _mod *mod,
PyObject *filename,
PyCompilerFlags *flags,
int optimize,
PyArena *arena);
PyFutureFeatures * PyFuture_FromAST(
struct _mod * mod,
const char *filename /* decoded from the filesystem encoding */
);
PyFutureFeatures * PyFuture_FromASTObject(
struct _mod * mod,
PyObject *filename
);
/* _Py_Mangle is defined in compile.c */
PyObject* _Py_Mangle(PyObject *p, PyObject *name);
#define PY_INVALID_STACK_EFFECT INT_MAX
int PyCompile_OpcodeStackEffect(int opcode, int oparg);
#endif /* !Py_LIMITED_API */
COSMOPOLITAN_C_END_
#endif /* !Py_COMPILE_H */
| 2,062 | 68 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pyexpat.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_PYEXPAT_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_PYEXPAT_H_
#include "third_party/python/Modules/expat/expat.h"
#include "third_party/python/Modules/expat/expat_external.h"
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
/* clang-format off */
#define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.1"
#define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI"
struct PyExpat_CAPI
{
char* magic; /* set to PyExpat_CAPI_MAGIC */
int size; /* set to sizeof(struct PyExpat_CAPI) */
int MAJOR_VERSION;
int MINOR_VERSION;
int MICRO_VERSION;
/* pointers to selected expat functions. add new functions at
the end, if needed */
const XML_LChar * (*ErrorString)(enum XML_Error code);
enum XML_Error (*GetErrorCode)(XML_Parser parser);
XML_Size (*GetErrorColumnNumber)(XML_Parser parser);
XML_Size (*GetErrorLineNumber)(XML_Parser parser);
enum XML_Status (*Parse)(
XML_Parser parser, const char *s, int len, int isFinal);
XML_Parser (*ParserCreate_MM)(
const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite,
const XML_Char *namespaceSeparator);
void (*ParserFree)(XML_Parser parser);
void (*SetCharacterDataHandler)(
XML_Parser parser, XML_CharacterDataHandler handler);
void (*SetCommentHandler)(
XML_Parser parser, XML_CommentHandler handler);
void (*SetDefaultHandlerExpand)(
XML_Parser parser, XML_DefaultHandler handler);
void (*SetElementHandler)(
XML_Parser parser, XML_StartElementHandler start,
XML_EndElementHandler end);
void (*SetNamespaceDeclHandler)(
XML_Parser parser, XML_StartNamespaceDeclHandler start,
XML_EndNamespaceDeclHandler end);
void (*SetProcessingInstructionHandler)(
XML_Parser parser, XML_ProcessingInstructionHandler handler);
void (*SetUnknownEncodingHandler)(
XML_Parser parser, XML_UnknownEncodingHandler handler,
void *encodingHandlerData);
void (*SetUserData)(XML_Parser parser, void *userData);
void (*SetStartDoctypeDeclHandler)(XML_Parser parser,
XML_StartDoctypeDeclHandler start);
enum XML_Status (*SetEncoding)(XML_Parser parser, const XML_Char *encoding);
int (*DefaultUnknownEncodingHandler)(
void *encodingHandlerData, const XML_Char *name, XML_Encoding *info);
/* might be none for expat < 2.1.0 */
int (*SetHashSalt)(XML_Parser parser, unsigned long hash_salt);
/* always add new stuff to the end! */
};
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_INCLUDE_PYEXPAT_H_ */
| 2,714 | 63 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pyarena.h | #ifndef Py_LIMITED_API
#ifndef Py_PYARENA_H
#define Py_PYARENA_H
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
/* clang-format off */
typedef struct _arena PyArena;
/* PyArena_New() and PyArena_Free() create a new arena and free it,
respectively. Once an arena has been created, it can be used
to allocate memory via PyArena_Malloc(). Pointers to PyObject can
also be registered with the arena via PyArena_AddPyObject(), and the
arena will ensure that the PyObjects stay alive at least until
PyArena_Free() is called. When an arena is freed, all the memory it
allocated is freed, the arena releases internal references to registered
PyObject*, and none of its pointers are valid.
XXX (tim) What does "none of its pointers are valid" mean? Does it
XXX mean that pointers previously obtained via PyArena_Malloc() are
XXX no longer valid? (That's clearly true, but not sure that's what
XXX the text is trying to say.)
PyArena_New() returns an arena pointer. On error, it
returns a negative number and sets an exception.
XXX (tim): Not true. On error, PyArena_New() actually returns NULL,
XXX and looks like it may or may not set an exception (e.g., if the
XXX internal PyList_New(0) returns NULL, PyArena_New() passes that on
XXX and an exception is set; OTOH, if the internal
XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but
XXX an exception is not set in that case).
*/
PyArena * PyArena_New(void);
void PyArena_Free(PyArena *);
/* Mostly like malloc(), return the address of a block of memory spanning
* `size` bytes, or return NULL (without setting an exception) if enough
* new memory can't be obtained. Unlike malloc(0), PyArena_Malloc() with
* size=0 does not guarantee to return a unique pointer (the pointer
* returned may equal one or more other pointers obtained from
* PyArena_Malloc()).
* Note that pointers obtained via PyArena_Malloc() must never be passed to
* the system free() or realloc(), or to any of Python's similar memory-
* management functions. PyArena_Malloc()-obtained pointers remain valid
* until PyArena_Free(ar) is called, at which point all pointers obtained
* from the arena `ar` become invalid simultaneously.
*/
void * PyArena_Malloc(PyArena *, size_t size);
/* This routine isn't a proper arena allocation routine. It takes
* a PyObject* and records it so that it can be DECREFed when the
* arena is freed.
*/
int PyArena_AddPyObject(PyArena *, PyObject *);
COSMOPOLITAN_C_END_
#endif /* !Py_PYARENA_H */
#endif /* Py_LIMITED_API */
| 2,598 | 58 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pytime.h | #ifndef Py_LIMITED_API
#ifndef Py_PYTIME_H
#define Py_PYTIME_H
#include "libc/calls/struct/timespec.h"
#include "libc/calls/struct/timeval.h"
#include "libc/calls/weirdtypes.h"
#include "libc/time/struct/tm.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/pyconfig.h"
COSMOPOLITAN_C_START_
typedef int64_t _PyTime_t;
#define _PyTime_MIN PY_LLONG_MIN
#define _PyTime_MAX PY_LLONG_MAX
typedef enum {
_PyTime_ROUND_FLOOR = 0,
_PyTime_ROUND_CEILING = 1,
_PyTime_ROUND_HALF_EVEN = 2,
_PyTime_ROUND_UP = 3,
_PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP
} _PyTime_round_t;
PyObject *_PyLong_FromTime_t(time_t);
time_t _PyLong_AsTime_t(PyObject *);
int _PyTime_ObjectToTime_t(PyObject *, time_t *, _PyTime_round_t);
int _PyTime_ObjectToTimeval(PyObject *, time_t *, long *, _PyTime_round_t);
int _PyTime_ObjectToTimespec(PyObject *, time_t *, long *, _PyTime_round_t);
_PyTime_t _PyTime_FromSeconds(int);
#define _PYTIME_FROMSECONDS(seconds) \
((_PyTime_t)(seconds) * (1000 * 1000 * 1000))
_PyTime_t _PyTime_FromNanoseconds(long long);
int _PyTime_FromSecondsObject(_PyTime_t *, PyObject *, _PyTime_round_t);
int _PyTime_FromMillisecondsObject(_PyTime_t *, PyObject *, _PyTime_round_t);
double _PyTime_AsSecondsDouble(_PyTime_t);
_PyTime_t _PyTime_AsMilliseconds(_PyTime_t, _PyTime_round_t);
_PyTime_t _PyTime_AsMicroseconds(_PyTime_t, _PyTime_round_t);
PyObject *_PyTime_AsNanosecondsObject(_PyTime_t);
int _PyTime_AsTimeval(_PyTime_t, struct timeval *, _PyTime_round_t);
int _PyTime_AsTimeval_noraise(_PyTime_t, struct timeval *, _PyTime_round_t);
int _PyTime_AsTimevalTime_t(_PyTime_t, time_t *, int *, _PyTime_round_t);
int _PyTime_AsTimespec(_PyTime_t, struct timespec *);
int _PyTime_FromTimeval(_PyTime_t *, struct timeval *);
int _PyTime_FromTimespec(_PyTime_t *, struct timespec *);
_PyTime_t _PyTime_GetSystemClock(void);
_PyTime_t _PyTime_GetMonotonicClock(void);
_PyTime_t _PyTime_MulDiv(_PyTime_t, _PyTime_t, _PyTime_t);
typedef struct {
const char *implementation;
int monotonic;
int adjustable;
double resolution;
} _Py_clock_info_t;
int _PyTime_GetSystemClockWithInfo(_PyTime_t *, _Py_clock_info_t *);
int _PyTime_GetMonotonicClockWithInfo(_PyTime_t *, _Py_clock_info_t *);
int _PyTime_GetPerfCounterWithInfo(_PyTime_t *, _Py_clock_info_t *);
int _PyTime_Init(void);
int _PyTime_localtime(time_t, struct tm *);
int _PyTime_gmtime(time_t, struct tm *);
COSMOPOLITAN_C_END_
#endif /* Py_PYTIME_H */
#endif /* Py_LIMITED_API */
| 2,487 | 69 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/objimpl.h | #ifndef Py_OBJIMPL_H
#define Py_OBJIMPL_H
#include "libc/assert.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/tupleobject.h"
COSMOPOLITAN_C_START_
/* clang-format off */
void * PyObject_Malloc(size_t);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
void * PyObject_Calloc(size_t, size_t);
#endif
void * PyObject_Realloc(void *, size_t);
void PyObject_Free(void *);
#ifndef Py_LIMITED_API
#if IsModeDbg()
/* This function returns the number of allocated memory blocks, regardless of size */
Py_ssize_t _Py_GetAllocatedBlocks(void);
#endif
#endif /* !Py_LIMITED_API */
/* Macros */
#ifdef WITH_PYMALLOC
#ifndef Py_LIMITED_API
void _PyObject_DebugMallocStats(FILE *);
#endif /* #ifndef Py_LIMITED_API */
#endif
/* Macros */
#define PyObject_MALLOC PyObject_Malloc
#define PyObject_REALLOC PyObject_Realloc
#define PyObject_FREE PyObject_Free
#define PyObject_Del PyObject_Free
#define PyObject_DEL PyObject_Free
/*
* Generic object allocator interface
* ==================================
*/
/* Functions */
PyObject * PyObject_Init(PyObject *, PyTypeObject *);
PyVarObject * PyObject_InitVar(PyVarObject *, PyTypeObject *, Py_ssize_t);
PyObject * _PyObject_New(PyTypeObject *);
PyVarObject * _PyObject_NewVar(PyTypeObject *, Py_ssize_t);
#define PyObject_New(type, typeobj) \
( (type *) _PyObject_New(typeobj) )
#define PyObject_NewVar(type, typeobj, n) \
( (type *) _PyObject_NewVar((typeobj), (n)) )
/* Macros trading binary compatibility for speed. See also pymem.h.
Note that these macros expect non-NULL object pointers.*/
#define PyObject_INIT(op, typeobj) \
( Py_TYPE(op) = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
#define PyObject_INIT_VAR(op, typeobj, size) \
( Py_SIZE(op) = (size), PyObject_INIT((op), (typeobj)) )
#define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
/* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
vrbl-size object with nitems items, exclusive of gc overhead (if any). The
value is rounded up to the closest multiple of sizeof(void *), in order to
ensure that pointer fields at the end of the object are correctly aligned
for the platform (this is of special importance for subclasses of, e.g.,
str or int, so that pointers can be stored after the embedded data).
Note that there's no memory wastage in doing this, as malloc has to
return (at worst) pointer-aligned memory anyway.
*/
#if ((SIZEOF_VOID_P - 1) & SIZEOF_VOID_P) != 0
# error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
#endif
#define _PyObject_VAR_SIZE(typeobj, nitems) \
_Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \
(nitems)*(typeobj)->tp_itemsize, \
SIZEOF_VOID_P)
#define PyObject_NEW(type, typeobj) \
( (type *) PyObject_Init( \
(PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
#define PyObject_NEW_VAR(type, typeobj, n) \
( (type *) PyObject_InitVar( \
(PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
(typeobj), (n)) )
/* This example code implements an object constructor with a custom
allocator, where PyObject_New is inlined, and shows the important
distinction between two steps (at least):
1) the actual allocation of the object storage;
2) the initialization of the Python specific fields
in this storage with PyObject_{Init, InitVar}.
PyObject *
YourObject_New(...)
{
PyObject *op;
op = (PyObject *) Your_Allocator(_PyObject_SIZE(YourTypeStruct));
if (op == NULL)
return PyErr_NoMemory();
PyObject_Init(op, &YourTypeStruct);
op->ob_field = value;
...
return op;
}
Note that in C++, the use of the new operator usually implies that
the 1st step is performed automatically for you, so in a C++ class
constructor you would start directly with PyObject_Init/InitVar
*/
#if IsModeDbg()
#ifndef Py_LIMITED_API
typedef struct {
/* user context passed as the first argument to the 2 functions */
void *ctx;
/* allocate an arena of size bytes */
void* (*alloc) (void *ctx, size_t size);
/* free an arena */
void (*free) (void *ctx, void *ptr, size_t size);
} PyObjectArenaAllocator;
/* Get the arena allocator. */
void PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator);
/* Set the arena allocator. */
void PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator);
#endif
#endif
/*
* Garbage Collection Support
* ==========================
*/
/* C equivalent of gc.collect() which ignores the state of gc.enabled. */
Py_ssize_t PyGC_Collect(void);
#ifndef Py_LIMITED_API
Py_ssize_t _PyGC_CollectNoFail(void);
Py_ssize_t _PyGC_CollectIfEnabled(void);
#endif
/* Test if a type has a GC head */
#define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
/* Test if an object has a GC head */
#define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \
(Py_TYPE(o)->tp_is_gc == NULL || Py_TYPE(o)->tp_is_gc(o)))
PyVarObject * _PyObject_GC_Resize(PyVarObject *, Py_ssize_t);
#define PyObject_GC_Resize(type, op, n) \
( (type *) _PyObject_GC_Resize((PyVarObject *)(op), (n)) )
/* GC information is stored BEFORE the object structure. */
#ifndef Py_LIMITED_API
typedef union _gc_head {
struct {
union _gc_head *gc_next;
union _gc_head *gc_prev;
Py_ssize_t gc_refs;
} gc;
double dummy; /* force worst-case alignment */
} PyGC_Head;
extern PyGC_Head *_PyGC_generation0;
#define _Py_AS_GC(o) ((PyGC_Head *)(o)-1)
/* Bit 0 is set when tp_finalize is called */
#define _PyGC_REFS_MASK_FINALIZED (1 << 0)
/* The (N-1) most significant bits contain the gc state / refcount */
#define _PyGC_REFS_SHIFT (1)
#define _PyGC_REFS_MASK (((size_t) -1) << _PyGC_REFS_SHIFT)
#define _PyGCHead_REFS(g) ((g)->gc.gc_refs >> _PyGC_REFS_SHIFT)
#define _PyGCHead_SET_REFS(g, v) do { \
(g)->gc.gc_refs = ((g)->gc.gc_refs & ~_PyGC_REFS_MASK) \
| (((size_t)(v)) << _PyGC_REFS_SHIFT); \
} while (0)
#define _PyGCHead_DECREF(g) ((g)->gc.gc_refs -= 1 << _PyGC_REFS_SHIFT)
#define _PyGCHead_FINALIZED(g) (((g)->gc.gc_refs & _PyGC_REFS_MASK_FINALIZED) != 0)
#define _PyGCHead_SET_FINALIZED(g, v) do { \
(g)->gc.gc_refs = ((g)->gc.gc_refs & ~_PyGC_REFS_MASK_FINALIZED) \
| (v != 0); \
} while (0)
#define _PyGC_FINALIZED(o) _PyGCHead_FINALIZED(_Py_AS_GC(o))
#define _PyGC_SET_FINALIZED(o, v) _PyGCHead_SET_FINALIZED(_Py_AS_GC(o), v)
#define _PyGC_REFS(o) _PyGCHead_REFS(_Py_AS_GC(o))
#define _PyGC_REFS_UNTRACKED (-2)
#define _PyGC_REFS_REACHABLE (-3)
#define _PyGC_REFS_TENTATIVELY_UNREACHABLE (-4)
/* Tell the GC to track this object. NB: While the object is tracked the
* collector it must be safe to call the ob_traverse method. */
#define _PyObject_GC_TRACK(o) do { \
PyGC_Head *g = _Py_AS_GC(o); \
if (_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED) \
Py_FatalError("GC object already tracked"); \
_PyGCHead_SET_REFS(g, _PyGC_REFS_REACHABLE); \
g->gc.gc_next = _PyGC_generation0; \
g->gc.gc_prev = _PyGC_generation0->gc.gc_prev; \
g->gc.gc_prev->gc.gc_next = g; \
_PyGC_generation0->gc.gc_prev = g; \
} while (0);
/* Tell the GC to stop tracking this object.
* gc_next doesn't need to be set to NULL, but doing so is a good
* way to provoke memory errors if calling code is confused.
*/
#define _PyObject_GC_UNTRACK(o) do { \
PyGC_Head *g = _Py_AS_GC(o); \
assert(_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED); \
_PyGCHead_SET_REFS(g, _PyGC_REFS_UNTRACKED); \
g->gc.gc_prev->gc.gc_next = g->gc.gc_next; \
g->gc.gc_next->gc.gc_prev = g->gc.gc_prev; \
g->gc.gc_next = NULL; \
} while (0);
/* True if the object is currently tracked by the GC. */
#define _PyObject_GC_IS_TRACKED(o) \
(_PyGC_REFS(o) != _PyGC_REFS_UNTRACKED)
/* True if the object may be tracked by the GC in the future, or already is.
This can be useful to implement some optimizations. */
#define _PyObject_GC_MAY_BE_TRACKED(obj) \
(PyObject_IS_GC(obj) && \
(!PyTuple_CheckExact(obj) || _PyObject_GC_IS_TRACKED(obj)))
#endif /* Py_LIMITED_API */
#ifndef Py_LIMITED_API
PyObject * _PyObject_GC_Alloc(int, size_t);
PyObject * _PyObject_GC_Malloc(size_t);
PyObject * _PyObject_GC_Calloc(size_t);
#define _PyObject_GC_Malloc(sz) _PyObject_GC_Alloc(0, sz)
#define _PyObject_GC_Callac(sz) _PyObject_GC_Alloc(1, sz)
#endif /* !Py_LIMITED_API */
PyObject * _PyObject_GC_New(PyTypeObject *);
PyVarObject * _PyObject_GC_NewVar(PyTypeObject *, Py_ssize_t);
void PyObject_GC_Track(void *);
void PyObject_GC_UnTrack(void *);
void PyObject_GC_Del(void *);
#define PyObject_GC_New(type, typeobj) \
( (type *) _PyObject_GC_New(typeobj) )
#define PyObject_GC_NewVar(type, typeobj, n) \
( (type *) _PyObject_GC_NewVar((typeobj), (n)) )
#define PyObject_GC_UnTrack(ARG) do { \
void *opArg = (ARG); \
if (_PyGC_REFS(opArg) != _PyGC_REFS_UNTRACKED) { \
_PyObject_GC_UNTRACK(opArg); \
} \
} while (0)
/* Utility macro to help write tp_traverse functions.
* To use this macro, the tp_traverse function must name its arguments
* "visit" and "arg". This is intended to keep tp_traverse functions
* looking as much alike as possible.
*/
#define Py_VISIT(op) \
do { \
if (op) { \
int vret = visit((PyObject *)(op), arg); \
if (vret) \
return vret; \
} \
} while (0)
/* Test if a type supports weak references */
#define PyType_SUPPORTS_WEAKREFS(t) ((t)->tp_weaklistoffset > 0)
#define PyObject_GET_WEAKREFS_LISTPTR(o) \
((PyObject **) (((char *) (o)) + Py_TYPE(o)->tp_weaklistoffset))
COSMOPOLITAN_C_END_
#endif /* !Py_OBJIMPL_H */
| 10,549 | 295 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/ucnhash.h | #ifndef Py_UCNHASH_H
#define Py_UCNHASH_H
#ifndef Py_LIMITED_API
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/unicodeobject.h"
COSMOPOLITAN_C_START_
/* clang-format off */
/* revised ucnhash CAPI interface (exported through a "wrapper") */
#define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI"
typedef struct {
/* Size of this struct */
int size;
/* Get name for a given character code. Returns non-zero if
success, zero if not. Does not set Python exceptions.
If self is NULL, data come from the default version of the database.
If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */
int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen,
int with_alias_and_seq);
/* Get character code for a given name. Same error handling
as for getname. */
int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code,
int with_named_seq);
} _PyUnicode_Name_CAPI;
COSMOPOLITAN_C_END_
#endif /* !Py_LIMITED_API */
#endif /* !Py_UCNHASH_H */
| 1,117 | 35 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/dtoa.h | #ifndef Py_LIMITED_API
#ifndef PY_NO_SHORT_FLOAT_REPR
COSMOPOLITAN_C_START_
/* clang-format off */
double _Py_dg_strtod(const char *str, char **ptr);
char * _Py_dg_dtoa(double d, int mode, int ndigits,
int *decpt, int *sign, char **rve);
void _Py_dg_freedtoa(char *s);
double _Py_dg_stdnan(int sign);
double _Py_dg_infinity(int sign);
COSMOPOLITAN_C_END_
#endif
#endif
| 395 | 16 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pydebug.h | #ifndef Py_LIMITED_API
#ifndef Py_PYDEBUG_H
#define Py_PYDEBUG_H
COSMOPOLITAN_C_START_
/* clang-format off */
#include "libc/runtime/runtime.h"
/* These global variable are defined in pylifecycle.c */
/* XXX (ncoghlan): move these declarations to pylifecycle.h? */
extern int Py_DebugFlag;
extern int Py_VerboseFlag;
extern int Py_QuietFlag;
extern int Py_InteractiveFlag;
extern int Py_InspectFlag;
extern int Py_OptimizeFlag;
extern int Py_NoSiteFlag;
extern int Py_BytesWarningFlag;
extern int Py_UseClassExceptionsFlag;
extern int Py_FrozenFlag;
extern int Py_IgnoreEnvironmentFlag;
extern int Py_DontWriteBytecodeFlag;
extern int Py_NoUserSiteDirectory;
extern int Py_UnbufferedStdioFlag;
extern int Py_HashRandomizationFlag;
extern int Py_IsolatedFlag;
#ifdef MS_WINDOWS
extern int Py_LegacyWindowsStdioFlag;
#endif
/* this is a wrapper around getenv() that pays attention to
Py_IgnoreEnvironmentFlag. It should be used for getting variables like
PYTHONPATH and PYTHONHOME from the environment */
#define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))
COSMOPOLITAN_C_END_
#endif /* !Py_PYDEBUG_H */
#endif /* Py_LIMITED_API */
| 1,156 | 39 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/listobject.h | #ifndef Py_LISTOBJECT_H
#define Py_LISTOBJECT_H
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
/* clang-format off */
/* List object interface
Another generally useful object type is a list of object pointers.
This is a mutable type: the list items can be changed, and items can be
added or removed. Out-of-range indices or non-list objects are ignored.
*** WARNING *** PyList_SetItem does not increment the new item's reference
count, but does decrement the reference count of the item it replaces,
if not nil. It does *decrement* the reference count if it is *not*
inserted in the list. Similarly, PyList_GetItem does not increment the
returned item's reference count.
*/
#ifndef Py_LIMITED_API
typedef struct {
PyObject_VAR_HEAD
/* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
PyObject **ob_item;
/* ob_item contains space for 'allocated' elements. The number
* currently in use is ob_size.
* Invariants:
* 0 <= ob_size <= allocated
* len(list) == ob_size
* ob_item == NULL implies ob_size == allocated == 0
* list.sort() temporarily sets allocated to -1 to detect mutations.
*
* Items must normally not be NULL, except during construction when
* the list is not yet visible outside the function that builds it.
*/
Py_ssize_t allocated;
} PyListObject;
#endif
extern PyTypeObject PyList_Type;
extern PyTypeObject PyListIter_Type;
extern PyTypeObject PyListRevIter_Type;
extern PyTypeObject PySortWrapper_Type;
#define PyList_Check(op) \
PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS)
#define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type)
PyObject * PyList_New(Py_ssize_t size);
Py_ssize_t PyList_Size(PyObject *);
PyObject * PyList_GetItem(PyObject *, Py_ssize_t);
int PyList_SetItem(PyObject *, Py_ssize_t, PyObject *);
int PyList_Insert(PyObject *, Py_ssize_t, PyObject *);
int PyList_Append(PyObject *, PyObject *);
PyObject * PyList_GetSlice(PyObject *, Py_ssize_t, Py_ssize_t);
int PyList_SetSlice(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
int PyList_Sort(PyObject *);
int PyList_Reverse(PyObject *);
PyObject * PyList_AsTuple(PyObject *);
#ifndef Py_LIMITED_API
PyObject * _PyList_Extend(PyListObject *, PyObject *);
int PyList_ClearFreeList(void);
void _PyList_DebugMallocStats(FILE *out);
#endif
/* Macro, trading safety for speed */
#ifndef Py_LIMITED_API
#define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i])
#define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v))
#define PyList_GET_SIZE(op) Py_SIZE(op)
#define _PyList_ITEMS(op) (((PyListObject *)(op))->ob_item)
#endif
COSMOPOLITAN_C_END_
#endif /* !Py_LISTOBJECT_H */
| 2,751 | 79 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/fileutils.h | #ifndef Py_FILEUTILS_H
#define Py_FILEUTILS_H
#include "libc/calls/struct/stat.h"
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
/* clang-format off */
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000
wchar_t * Py_DecodeLocale(
const char *arg,
size_t *size);
char* Py_EncodeLocale(
const wchar_t *text,
size_t *error_pos);
#endif
#ifndef Py_LIMITED_API
wchar_t * _Py_DecodeLocaleEx(
const char *arg,
size_t *size,
int current_locale);
char* _Py_EncodeLocaleEx(
const wchar_t *text,
size_t *error_pos,
int current_locale);
PyObject * _Py_device_encoding(int);
#if defined(MS_WINDOWS) || defined(__APPLE__)
/* On Windows, the count parameter of read() is an int (bpo-9015, bpo-9611).
On macOS 10.13, read() and write() with more than INT_MAX bytes
fail with EINVAL (bpo-24658). */
# define _PY_READ_MAX INT_MAX
# define _PY_WRITE_MAX INT_MAX
#else
/* write() should truncate the input to PY_SSIZE_T_MAX bytes,
but it's safer to do it ourself to have a portable behaviour */
# define _PY_READ_MAX PY_SSIZE_T_MAX
# define _PY_WRITE_MAX PY_SSIZE_T_MAX
#endif
#ifdef MS_WINDOWS
struct _Py_stat_struct {
unsigned long st_dev;
uint64_t st_ino;
unsigned short st_mode;
int st_nlink;
int st_uid;
int st_gid;
unsigned long st_rdev;
__int64 st_size;
time_t st_atime;
int st_atime_nsec;
time_t st_mtime;
int st_mtime_nsec;
time_t st_ctime;
int st_ctime_nsec;
unsigned long st_file_attributes;
};
#else
# define _Py_stat_struct stat
#endif
int _Py_fstat(
int fd,
struct _Py_stat_struct *status);
int _Py_fstat_noraise(
int fd,
struct _Py_stat_struct *status);
int _Py_stat(
PyObject *path,
struct stat *status);
int _Py_open(
const char *pathname,
int flags);
int _Py_open_noraise(
const char *pathname,
int flags);
FILE * _Py_wfopen(
const wchar_t *path,
const wchar_t *mode);
FILE* _Py_fopen(
const char *pathname,
const char *mode);
FILE* _Py_fopen_obj(
PyObject *path,
const char *mode);
Py_ssize_t _Py_read(
int fd,
void *buf,
size_t count);
Py_ssize_t _Py_write(
int fd,
const void *buf,
size_t count);
Py_ssize_t _Py_write_noraise(
int fd,
const void *buf,
size_t count);
#ifdef HAVE_READLINK
int _Py_wreadlink(
const wchar_t *path,
wchar_t *buf,
size_t bufsiz);
#endif
#ifdef HAVE_REALPATH
wchar_t* _Py_wrealpath(
const wchar_t *path,
wchar_t *resolved_path,
size_t resolved_path_size);
#endif
wchar_t* _Py_wgetcwd(
wchar_t *buf,
size_t size);
int _Py_get_inheritable(int fd);
int _Py_set_inheritable(int fd, int inheritable,
int *atomic_flag_works);
int _Py_set_inheritable_async_safe(int fd, int inheritable,
int *atomic_flag_works);
int _Py_dup(int fd);
#ifndef MS_WINDOWS
int _Py_get_blocking(int fd);
int _Py_set_blocking(int fd, int blocking);
#endif /* !MS_WINDOWS */
int _Py_GetLocaleconvNumeric(
PyObject **decimal_point,
PyObject **thousands_sep,
const char **grouping);
#endif /* Py_LIMITED_API */
COSMOPOLITAN_C_END_
#endif /* !Py_FILEUTILS_H */
| 3,291 | 157 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/boolobject.h | #ifndef Py_BOOLOBJECT_H
#define Py_BOOLOBJECT_H
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
/* clang-format off */
extern PyTypeObject PyBool_Type;
#define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type)
/* Py_False and Py_True are the only two bools in existence.
Don't forget to apply Py_INCREF() when returning either!!! */
/* Don't use these directly */
extern struct _longobject _Py_FalseStruct, _Py_TrueStruct;
/* Use these macros */
#define Py_False ((PyObject *)&_Py_FalseStruct)
#define Py_True ((PyObject *)&_Py_TrueStruct)
/* Macros for returning Py_True or Py_False, respectively */
#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
/* Function to return a bool from a C long */
PyObject * PyBool_FromLong(long);
COSMOPOLITAN_C_END_
#endif /* !Py_BOOLOBJECT_H */
| 876 | 30 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pyport.h | #ifndef Py_PYPORT_H
#define Py_PYPORT_H
#include "libc/limits.h"
#include "third_party/python/Include/pymath.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
#define HAVE_LONG_LONG 1
#define PY_LONG_LONG long long
#define PY_LLONG_MIN LLONG_MIN
#define PY_LLONG_MAX LLONG_MAX
#define PY_ULLONG_MAX ULLONG_MAX
#define PY_UINT32_T uint32_t
#define PY_UINT64_T uint64_t
/* Signed variants of the above */
#define PY_INT32_T int32_t
#define PY_INT64_T int64_t
/* If PYLONG_BITS_IN_DIGIT is not defined then we'll use 30-bit digits if all
the necessary integer types are available, and we're on a 64-bit platform
(as determined by SIZEOF_VOID_P); otherwise we use 15-bit digits. */
#ifndef PYLONG_BITS_IN_DIGIT
#if SIZEOF_VOID_P >= 8
#define PYLONG_BITS_IN_DIGIT 30
#else
#define PYLONG_BITS_IN_DIGIT 15
#endif
#endif
/* uintptr_t is the C9X name for an unsigned integral type such that a
* legitimate void* can be cast to uintptr_t and then back to void* again
* without loss of information. Similarly for intptr_t, wrt a signed
* integral type.
*/
typedef uintptr_t Py_uintptr_t;
typedef intptr_t Py_intptr_t;
/* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
* sizeof(size_t). C99 doesn't define such a thing directly (size_t is an
* unsigned integral type). See PEP 353 for details.
*/
#ifdef HAVE_SSIZE_T
typedef ssize_t Py_ssize_t;
#elif SIZEOF_VOID_P == SIZEOF_SIZE_T
typedef Py_intptr_t Py_ssize_t;
#else
#error "Python needs a typedef for Py_ssize_t in pyport.h."
#endif
/* Py_hash_t is the same size as a pointer. */
#define SIZEOF_PY_HASH_T SIZEOF_SIZE_T
typedef Py_ssize_t Py_hash_t;
/* Py_uhash_t is the unsigned equivalent needed to calculate numeric hash. */
#define SIZEOF_PY_UHASH_T SIZEOF_SIZE_T
typedef size_t Py_uhash_t;
/* Only used for compatibility with code that may not be PY_SSIZE_T_CLEAN. */
#ifdef PY_SSIZE_T_CLEAN
typedef Py_ssize_t Py_ssize_clean_t;
#else
typedef int Py_ssize_clean_t;
#endif
#define PY_SIZE_MAX SIZE_MAX
#define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1) >> 1))
#define PY_SSIZE_T_MIN (-PY_SSIZE_T_MAX - 1)
#ifdef USE_INLINE
#define Py_LOCAL(type) static type
#define Py_LOCAL_INLINE(type) static inline type
#else
#define Py_LOCAL(type) static type
#define Py_LOCAL_INLINE(type) static type
#endif
#define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
/* Py_FORCE_EXPANSION(X)
* "Simply" returns its argument. However, macro expansions within the
* argument are evaluated. This unfortunate trickery is needed to get
* token-pasting to work as desired in some cases.
*/
#define Py_FORCE_EXPANSION(X) X
/* Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW)
* Cast VALUE to type NARROW from type WIDE. In Py_DEBUG mode, this
* assert-fails if any information is lost.
* Caution:
* VALUE may be evaluated more than once.
*/
#ifdef Py_DEBUG
#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) \
(assert((WIDE)(NARROW)(VALUE) == (VALUE)), (NARROW)(VALUE))
#else
#define Py_SAFE_DOWNCAST(VALUE, WIDE, NARROW) (NARROW)(VALUE)
#endif
/* Py_SET_ERRNO_ON_MATH_ERROR(x)
* If a libm function did not set errno, but it looks like the result
* overflowed or not-a-number, set errno to ERANGE or EDOM. Set errno
* to 0 before calling a libm function, and invoke this macro after,
* passing the function result.
* Caution:
* This isn't reliable. See Py_OVERFLOWED comments.
* X is evaluated more than once.
*/
#if defined(__FreeBSD__) || defined(__OpenBSD__) || \
(defined(__hpux) && defined(__ia64))
#define _Py_SET_EDOM_FOR_NAN(X) \
if (isnan(X)) errno = EDOM;
#else
#define _Py_SET_EDOM_FOR_NAN(X) ;
#endif
#define Py_SET_ERRNO_ON_MATH_ERROR(X) \
do { \
if (errno == 0) { \
if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) \
errno = ERANGE; \
else \
_Py_SET_EDOM_FOR_NAN(X) \
} \
} while (0)
/* Py_SET_ERANGE_ON_OVERFLOW(x)
* An alias of Py_SET_ERRNO_ON_MATH_ERROR for backward-compatibility.
*/
#define Py_SET_ERANGE_IF_OVERFLOW(X) Py_SET_ERRNO_ON_MATH_ERROR(X)
/* Py_ADJUST_ERANGE1(x)
* Py_ADJUST_ERANGE2(x, y)
* Set errno to 0 before calling a libm function, and invoke one of these
* macros after, passing the function result(s) (Py_ADJUST_ERANGE2 is useful
* for functions returning complex results). This makes two kinds of
* adjustments to errno: (A) If it looks like the platform libm set
* errno=ERANGE due to underflow, clear errno. (B) If it looks like the
* platform libm overflowed but didn't set errno, force errno to ERANGE. In
* effect, we're trying to force a useful implementation of C89 errno
* behavior.
* Caution:
* This isn't reliable. See Py_OVERFLOWED comments.
* X and Y may be evaluated more than once.
*/
#define Py_ADJUST_ERANGE1(X) \
do { \
if (errno == 0) { \
if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL) errno = ERANGE; \
} else if (errno == ERANGE && (X) == 0.0) \
errno = 0; \
} while (0)
#define Py_ADJUST_ERANGE2(X, Y) \
do { \
if ((X) == Py_HUGE_VAL || (X) == -Py_HUGE_VAL || (Y) == Py_HUGE_VAL || \
(Y) == -Py_HUGE_VAL) { \
if (errno == 0) errno = ERANGE; \
} else if (errno == ERANGE) \
errno = 0; \
} while (0)
/* The functions _Py_dg_strtod and _Py_dg_dtoa in Python/dtoa.c (which are
* required to support the short float repr introduced in Python 3.1) require
* that the floating-point unit that's being used for arithmetic operations
* on C doubles is set to use 53-bit precision. It also requires that the
* FPU rounding mode is round-half-to-even, but that's less often an issue.
*
* If your FPU isn't already set to 53-bit precision/round-half-to-even, and
* you want to make use of _Py_dg_strtod and _Py_dg_dtoa, then you should
*
* #define HAVE_PY_SET_53BIT_PRECISION 1
*
* and also give appropriate definitions for the following three macros:
*
* _PY_SET_53BIT_PRECISION_START : store original FPU settings, and
* set FPU to 53-bit precision/round-half-to-even
* _PY_SET_53BIT_PRECISION_END : restore original FPU settings
* _PY_SET_53BIT_PRECISION_HEADER : any variable declarations needed to
* use the two macros above.
*
* The macros are designed to be used within a single C function: see
* Python/pystrtod.c for an example of their use.
*/
/* get and set x87 control word for gcc/x86 */
#ifdef HAVE_GCC_ASM_FOR_X87
#define HAVE_PY_SET_53BIT_PRECISION 1
/* _Py_get/set_387controlword functions are defined in Python/pymath.c */
#define _Py_SET_53BIT_PRECISION_HEADER \
unsigned short old_387controlword, new_387controlword
#define _Py_SET_53BIT_PRECISION_START \
do { \
old_387controlword = _Py_get_387controlword(); \
new_387controlword = (old_387controlword & ~0x0f00) | 0x0200; \
if (new_387controlword != old_387controlword) \
_Py_set_387controlword(new_387controlword); \
} while (0)
#define _Py_SET_53BIT_PRECISION_END \
if (new_387controlword != old_387controlword) \
_Py_set_387controlword(old_387controlword)
#endif
/* default definitions are empty */
#ifndef HAVE_PY_SET_53BIT_PRECISION
#define _Py_SET_53BIT_PRECISION_HEADER
#define _Py_SET_53BIT_PRECISION_START
#define _Py_SET_53BIT_PRECISION_END
#endif
#if !defined(DOUBLE_IS_LITTLE_ENDIAN_IEEE754) && \
!defined(DOUBLE_IS_BIG_ENDIAN_IEEE754) && \
!defined(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754)
#define PY_NO_SHORT_FLOAT_REPR
#endif
/* double rounding is symptomatic of use of extended precision on x86. If
we're seeing double rounding, and we don't have any mechanism available for
changing the FPU rounding precision, then don't use Python/dtoa.c. */
#if defined(X87_DOUBLE_ROUNDING) && !defined(HAVE_PY_SET_53BIT_PRECISION)
#define PY_NO_SHORT_FLOAT_REPR
#endif
/* Py_DEPRECATED(version)
* Declare a variable, type, or function deprecated.
* Usage:
* extern int old_var Py_DEPRECATED(2.3);
* typedef int T1 Py_DEPRECATED(2.4);
* extern int x() Py_DEPRECATED(2.5);
*/
#if defined(__GNUC__) && \
((__GNUC__ >= 4) || (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))
#define Py_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
#else
#define Py_DEPRECATED(VERSION_UNUSED)
#endif
/* _Py_HOT_FUNCTION
* The hot attribute on a function is used to inform the compiler that the
* function is a hot spot of the compiled program. The function is optimized
* more aggressively and on many target it is placed into special subsection of
* the text section so all hot functions appears close together improving
* locality.
*
* Usage:
* int _Py_HOT_FUNCTION x(void) { return 3; }
*
* Issue #28618: This attribute must not be abused, otherwise it can have a
* negative effect on performance. Only the functions were Python spend most of
* its time must use it. Use a profiler when running performance benchmark
* suite to find these functions.
*/
#if !IsModeDbg() && defined(__GNUC__) \
&& ((__GNUC__ >= 5) || (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3))
#define _Py_HOT_FUNCTION __attribute__((hot))
#else
#define _Py_HOT_FUNCTION
#endif
#define RTYPE RTYPE
#ifdef __cplusplus
#define PyMODINIT_FUNC extern "C" PyObject *
#else
#define PyMODINIT_FUNC PyObject *
#endif
#ifndef LONG_BIT
#define LONG_BIT (8 * SIZEOF_LONG)
#endif
#if LONG_BIT != 8 * SIZEOF_LONG
#error "LONG_BIT wrong"
#endif
#if (!defined(__GNUC__) || __GNUC__ < 2 || \
(__GNUC__ == 2 && __GNUC_MINOR__ < 7))
#define Py_GCC_ATTRIBUTE(x)
#else
#define Py_GCC_ATTRIBUTE(x) __attribute__(x)
#endif
#if defined(__GNUC__) && __GNUC__ >= 3
#define Py_ALIGNED(x) __attribute__((__aligned__(x)))
#else
#define Py_ALIGNED(x)
#endif
#ifndef Py_LL
#define Py_LL(x) x##LL
#endif
#ifndef Py_ULL
#define Py_ULL(x) Py_LL(x##U)
#endif
#define Py_VA_COPY va_copy
#ifdef WORDS_BIGENDIAN
#define PY_BIG_ENDIAN 1
#define PY_LITTLE_ENDIAN 0
#else
#define PY_BIG_ENDIAN 0
#define PY_LITTLE_ENDIAN 1
#endif
#define _Py_BEGIN_SUPPRESS_IPH
#define _Py_END_SUPPRESS_IPH
#endif /* Py_PYPORT_H */
| 10,868 | 310 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/token.h | #ifndef Py_LIMITED_API
#ifndef Py_TOKEN_H
#define Py_TOKEN_H
COSMOPOLITAN_C_START_
/* clang-format off */
#undef TILDE /* Prevent clash of our definition with system macro. Ex AIX, ioctl.h */
#define ENDMARKER 0
#define NAME 1
#define NUMBER 2
#define STRING 3
#define NEWLINE 4
#define INDENT 5
#define DEDENT 6
#define LPAR 7
#define RPAR 8
#define LSQB 9
#define RSQB 10
#define COLON 11
#define COMMA 12
#define SEMI 13
#define PLUS 14
#define MINUS 15
#define STAR 16
#define SLASH 17
#define VBAR 18
#define AMPER 19
#define LESS 20
#define GREATER 21
#define EQUAL 22
#define DOT 23
#define PERCENT 24
#define LBRACE 25
#define RBRACE 26
#define EQEQUAL 27
#define NOTEQUAL 28
#define LESSEQUAL 29
#define GREATEREQUAL 30
#define TILDE 31
#define CIRCUMFLEX 32
#define LEFTSHIFT 33
#define RIGHTSHIFT 34
#define DOUBLESTAR 35
#define PLUSEQUAL 36
#define MINEQUAL 37
#define STAREQUAL 38
#define SLASHEQUAL 39
#define PERCENTEQUAL 40
#define AMPEREQUAL 41
#define VBAREQUAL 42
#define CIRCUMFLEXEQUAL 43
#define LEFTSHIFTEQUAL 44
#define RIGHTSHIFTEQUAL 45
#define DOUBLESTAREQUAL 46
#define DOUBLESLASH 47
#define DOUBLESLASHEQUAL 48
#define AT 49
#define ATEQUAL 50
#define RARROW 51
#define ELLIPSIS 52
/* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */
#define OP 53
#define AWAIT 54
#define ASYNC 55
#define ERRORTOKEN 56
#define N_TOKENS 57
/* Special definitions for cooperation with parser */
#define NT_OFFSET 256
#define ISTERMINAL(x) ((x) < NT_OFFSET)
#define ISNONTERMINAL(x) ((x) >= NT_OFFSET)
#define ISEOF(x) ((x) == ENDMARKER)
extern const char * _PyParser_TokenNames[]; /* Token names */
int PyToken_OneChar(int);
int PyToken_TwoChars(int, int);
int PyToken_ThreeChars(int, int, int);
COSMOPOLITAN_C_END_
#endif /* !Py_TOKEN_H */
#endif /* Py_LIMITED_API */
| 1,881 | 86 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/metagrammar.h | #ifndef Py_METAGRAMMAR_H
#define Py_METAGRAMMAR_H
COSMOPOLITAN_C_START_
/* clang-format off */
#define MSTART 256
#define RULE 257
#define RHS 258
#define ALT 259
#define ITEM 260
#define ATOM 261
COSMOPOLITAN_C_END_
#endif /* !Py_METAGRAMMAR_H */
| 250 | 15 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/longintrepr.h | #ifndef Py_LIMITED_API
#ifndef Py_LONGINTREPR_H
#define Py_LONGINTREPR_H
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyport.h"
COSMOPOLITAN_C_START_
/* clang-format off */
/* This is published for the benefit of "friends" marshal.c and _decimal.c. */
/* Parameters of the integer representation. There are two different
sets of parameters: one set for 30-bit digits, stored in an unsigned 32-bit
integer type, and one set for 15-bit digits with each digit stored in an
unsigned short. The value of PYLONG_BITS_IN_DIGIT, defined either at
configure time or in pyport.h, is used to decide which digit size to use.
Type 'digit' should be able to hold 2*PyLong_BASE-1, and type 'twodigits'
should be an unsigned integer type able to hold all integers up to
PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
and that overflow is handled by taking the result modulo 2**N for some N >
PyLong_SHIFT. The majority of the code doesn't care about the precise
value of PyLong_SHIFT, but there are some notable exceptions:
- long_pow() requires that PyLong_SHIFT be divisible by 5
- PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
- long_hash() requires that PyLong_SHIFT is *strictly* less than the number
of bits in an unsigned long, as do the PyLong <-> long (or unsigned long)
conversion functions
- the Python int <-> size_t/Py_ssize_t conversion functions expect that
PyLong_SHIFT is strictly less than the number of bits in a size_t
- the marshal code currently expects that PyLong_SHIFT is a multiple of 15
- NSMALLNEGINTS and NSMALLPOSINTS should be small enough to fit in a single
digit; with the current values this forces PyLong_SHIFT >= 9
The values 15 and 30 should fit all of the above requirements, on any
platform.
*/
#if PYLONG_BITS_IN_DIGIT == 30
typedef uint32_t digit;
typedef int32_t sdigit; /* signed variant of digit */
typedef uint64_t twodigits;
typedef int64_t stwodigits; /* signed variant of twodigits */
#define PyLong_SHIFT 30
#define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
#define _PyLong_DECIMAL_BASE ((digit)1000000000) /* 10 ** DECIMAL_SHIFT */
#elif PYLONG_BITS_IN_DIGIT == 15
typedef unsigned short digit;
typedef short sdigit; /* signed variant of digit */
typedef unsigned long twodigits;
typedef long stwodigits; /* signed variant of twodigits */
#define PyLong_SHIFT 15
#define _PyLong_DECIMAL_SHIFT 4 /* max(e such that 10**e fits in a digit) */
#define _PyLong_DECIMAL_BASE ((digit)10000) /* 10 ** DECIMAL_SHIFT */
#else
#error "PYLONG_BITS_IN_DIGIT should be 15 or 30"
#endif
#define PyLong_BASE ((digit)1 << PyLong_SHIFT)
#define PyLong_MASK ((digit)(PyLong_BASE - 1))
#if PyLong_SHIFT % 5 != 0
#error "longobject.c requires that PyLong_SHIFT be divisible by 5"
#endif
/* Long integer representation.
The absolute value of a number is equal to
SUM(for i=0 through abs(ob_size)-1) ob_digit[i] * 2**(SHIFT*i)
Negative numbers are represented with ob_size < 0;
zero is represented by ob_size == 0.
In a normalized number, ob_digit[abs(ob_size)-1] (the most significant
digit) is never zero. Also, in all cases, for all valid i,
0 <= ob_digit[i] <= MASK.
The allocation function takes care of allocating extra memory
so that ob_digit[0] ... ob_digit[abs(ob_size)-1] are actually available.
CAUTION: Generic code manipulating subtypes of PyVarObject has to
aware that ints abuse ob_size's sign bit.
*/
struct _longobject {
PyObject_VAR_HEAD
digit ob_digit[1];
};
PyLongObject * _PyLong_New(Py_ssize_t);
/* Return a copy of src. */
PyObject * _PyLong_Copy(PyLongObject *src);
COSMOPOLITAN_C_END_
#endif /* !Py_LONGINTREPR_H */
#endif /* Py_LIMITED_API */
| 3,880 | 100 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pgenheaders.h | #ifndef Py_PGENHEADERS_H
#define Py_PGENHEADERS_H
#include "third_party/python/Include/pyport.h"
COSMOPOLITAN_C_START_
/* clang-format off */
void PySys_WriteStdout(const char *format, ...)
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
void PySys_WriteStderr(const char *format, ...)
Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
#define addarc _Py_addarc
#define addbit _Py_addbit
#define adddfa _Py_adddfa
#define addfirstsets _Py_addfirstsets
#define addlabel _Py_addlabel
#define addstate _Py_addstate
#define delbitset _Py_delbitset
#define dumptree _Py_dumptree
#define findlabel _Py_findlabel
#define freegrammar _Py_freegrammar
#define mergebitset _Py_mergebitset
#define meta_grammar _Py_meta_grammar
#define newbitset _Py_newbitset
#define newgrammar _Py_newgrammar
#define pgen _Py_pgen
#define printgrammar _Py_printgrammar
#define printnonterminals _Py_printnonterminals
#define printtree _Py_printtree
#define samebitset _Py_samebitset
#define showtree _Py_showtree
#define tok_dump _Py_tok_dump
#define translatelabels _Py_translatelabels
COSMOPOLITAN_C_END_
#endif /* !Py_PGENHEADERS_H */
| 1,106 | 37 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Include/pylifecycle.h | #ifndef Py_PYLIFECYCLE_H
#define Py_PYLIFECYCLE_H
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pystate.h"
COSMOPOLITAN_C_START_
/* clang-format off */
void Py_SetProgramName(wchar_t *);
wchar_t * Py_GetProgramName(void);
void Py_SetPythonHome(wchar_t *);
wchar_t * Py_GetPythonHome(void);
#ifndef Py_LIMITED_API
/* Only used by applications that embed the interpreter and need to
* override the standard encoding determination mechanism
*/
int Py_SetStandardStreamEncoding(const char *encoding,
const char *errors);
#endif
void Py_Initialize(void);
void Py_InitializeEx(int);
#ifndef Py_LIMITED_API
void _Py_InitializeEx_Private(int, int);
#endif
void Py_Finalize(void);
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
int Py_FinalizeEx(void);
#endif
int Py_IsInitialized(void);
PyThreadState * Py_NewInterpreter(void);
void Py_EndInterpreter(PyThreadState *);
/* Py_PyAtExit is for the atexit module, Py_AtExit is for low-level
* exit functions.
*/
#ifndef Py_LIMITED_API
void _Py_PyAtExit(void (*func)(void));
#endif
int Py_AtExit(void (*func)(void));
void Py_Exit(int);
/* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL. */
#ifndef Py_LIMITED_API
void _Py_RestoreSignals(void);
int Py_FdIsInteractive(FILE *, const char *);
#endif
/* Bootstrap __main__ (defined in Modules/main.c) */
int Py_Main(int argc, wchar_t **argv);
/* In getpath.c */
wchar_t * Py_GetProgramFullPath(void);
wchar_t * Py_GetPrefix(void);
wchar_t * Py_GetExecPrefix(void);
wchar_t * Py_GetPath(void);
void Py_SetPath(const wchar_t *);
void Py_LimitedPath(void);
#ifdef MS_WINDOWS
int _Py_CheckPython3();
#endif
/* In their own files */
const char * Py_GetVersion(void);
const char * Py_GetPlatform(void);
const char * Py_GetCopyright(void);
const char * Py_GetCompiler(void);
const char * Py_GetBuildInfo(void);
#ifndef Py_LIMITED_API
const char * _Py_gitidentifier(void);
const char * _Py_gitversion(void);
#endif
/* Internal -- various one-time initializations */
#ifndef Py_LIMITED_API
extern int _Py_initialized;
extern char *_Py_StandardStreamEncoding;
extern char *_Py_StandardStreamErrors;
PyObject * _PyBuiltin_Init(void);
PyObject * _PySys_Init(void);
void _PyImport_Init(void);
void _PyExc_Init(PyObject * bltinmod);
void _PyImportHooks_Init(void);
int _PyFrame_Init(void);
int _PyFloat_Init(void);
int PyByteArray_Init(void);
void _PyRandom_Init(void);
void _Py_InitSite(void);
int _Py_InitStdio(void);
void _Py_ReadyTypes(void);
void _Py_InitImport(PyInterpreterState *, PyObject *);
int _Py_InitFsEncoding(PyInterpreterState *);
void _Py_InitSigs(void);
void _Py_InitMain(PyInterpreterState *);
int _PyUnicode_Init(void);
int _PyStructSequence_Init(void);
int _PyLong_Init(void);
int _PyFaulthandler_Init(void);
int _PyTraceMalloc_Init(void);
#endif
/* Various internal finalizers */
#ifndef Py_LIMITED_API
void _PyExc_Fini(void);
void _PyImport_Fini(void);
void PyMethod_Fini(void);
void PyFrame_Fini(void);
void PyCFunction_Fini(void);
void PyDict_Fini(void);
void PyTuple_Fini(void);
void PyList_Fini(void);
void PySet_Fini(void);
void PyBytes_Fini(void);
void PyByteArray_Fini(void);
void PyFloat_Fini(void);
void PyOS_FiniInterrupts(void);
void _PyGC_DumpShutdownStats(void);
void _PyGC_Fini(void);
void PySlice_Fini(void);
void _PyType_Fini(void);
void _PyRandom_Fini(void);
void PyAsyncGen_Fini(void);
int _Py_FlushStdFiles(void);
void _Py_CallExitFuncs(void);
void _Py_CallLlExitFuncs(void);
void _PyFaulthandler_Fini(void);
void _PyHash_Fini(void);
void PyLong_Fini(void);
void _PyUnicode_Fini(void);
int _PyTraceMalloc_Fini(void);
void _PyMem_DumpTraceback(int, const void *);
extern PyThreadState * _Py_Finalizing;
#endif
/* Signals */
typedef void (*PyOS_sighandler_t)(int);
PyOS_sighandler_t PyOS_getsig(int);
PyOS_sighandler_t PyOS_setsig(int, PyOS_sighandler_t);
#ifndef Py_LIMITED_API
/* Random */
int _PyOS_URandom(void *buffer, Py_ssize_t size);
int _PyOS_URandomNonblock(void *buffer, Py_ssize_t size);
#endif /* !Py_LIMITED_API */
COSMOPOLITAN_C_END_
#endif /* !Py_PYLIFECYCLE_H */
| 4,143 | 152 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/cmathmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/errno.h"
#include "libc/math.h"
#include "libc/stdio/stdio.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/complexobject.h"
#include "third_party/python/Include/dtoa.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyfpe.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymath.h"
#include "third_party/python/Include/pyport.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/_math.h"
/* clang-format off */
PYTHON_PROVIDE("cmath");
PYTHON_PROVIDE("cmath.acos");
PYTHON_PROVIDE("cmath.acosh");
PYTHON_PROVIDE("cmath.asin");
PYTHON_PROVIDE("cmath.asinh");
PYTHON_PROVIDE("cmath.atan");
PYTHON_PROVIDE("cmath.atanh");
PYTHON_PROVIDE("cmath.cos");
PYTHON_PROVIDE("cmath.cosh");
PYTHON_PROVIDE("cmath.e");
PYTHON_PROVIDE("cmath.exp");
PYTHON_PROVIDE("cmath.inf");
PYTHON_PROVIDE("cmath.infj");
PYTHON_PROVIDE("cmath.isclose");
PYTHON_PROVIDE("cmath.isfinite");
PYTHON_PROVIDE("cmath.isinf");
PYTHON_PROVIDE("cmath.isnan");
PYTHON_PROVIDE("cmath.log");
PYTHON_PROVIDE("cmath.log10");
PYTHON_PROVIDE("cmath.nan");
PYTHON_PROVIDE("cmath.nanj");
PYTHON_PROVIDE("cmath.phase");
PYTHON_PROVIDE("cmath.pi");
PYTHON_PROVIDE("cmath.polar");
PYTHON_PROVIDE("cmath.rect");
PYTHON_PROVIDE("cmath.sin");
PYTHON_PROVIDE("cmath.sinh");
PYTHON_PROVIDE("cmath.sqrt");
PYTHON_PROVIDE("cmath.tan");
PYTHON_PROVIDE("cmath.tanh");
PYTHON_PROVIDE("cmath.tau");
/* Complex math module */
/* much code borrowed from mathmodule.c */
/* we need DBL_MAX, DBL_MIN, DBL_EPSILON, DBL_MANT_DIG and FLT_RADIX from
float.h. We assume that FLT_RADIX is either 2 or 16. */
#include "third_party/python/Modules/clinic/cmathmodule.inc"
/*[clinic input]
module cmath
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=308d6839f4a46333]*/
/*[python input]
class Py_complex_protected_converter(Py_complex_converter):
def modify(self):
return 'errno = 0; PyFPE_START_PROTECT("complex function", goto exit);'
class Py_complex_protected_return_converter(CReturnConverter):
type = "Py_complex"
def render(self, function, data):
self.declare(data)
data.return_conversion.append("""
PyFPE_END_PROTECT(_return_value);
if (errno == EDOM) {
PyErr_SetString(PyExc_ValueError, "math domain error");
goto exit;
}
else if (errno == ERANGE) {
PyErr_SetString(PyExc_OverflowError, "math range error");
goto exit;
}
else {
return_value = PyComplex_FromCComplex(_return_value);
}
""".strip())
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=345daa075b1028e7]*/
#if (FLT_RADIX != 2 && FLT_RADIX != 16)
#error "Modules/cmathmodule.c expects FLT_RADIX to be 2 or 16"
#endif
/*
CM_LARGE_DOUBLE is used to avoid spurious overflow in the sqrt, log,
inverse trig and inverse hyperbolic trig functions. Its log is used in the
evaluation of exp, cos, cosh, sin, sinh, tan, and tanh to avoid unnecessary
overflow.
*/
#define CM_LARGE_DOUBLE (DBL_MAX/4.)
#define CM_SQRT_LARGE_DOUBLE (sqrt(CM_LARGE_DOUBLE))
#define CM_LOG_LARGE_DOUBLE (log(CM_LARGE_DOUBLE))
#define CM_SQRT_DBL_MIN (sqrt(DBL_MIN))
/*
CM_SCALE_UP is an odd integer chosen such that multiplication by
2**CM_SCALE_UP is sufficient to turn a subnormal into a normal.
CM_SCALE_DOWN is (-(CM_SCALE_UP+1)/2). These scalings are used to compute
square roots accurately when the real and imaginary parts of the argument
are subnormal.
*/
#if FLT_RADIX==2
#define CM_SCALE_UP (2*(DBL_MANT_DIG/2) + 1)
#elif FLT_RADIX==16
#define CM_SCALE_UP (4*DBL_MANT_DIG+1)
#endif
#define CM_SCALE_DOWN (-(CM_SCALE_UP+1)/2)
/* Constants cmath.inf, cmath.infj, cmath.nan, cmath.nanj.
cmath.nan and cmath.nanj are defined only when either
PY_NO_SHORT_FLOAT_REPR is *not* defined (which should be
the most common situation on machines using an IEEE 754
representation), or Py_NAN is defined. */
static double
m_inf(void)
{
#ifndef PY_NO_SHORT_FLOAT_REPR
return _Py_dg_infinity(0);
#else
return Py_HUGE_VAL;
#endif
}
static Py_complex
c_infj(void)
{
Py_complex r;
r.real = 0.0;
r.imag = m_inf();
return r;
}
#if !defined(PY_NO_SHORT_FLOAT_REPR) || defined(Py_NAN)
static double
m_nan(void)
{
#ifndef PY_NO_SHORT_FLOAT_REPR
return _Py_dg_stdnan(0);
#else
return Py_NAN;
#endif
}
static Py_complex
c_nanj(void)
{
Py_complex r;
r.real = 0.0;
r.imag = m_nan();
return r;
}
#endif
/* forward declarations */
static Py_complex cmath_asinh_impl(PyObject *, Py_complex);
static Py_complex cmath_atanh_impl(PyObject *, Py_complex);
static Py_complex cmath_cosh_impl(PyObject *, Py_complex);
static Py_complex cmath_sinh_impl(PyObject *, Py_complex);
static Py_complex cmath_sqrt_impl(PyObject *, Py_complex);
static Py_complex cmath_tanh_impl(PyObject *, Py_complex);
static PyObject * math_error(void);
/* Code to deal with special values (infinities, NaNs, etc.). */
/* special_type takes a double and returns an integer code indicating
the type of the double as follows:
*/
enum special_types {
ST_NINF, /* 0, negative infinity */
ST_NEG, /* 1, negative finite number (nonzero) */
ST_NZERO, /* 2, -0. */
ST_PZERO, /* 3, +0. */
ST_POS, /* 4, positive finite number (nonzero) */
ST_PINF, /* 5, positive infinity */
ST_NAN /* 6, Not a Number */
};
static enum special_types
special_type(double d)
{
if (Py_IS_FINITE(d)) {
if (d != 0) {
if (copysign(1., d) == 1.)
return ST_POS;
else
return ST_NEG;
}
else {
if (copysign(1., d) == 1.)
return ST_PZERO;
else
return ST_NZERO;
}
}
if (Py_IS_NAN(d))
return ST_NAN;
if (copysign(1., d) == 1.)
return ST_PINF;
else
return ST_NINF;
}
#define SPECIAL_VALUE(z, table) \
if (!Py_IS_FINITE((z).real) || !Py_IS_FINITE((z).imag)) { \
errno = 0; \
return table[special_type((z).real)] \
[special_type((z).imag)]; \
}
#define P Py_MATH_PI
#define P14 0.25*Py_MATH_PI
#define P12 0.5*Py_MATH_PI
#define P34 0.75*Py_MATH_PI
#define INF Py_HUGE_VAL
#define N Py_NAN
#define U -9.5426319407711027e33 /* unlikely value, used as placeholder */
/* First, the C functions that do the real work. Each of the c_*
functions computes and returns the C99 Annex G recommended result
and also sets errno as follows: errno = 0 if no floating-point
exception is associated with the result; errno = EDOM if C99 Annex
G recommends raising divide-by-zero or invalid for this result; and
errno = ERANGE where the overflow floating-point signal should be
raised.
*/
static Py_complex acos_special_values[7][7];
/*[clinic input]
cmath.acos -> Py_complex_protected
z: Py_complex_protected
/
Return the arc cosine of z.
[clinic start generated code]*/
static Py_complex
cmath_acos_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=40bd42853fd460ae input=bd6cbd78ae851927]*/
{
Py_complex s1, s2, r;
SPECIAL_VALUE(z, acos_special_values);
if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) {
/* avoid unnecessary overflow for large arguments */
r.real = atan2(fabs(z.imag), z.real);
/* split into cases to make sure that the branch cut has the
correct continuity on systems with unsigned zeros */
if (z.real < 0.) {
r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) +
M_LN2*2., z.imag);
} else {
r.imag = copysign(log(hypot(z.real/2., z.imag/2.)) +
M_LN2*2., -z.imag);
}
} else {
s1.real = 1.-z.real;
s1.imag = -z.imag;
s1 = cmath_sqrt_impl(module, s1);
s2.real = 1.+z.real;
s2.imag = z.imag;
s2 = cmath_sqrt_impl(module, s2);
r.real = 2.*atan2(s1.real, s2.real);
r.imag = m_asinh(s2.real*s1.imag - s2.imag*s1.real);
}
errno = 0;
return r;
}
static Py_complex acosh_special_values[7][7];
/*[clinic input]
cmath.acosh = cmath.acos
Return the inverse hyperbolic cosine of z.
[clinic start generated code]*/
static Py_complex
cmath_acosh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=3e2454d4fcf404ca input=3f61bee7d703e53c]*/
{
Py_complex s1, s2, r;
SPECIAL_VALUE(z, acosh_special_values);
if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) {
/* avoid unnecessary overflow for large arguments */
r.real = log(hypot(z.real/2., z.imag/2.)) + M_LN2*2.;
r.imag = atan2(z.imag, z.real);
} else {
s1.real = z.real - 1.;
s1.imag = z.imag;
s1 = cmath_sqrt_impl(module, s1);
s2.real = z.real + 1.;
s2.imag = z.imag;
s2 = cmath_sqrt_impl(module, s2);
r.real = m_asinh(s1.real*s2.real + s1.imag*s2.imag);
r.imag = 2.*atan2(s1.imag, s2.real);
}
errno = 0;
return r;
}
/*[clinic input]
cmath.asin = cmath.acos
Return the arc sine of z.
[clinic start generated code]*/
static Py_complex
cmath_asin_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=3b264cd1b16bf4e1 input=be0bf0cfdd5239c5]*/
{
/* asin(z) = -i asinh(iz) */
Py_complex s, r;
s.real = -z.imag;
s.imag = z.real;
s = cmath_asinh_impl(module, s);
r.real = s.imag;
r.imag = -s.real;
return r;
}
static Py_complex asinh_special_values[7][7];
/*[clinic input]
cmath.asinh = cmath.acos
Return the inverse hyperbolic sine of z.
[clinic start generated code]*/
static Py_complex
cmath_asinh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=733d8107841a7599 input=5c09448fcfc89a79]*/
{
Py_complex s1, s2, r;
SPECIAL_VALUE(z, asinh_special_values);
if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) {
if (z.imag >= 0.) {
r.real = copysign(log(hypot(z.real/2., z.imag/2.)) +
M_LN2*2., z.real);
} else {
r.real = -copysign(log(hypot(z.real/2., z.imag/2.)) +
M_LN2*2., -z.real);
}
r.imag = atan2(z.imag, fabs(z.real));
} else {
s1.real = 1.+z.imag;
s1.imag = -z.real;
s1 = cmath_sqrt_impl(module, s1);
s2.real = 1.-z.imag;
s2.imag = z.real;
s2 = cmath_sqrt_impl(module, s2);
r.real = m_asinh(s1.real*s2.imag-s2.real*s1.imag);
r.imag = atan2(z.imag, s1.real*s2.real-s1.imag*s2.imag);
}
errno = 0;
return r;
}
/*[clinic input]
cmath.atan = cmath.acos
Return the arc tangent of z.
[clinic start generated code]*/
static Py_complex
cmath_atan_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=b6bfc497058acba4 input=3b21ff7d5eac632a]*/
{
/* atan(z) = -i atanh(iz) */
Py_complex s, r;
s.real = -z.imag;
s.imag = z.real;
s = cmath_atanh_impl(module, s);
r.real = s.imag;
r.imag = -s.real;
return r;
}
/* Windows screws up atan2 for inf and nan, and alpha Tru64 5.1 doesn't follow
C99 for atan2(0., 0.). */
static double
c_atan2(Py_complex z)
{
if (Py_IS_NAN(z.real) || Py_IS_NAN(z.imag))
return Py_NAN;
if (Py_IS_INFINITY(z.imag)) {
if (Py_IS_INFINITY(z.real)) {
if (copysign(1., z.real) == 1.)
/* atan2(+-inf, +inf) == +-pi/4 */
return copysign(0.25*Py_MATH_PI, z.imag);
else
/* atan2(+-inf, -inf) == +-pi*3/4 */
return copysign(0.75*Py_MATH_PI, z.imag);
}
/* atan2(+-inf, x) == +-pi/2 for finite x */
return copysign(0.5*Py_MATH_PI, z.imag);
}
if (Py_IS_INFINITY(z.real) || z.imag == 0.) {
if (copysign(1., z.real) == 1.)
/* atan2(+-y, +inf) = atan2(+-0, +x) = +-0. */
return copysign(0., z.imag);
else
/* atan2(+-y, -inf) = atan2(+-0., -x) = +-pi. */
return copysign(Py_MATH_PI, z.imag);
}
return atan2(z.imag, z.real);
}
static Py_complex atanh_special_values[7][7];
/*[clinic input]
cmath.atanh = cmath.acos
Return the inverse hyperbolic tangent of z.
[clinic start generated code]*/
static Py_complex
cmath_atanh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=e83355f93a989c9e input=2b3fdb82fb34487b]*/
{
Py_complex r;
double ay, h;
SPECIAL_VALUE(z, atanh_special_values);
/* Reduce to case where z.real >= 0., using atanh(z) = -atanh(-z). */
if (z.real < 0.) {
return _Py_c_neg(cmath_atanh_impl(module, _Py_c_neg(z)));
}
ay = fabs(z.imag);
if (z.real > CM_SQRT_LARGE_DOUBLE || ay > CM_SQRT_LARGE_DOUBLE) {
/*
if abs(z) is large then we use the approximation
atanh(z) ~ 1/z +/- i*pi/2 (+/- depending on the sign
of z.imag)
*/
h = hypot(z.real/2., z.imag/2.); /* safe from overflow */
r.real = z.real/4./h/h;
/* the two negations in the next line cancel each other out
except when working with unsigned zeros: they're there to
ensure that the branch cut has the correct continuity on
systems that don't support signed zeros */
r.imag = -copysign(Py_MATH_PI/2., -z.imag);
errno = 0;
} else if (z.real == 1. && ay < CM_SQRT_DBL_MIN) {
/* C99 standard says: atanh(1+/-0.) should be inf +/- 0i */
if (ay == 0.) {
r.real = INF;
r.imag = z.imag;
errno = EDOM;
} else {
r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.)));
r.imag = copysign(atan2(2., -ay)/2, z.imag);
errno = 0;
}
} else {
r.real = m_log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/4.;
r.imag = -atan2(-2.*z.imag, (1-z.real)*(1+z.real) - ay*ay)/2.;
errno = 0;
}
return r;
}
/*[clinic input]
cmath.cos = cmath.acos
Return the cosine of z.
[clinic start generated code]*/
static Py_complex
cmath_cos_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=fd64918d5b3186db input=6022e39b77127ac7]*/
{
/* cos(z) = cosh(iz) */
Py_complex r;
r.real = -z.imag;
r.imag = z.real;
r = cmath_cosh_impl(module, r);
return r;
}
/* cosh(infinity + i*y) needs to be dealt with specially */
static Py_complex cosh_special_values[7][7];
/*[clinic input]
cmath.cosh = cmath.acos
Return the hyperbolic cosine of z.
[clinic start generated code]*/
static Py_complex
cmath_cosh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=2e969047da601bdb input=d6b66339e9cc332b]*/
{
Py_complex r;
double x_minus_one;
/* special treatment for cosh(+/-inf + iy) if y is not a NaN */
if (!Py_IS_FINITE(z.real) || !Py_IS_FINITE(z.imag)) {
if (Py_IS_INFINITY(z.real) && Py_IS_FINITE(z.imag) &&
(z.imag != 0.)) {
if (z.real > 0) {
r.real = copysign(INF, cos(z.imag));
r.imag = copysign(INF, sin(z.imag));
}
else {
r.real = copysign(INF, cos(z.imag));
r.imag = -copysign(INF, sin(z.imag));
}
}
else {
r = cosh_special_values[special_type(z.real)]
[special_type(z.imag)];
}
/* need to set errno = EDOM if y is +/- infinity and x is not
a NaN */
if (Py_IS_INFINITY(z.imag) && !Py_IS_NAN(z.real))
errno = EDOM;
else
errno = 0;
return r;
}
if (fabs(z.real) > CM_LOG_LARGE_DOUBLE) {
/* deal correctly with cases where cosh(z.real) overflows but
cosh(z) does not. */
x_minus_one = z.real - copysign(1., z.real);
r.real = cos(z.imag) * cosh(x_minus_one) * Py_MATH_E;
r.imag = sin(z.imag) * sinh(x_minus_one) * Py_MATH_E;
} else {
r.real = cos(z.imag) * cosh(z.real);
r.imag = sin(z.imag) * sinh(z.real);
}
/* detect overflow, and set errno accordingly */
if (Py_IS_INFINITY(r.real) || Py_IS_INFINITY(r.imag))
errno = ERANGE;
else
errno = 0;
return r;
}
/* exp(infinity + i*y) and exp(-infinity + i*y) need special treatment for
finite y */
static Py_complex exp_special_values[7][7];
/*[clinic input]
cmath.exp = cmath.acos
Return the exponential value e**z.
[clinic start generated code]*/
static Py_complex
cmath_exp_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=edcec61fb9dfda6c input=8b9e6cf8a92174c3]*/
{
Py_complex r;
double l;
if (!Py_IS_FINITE(z.real) || !Py_IS_FINITE(z.imag)) {
if (Py_IS_INFINITY(z.real) && Py_IS_FINITE(z.imag)
&& (z.imag != 0.)) {
if (z.real > 0) {
r.real = copysign(INF, cos(z.imag));
r.imag = copysign(INF, sin(z.imag));
}
else {
r.real = copysign(0., cos(z.imag));
r.imag = copysign(0., sin(z.imag));
}
}
else {
r = exp_special_values[special_type(z.real)]
[special_type(z.imag)];
}
/* need to set errno = EDOM if y is +/- infinity and x is not
a NaN and not -infinity */
if (Py_IS_INFINITY(z.imag) &&
(Py_IS_FINITE(z.real) ||
(Py_IS_INFINITY(z.real) && z.real > 0)))
errno = EDOM;
else
errno = 0;
return r;
}
if (z.real > CM_LOG_LARGE_DOUBLE) {
l = exp(z.real-1.);
r.real = l*cos(z.imag)*Py_MATH_E;
r.imag = l*sin(z.imag)*Py_MATH_E;
} else {
l = exp(z.real);
r.real = l*cos(z.imag);
r.imag = l*sin(z.imag);
}
/* detect overflow, and set errno accordingly */
if (Py_IS_INFINITY(r.real) || Py_IS_INFINITY(r.imag))
errno = ERANGE;
else
errno = 0;
return r;
}
static Py_complex log_special_values[7][7];
static Py_complex
c_log(Py_complex z)
{
/*
The usual formula for the real part is log(hypot(z.real, z.imag)).
There are four situations where this formula is potentially
problematic:
(1) the absolute value of z is subnormal. Then hypot is subnormal,
so has fewer than the usual number of bits of accuracy, hence may
have large relative error. This then gives a large absolute error
in the log. This can be solved by rescaling z by a suitable power
of 2.
(2) the absolute value of z is greater than DBL_MAX (e.g. when both
z.real and z.imag are within a factor of 1/sqrt(2) of DBL_MAX)
Again, rescaling solves this.
(3) the absolute value of z is close to 1. In this case it's
difficult to achieve good accuracy, at least in part because a
change of 1ulp in the real or imaginary part of z can result in a
change of billions of ulps in the correctly rounded answer.
(4) z = 0. The simplest thing to do here is to call the
floating-point log with an argument of 0, and let its behaviour
(returning -infinity, signaling a floating-point exception, setting
errno, or whatever) determine that of c_log. So the usual formula
is fine here.
*/
Py_complex r;
double ax, ay, am, an, h;
SPECIAL_VALUE(z, log_special_values);
ax = fabs(z.real);
ay = fabs(z.imag);
if (ax > CM_LARGE_DOUBLE || ay > CM_LARGE_DOUBLE) {
r.real = log(hypot(ax/2., ay/2.)) + M_LN2;
} else if (ax < DBL_MIN && ay < DBL_MIN) {
if (ax > 0. || ay > 0.) {
/* catch cases where hypot(ax, ay) is subnormal */
r.real = log(hypot(ldexp(ax, DBL_MANT_DIG),
ldexp(ay, DBL_MANT_DIG))) - DBL_MANT_DIG*M_LN2;
}
else {
/* log(+/-0. +/- 0i) */
r.real = -INF;
r.imag = atan2(z.imag, z.real);
errno = EDOM;
return r;
}
} else {
h = hypot(ax, ay);
if (0.71 <= h && h <= 1.73) {
am = ax > ay ? ax : ay; /* max(ax, ay) */
an = ax > ay ? ay : ax; /* min(ax, ay) */
r.real = m_log1p((am-1)*(am+1)+an*an)/2.;
} else {
r.real = log(h);
}
}
r.imag = atan2(z.imag, z.real);
errno = 0;
return r;
}
/*[clinic input]
cmath.log10 = cmath.acos
Return the base-10 logarithm of z.
[clinic start generated code]*/
static Py_complex
cmath_log10_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=2922779a7c38cbe1 input=cff5644f73c1519c]*/
{
Py_complex r;
int errno_save;
r = c_log(z);
errno_save = errno; /* just in case the divisions affect errno */
r.real = r.real / M_LN10;
r.imag = r.imag / M_LN10;
errno = errno_save;
return r;
}
/*[clinic input]
cmath.sin = cmath.acos
Return the sine of z.
[clinic start generated code]*/
static Py_complex
cmath_sin_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=980370d2ff0bb5aa input=2d3519842a8b4b85]*/
{
/* sin(z) = -i sin(iz) */
Py_complex s, r;
s.real = -z.imag;
s.imag = z.real;
s = cmath_sinh_impl(module, s);
r.real = s.imag;
r.imag = -s.real;
return r;
}
/* sinh(infinity + i*y) needs to be dealt with specially */
static Py_complex sinh_special_values[7][7];
/*[clinic input]
cmath.sinh = cmath.acos
Return the hyperbolic sine of z.
[clinic start generated code]*/
static Py_complex
cmath_sinh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=38b0a6cce26f3536 input=d2d3fc8c1ddfd2dd]*/
{
Py_complex r;
double x_minus_one;
/* special treatment for sinh(+/-inf + iy) if y is finite and
nonzero */
if (!Py_IS_FINITE(z.real) || !Py_IS_FINITE(z.imag)) {
if (Py_IS_INFINITY(z.real) && Py_IS_FINITE(z.imag)
&& (z.imag != 0.)) {
if (z.real > 0) {
r.real = copysign(INF, cos(z.imag));
r.imag = copysign(INF, sin(z.imag));
}
else {
r.real = -copysign(INF, cos(z.imag));
r.imag = copysign(INF, sin(z.imag));
}
}
else {
r = sinh_special_values[special_type(z.real)]
[special_type(z.imag)];
}
/* need to set errno = EDOM if y is +/- infinity and x is not
a NaN */
if (Py_IS_INFINITY(z.imag) && !Py_IS_NAN(z.real))
errno = EDOM;
else
errno = 0;
return r;
}
if (fabs(z.real) > CM_LOG_LARGE_DOUBLE) {
x_minus_one = z.real - copysign(1., z.real);
r.real = cos(z.imag) * sinh(x_minus_one) * Py_MATH_E;
r.imag = sin(z.imag) * cosh(x_minus_one) * Py_MATH_E;
} else {
r.real = cos(z.imag) * sinh(z.real);
r.imag = sin(z.imag) * cosh(z.real);
}
/* detect overflow, and set errno accordingly */
if (Py_IS_INFINITY(r.real) || Py_IS_INFINITY(r.imag))
errno = ERANGE;
else
errno = 0;
return r;
}
static Py_complex sqrt_special_values[7][7];
/*[clinic input]
cmath.sqrt = cmath.acos
Return the square root of z.
[clinic start generated code]*/
static Py_complex
cmath_sqrt_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=b6507b3029c339fc input=7088b166fc9a58c7]*/
{
/*
Method: use symmetries to reduce to the case when x = z.real and y
= z.imag are nonnegative. Then the real part of the result is
given by
s = sqrt((x + hypot(x, y))/2)
and the imaginary part is
d = (y/2)/s
If either x or y is very large then there's a risk of overflow in
computation of the expression x + hypot(x, y). We can avoid this
by rewriting the formula for s as:
s = 2*sqrt(x/8 + hypot(x/8, y/8))
This costs us two extra multiplications/divisions, but avoids the
overhead of checking for x and y large.
If both x and y are subnormal then hypot(x, y) may also be
subnormal, so will lack full precision. We solve this by rescaling
x and y by a sufficiently large power of 2 to ensure that x and y
are normal.
*/
Py_complex r;
double s,d;
double ax, ay;
SPECIAL_VALUE(z, sqrt_special_values);
if (z.real == 0. && z.imag == 0.) {
r.real = 0.;
r.imag = z.imag;
return r;
}
ax = fabs(z.real);
ay = fabs(z.imag);
if (ax < DBL_MIN && ay < DBL_MIN && (ax > 0. || ay > 0.)) {
/* here we catch cases where hypot(ax, ay) is subnormal */
ax = ldexp(ax, CM_SCALE_UP);
s = ldexp(sqrt(ax + hypot(ax, ldexp(ay, CM_SCALE_UP))),
CM_SCALE_DOWN);
} else {
ax /= 8.;
s = 2.*sqrt(ax + hypot(ax, ay/8.));
}
d = ay/(2.*s);
if (z.real >= 0.) {
r.real = s;
r.imag = copysign(d, z.imag);
} else {
r.real = d;
r.imag = copysign(s, z.imag);
}
errno = 0;
return r;
}
/*[clinic input]
cmath.tan = cmath.acos
Return the tangent of z.
[clinic start generated code]*/
static Py_complex
cmath_tan_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=7c5f13158a72eb13 input=fc167e528767888e]*/
{
/* tan(z) = -i tanh(iz) */
Py_complex s, r;
s.real = -z.imag;
s.imag = z.real;
s = cmath_tanh_impl(module, s);
r.real = s.imag;
r.imag = -s.real;
return r;
}
/* tanh(infinity + i*y) needs to be dealt with specially */
static Py_complex tanh_special_values[7][7];
/*[clinic input]
cmath.tanh = cmath.acos
Return the hyperbolic tangent of z.
[clinic start generated code]*/
static Py_complex
cmath_tanh_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=36d547ef7aca116c input=22f67f9dc6d29685]*/
{
/* Formula:
tanh(x+iy) = (tanh(x)(1+tan(y)^2) + i tan(y)(1-tanh(x))^2) /
(1+tan(y)^2 tanh(x)^2)
To avoid excessive roundoff error, 1-tanh(x)^2 is better computed
as 1/cosh(x)^2. When abs(x) is large, we approximate 1-tanh(x)^2
by 4 exp(-2*x) instead, to avoid possible overflow in the
computation of cosh(x).
*/
Py_complex r;
double tx, ty, cx, txty, denom;
/* special treatment for tanh(+/-inf + iy) if y is finite and
nonzero */
if (!Py_IS_FINITE(z.real) || !Py_IS_FINITE(z.imag)) {
if (Py_IS_INFINITY(z.real) && Py_IS_FINITE(z.imag)
&& (z.imag != 0.)) {
if (z.real > 0) {
r.real = 1.0;
r.imag = copysign(0.,
2.*sin(z.imag)*cos(z.imag));
}
else {
r.real = -1.0;
r.imag = copysign(0.,
2.*sin(z.imag)*cos(z.imag));
}
}
else {
r = tanh_special_values[special_type(z.real)]
[special_type(z.imag)];
}
/* need to set errno = EDOM if z.imag is +/-infinity and
z.real is finite */
if (Py_IS_INFINITY(z.imag) && Py_IS_FINITE(z.real))
errno = EDOM;
else
errno = 0;
return r;
}
/* danger of overflow in 2.*z.imag !*/
if (fabs(z.real) > CM_LOG_LARGE_DOUBLE) {
r.real = copysign(1., z.real);
r.imag = 4.*sin(z.imag)*cos(z.imag)*exp(-2.*fabs(z.real));
} else {
tx = tanh(z.real);
ty = tan(z.imag);
cx = 1./cosh(z.real);
txty = tx*ty;
denom = 1. + txty*txty;
r.real = tx*(1.+ty*ty)/denom;
r.imag = ((ty/denom)*cx)*cx;
}
errno = 0;
return r;
}
/*[clinic input]
cmath.log
x: Py_complex
y_obj: object = NULL
/
The logarithm of z to the given base.
If the base not specified, returns the natural logarithm (base e) of z.
[clinic start generated code]*/
static PyObject *
cmath_log_impl(PyObject *module, Py_complex x, PyObject *y_obj)
/*[clinic end generated code: output=4effdb7d258e0d94 input=ee0e823a7c6e68ea]*/
{
Py_complex y;
errno = 0;
PyFPE_START_PROTECT("complex function", return 0)
x = c_log(x);
if (y_obj != NULL) {
y = PyComplex_AsCComplex(y_obj);
if (PyErr_Occurred()) {
return NULL;
}
y = c_log(y);
x = _Py_c_quot(x, y);
}
PyFPE_END_PROTECT(x)
if (errno != 0)
return math_error();
return PyComplex_FromCComplex(x);
}
/* And now the glue to make them available from Python: */
static PyObject *
math_error(void)
{
if (errno == EDOM)
PyErr_SetString(PyExc_ValueError, "math domain error");
else if (errno == ERANGE)
PyErr_SetString(PyExc_OverflowError, "math range error");
else /* Unexpected math error */
PyErr_SetFromErrno(PyExc_ValueError);
return NULL;
}
/*[clinic input]
cmath.phase
z: Py_complex
/
Return argument, also known as the phase angle, of a complex.
[clinic start generated code]*/
static PyObject *
cmath_phase_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=50725086a7bfd253 input=5cf75228ba94b69d]*/
{
double phi;
errno = 0;
PyFPE_START_PROTECT("arg function", return 0)
phi = c_atan2(z);
PyFPE_END_PROTECT(phi)
if (errno != 0)
return math_error();
else
return PyFloat_FromDouble(phi);
}
/*[clinic input]
cmath.polar
z: Py_complex
/
Convert a complex from rectangular coordinates to polar coordinates.
r is the distance from 0 and phi the phase angle.
[clinic start generated code]*/
static PyObject *
cmath_polar_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=d0a8147c41dbb654 input=26c353574fd1a861]*/
{
double r, phi;
errno = 0;
PyFPE_START_PROTECT("polar function", return 0)
phi = c_atan2(z); /* should not cause any exception */
r = _Py_c_abs(z); /* sets errno to ERANGE on overflow */
PyFPE_END_PROTECT(r)
if (errno != 0)
return math_error();
else
return Py_BuildValue("dd", r, phi);
}
/*
rect() isn't covered by the C99 standard, but it's not too hard to
figure out 'spirit of C99' rules for special value handing:
rect(x, t) should behave like exp(log(x) + it) for positive-signed x
rect(x, t) should behave like -exp(log(-x) + it) for negative-signed x
rect(nan, t) should behave like exp(nan + it), except that rect(nan, 0)
gives nan +- i0 with the sign of the imaginary part unspecified.
*/
static Py_complex rect_special_values[7][7];
/*[clinic input]
cmath.rect
r: double
phi: double
/
Convert from polar coordinates to rectangular coordinates.
[clinic start generated code]*/
static PyObject *
cmath_rect_impl(PyObject *module, double r, double phi)
/*[clinic end generated code: output=385a0690925df2d5 input=24c5646d147efd69]*/
{
Py_complex z;
errno = 0;
PyFPE_START_PROTECT("rect function", return 0)
/* deal with special values */
if (!Py_IS_FINITE(r) || !Py_IS_FINITE(phi)) {
/* if r is +/-infinity and phi is finite but nonzero then
result is (+-INF +-INF i), but we need to compute cos(phi)
and sin(phi) to figure out the signs. */
if (Py_IS_INFINITY(r) && (Py_IS_FINITE(phi)
&& (phi != 0.))) {
if (r > 0) {
z.real = copysign(INF, cos(phi));
z.imag = copysign(INF, sin(phi));
}
else {
z.real = -copysign(INF, cos(phi));
z.imag = -copysign(INF, sin(phi));
}
}
else {
z = rect_special_values[special_type(r)]
[special_type(phi)];
}
/* need to set errno = EDOM if r is a nonzero number and phi
is infinite */
if (r != 0. && !Py_IS_NAN(r) && Py_IS_INFINITY(phi))
errno = EDOM;
else
errno = 0;
}
else if (phi == 0.0) {
/* Workaround for buggy results with phi=-0.0 on OS X 10.8. See
bugs.python.org/issue18513. */
z.real = r;
z.imag = r * phi;
errno = 0;
}
else {
z.real = r * cos(phi);
z.imag = r * sin(phi);
errno = 0;
}
PyFPE_END_PROTECT(z)
if (errno != 0)
return math_error();
else
return PyComplex_FromCComplex(z);
}
/*[clinic input]
cmath.isfinite = cmath.polar
Return True if both the real and imaginary parts of z are finite, else False.
[clinic start generated code]*/
static PyObject *
cmath_isfinite_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=ac76611e2c774a36 input=848e7ee701895815]*/
{
return PyBool_FromLong(Py_IS_FINITE(z.real) && Py_IS_FINITE(z.imag));
}
/*[clinic input]
cmath.isnan = cmath.polar
Checks if the real or imaginary part of z not a number (NaN).
[clinic start generated code]*/
static PyObject *
cmath_isnan_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=e7abf6e0b28beab7 input=71799f5d284c9baf]*/
{
return PyBool_FromLong(Py_IS_NAN(z.real) || Py_IS_NAN(z.imag));
}
/*[clinic input]
cmath.isinf = cmath.polar
Checks if the real or imaginary part of z is infinite.
[clinic start generated code]*/
static PyObject *
cmath_isinf_impl(PyObject *module, Py_complex z)
/*[clinic end generated code: output=502a75a79c773469 input=363df155c7181329]*/
{
return PyBool_FromLong(Py_IS_INFINITY(z.real) ||
Py_IS_INFINITY(z.imag));
}
/*[clinic input]
cmath.isclose -> bool
a: Py_complex
b: Py_complex
*
rel_tol: double = 1e-09
maximum difference for being considered "close", relative to the
magnitude of the input values
abs_tol: double = 0.0
maximum difference for being considered "close", regardless of the
magnitude of the input values
Determine whether two complex numbers are close in value.
Return True if a is close in value to b, and False otherwise.
For the values to be considered close, the difference between them must be
smaller than at least one of the tolerances.
-inf, inf and NaN behave similarly to the IEEE 754 Standard. That is, NaN is
not close to anything, even itself. inf and -inf are only close to themselves.
[clinic start generated code]*/
static int
cmath_isclose_impl(PyObject *module, Py_complex a, Py_complex b,
double rel_tol, double abs_tol)
/*[clinic end generated code: output=8a2486cc6e0014d1 input=df9636d7de1d4ac3]*/
{
double diff;
/* sanity check on the inputs */
if (rel_tol < 0.0 || abs_tol < 0.0 ) {
PyErr_SetString(PyExc_ValueError,
"tolerances must be non-negative");
return -1;
}
if ( (a.real == b.real) && (a.imag == b.imag) ) {
/* short circuit exact equality -- needed to catch two infinities of
the same sign. And perhaps speeds things up a bit sometimes.
*/
return 1;
}
/* This catches the case of two infinities of opposite sign, or
one infinity and one finite number. Two infinities of opposite
sign would otherwise have an infinite relative tolerance.
Two infinities of the same sign are caught by the equality check
above.
*/
if (Py_IS_INFINITY(a.real) || Py_IS_INFINITY(a.imag) ||
Py_IS_INFINITY(b.real) || Py_IS_INFINITY(b.imag)) {
return 0;
}
/* now do the regular computation
this is essentially the "weak" test from the Boost library
*/
diff = _Py_c_abs(_Py_c_diff(a, b));
return (((diff <= rel_tol * _Py_c_abs(b)) ||
(diff <= rel_tol * _Py_c_abs(a))) ||
(diff <= abs_tol));
}
PyDoc_STRVAR(module_doc,
"This module is always available. It provides access to mathematical\n"
"functions for complex numbers.");
static PyMethodDef cmath_methods[] = {
CMATH_ACOS_METHODDEF
CMATH_ACOSH_METHODDEF
CMATH_ASIN_METHODDEF
CMATH_ASINH_METHODDEF
CMATH_ATAN_METHODDEF
CMATH_ATANH_METHODDEF
CMATH_COS_METHODDEF
CMATH_COSH_METHODDEF
CMATH_EXP_METHODDEF
CMATH_ISCLOSE_METHODDEF
CMATH_ISFINITE_METHODDEF
CMATH_ISINF_METHODDEF
CMATH_ISNAN_METHODDEF
CMATH_LOG_METHODDEF
CMATH_LOG10_METHODDEF
CMATH_PHASE_METHODDEF
CMATH_POLAR_METHODDEF
CMATH_RECT_METHODDEF
CMATH_SIN_METHODDEF
CMATH_SINH_METHODDEF
CMATH_SQRT_METHODDEF
CMATH_TAN_METHODDEF
CMATH_TANH_METHODDEF
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef cmathmodule = {
PyModuleDef_HEAD_INIT,
"cmath",
module_doc,
-1,
cmath_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_cmath(void)
{
PyObject *m;
m = PyModule_Create(&cmathmodule);
if (m == NULL)
return NULL;
PyModule_AddObject(m, "pi",
PyFloat_FromDouble(Py_MATH_PI));
PyModule_AddObject(m, "e", PyFloat_FromDouble(Py_MATH_E));
PyModule_AddObject(m, "tau", PyFloat_FromDouble(Py_MATH_TAU)); /* 2pi */
PyModule_AddObject(m, "inf", PyFloat_FromDouble(m_inf()));
PyModule_AddObject(m, "infj", PyComplex_FromCComplex(c_infj()));
#if !defined(PY_NO_SHORT_FLOAT_REPR) || defined(Py_NAN)
PyModule_AddObject(m, "nan", PyFloat_FromDouble(m_nan()));
PyModule_AddObject(m, "nanj", PyComplex_FromCComplex(c_nanj()));
#endif
/* initialize special value tables */
#define INIT_SPECIAL_VALUES(NAME, BODY) { Py_complex* p = (Py_complex*)NAME; BODY }
#define C(REAL, IMAG) p->real = REAL; p->imag = IMAG; ++p;
INIT_SPECIAL_VALUES(acos_special_values, {
C(P34,INF) C(P,INF) C(P,INF) C(P,-INF) C(P,-INF) C(P34,-INF) C(N,INF)
C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N)
C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N)
C(P12,INF) C(U,U) C(P12,0.) C(P12,-0.) C(U,U) C(P12,-INF) C(P12,N)
C(P12,INF) C(U,U) C(U,U) C(U,U) C(U,U) C(P12,-INF) C(N,N)
C(P14,INF) C(0.,INF) C(0.,INF) C(0.,-INF) C(0.,-INF) C(P14,-INF) C(N,INF)
C(N,INF) C(N,N) C(N,N) C(N,N) C(N,N) C(N,-INF) C(N,N)
})
INIT_SPECIAL_VALUES(acosh_special_values, {
C(INF,-P34) C(INF,-P) C(INF,-P) C(INF,P) C(INF,P) C(INF,P34) C(INF,N)
C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(0.,-P12) C(0.,P12) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(0.,-P12) C(0.,P12) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N)
C(INF,-P14) C(INF,-0.) C(INF,-0.) C(INF,0.) C(INF,0.) C(INF,P14) C(INF,N)
C(INF,N) C(N,N) C(N,N) C(N,N) C(N,N) C(INF,N) C(N,N)
})
INIT_SPECIAL_VALUES(asinh_special_values, {
C(-INF,-P14) C(-INF,-0.) C(-INF,-0.) C(-INF,0.) C(-INF,0.) C(-INF,P14) C(-INF,N)
C(-INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(-INF,P12) C(N,N)
C(-INF,-P12) C(U,U) C(-0.,-0.) C(-0.,0.) C(U,U) C(-INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N)
C(INF,-P14) C(INF,-0.) C(INF,-0.) C(INF,0.) C(INF,0.) C(INF,P14) C(INF,N)
C(INF,N) C(N,N) C(N,-0.) C(N,0.) C(N,N) C(INF,N) C(N,N)
})
INIT_SPECIAL_VALUES(atanh_special_values, {
C(-0.,-P12) C(-0.,-P12) C(-0.,-P12) C(-0.,P12) C(-0.,P12) C(-0.,P12) C(-0.,N)
C(-0.,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(-0.,P12) C(N,N)
C(-0.,-P12) C(U,U) C(-0.,-0.) C(-0.,0.) C(U,U) C(-0.,P12) C(-0.,N)
C(0.,-P12) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(0.,P12) C(0.,N)
C(0.,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(0.,P12) C(N,N)
C(0.,-P12) C(0.,-P12) C(0.,-P12) C(0.,P12) C(0.,P12) C(0.,P12) C(0.,N)
C(0.,-P12) C(N,N) C(N,N) C(N,N) C(N,N) C(0.,P12) C(N,N)
})
INIT_SPECIAL_VALUES(cosh_special_values, {
C(INF,N) C(U,U) C(INF,0.) C(INF,-0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(N,0.) C(U,U) C(1.,0.) C(1.,-0.) C(U,U) C(N,0.) C(N,0.)
C(N,0.) C(U,U) C(1.,-0.) C(1.,0.) C(U,U) C(N,0.) C(N,0.)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(INF,N) C(U,U) C(INF,-0.) C(INF,0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(N,N) C(N,0.) C(N,0.) C(N,N) C(N,N) C(N,N)
})
INIT_SPECIAL_VALUES(exp_special_values, {
C(0.,0.) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(0.,0.) C(0.,0.)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(1.,-0.) C(1.,0.) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(1.,-0.) C(1.,0.) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(INF,N) C(U,U) C(INF,-0.) C(INF,0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(N,N) C(N,-0.) C(N,0.) C(N,N) C(N,N) C(N,N)
})
INIT_SPECIAL_VALUES(log_special_values, {
C(INF,-P34) C(INF,-P) C(INF,-P) C(INF,P) C(INF,P) C(INF,P34) C(INF,N)
C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(-INF,-P) C(-INF,P) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(-INF,-0.) C(-INF,0.) C(U,U) C(INF,P12) C(N,N)
C(INF,-P12) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,P12) C(N,N)
C(INF,-P14) C(INF,-0.) C(INF,-0.) C(INF,0.) C(INF,0.) C(INF,P14) C(INF,N)
C(INF,N) C(N,N) C(N,N) C(N,N) C(N,N) C(INF,N) C(N,N)
})
INIT_SPECIAL_VALUES(sinh_special_values, {
C(INF,N) C(U,U) C(-INF,-0.) C(-INF,0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(0.,N) C(U,U) C(-0.,-0.) C(-0.,0.) C(U,U) C(0.,N) C(0.,N)
C(0.,N) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(0.,N) C(0.,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(INF,N) C(U,U) C(INF,-0.) C(INF,0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(N,N) C(N,-0.) C(N,0.) C(N,N) C(N,N) C(N,N)
})
INIT_SPECIAL_VALUES(sqrt_special_values, {
C(INF,-INF) C(0.,-INF) C(0.,-INF) C(0.,INF) C(0.,INF) C(INF,INF) C(N,INF)
C(INF,-INF) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,INF) C(N,N)
C(INF,-INF) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(INF,INF) C(N,N)
C(INF,-INF) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(INF,INF) C(N,N)
C(INF,-INF) C(U,U) C(U,U) C(U,U) C(U,U) C(INF,INF) C(N,N)
C(INF,-INF) C(INF,-0.) C(INF,-0.) C(INF,0.) C(INF,0.) C(INF,INF) C(INF,N)
C(INF,-INF) C(N,N) C(N,N) C(N,N) C(N,N) C(INF,INF) C(N,N)
})
INIT_SPECIAL_VALUES(tanh_special_values, {
C(-1.,0.) C(U,U) C(-1.,-0.) C(-1.,0.) C(U,U) C(-1.,0.) C(-1.,0.)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(-0.,-0.) C(-0.,0.) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(N,N) C(N,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(1.,0.) C(U,U) C(1.,-0.) C(1.,0.) C(U,U) C(1.,0.) C(1.,0.)
C(N,N) C(N,N) C(N,-0.) C(N,0.) C(N,N) C(N,N) C(N,N)
})
INIT_SPECIAL_VALUES(rect_special_values, {
C(INF,N) C(U,U) C(-INF,0.) C(-INF,-0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(0.,0.) C(U,U) C(-0.,0.) C(-0.,-0.) C(U,U) C(0.,0.) C(0.,0.)
C(0.,0.) C(U,U) C(0.,-0.) C(0.,0.) C(U,U) C(0.,0.) C(0.,0.)
C(N,N) C(U,U) C(U,U) C(U,U) C(U,U) C(N,N) C(N,N)
C(INF,N) C(U,U) C(INF,-0.) C(INF,0.) C(U,U) C(INF,N) C(INF,N)
C(N,N) C(N,N) C(N,0.) C(N,0.) C(N,N) C(N,N) C(N,N)
})
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_cmath = {
"cmath",
PyInit_cmath,
};
| 45,713 | 1,465 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/sre_constants.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_SRE_CONSTANTS_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_SRE_CONSTANTS_H_
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
/* clang-format off */
#define SRE_MAGIC 20140917
#define SRE_OP_FAILURE 0
#define SRE_OP_SUCCESS 1
#define SRE_OP_ANY 2
#define SRE_OP_ANY_ALL 3
#define SRE_OP_ASSERT 4
#define SRE_OP_ASSERT_NOT 5
#define SRE_OP_AT 6
#define SRE_OP_BRANCH 7
#define SRE_OP_CALL 8
#define SRE_OP_CATEGORY 9
#define SRE_OP_CHARSET 10
#define SRE_OP_BIGCHARSET 11
#define SRE_OP_GROUPREF 12
#define SRE_OP_GROUPREF_EXISTS 13
#define SRE_OP_GROUPREF_IGNORE 14
#define SRE_OP_IN 15
#define SRE_OP_IN_IGNORE 16
#define SRE_OP_INFO 17
#define SRE_OP_JUMP 18
#define SRE_OP_LITERAL 19
#define SRE_OP_LITERAL_IGNORE 20
#define SRE_OP_MARK 21
#define SRE_OP_MAX_UNTIL 22
#define SRE_OP_MIN_UNTIL 23
#define SRE_OP_NOT_LITERAL 24
#define SRE_OP_NOT_LITERAL_IGNORE 25
#define SRE_OP_NEGATE 26
#define SRE_OP_RANGE 27
#define SRE_OP_REPEAT 28
#define SRE_OP_REPEAT_ONE 29
#define SRE_OP_SUBPATTERN 30
#define SRE_OP_MIN_REPEAT_ONE 31
#define SRE_OP_RANGE_IGNORE 32
#define SRE_AT_BEGINNING 0
#define SRE_AT_BEGINNING_LINE 1
#define SRE_AT_BEGINNING_STRING 2
#define SRE_AT_BOUNDARY 3
#define SRE_AT_NON_BOUNDARY 4
#define SRE_AT_END 5
#define SRE_AT_END_LINE 6
#define SRE_AT_END_STRING 7
#define SRE_AT_LOC_BOUNDARY 8
#define SRE_AT_LOC_NON_BOUNDARY 9
#define SRE_AT_UNI_BOUNDARY 10
#define SRE_AT_UNI_NON_BOUNDARY 11
#define SRE_CATEGORY_DIGIT 0
#define SRE_CATEGORY_NOT_DIGIT 1
#define SRE_CATEGORY_SPACE 2
#define SRE_CATEGORY_NOT_SPACE 3
#define SRE_CATEGORY_WORD 4
#define SRE_CATEGORY_NOT_WORD 5
#define SRE_CATEGORY_LINEBREAK 6
#define SRE_CATEGORY_NOT_LINEBREAK 7
#define SRE_CATEGORY_LOC_WORD 8
#define SRE_CATEGORY_LOC_NOT_WORD 9
#define SRE_CATEGORY_UNI_DIGIT 10
#define SRE_CATEGORY_UNI_NOT_DIGIT 11
#define SRE_CATEGORY_UNI_SPACE 12
#define SRE_CATEGORY_UNI_NOT_SPACE 13
#define SRE_CATEGORY_UNI_WORD 14
#define SRE_CATEGORY_UNI_NOT_WORD 15
#define SRE_CATEGORY_UNI_LINEBREAK 16
#define SRE_CATEGORY_UNI_NOT_LINEBREAK 17
#define SRE_FLAG_TEMPLATE 1
#define SRE_FLAG_IGNORECASE 2
#define SRE_FLAG_LOCALE 4
#define SRE_FLAG_MULTILINE 8
#define SRE_FLAG_DOTALL 16
#define SRE_FLAG_UNICODE 32
#define SRE_FLAG_VERBOSE 64
#define SRE_FLAG_DEBUG 128
#define SRE_FLAG_ASCII 256
#define SRE_INFO_PREFIX 1
#define SRE_INFO_LITERAL 2
#define SRE_INFO_CHARSET 4
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_SRE_CONSTANTS_H_ */
| 2,565 | 87 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_nfcfirst.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const _PyUnicode_Reindex _PyUnicode_NfcFirst[] = {
{0x0003c, 2, 0},
{0x00041, 15, 3},
{0x00052, 8, 19},
{0x00061, 15, 28},
{0x00072, 8, 44},
{0x000a8, 0, 53},
{0x000c2, 0, 54},
{0x000c4, 3, 55},
{0x000ca, 0, 59},
{0x000cf, 0, 60},
{0x000d4, 2, 61},
{0x000d8, 0, 64},
{0x000dc, 0, 65},
{0x000e2, 0, 66},
{0x000e4, 3, 67},
{0x000ea, 0, 71},
{0x000ef, 0, 72},
{0x000f4, 2, 73},
{0x000f8, 0, 76},
{0x000fc, 0, 77},
{0x00102, 1, 78},
{0x00112, 1, 80},
{0x0014c, 1, 82},
{0x0015a, 1, 84},
{0x00160, 1, 86},
{0x00168, 3, 88},
{0x0017f, 0, 92},
{0x001a0, 1, 93},
{0x001af, 1, 95},
{0x001b7, 0, 97},
{0x001ea, 1, 98},
{0x00226, 3, 100},
{0x0022e, 1, 104},
{0x00292, 0, 106},
{0x00391, 0, 107},
{0x00395, 0, 108},
{0x00397, 0, 109},
{0x00399, 0, 110},
{0x0039f, 0, 111},
{0x003a1, 0, 112},
{0x003a5, 0, 113},
{0x003a9, 0, 114},
{0x003ac, 0, 115},
{0x003ae, 0, 116},
{0x003b1, 0, 117},
{0x003b5, 0, 118},
{0x003b7, 0, 119},
{0x003b9, 0, 120},
{0x003bf, 0, 121},
{0x003c1, 0, 122},
{0x003c5, 0, 123},
{0x003c9, 2, 124},
{0x003ce, 0, 127},
{0x003d2, 0, 128},
{0x00406, 0, 129},
{0x00410, 0, 130},
{0x00413, 0, 131},
{0x00415, 3, 132},
{0x0041a, 0, 136},
{0x0041e, 0, 137},
{0x00423, 0, 138},
{0x00427, 0, 139},
{0x0042b, 0, 140},
{0x0042d, 0, 141},
{0x00430, 0, 142},
{0x00433, 0, 143},
{0x00435, 3, 144},
{0x0043a, 0, 148},
{0x0043e, 0, 149},
{0x00443, 0, 150},
{0x00447, 0, 151},
{0x0044b, 0, 152},
{0x0044d, 0, 153},
{0x00456, 0, 154},
{0x00474, 1, 155},
{0x004d8, 1, 157},
{0x004e8, 1, 159},
{0x00627, 0, 161},
{0x00648, 0, 162},
{0x0064a, 0, 163},
{0x006c1, 0, 164},
{0x006d2, 0, 165},
{0x006d5, 0, 166},
{0x00928, 0, 167},
{0x00930, 0, 168},
{0x00933, 0, 169},
{0x009c7, 0, 170},
{0x00b47, 0, 171},
{0x00b92, 0, 172},
{0x00bc6, 1, 173},
{0x00c46, 0, 175},
{0x00cbf, 0, 176},
{0x00cc6, 0, 177},
{0x00cca, 0, 178},
{0x00d46, 1, 179},
{0x00dd9, 0, 181},
{0x00ddc, 0, 182},
{0x01025, 0, 183},
{0x01b05, 0, 184},
{0x01b07, 0, 185},
{0x01b09, 0, 186},
{0x01b0b, 0, 187},
{0x01b0d, 0, 188},
{0x01b11, 0, 189},
{0x01b3a, 0, 190},
{0x01b3c, 0, 191},
{0x01b3e, 1, 192},
{0x01b42, 0, 194},
{0x01e36, 1, 195},
{0x01e5a, 1, 197},
{0x01e62, 1, 199},
{0x01ea0, 1, 201},
{0x01eb8, 1, 203},
{0x01ecc, 1, 205},
{0x01f00, 17, 207},
{0x01f18, 1, 225},
{0x01f20, 17, 227},
{0x01f38, 1, 245},
{0x01f40, 1, 247},
{0x01f48, 1, 249},
{0x01f50, 1, 251},
{0x01f59, 0, 253},
{0x01f60, 16, 254},
{0x01f74, 0, 271},
{0x01f7c, 0, 272},
{0x01fb6, 0, 273},
{0x01fbf, 0, 274},
{0x01fc6, 0, 275},
{0x01ff6, 0, 276},
{0x01ffe, 0, 277},
{0x02190, 0, 278},
{0x02192, 0, 279},
{0x02194, 0, 280},
{0x021d0, 0, 281},
{0x021d2, 0, 282},
{0x021d4, 0, 283},
{0x02203, 0, 284},
{0x02208, 0, 285},
{0x0220b, 0, 286},
{0x02223, 0, 287},
{0x02225, 0, 288},
{0x0223c, 0, 289},
{0x02243, 0, 290},
{0x02245, 0, 291},
{0x02248, 0, 292},
{0x0224d, 0, 293},
{0x02261, 0, 294},
{0x02264, 1, 295},
{0x02272, 1, 297},
{0x02276, 1, 299},
{0x0227a, 3, 301},
{0x02282, 1, 305},
{0x02286, 1, 307},
{0x02291, 1, 309},
{0x022a2, 0, 311},
{0x022a8, 1, 312},
{0x022ab, 0, 314},
{0x022b2, 3, 315},
{0x03046, 0, 319},
{0x0304b, 0, 320},
{0x0304d, 0, 321},
{0x0304f, 0, 322},
{0x03051, 0, 323},
{0x03053, 0, 324},
{0x03055, 0, 325},
{0x03057, 0, 326},
{0x03059, 0, 327},
{0x0305b, 0, 328},
{0x0305d, 0, 329},
{0x0305f, 0, 330},
{0x03061, 0, 331},
{0x03064, 0, 332},
{0x03066, 0, 333},
{0x03068, 0, 334},
{0x0306f, 0, 335},
{0x03072, 0, 336},
{0x03075, 0, 337},
{0x03078, 0, 338},
{0x0307b, 0, 339},
{0x0309d, 0, 340},
{0x030a6, 0, 341},
{0x030ab, 0, 342},
{0x030ad, 0, 343},
{0x030af, 0, 344},
{0x030b1, 0, 345},
{0x030b3, 0, 346},
{0x030b5, 0, 347},
{0x030b7, 0, 348},
{0x030b9, 0, 349},
{0x030bb, 0, 350},
{0x030bd, 0, 351},
{0x030bf, 0, 352},
{0x030c1, 0, 353},
{0x030c4, 0, 354},
{0x030c6, 0, 355},
{0x030c8, 0, 356},
{0x030cf, 0, 357},
{0x030d2, 0, 358},
{0x030d5, 0, 359},
{0x030d8, 0, 360},
{0x030db, 0, 361},
{0x030ef, 3, 362},
{0x030fd, 0, 366},
{0x11099, 0, 367},
{0x1109b, 0, 368},
{0x110a5, 0, 369},
{0x11131, 1, 370},
{0x11347, 0, 372},
{0x114b9, 0, 373},
{0x115b8, 1, 374},
{0x11935, 0, 376},
{0}
};
| 5,528 | 221 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_namedsequences.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const _PyUnicode_NamedSequence _PyUnicode_NamedSequences[442] = {
{3, {0x0023, 0xFE0F, 0x20E3}},
{3, {0x002A, 0xFE0F, 0x20E3}},
{3, {0x0030, 0xFE0F, 0x20E3}},
{3, {0x0031, 0xFE0F, 0x20E3}},
{3, {0x0032, 0xFE0F, 0x20E3}},
{3, {0x0033, 0xFE0F, 0x20E3}},
{3, {0x0034, 0xFE0F, 0x20E3}},
{3, {0x0035, 0xFE0F, 0x20E3}},
{3, {0x0036, 0xFE0F, 0x20E3}},
{3, {0x0037, 0xFE0F, 0x20E3}},
{3, {0x0038, 0xFE0F, 0x20E3}},
{3, {0x0039, 0xFE0F, 0x20E3}},
{2, {0x0100, 0x0300}},
{2, {0x0101, 0x0300}},
{2, {0x012A, 0x0300}},
{2, {0x012B, 0x0300}},
{2, {0x016A, 0x0300}},
{2, {0x016B, 0x0300}},
{2, {0x0045, 0x0329}},
{2, {0x0065, 0x0329}},
{2, {0x00C8, 0x0329}},
{2, {0x00E8, 0x0329}},
{2, {0x00C9, 0x0329}},
{2, {0x00E9, 0x0329}},
{2, {0x004F, 0x0329}},
{2, {0x006F, 0x0329}},
{2, {0x00D2, 0x0329}},
{2, {0x00F2, 0x0329}},
{2, {0x00D3, 0x0329}},
{2, {0x00F3, 0x0329}},
{2, {0x0053, 0x0329}},
{2, {0x0073, 0x0329}},
{2, {0x00CA, 0x0304}},
{2, {0x00EA, 0x0304}},
{2, {0x00CA, 0x030C}},
{2, {0x00EA, 0x030C}},
{3, {0x0069, 0x0307, 0x0301}},
{3, {0x006E, 0x0360, 0x0067}},
{2, {0x0104, 0x0301}},
{2, {0x0105, 0x0301}},
{2, {0x0104, 0x0303}},
{2, {0x0105, 0x0303}},
{2, {0x0118, 0x0301}},
{2, {0x0119, 0x0301}},
{2, {0x0118, 0x0303}},
{2, {0x0119, 0x0303}},
{2, {0x0116, 0x0301}},
{2, {0x0117, 0x0301}},
{2, {0x0116, 0x0303}},
{2, {0x0117, 0x0303}},
{3, {0x0069, 0x0307, 0x0300}},
{3, {0x0069, 0x0307, 0x0303}},
{2, {0x012E, 0x0301}},
{3, {0x012F, 0x0307, 0x0301}},
{2, {0x012E, 0x0303}},
{3, {0x012F, 0x0307, 0x0303}},
{2, {0x004A, 0x0303}},
{3, {0x006A, 0x0307, 0x0303}},
{2, {0x004C, 0x0303}},
{2, {0x006C, 0x0303}},
{2, {0x004D, 0x0303}},
{2, {0x006D, 0x0303}},
{2, {0x0052, 0x0303}},
{2, {0x0072, 0x0303}},
{2, {0x0172, 0x0301}},
{2, {0x0173, 0x0301}},
{2, {0x0172, 0x0303}},
{2, {0x0173, 0x0303}},
{2, {0x016A, 0x0301}},
{2, {0x016B, 0x0301}},
{2, {0x016A, 0x0303}},
{2, {0x016B, 0x0303}},
{2, {0x00E6, 0x0300}},
{2, {0x0254, 0x0300}},
{2, {0x0254, 0x0301}},
{2, {0x028C, 0x0300}},
{2, {0x028C, 0x0301}},
{2, {0x0259, 0x0300}},
{2, {0x0259, 0x0301}},
{2, {0x025A, 0x0300}},
{2, {0x025A, 0x0301}},
{2, {0x0626, 0x0627}},
{2, {0x0626, 0x0648}},
{2, {0x0626, 0x0649}},
{2, {0x0626, 0x06C6}},
{2, {0x0626, 0x06C7}},
{2, {0x0626, 0x06C8}},
{2, {0x0626, 0x06D0}},
{2, {0x0626, 0x06D5}},
{2, {0x0646, 0x06A9}},
{3, {0x0995, 0x09CD, 0x09B7}},
{2, {0x0B95, 0x0BCD}},
{2, {0x0B99, 0x0BCD}},
{2, {0x0B9A, 0x0BCD}},
{2, {0x0B9E, 0x0BCD}},
{2, {0x0B9F, 0x0BCD}},
{2, {0x0BA3, 0x0BCD}},
{2, {0x0BA4, 0x0BCD}},
{2, {0x0BA8, 0x0BCD}},
{2, {0x0BAA, 0x0BCD}},
{2, {0x0BAE, 0x0BCD}},
{2, {0x0BAF, 0x0BCD}},
{2, {0x0BB0, 0x0BCD}},
{2, {0x0BB2, 0x0BCD}},
{2, {0x0BB5, 0x0BCD}},
{2, {0x0BB4, 0x0BCD}},
{2, {0x0BB3, 0x0BCD}},
{2, {0x0BB1, 0x0BCD}},
{2, {0x0BA9, 0x0BCD}},
{2, {0x0B9C, 0x0BCD}},
{2, {0x0BB6, 0x0BCD}},
{2, {0x0BB7, 0x0BCD}},
{2, {0x0BB8, 0x0BCD}},
{2, {0x0BB9, 0x0BCD}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCD}},
{2, {0x0B95, 0x0BBE}},
{2, {0x0B95, 0x0BBF}},
{2, {0x0B95, 0x0BC0}},
{2, {0x0B95, 0x0BC1}},
{2, {0x0B95, 0x0BC2}},
{2, {0x0B95, 0x0BC6}},
{2, {0x0B95, 0x0BC7}},
{2, {0x0B95, 0x0BC8}},
{2, {0x0B95, 0x0BCA}},
{2, {0x0B95, 0x0BCB}},
{2, {0x0B95, 0x0BCC}},
{2, {0x0B99, 0x0BBE}},
{2, {0x0B99, 0x0BBF}},
{2, {0x0B99, 0x0BC0}},
{2, {0x0B99, 0x0BC1}},
{2, {0x0B99, 0x0BC2}},
{2, {0x0B99, 0x0BC6}},
{2, {0x0B99, 0x0BC7}},
{2, {0x0B99, 0x0BC8}},
{2, {0x0B99, 0x0BCA}},
{2, {0x0B99, 0x0BCB}},
{2, {0x0B99, 0x0BCC}},
{2, {0x0B9A, 0x0BBE}},
{2, {0x0B9A, 0x0BBF}},
{2, {0x0B9A, 0x0BC0}},
{2, {0x0B9A, 0x0BC1}},
{2, {0x0B9A, 0x0BC2}},
{2, {0x0B9A, 0x0BC6}},
{2, {0x0B9A, 0x0BC7}},
{2, {0x0B9A, 0x0BC8}},
{2, {0x0B9A, 0x0BCA}},
{2, {0x0B9A, 0x0BCB}},
{2, {0x0B9A, 0x0BCC}},
{2, {0x0B9E, 0x0BBE}},
{2, {0x0B9E, 0x0BBF}},
{2, {0x0B9E, 0x0BC0}},
{2, {0x0B9E, 0x0BC1}},
{2, {0x0B9E, 0x0BC2}},
{2, {0x0B9E, 0x0BC6}},
{2, {0x0B9E, 0x0BC7}},
{2, {0x0B9E, 0x0BC8}},
{2, {0x0B9E, 0x0BCA}},
{2, {0x0B9E, 0x0BCB}},
{2, {0x0B9E, 0x0BCC}},
{2, {0x0B9F, 0x0BBE}},
{2, {0x0B9F, 0x0BBF}},
{2, {0x0B9F, 0x0BC0}},
{2, {0x0B9F, 0x0BC1}},
{2, {0x0B9F, 0x0BC2}},
{2, {0x0B9F, 0x0BC6}},
{2, {0x0B9F, 0x0BC7}},
{2, {0x0B9F, 0x0BC8}},
{2, {0x0B9F, 0x0BCA}},
{2, {0x0B9F, 0x0BCB}},
{2, {0x0B9F, 0x0BCC}},
{2, {0x0BA3, 0x0BBE}},
{2, {0x0BA3, 0x0BBF}},
{2, {0x0BA3, 0x0BC0}},
{2, {0x0BA3, 0x0BC1}},
{2, {0x0BA3, 0x0BC2}},
{2, {0x0BA3, 0x0BC6}},
{2, {0x0BA3, 0x0BC7}},
{2, {0x0BA3, 0x0BC8}},
{2, {0x0BA3, 0x0BCA}},
{2, {0x0BA3, 0x0BCB}},
{2, {0x0BA3, 0x0BCC}},
{2, {0x0BA4, 0x0BBE}},
{2, {0x0BA4, 0x0BBF}},
{2, {0x0BA4, 0x0BC0}},
{2, {0x0BA4, 0x0BC1}},
{2, {0x0BA4, 0x0BC2}},
{2, {0x0BA4, 0x0BC6}},
{2, {0x0BA4, 0x0BC7}},
{2, {0x0BA4, 0x0BC8}},
{2, {0x0BA4, 0x0BCA}},
{2, {0x0BA4, 0x0BCB}},
{2, {0x0BA4, 0x0BCC}},
{2, {0x0BA8, 0x0BBE}},
{2, {0x0BA8, 0x0BBF}},
{2, {0x0BA8, 0x0BC0}},
{2, {0x0BA8, 0x0BC1}},
{2, {0x0BA8, 0x0BC2}},
{2, {0x0BA8, 0x0BC6}},
{2, {0x0BA8, 0x0BC7}},
{2, {0x0BA8, 0x0BC8}},
{2, {0x0BA8, 0x0BCA}},
{2, {0x0BA8, 0x0BCB}},
{2, {0x0BA8, 0x0BCC}},
{2, {0x0BAA, 0x0BBE}},
{2, {0x0BAA, 0x0BBF}},
{2, {0x0BAA, 0x0BC0}},
{2, {0x0BAA, 0x0BC1}},
{2, {0x0BAA, 0x0BC2}},
{2, {0x0BAA, 0x0BC6}},
{2, {0x0BAA, 0x0BC7}},
{2, {0x0BAA, 0x0BC8}},
{2, {0x0BAA, 0x0BCA}},
{2, {0x0BAA, 0x0BCB}},
{2, {0x0BAA, 0x0BCC}},
{2, {0x0BAE, 0x0BBE}},
{2, {0x0BAE, 0x0BBF}},
{2, {0x0BAE, 0x0BC0}},
{2, {0x0BAE, 0x0BC1}},
{2, {0x0BAE, 0x0BC2}},
{2, {0x0BAE, 0x0BC6}},
{2, {0x0BAE, 0x0BC7}},
{2, {0x0BAE, 0x0BC8}},
{2, {0x0BAE, 0x0BCA}},
{2, {0x0BAE, 0x0BCB}},
{2, {0x0BAE, 0x0BCC}},
{2, {0x0BAF, 0x0BBE}},
{2, {0x0BAF, 0x0BBF}},
{2, {0x0BAF, 0x0BC0}},
{2, {0x0BAF, 0x0BC1}},
{2, {0x0BAF, 0x0BC2}},
{2, {0x0BAF, 0x0BC6}},
{2, {0x0BAF, 0x0BC7}},
{2, {0x0BAF, 0x0BC8}},
{2, {0x0BAF, 0x0BCA}},
{2, {0x0BAF, 0x0BCB}},
{2, {0x0BAF, 0x0BCC}},
{2, {0x0BB0, 0x0BBE}},
{2, {0x0BB0, 0x0BBF}},
{2, {0x0BB0, 0x0BC0}},
{2, {0x0BB0, 0x0BC1}},
{2, {0x0BB0, 0x0BC2}},
{2, {0x0BB0, 0x0BC6}},
{2, {0x0BB0, 0x0BC7}},
{2, {0x0BB0, 0x0BC8}},
{2, {0x0BB0, 0x0BCA}},
{2, {0x0BB0, 0x0BCB}},
{2, {0x0BB0, 0x0BCC}},
{2, {0x0BB2, 0x0BBE}},
{2, {0x0BB2, 0x0BBF}},
{2, {0x0BB2, 0x0BC0}},
{2, {0x0BB2, 0x0BC1}},
{2, {0x0BB2, 0x0BC2}},
{2, {0x0BB2, 0x0BC6}},
{2, {0x0BB2, 0x0BC7}},
{2, {0x0BB2, 0x0BC8}},
{2, {0x0BB2, 0x0BCA}},
{2, {0x0BB2, 0x0BCB}},
{2, {0x0BB2, 0x0BCC}},
{2, {0x0BB5, 0x0BBE}},
{2, {0x0BB5, 0x0BBF}},
{2, {0x0BB5, 0x0BC0}},
{2, {0x0BB5, 0x0BC1}},
{2, {0x0BB5, 0x0BC2}},
{2, {0x0BB5, 0x0BC6}},
{2, {0x0BB5, 0x0BC7}},
{2, {0x0BB5, 0x0BC8}},
{2, {0x0BB5, 0x0BCA}},
{2, {0x0BB5, 0x0BCB}},
{2, {0x0BB5, 0x0BCC}},
{2, {0x0BB4, 0x0BBE}},
{2, {0x0BB4, 0x0BBF}},
{2, {0x0BB4, 0x0BC0}},
{2, {0x0BB4, 0x0BC1}},
{2, {0x0BB4, 0x0BC2}},
{2, {0x0BB4, 0x0BC6}},
{2, {0x0BB4, 0x0BC7}},
{2, {0x0BB4, 0x0BC8}},
{2, {0x0BB4, 0x0BCA}},
{2, {0x0BB4, 0x0BCB}},
{2, {0x0BB4, 0x0BCC}},
{2, {0x0BB3, 0x0BBE}},
{2, {0x0BB3, 0x0BBF}},
{2, {0x0BB3, 0x0BC0}},
{2, {0x0BB3, 0x0BC1}},
{2, {0x0BB3, 0x0BC2}},
{2, {0x0BB3, 0x0BC6}},
{2, {0x0BB3, 0x0BC7}},
{2, {0x0BB3, 0x0BC8}},
{2, {0x0BB3, 0x0BCA}},
{2, {0x0BB3, 0x0BCB}},
{2, {0x0BB3, 0x0BCC}},
{2, {0x0BB1, 0x0BBE}},
{2, {0x0BB1, 0x0BBF}},
{2, {0x0BB1, 0x0BC0}},
{2, {0x0BB1, 0x0BC1}},
{2, {0x0BB1, 0x0BC2}},
{2, {0x0BB1, 0x0BC6}},
{2, {0x0BB1, 0x0BC7}},
{2, {0x0BB1, 0x0BC8}},
{2, {0x0BB1, 0x0BCA}},
{2, {0x0BB1, 0x0BCB}},
{2, {0x0BB1, 0x0BCC}},
{2, {0x0BA9, 0x0BBE}},
{2, {0x0BA9, 0x0BBF}},
{2, {0x0BA9, 0x0BC0}},
{2, {0x0BA9, 0x0BC1}},
{2, {0x0BA9, 0x0BC2}},
{2, {0x0BA9, 0x0BC6}},
{2, {0x0BA9, 0x0BC7}},
{2, {0x0BA9, 0x0BC8}},
{2, {0x0BA9, 0x0BCA}},
{2, {0x0BA9, 0x0BCB}},
{2, {0x0BA9, 0x0BCC}},
{2, {0x0B9C, 0x0BBE}},
{2, {0x0B9C, 0x0BBF}},
{2, {0x0B9C, 0x0BC0}},
{2, {0x0B9C, 0x0BC1}},
{2, {0x0B9C, 0x0BC2}},
{2, {0x0B9C, 0x0BC6}},
{2, {0x0B9C, 0x0BC7}},
{2, {0x0B9C, 0x0BC8}},
{2, {0x0B9C, 0x0BCA}},
{2, {0x0B9C, 0x0BCB}},
{2, {0x0B9C, 0x0BCC}},
{2, {0x0BB6, 0x0BBE}},
{2, {0x0BB6, 0x0BBF}},
{2, {0x0BB6, 0x0BC0}},
{2, {0x0BB6, 0x0BC1}},
{2, {0x0BB6, 0x0BC2}},
{2, {0x0BB6, 0x0BC6}},
{2, {0x0BB6, 0x0BC7}},
{2, {0x0BB6, 0x0BC8}},
{2, {0x0BB6, 0x0BCA}},
{2, {0x0BB6, 0x0BCB}},
{2, {0x0BB6, 0x0BCC}},
{2, {0x0BB7, 0x0BBE}},
{2, {0x0BB7, 0x0BBF}},
{2, {0x0BB7, 0x0BC0}},
{2, {0x0BB7, 0x0BC1}},
{2, {0x0BB7, 0x0BC2}},
{2, {0x0BB7, 0x0BC6}},
{2, {0x0BB7, 0x0BC7}},
{2, {0x0BB7, 0x0BC8}},
{2, {0x0BB7, 0x0BCA}},
{2, {0x0BB7, 0x0BCB}},
{2, {0x0BB7, 0x0BCC}},
{2, {0x0BB8, 0x0BBE}},
{2, {0x0BB8, 0x0BBF}},
{2, {0x0BB8, 0x0BC0}},
{2, {0x0BB8, 0x0BC1}},
{2, {0x0BB8, 0x0BC2}},
{2, {0x0BB8, 0x0BC6}},
{2, {0x0BB8, 0x0BC7}},
{2, {0x0BB8, 0x0BC8}},
{2, {0x0BB8, 0x0BCA}},
{2, {0x0BB8, 0x0BCB}},
{2, {0x0BB8, 0x0BCC}},
{2, {0x0BB9, 0x0BBE}},
{2, {0x0BB9, 0x0BBF}},
{2, {0x0BB9, 0x0BC0}},
{2, {0x0BB9, 0x0BC1}},
{2, {0x0BB9, 0x0BC2}},
{2, {0x0BB9, 0x0BC6}},
{2, {0x0BB9, 0x0BC7}},
{2, {0x0BB9, 0x0BC8}},
{2, {0x0BB9, 0x0BCA}},
{2, {0x0BB9, 0x0BCB}},
{2, {0x0BB9, 0x0BCC}},
{3, {0x0B95, 0x0BCD, 0x0BB7}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BBE}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BBF}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC0}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC1}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC2}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC6}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC7}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BC8}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCA}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCB}},
{4, {0x0B95, 0x0BCD, 0x0BB7, 0x0BCC}},
{4, {0x0BB6, 0x0BCD, 0x0BB0, 0x0BC0}},
{3, {0x0DCA, 0x200D, 0x0DBA}},
{3, {0x0DCA, 0x200D, 0x0DBB}},
{3, {0x0DBB, 0x0DCA, 0x200D}},
{2, {0x10E3, 0x0302}},
{2, {0x17D2, 0x1780}},
{2, {0x17D2, 0x1781}},
{2, {0x17D2, 0x1782}},
{2, {0x17D2, 0x1783}},
{2, {0x17D2, 0x1784}},
{2, {0x17D2, 0x1785}},
{2, {0x17D2, 0x1786}},
{2, {0x17D2, 0x1787}},
{2, {0x17D2, 0x1788}},
{2, {0x17D2, 0x1789}},
{2, {0x17D2, 0x178A}},
{2, {0x17D2, 0x178B}},
{2, {0x17D2, 0x178C}},
{2, {0x17D2, 0x178D}},
{2, {0x17D2, 0x178E}},
{2, {0x17D2, 0x178F}},
{2, {0x17D2, 0x1790}},
{2, {0x17D2, 0x1791}},
{2, {0x17D2, 0x1792}},
{2, {0x17D2, 0x1793}},
{2, {0x17D2, 0x1794}},
{2, {0x17D2, 0x1795}},
{2, {0x17D2, 0x1796}},
{2, {0x17D2, 0x1797}},
{2, {0x17D2, 0x1798}},
{2, {0x17D2, 0x1799}},
{2, {0x17D2, 0x179A}},
{2, {0x17D2, 0x179B}},
{2, {0x17D2, 0x179C}},
{2, {0x17D2, 0x179D}},
{2, {0x17D2, 0x179E}},
{2, {0x17D2, 0x179F}},
{2, {0x17D2, 0x17A0}},
{2, {0x17D2, 0x17A1}},
{2, {0x17D2, 0x17A2}},
{2, {0x17D2, 0x17A7}},
{2, {0x17D2, 0x17AB}},
{2, {0x17D2, 0x17AC}},
{2, {0x17D2, 0x17AF}},
{2, {0x17BB, 0x17C6}},
{2, {0x17B6, 0x17C6}},
{2, {0x304B, 0x309A}},
{2, {0x304D, 0x309A}},
{2, {0x304F, 0x309A}},
{2, {0x3051, 0x309A}},
{2, {0x3053, 0x309A}},
{2, {0x30AB, 0x309A}},
{2, {0x30AD, 0x309A}},
{2, {0x30AF, 0x309A}},
{2, {0x30B1, 0x309A}},
{2, {0x30B3, 0x309A}},
{2, {0x30BB, 0x309A}},
{2, {0x30C4, 0x309A}},
{2, {0x30C8, 0x309A}},
{2, {0x31F7, 0x309A}},
{2, {0x02E5, 0x02E9}},
{2, {0x02E9, 0x02E5}},
};
| 12,593 | 450 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/fpectlmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/runtime/runtime.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyport.h"
/* clang-format off */
/*
---------------------------------------------------------------------
/ Copyright (c) 1996. \
| The Regents of the University of California. |
| All rights reserved. |
| |
| Permission to use, copy, modify, and distribute this software for |
| any purpose without fee is hereby granted, provided that this en- |
| tire notice is included in all copies of any software which is or |
| includes a copy or modification of this software and in all |
| copies of the supporting documentation for such software. |
| |
| This work was produced at the University of California, Lawrence |
| Livermore National Laboratory under contract no. W-7405-ENG-48 |
| between the U.S. Department of Energy and The Regents of the |
| University of California for the operation of UC LLNL. |
| |
| DISCLAIMER |
| |
| This software was prepared as an account of work sponsored by an |
| agency of the United States Government. Neither the United States |
| Government nor the University of California nor any of their em- |
| ployees, makes any warranty, express or implied, or assumes any |
| liability or responsibility for the accuracy, completeness, or |
| usefulness of any information, apparatus, product, or process |
| disclosed, or represents that its use would not infringe |
| privately-owned rights. Reference herein to any specific commer- |
| cial products, process, or service by trade name, trademark, |
| manufacturer, or otherwise, does not necessarily constitute or |
| imply its endorsement, recommendation, or favoring by the United |
| States Government or the University of California. The views and |
| opinions of authors expressed herein do not necessarily state or |
| reflect those of the United States Government or the University |
| of California, and shall not be used for advertising or product |
\ endorsement purposes. /
---------------------------------------------------------------------
*/
/*
Floating point exception control module.
This Python module provides bare-bones control over floating point
units from several hardware manufacturers. Specifically, it allows
the user to turn on the generation of SIGFPE whenever any of the
three serious IEEE 754 exceptions (Division by Zero, Overflow,
Invalid Operation) occurs. We currently ignore Underflow and
Inexact Result exceptions, although those could certainly be added
if desired.
The module also establishes a signal handler for SIGFPE during
initialization. This builds on code found in the Python
distribution at Include/pyfpe.h and Python/pyfpe.c. If those files
are not in your Python distribution, find them in a patch at
ftp://icf.llnl.gov/pub/python/busby/patches.961108.tgz.
This module is only useful to you if it happens to include code
specific for your hardware and software environment. If you can
contribute OS-specific code for new platforms, or corrections for
the code provided, it will be greatly appreciated.
** Version 1.0: September 20, 1996. Lee Busby, LLNL.
*/
#ifndef WANT_SIGFPE_HANDLER
/* Define locally if they are not defined in Python. This gives only
* the limited control to induce a core dump in case of an exception.
*/
static jmp_buf PyFPE_jbuf;
static int PyFPE_counter = 0;
#endif
typedef void Sigfunc(int);
static Sigfunc sigfpe_handler;
static void fpe_reset(Sigfunc *);
static PyObject *fpe_error;
PyMODINIT_FUNC PyInit_fpectl(void);
static PyObject *turnon_sigfpe (PyObject *self,PyObject *args);
static PyObject *turnoff_sigfpe (PyObject *self,PyObject *args);
static PyMethodDef fpectl_methods[] = {
{"turnon_sigfpe", (PyCFunction) turnon_sigfpe, METH_VARARGS},
{"turnoff_sigfpe", (PyCFunction) turnoff_sigfpe, METH_VARARGS},
{0,0}
};
static PyObject *turnon_sigfpe(PyObject *self,PyObject *args)
{
/* Do any architecture-specific one-time only initialization here. */
fpe_reset(sigfpe_handler);
Py_INCREF (Py_None);
return Py_None;
}
static void fpe_reset(Sigfunc *handler)
{
/* Reset the exception handling machinery, and reset the signal
* handler for SIGFPE to the given handler.
*/
/*-- IRIX -----------------------------------------------------------------*/
#if defined(sgi)
/* See man page on handle_sigfpes -- must link with -lfpe
* My usage doesn't follow the man page exactly. Maybe somebody
* else can explain handle_sigfpes to me....
* cc -c -I/usr/local/python/include fpectlmodule.c
* ld -shared -o fpectlmodule.so fpectlmodule.o -lfpe
*/
#include <sigfpe.h>
typedef void user_routine (unsigned[5], int[2]);
typedef void abort_routine (unsigned long);
handle_sigfpes(_OFF, 0,
(user_routine *)0,
_TURN_OFF_HANDLER_ON_ERROR,
NULL);
handle_sigfpes(_ON, _EN_OVERFL | _EN_DIVZERO | _EN_INVALID,
(user_routine *)0,
_ABORT_ON_ERROR,
NULL);
PyOS_setsig(SIGFPE, handler);
/*-- SunOS and Solaris ----------------------------------------------------*/
#elif defined(sun)
/* References: ieee_handler, ieee_sun, ieee_functions, and ieee_flags
man pages (SunOS or Solaris)
cc -c -I/usr/local/python/include fpectlmodule.c
ld -G -o fpectlmodule.so -L/opt/SUNWspro/lib fpectlmodule.o -lsunmath -lm
*/
#include <math.h>
#ifndef _SUNMATH_H
extern void nonstandard_arithmetic(void);
extern int ieee_flags(const char*, const char*, const char*, char **);
extern long ieee_handler(const char*, const char*, sigfpe_handler_type);
#endif
char *mode="exception", *in="all", *out;
(void) nonstandard_arithmetic();
(void) ieee_flags("clearall",mode,in,&out);
(void) ieee_handler("set","common",(sigfpe_handler_type)handler);
PyOS_setsig(SIGFPE, handler);
/*-- HPUX -----------------------------------------------------------------*/
#elif defined(__hppa) || defined(hppa)
/* References: fpsetmask man page */
/* cc -Aa +z -c -I/usr/local/python/include fpectlmodule.c */
/* ld -b -o fpectlmodule.sl fpectlmodule.o -lm */
#include <math.h>
fpsetdefaults();
PyOS_setsig(SIGFPE, handler);
/*-- IBM AIX --------------------------------------------------------------*/
#elif defined(__AIX) || defined(_AIX)
/* References: fp_trap, fp_enable man pages */
#include <fptrap.h>
fp_trap(FP_TRAP_SYNC);
fp_enable(TRP_INVALID | TRP_DIV_BY_ZERO | TRP_OVERFLOW);
PyOS_setsig(SIGFPE, handler);
/*-- DEC ALPHA LINUX ------------------------------------------------------*/
#elif defined(__alpha) && defined(linux)
#include <asm/fpu.h>
unsigned long fp_control =
IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE | IEEE_TRAP_ENABLE_OVF;
ieee_set_fp_control(fp_control);
PyOS_setsig(SIGFPE, handler);
/*-- Cray Unicos ----------------------------------------------------------*/
#elif defined(cray)
/* UNICOS delivers SIGFPE by default, but no matherr */
#ifdef HAS_LIBMSET
libmset(-1);
#endif
PyOS_setsig(SIGFPE, handler);
/*-- FreeBSD ----------------------------------------------------------------*/
#elif defined(__FreeBSD__)
fpresetsticky(fpgetsticky());
fpsetmask(FP_X_INV | FP_X_DZ | FP_X_OFL);
PyOS_setsig(SIGFPE, handler);
/*-- Linux ----------------------------------------------------------------*/
#elif defined(linux)
#ifdef __GLIBC__
#include <fpu_control.h>
#else
#include <i386/fpu_control.h>
#endif
#ifdef _FPU_SETCW
{
fpu_control_t cw = 0x1372;
_FPU_SETCW(cw);
}
#else
__setfpucw(0x1372);
#endif
PyOS_setsig(SIGFPE, handler);
/*-- Microsoft Windows, NT ------------------------------------------------*/
#elif defined(_MSC_VER)
/* Reference: Visual C++ Books Online 4.2,
Run-Time Library Reference, _control87, _controlfp */
#include <float.h>
unsigned int cw = _EM_INVALID | _EM_ZERODIVIDE | _EM_OVERFLOW;
(void)_controlfp(0, cw);
PyOS_setsig(SIGFPE, handler);
/*-- Give Up --------------------------------------------------------------*/
#else
fputs("Operation not implemented\n", stderr);
#endif
}
static PyObject *turnoff_sigfpe(PyObject *self,PyObject *args)
{
#ifdef __FreeBSD__
fpresetsticky(fpgetsticky());
fpsetmask(0);
#else
fputs("Operation not implemented\n", stderr);
#endif
Py_INCREF(Py_None);
return Py_None;
}
static void sigfpe_handler(int signo)
{
fpe_reset(sigfpe_handler);
if(PyFPE_counter) {
longjmp(PyFPE_jbuf, 1);
} else {
Py_FatalError("Unprotected floating point exception");
}
}
static struct PyModuleDef fpectlmodule = {
PyModuleDef_HEAD_INIT,
"fpectl",
NULL,
-1,
fpectl_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC PyInit_fpectl(void)
{
PyObject *m, *d;
m = PyModule_Create(&fpectlmodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
fpe_error = PyErr_NewException("fpectl.error", NULL, NULL);
if (fpe_error != NULL)
PyDict_SetItemString(d, "error", fpe_error);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_fpectl = {
"fpectl",
PyInit_fpectl,
};
| 11,325 | 284 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/binascii.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/assert.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/pyctype.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pystrhex.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/zlib/zlib.h"
/* clang-format off */
PYTHON_PROVIDE("binascii");
PYTHON_PROVIDE("binascii.Error");
PYTHON_PROVIDE("binascii.Incomplete");
PYTHON_PROVIDE("binascii.a2b_base64");
PYTHON_PROVIDE("binascii.a2b_hex");
PYTHON_PROVIDE("binascii.a2b_hqx");
PYTHON_PROVIDE("binascii.a2b_qp");
PYTHON_PROVIDE("binascii.a2b_uu");
PYTHON_PROVIDE("binascii.b2a_base64");
PYTHON_PROVIDE("binascii.b2a_hex");
PYTHON_PROVIDE("binascii.b2a_hqx");
PYTHON_PROVIDE("binascii.b2a_qp");
PYTHON_PROVIDE("binascii.b2a_uu");
PYTHON_PROVIDE("binascii.crc32");
PYTHON_PROVIDE("binascii.crc_hqx");
PYTHON_PROVIDE("binascii.hexlify");
PYTHON_PROVIDE("binascii.rlecode_hqx");
PYTHON_PROVIDE("binascii.rledecode_hqx");
PYTHON_PROVIDE("binascii.unhexlify");
/*
** Routines to represent binary data in ASCII and vice-versa
**
** This module currently supports the following encodings:
** uuencode:
** each line encodes 45 bytes (except possibly the last)
** First char encodes (binary) length, rest data
** each char encodes 6 bits, as follows:
** binary: 01234567 abcdefgh ijklmnop
** ascii: 012345 67abcd efghij klmnop
** ASCII encoding method is "excess-space": 000000 is encoded as ' ', etc.
** short binary data is zero-extended (so the bits are always in the
** right place), this does *not* reflect in the length.
** base64:
** Line breaks are insignificant, but lines are at most 76 chars
** each char encodes 6 bits, in similar order as uucode/hqx. Encoding
** is done via a table.
** Short binary data is filled (in ASCII) with '='.
** hqx:
** File starts with introductory text, real data starts and ends
** with colons.
** Data consists of three similar parts: info, datafork, resourcefork.
** Each part is protected (at the end) with a 16-bit crc
** The binary data is run-length encoded, and then ascii-fied:
** binary: 01234567 abcdefgh ijklmnop
** ascii: 012345 67abcd efghij klmnop
** ASCII encoding is table-driven, see the code.
** Short binary data results in the runt ascii-byte being output with
** the bits in the right place.
**
** While I was reading dozens of programs that encode or decode the formats
** here (documentation? hihi:-) I have formulated Jansen's Observation:
**
** Programs that encode binary data in ASCII are written in
** such a style that they are as unreadable as possible. Devices used
** include unnecessary global variables, burying important tables
** in unrelated sourcefiles, putting functions in include files,
** using seemingly-descriptive variable names for different purposes,
** calls to empty subroutines and a host of others.
**
** I have attempted to break with this tradition, but I guess that that
** does make the performance sub-optimal. Oh well, too bad...
**
** Jack Jansen, CWI, July 1995.
**
** Added support for quoted-printable encoding, based on rfc 1521 et al
** quoted-printable encoding specifies that non printable characters (anything
** below 32 and above 126) be encoded as =XX where XX is the hexadecimal value
** of the character. It also specifies some other behavior to enable 8bit data
** in a mail message with little difficulty (maximum line sizes, protecting
** some cases of whitespace, etc).
**
** Brandon Long, September 2001.
*/
static PyObject *Error;
static PyObject *Incomplete;
/*
** hqx lookup table, ascii->binary.
*/
#define RUNCHAR 0x90
#define DONE 0x7F
#define SKIP 0x7E
#define FAIL 0x7D
static const unsigned char table_a2b_hqx[256] = {
/* ^@ ^A ^B ^C ^D ^E ^F ^G */
/* 0*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
/* \b \t \n ^K ^L \r ^N ^O */
/* 1*/ FAIL, FAIL, SKIP, FAIL, FAIL, SKIP, FAIL, FAIL,
/* ^P ^Q ^R ^S ^T ^U ^V ^W */
/* 2*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
/* ^X ^Y ^Z ^[ ^\ ^] ^^ ^_ */
/* 3*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
/* ! " # $ % & ' */
/* 4*/ FAIL, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,
/* ( ) * + , - . / */
/* 5*/ 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, FAIL, FAIL,
/* 0 1 2 3 4 5 6 7 */
/* 6*/ 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, FAIL,
/* 8 9 : ; < = > ? */
/* 7*/ 0x14, 0x15, DONE, FAIL, FAIL, FAIL, FAIL, FAIL,
/* @ A B C D E F G */
/* 8*/ 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D,
/* H I J K L M N O */
/* 9*/ 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, FAIL,
/* P Q R S T U V W */
/*10*/ 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, FAIL,
/* X Y Z [ \ ] ^ _ */
/*11*/ 0x2C, 0x2D, 0x2E, 0x2F, FAIL, FAIL, FAIL, FAIL,
/* ` a b c d e f g */
/*12*/ 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, FAIL,
/* h i j k l m n o */
/*13*/ 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, FAIL, FAIL,
/* p q r s t u v w */
/*14*/ 0x3D, 0x3E, 0x3F, FAIL, FAIL, FAIL, FAIL, FAIL,
/* x y z { | } ~ ^? */
/*15*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
/*16*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
};
static const unsigned char table_b2a_hqx[] =
"!\"#$%&'()*+,-012345689@ABCDEFGHIJKLMNPQRSTUVXYZ[`abcdefhijklmpqr";
static const char table_a2b_base64[] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1, 0,-1,-1, /* Note PAD->0 */
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
-1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
};
#define BASE64_PAD '='
/* Max binary chunk size; limited only by available memory */
#define BASE64_MAXBIN ((PY_SSIZE_T_MAX - 3) / 2)
static const unsigned char table_b2a_base64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
static const unsigned short crctab_hqx[256] = {
0x0000, 0x1021, 0x2042, 0x3063, 0x4084, 0x50a5, 0x60c6, 0x70e7,
0x8108, 0x9129, 0xa14a, 0xb16b, 0xc18c, 0xd1ad, 0xe1ce, 0xf1ef,
0x1231, 0x0210, 0x3273, 0x2252, 0x52b5, 0x4294, 0x72f7, 0x62d6,
0x9339, 0x8318, 0xb37b, 0xa35a, 0xd3bd, 0xc39c, 0xf3ff, 0xe3de,
0x2462, 0x3443, 0x0420, 0x1401, 0x64e6, 0x74c7, 0x44a4, 0x5485,
0xa56a, 0xb54b, 0x8528, 0x9509, 0xe5ee, 0xf5cf, 0xc5ac, 0xd58d,
0x3653, 0x2672, 0x1611, 0x0630, 0x76d7, 0x66f6, 0x5695, 0x46b4,
0xb75b, 0xa77a, 0x9719, 0x8738, 0xf7df, 0xe7fe, 0xd79d, 0xc7bc,
0x48c4, 0x58e5, 0x6886, 0x78a7, 0x0840, 0x1861, 0x2802, 0x3823,
0xc9cc, 0xd9ed, 0xe98e, 0xf9af, 0x8948, 0x9969, 0xa90a, 0xb92b,
0x5af5, 0x4ad4, 0x7ab7, 0x6a96, 0x1a71, 0x0a50, 0x3a33, 0x2a12,
0xdbfd, 0xcbdc, 0xfbbf, 0xeb9e, 0x9b79, 0x8b58, 0xbb3b, 0xab1a,
0x6ca6, 0x7c87, 0x4ce4, 0x5cc5, 0x2c22, 0x3c03, 0x0c60, 0x1c41,
0xedae, 0xfd8f, 0xcdec, 0xddcd, 0xad2a, 0xbd0b, 0x8d68, 0x9d49,
0x7e97, 0x6eb6, 0x5ed5, 0x4ef4, 0x3e13, 0x2e32, 0x1e51, 0x0e70,
0xff9f, 0xefbe, 0xdfdd, 0xcffc, 0xbf1b, 0xaf3a, 0x9f59, 0x8f78,
0x9188, 0x81a9, 0xb1ca, 0xa1eb, 0xd10c, 0xc12d, 0xf14e, 0xe16f,
0x1080, 0x00a1, 0x30c2, 0x20e3, 0x5004, 0x4025, 0x7046, 0x6067,
0x83b9, 0x9398, 0xa3fb, 0xb3da, 0xc33d, 0xd31c, 0xe37f, 0xf35e,
0x02b1, 0x1290, 0x22f3, 0x32d2, 0x4235, 0x5214, 0x6277, 0x7256,
0xb5ea, 0xa5cb, 0x95a8, 0x8589, 0xf56e, 0xe54f, 0xd52c, 0xc50d,
0x34e2, 0x24c3, 0x14a0, 0x0481, 0x7466, 0x6447, 0x5424, 0x4405,
0xa7db, 0xb7fa, 0x8799, 0x97b8, 0xe75f, 0xf77e, 0xc71d, 0xd73c,
0x26d3, 0x36f2, 0x0691, 0x16b0, 0x6657, 0x7676, 0x4615, 0x5634,
0xd94c, 0xc96d, 0xf90e, 0xe92f, 0x99c8, 0x89e9, 0xb98a, 0xa9ab,
0x5844, 0x4865, 0x7806, 0x6827, 0x18c0, 0x08e1, 0x3882, 0x28a3,
0xcb7d, 0xdb5c, 0xeb3f, 0xfb1e, 0x8bf9, 0x9bd8, 0xabbb, 0xbb9a,
0x4a75, 0x5a54, 0x6a37, 0x7a16, 0x0af1, 0x1ad0, 0x2ab3, 0x3a92,
0xfd2e, 0xed0f, 0xdd6c, 0xcd4d, 0xbdaa, 0xad8b, 0x9de8, 0x8dc9,
0x7c26, 0x6c07, 0x5c64, 0x4c45, 0x3ca2, 0x2c83, 0x1ce0, 0x0cc1,
0xef1f, 0xff3e, 0xcf5d, 0xdf7c, 0xaf9b, 0xbfba, 0x8fd9, 0x9ff8,
0x6e17, 0x7e36, 0x4e55, 0x5e74, 0x2e93, 0x3eb2, 0x0ed1, 0x1ef0,
};
/*[clinic input]
module binascii
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=de89fb46bcaf3fec]*/
/*[python input]
class ascii_buffer_converter(CConverter):
type = 'Py_buffer'
converter = 'ascii_buffer_converter'
impl_by_reference = True
c_default = "{NULL, NULL}"
def cleanup(self):
name = self.name
return "".join(["if (", name, ".obj)\n PyBuffer_Release(&", name, ");\n"])
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=3eb7b63610da92cd]*/
static int
ascii_buffer_converter(PyObject *arg, Py_buffer *buf)
{
if (arg == NULL) {
PyBuffer_Release(buf);
return 1;
}
if (PyUnicode_Check(arg)) {
if (PyUnicode_READY(arg) < 0)
return 0;
if (!PyUnicode_IS_ASCII(arg)) {
PyErr_SetString(PyExc_ValueError,
"string argument should contain only ASCII characters");
return 0;
}
assert(PyUnicode_KIND(arg) == PyUnicode_1BYTE_KIND);
buf->buf = (void *) PyUnicode_1BYTE_DATA(arg);
buf->len = PyUnicode_GET_LENGTH(arg);
buf->obj = NULL;
return 1;
}
if (PyObject_GetBuffer(arg, buf, PyBUF_SIMPLE) != 0) {
PyErr_Format(PyExc_TypeError,
"argument should be bytes, buffer or ASCII string, "
"not '%.100s'", Py_TYPE(arg)->tp_name);
return 0;
}
if (!PyBuffer_IsContiguous(buf, 'C')) {
PyErr_Format(PyExc_TypeError,
"argument should be a contiguous buffer, "
"not '%.100s'", Py_TYPE(arg)->tp_name);
PyBuffer_Release(buf);
return 0;
}
return Py_CLEANUP_SUPPORTED;
}
#include "third_party/python/Modules/clinic/binascii.inc"
/*[clinic input]
binascii.a2b_uu
data: ascii_buffer
/
Decode a line of uuencoded data.
[clinic start generated code]*/
static PyObject *
binascii_a2b_uu_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=e027f8e0b0598742 input=7cafeaf73df63d1c]*/
{
const unsigned char *ascii_data;
unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
PyObject *rv;
Py_ssize_t ascii_len, bin_len;
ascii_data = data->buf;
ascii_len = data->len;
assert(ascii_len >= 0);
/* First byte: binary data length (in bytes) */
bin_len = (*ascii_data++ - ' ') & 077;
ascii_len--;
/* Allocate the buffer */
if ( (rv=PyBytes_FromStringAndSize(NULL, bin_len)) == NULL )
return NULL;
bin_data = (unsigned char *)PyBytes_AS_STRING(rv);
for( ; bin_len > 0 ; ascii_len--, ascii_data++ ) {
/* XXX is it really best to add NULs if there's no more data */
this_ch = (ascii_len > 0) ? *ascii_data : 0;
if ( this_ch == '\n' || this_ch == '\r' || ascii_len <= 0) {
/*
** Whitespace. Assume some spaces got eaten at
** end-of-line. (We check this later)
*/
this_ch = 0;
} else {
/* Check the character for legality
** The 64 in stead of the expected 63 is because
** there are a few uuencodes out there that use
** '`' as zero instead of space.
*/
if ( this_ch < ' ' || this_ch > (' ' + 64)) {
PyErr_SetString(Error, "Illegal char");
Py_DECREF(rv);
return NULL;
}
this_ch = (this_ch - ' ') & 077;
}
/*
** Shift it in on the low end, and see if there's
** a byte ready for output.
*/
leftchar = (leftchar << 6) | (this_ch);
leftbits += 6;
if ( leftbits >= 8 ) {
leftbits -= 8;
*bin_data++ = (leftchar >> leftbits) & 0xff;
leftchar &= ((1 << leftbits) - 1);
bin_len--;
}
}
/*
** Finally, check that if there's anything left on the line
** that it's whitespace only.
*/
while( ascii_len-- > 0 ) {
this_ch = *ascii_data++;
/* Extra '`' may be written as padding in some cases */
if ( this_ch != ' ' && this_ch != ' '+64 &&
this_ch != '\n' && this_ch != '\r' ) {
PyErr_SetString(Error, "Trailing garbage");
Py_DECREF(rv);
return NULL;
}
}
return rv;
}
/*[clinic input]
binascii.b2a_uu
data: Py_buffer
/
Uuencode line of data.
[clinic start generated code]*/
static PyObject *
binascii_b2a_uu_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=0070670e52e4aa6b input=00fdf458ce8b465b]*/
{
unsigned char *ascii_data;
const unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
Py_ssize_t bin_len, out_len;
_PyBytesWriter writer;
_PyBytesWriter_Init(&writer);
bin_data = data->buf;
bin_len = data->len;
if ( bin_len > 45 ) {
/* The 45 is a limit that appears in all uuencode's */
PyErr_SetString(Error, "At most 45 bytes at once");
return NULL;
}
/* We're lazy and allocate to much (fixed up later) */
out_len = 2 + (bin_len + 2) / 3 * 4;
ascii_data = _PyBytesWriter_Alloc(&writer, out_len);
if (ascii_data == NULL)
return NULL;
/* Store the length */
*ascii_data++ = ' ' + (bin_len & 077);
for( ; bin_len > 0 || leftbits != 0 ; bin_len--, bin_data++ ) {
/* Shift the data (or padding) into our buffer */
if ( bin_len > 0 ) /* Data */
leftchar = (leftchar << 8) | *bin_data;
else /* Padding */
leftchar <<= 8;
leftbits += 8;
/* See if there are 6-bit groups ready */
while ( leftbits >= 6 ) {
this_ch = (leftchar >> (leftbits-6)) & 0x3f;
leftbits -= 6;
*ascii_data++ = this_ch + ' ';
}
}
*ascii_data++ = '\n'; /* Append a courtesy newline */
return _PyBytesWriter_Finish(&writer, ascii_data);
}
static int
binascii_find_valid(const unsigned char *s, Py_ssize_t slen, int num)
{
/* Finds & returns the (num+1)th
** valid character for base64, or -1 if none.
*/
int ret = -1;
unsigned char c, b64val;
while ((slen > 0) && (ret == -1)) {
c = *s;
b64val = table_a2b_base64[c & 0x7f];
if ( ((c <= 0x7f) && (b64val != (unsigned char)-1)) ) {
if (num == 0)
ret = *s;
num--;
}
s++;
slen--;
}
return ret;
}
/*[clinic input]
binascii.a2b_base64
data: ascii_buffer
/
Decode a line of base64 data.
[clinic start generated code]*/
static PyObject *
binascii_a2b_base64_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=0628223f19fd3f9b input=5872acf6e1cac243]*/
{
const unsigned char *ascii_data;
unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
Py_ssize_t ascii_len, bin_len;
int quad_pos = 0;
_PyBytesWriter writer;
ascii_data = data->buf;
ascii_len = data->len;
assert(ascii_len >= 0);
if (ascii_len > PY_SSIZE_T_MAX - 3)
return PyErr_NoMemory();
bin_len = ((ascii_len+3)/4)*3; /* Upper bound, corrected later */
_PyBytesWriter_Init(&writer);
/* Allocate the buffer */
bin_data = _PyBytesWriter_Alloc(&writer, bin_len);
if (bin_data == NULL)
return NULL;
for( ; ascii_len > 0; ascii_len--, ascii_data++) {
this_ch = *ascii_data;
if (this_ch > 0x7f ||
this_ch == '\r' || this_ch == '\n' || this_ch == ' ')
continue;
/* Check for pad sequences and ignore
** the invalid ones.
*/
if (this_ch == BASE64_PAD) {
if ( (quad_pos < 2) ||
((quad_pos == 2) &&
(binascii_find_valid(ascii_data, ascii_len, 1)
!= BASE64_PAD)) )
{
continue;
}
else {
/* A pad sequence means no more input.
** We've already interpreted the data
** from the quad at this point.
*/
leftbits = 0;
break;
}
}
this_ch = table_a2b_base64[*ascii_data];
if ( this_ch == (unsigned char) -1 )
continue;
/*
** Shift it in on the low end, and see if there's
** a byte ready for output.
*/
quad_pos = (quad_pos + 1) & 0x03;
leftchar = (leftchar << 6) | (this_ch);
leftbits += 6;
if ( leftbits >= 8 ) {
leftbits -= 8;
*bin_data++ = (leftchar >> leftbits) & 0xff;
leftchar &= ((1 << leftbits) - 1);
}
}
if (leftbits != 0) {
PyErr_SetString(Error, "Incorrect padding");
_PyBytesWriter_Dealloc(&writer);
return NULL;
}
return _PyBytesWriter_Finish(&writer, bin_data);
}
/*[clinic input]
binascii.b2a_base64
data: Py_buffer
*
newline: int(c_default="1") = True
Base64-code line of data.
[clinic start generated code]*/
static PyObject *
binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, int newline)
/*[clinic end generated code: output=4ad62c8e8485d3b3 input=7b2ea6fa38d8924c]*/
{
unsigned char *ascii_data;
const unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
Py_ssize_t bin_len, out_len;
_PyBytesWriter writer;
bin_data = data->buf;
bin_len = data->len;
_PyBytesWriter_Init(&writer);
assert(bin_len >= 0);
if ( bin_len > BASE64_MAXBIN ) {
PyErr_SetString(Error, "Too much data for base64 line");
return NULL;
}
/* We're lazy and allocate too much (fixed up later).
"+2" leaves room for up to two pad characters.
Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */
out_len = bin_len*2 + 2;
if (newline)
out_len++;
ascii_data = _PyBytesWriter_Alloc(&writer, out_len);
if (ascii_data == NULL)
return NULL;
for( ; bin_len > 0 ; bin_len--, bin_data++ ) {
/* Shift the data into our buffer */
leftchar = (leftchar << 8) | *bin_data;
leftbits += 8;
/* See if there are 6-bit groups ready */
while ( leftbits >= 6 ) {
this_ch = (leftchar >> (leftbits-6)) & 0x3f;
leftbits -= 6;
*ascii_data++ = table_b2a_base64[this_ch];
}
}
if ( leftbits == 2 ) {
*ascii_data++ = table_b2a_base64[(leftchar&3) << 4];
*ascii_data++ = BASE64_PAD;
*ascii_data++ = BASE64_PAD;
} else if ( leftbits == 4 ) {
*ascii_data++ = table_b2a_base64[(leftchar&0xf) << 2];
*ascii_data++ = BASE64_PAD;
}
if (newline)
*ascii_data++ = '\n'; /* Append a courtesy newline */
return _PyBytesWriter_Finish(&writer, ascii_data);
}
/*[clinic input]
binascii.a2b_hqx
data: ascii_buffer
/
Decode .hqx coding.
[clinic start generated code]*/
static PyObject *
binascii_a2b_hqx_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=4d6d8c54d54ea1c1 input=0d914c680e0eed55]*/
{
const unsigned char *ascii_data;
unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
PyObject *res;
Py_ssize_t len;
int done = 0;
_PyBytesWriter writer;
ascii_data = data->buf;
len = data->len;
_PyBytesWriter_Init(&writer);
assert(len >= 0);
if (len > PY_SSIZE_T_MAX - 2)
return PyErr_NoMemory();
/* Allocate a string that is too big (fixed later)
Add two to the initial length to prevent interning which
would preclude subsequent resizing. */
bin_data = _PyBytesWriter_Alloc(&writer, len + 2);
if (bin_data == NULL)
return NULL;
for( ; len > 0 ; len--, ascii_data++ ) {
/* Get the byte and look it up */
this_ch = table_a2b_hqx[*ascii_data];
if ( this_ch == SKIP )
continue;
if ( this_ch == FAIL ) {
PyErr_SetString(Error, "Illegal char");
_PyBytesWriter_Dealloc(&writer);
return NULL;
}
if ( this_ch == DONE ) {
/* The terminating colon */
done = 1;
break;
}
/* Shift it into the buffer and see if any bytes are ready */
leftchar = (leftchar << 6) | (this_ch);
leftbits += 6;
if ( leftbits >= 8 ) {
leftbits -= 8;
*bin_data++ = (leftchar >> leftbits) & 0xff;
leftchar &= ((1 << leftbits) - 1);
}
}
if ( leftbits && !done ) {
PyErr_SetString(Incomplete,
"String has incomplete number of bytes");
_PyBytesWriter_Dealloc(&writer);
return NULL;
}
res = _PyBytesWriter_Finish(&writer, bin_data);
if (res == NULL)
return NULL;
return Py_BuildValue("Ni", res, done);
}
/*[clinic input]
binascii.rlecode_hqx
data: Py_buffer
/
Binhex RLE-code binary data.
[clinic start generated code]*/
static PyObject *
binascii_rlecode_hqx_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=393d79338f5f5629 input=e1f1712447a82b09]*/
{
const unsigned char *in_data;
unsigned char *out_data;
unsigned char ch;
Py_ssize_t in, inend, len;
_PyBytesWriter writer;
_PyBytesWriter_Init(&writer);
in_data = data->buf;
len = data->len;
assert(len >= 0);
if (len > PY_SSIZE_T_MAX / 2 - 2)
return PyErr_NoMemory();
/* Worst case: output is twice as big as input (fixed later) */
out_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2);
if (out_data == NULL)
return NULL;
for( in=0; in<len; in++) {
ch = in_data[in];
if ( ch == RUNCHAR ) {
/* RUNCHAR. Escape it. */
*out_data++ = RUNCHAR;
*out_data++ = 0;
} else {
/* Check how many following are the same */
for(inend=in+1;
inend<len && in_data[inend] == ch &&
inend < in+255;
inend++) ;
if ( inend - in > 3 ) {
/* More than 3 in a row. Output RLE. */
*out_data++ = ch;
*out_data++ = RUNCHAR;
*out_data++ = (unsigned char) (inend-in);
in = inend-1;
} else {
/* Less than 3. Output the byte itself */
*out_data++ = ch;
}
}
}
return _PyBytesWriter_Finish(&writer, out_data);
}
/*[clinic input]
binascii.b2a_hqx
data: Py_buffer
/
Encode .hqx data.
[clinic start generated code]*/
static PyObject *
binascii_b2a_hqx_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=d0aa5a704bc9f7de input=9596ebe019fe12ba]*/
{
unsigned char *ascii_data;
const unsigned char *bin_data;
int leftbits = 0;
unsigned char this_ch;
unsigned int leftchar = 0;
Py_ssize_t len;
_PyBytesWriter writer;
bin_data = data->buf;
len = data->len;
_PyBytesWriter_Init(&writer);
assert(len >= 0);
if (len > PY_SSIZE_T_MAX / 2 - 2)
return PyErr_NoMemory();
/* Allocate a buffer that is at least large enough */
ascii_data = _PyBytesWriter_Alloc(&writer, len * 2 + 2);
if (ascii_data == NULL)
return NULL;
for( ; len > 0 ; len--, bin_data++ ) {
/* Shift into our buffer, and output any 6bits ready */
leftchar = (leftchar << 8) | *bin_data;
leftbits += 8;
while ( leftbits >= 6 ) {
this_ch = (leftchar >> (leftbits-6)) & 0x3f;
leftbits -= 6;
*ascii_data++ = table_b2a_hqx[this_ch];
}
}
/* Output a possible runt byte */
if ( leftbits ) {
leftchar <<= (6-leftbits);
*ascii_data++ = table_b2a_hqx[leftchar & 0x3f];
}
return _PyBytesWriter_Finish(&writer, ascii_data);
}
/*[clinic input]
binascii.rledecode_hqx
data: Py_buffer
/
Decode hexbin RLE-coded string.
[clinic start generated code]*/
static PyObject *
binascii_rledecode_hqx_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=9826619565de1c6c input=54cdd49fc014402c]*/
{
const unsigned char *in_data;
unsigned char *out_data;
unsigned char in_byte, in_repeat;
Py_ssize_t in_len;
_PyBytesWriter writer;
in_data = data->buf;
in_len = data->len;
_PyBytesWriter_Init(&writer);
assert(in_len >= 0);
/* Empty string is a special case */
if ( in_len == 0 )
return PyBytes_FromStringAndSize("", 0);
else if (in_len > PY_SSIZE_T_MAX / 2)
return PyErr_NoMemory();
/* Allocate a buffer of reasonable size. Resized when needed */
out_data = _PyBytesWriter_Alloc(&writer, in_len);
if (out_data == NULL)
return NULL;
/* Use overallocation */
writer.overallocate = 1;
/*
** We need two macros here to get/put bytes and handle
** end-of-buffer for input and output strings.
*/
#define INBYTE(b) \
do { \
if ( --in_len < 0 ) { \
PyErr_SetString(Incomplete, ""); \
goto error; \
} \
b = *in_data++; \
} while(0)
/*
** Handle first byte separately (since we have to get angry
** in case of an orphaned RLE code).
*/
INBYTE(in_byte);
if (in_byte == RUNCHAR) {
INBYTE(in_repeat);
/* only 1 byte will be written, but 2 bytes were preallocated:
subtract 1 byte to prevent overallocation */
writer.min_size--;
if (in_repeat != 0) {
/* Note Error, not Incomplete (which is at the end
** of the string only). This is a programmer error.
*/
PyErr_SetString(Error, "Orphaned RLE code at start");
goto error;
}
*out_data++ = RUNCHAR;
} else {
*out_data++ = in_byte;
}
while( in_len > 0 ) {
INBYTE(in_byte);
if (in_byte == RUNCHAR) {
INBYTE(in_repeat);
/* only 1 byte will be written, but 2 bytes were preallocated:
subtract 1 byte to prevent overallocation */
writer.min_size--;
if ( in_repeat == 0 ) {
/* Just an escaped RUNCHAR value */
*out_data++ = RUNCHAR;
} else {
/* Pick up value and output a sequence of it */
in_byte = out_data[-1];
/* enlarge the buffer if needed */
if (in_repeat > 1) {
/* -1 because we already preallocated 1 byte */
out_data = _PyBytesWriter_Prepare(&writer, out_data,
in_repeat - 1);
if (out_data == NULL)
goto error;
}
while ( --in_repeat > 0 )
*out_data++ = in_byte;
}
} else {
/* Normal byte */
*out_data++ = in_byte;
}
}
return _PyBytesWriter_Finish(&writer, out_data);
error:
_PyBytesWriter_Dealloc(&writer);
return NULL;
}
/*[clinic input]
binascii.crc_hqx -> unsigned_int
data: Py_buffer
crc: unsigned_int(bitwise=True)
/
Compute CRC-CCITT incrementally.
[clinic start generated code]*/
static unsigned int
binascii_crc_hqx_impl(PyObject *module, Py_buffer *data, unsigned int crc)
/*[clinic end generated code: output=8ec2a78590d19170 input=f18240ff8c705b79]*/
{
const unsigned char *bin_data;
Py_ssize_t len;
crc &= 0xffff;
bin_data = data->buf;
len = data->len;
while(len-- > 0) {
crc = ((crc<<8)&0xff00) ^ crctab_hqx[(crc>>8)^*bin_data++];
}
return crc;
}
/*[clinic input]
binascii.crc32 -> unsigned_int
data: Py_buffer
crc: unsigned_int(bitwise=True) = 0
/
Compute CRC-32 incrementally.
[clinic start generated code]*/
static unsigned int
binascii_crc32_impl(PyObject *module, Py_buffer *data, unsigned int crc)
/*[clinic end generated code: output=52cf59056a78593b input=bbe340bc99d25aa8]*/
/* This was taken from zlibmodule.c PyZlib_crc32 (but is PY_SSIZE_T_CLEAN) */
{
const Byte *buf;
Py_ssize_t len;
int signed_val;
buf = (Byte*)data->buf;
len = data->len;
signed_val = crc32(crc, buf, len);
return (unsigned int)signed_val & 0xffffffffU;
}
/*[clinic input]
binascii.b2a_hex
data: Py_buffer
/
Hexadecimal representation of binary data.
The return value is a bytes object. This function is also
available as "hexlify()".
[clinic start generated code]*/
static PyObject *
binascii_b2a_hex_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=92fec1a95c9897a0 input=96423cfa299ff3b1]*/
{
return _Py_strhex_bytes((const char *)data->buf, data->len);
}
/*[clinic input]
binascii.hexlify = binascii.b2a_hex
Hexadecimal representation of binary data.
The return value is a bytes object.
[clinic start generated code]*/
static PyObject *
binascii_hexlify_impl(PyObject *module, Py_buffer *data)
/*[clinic end generated code: output=749e95e53c14880c input=2e3afae7f083f061]*/
{
return _Py_strhex_bytes((const char *)data->buf, data->len);
}
static int
to_int(int c)
{
if (Py_ISDIGIT(c))
return c - '0';
else {
if (Py_ISUPPER(c))
c = Py_TOLOWER(c);
if (c >= 'a' && c <= 'f')
return c - 'a' + 10;
}
return -1;
}
/*[clinic input]
binascii.a2b_hex
hexstr: ascii_buffer
/
Binary data of hexadecimal representation.
hexstr must contain an even number of hex digits (upper or lower case).
This function is also available as "unhexlify()".
[clinic start generated code]*/
static PyObject *
binascii_a2b_hex_impl(PyObject *module, Py_buffer *hexstr)
/*[clinic end generated code: output=0cc1a139af0eeecb input=9e1e7f2f94db24fd]*/
{
const char* argbuf;
Py_ssize_t arglen;
PyObject *retval;
char* retbuf;
Py_ssize_t i, j;
argbuf = hexstr->buf;
arglen = hexstr->len;
assert(arglen >= 0);
/* XXX What should we do about strings with an odd length? Should
* we add an implicit leading zero, or a trailing zero? For now,
* raise an exception.
*/
if (arglen % 2) {
PyErr_SetString(Error, "Odd-length string");
return NULL;
}
retval = PyBytes_FromStringAndSize(NULL, (arglen/2));
if (!retval)
return NULL;
retbuf = PyBytes_AS_STRING(retval);
for (i=j=0; i < arglen; i += 2) {
int top = to_int(Py_CHARMASK(argbuf[i]));
int bot = to_int(Py_CHARMASK(argbuf[i+1]));
if (top == -1 || bot == -1) {
PyErr_SetString(Error,
"Non-hexadecimal digit found");
goto finally;
}
retbuf[j++] = (top << 4) + bot;
}
return retval;
finally:
Py_DECREF(retval);
return NULL;
}
/*[clinic input]
binascii.unhexlify = binascii.a2b_hex
Binary data of hexadecimal representation.
hexstr must contain an even number of hex digits (upper or lower case).
[clinic start generated code]*/
static PyObject *
binascii_unhexlify_impl(PyObject *module, Py_buffer *hexstr)
/*[clinic end generated code: output=51a64c06c79629e3 input=dd8c012725f462da]*/
{
return binascii_a2b_hex_impl(module, hexstr);
}
static const int table_hex[128] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,-1,-1, -1,-1,-1,-1,
-1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,10,11,12, 13,14,15,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1
};
#define hexval(c) table_hex[(unsigned int)(c)]
#define MAXLINESIZE 76
/*[clinic input]
binascii.a2b_qp
data: ascii_buffer
header: int(c_default="0") = False
Decode a string of qp-encoded data.
[clinic start generated code]*/
static PyObject *
binascii_a2b_qp_impl(PyObject *module, Py_buffer *data, int header)
/*[clinic end generated code: output=e99f7846cfb9bc53 input=5187a0d3d8e54f3b]*/
{
Py_ssize_t in, out;
char ch;
const unsigned char *ascii_data;
unsigned char *odata;
Py_ssize_t datalen = 0;
PyObject *rv;
ascii_data = data->buf;
datalen = data->len;
/* We allocate the output same size as input, this is overkill.
* The previous implementation used calloc() so we'll zero out the
* memory here too, since PyMem_Malloc() does not guarantee that.
*/
odata = (unsigned char *) PyMem_Malloc(datalen);
if (odata == NULL) {
PyErr_NoMemory();
return NULL;
}
bzero(odata, datalen);
in = out = 0;
while (in < datalen) {
if (ascii_data[in] == '=') {
in++;
if (in >= datalen) break;
/* Soft line breaks */
if ((ascii_data[in] == '\n') || (ascii_data[in] == '\r')) {
if (ascii_data[in] != '\n') {
while (in < datalen && ascii_data[in] != '\n') in++;
}
if (in < datalen) in++;
}
else if (ascii_data[in] == '=') {
/* broken case from broken python qp */
odata[out++] = '=';
in++;
}
else if ((in + 1 < datalen) &&
((ascii_data[in] >= 'A' && ascii_data[in] <= 'F') ||
(ascii_data[in] >= 'a' && ascii_data[in] <= 'f') ||
(ascii_data[in] >= '0' && ascii_data[in] <= '9')) &&
((ascii_data[in+1] >= 'A' && ascii_data[in+1] <= 'F') ||
(ascii_data[in+1] >= 'a' && ascii_data[in+1] <= 'f') ||
(ascii_data[in+1] >= '0' && ascii_data[in+1] <= '9'))) {
/* hexval */
ch = hexval(ascii_data[in]) << 4;
in++;
ch |= hexval(ascii_data[in]);
in++;
odata[out++] = ch;
}
else {
odata[out++] = '=';
}
}
else if (header && ascii_data[in] == '_') {
odata[out++] = ' ';
in++;
}
else {
odata[out] = ascii_data[in];
in++;
out++;
}
}
if ((rv = PyBytes_FromStringAndSize((char *)odata, out)) == NULL) {
PyMem_Free(odata);
return NULL;
}
PyMem_Free(odata);
return rv;
}
static int
to_hex (unsigned char ch, unsigned char *s)
{
unsigned int uvalue = ch;
s[1] = "0123456789ABCDEF"[uvalue % 16];
uvalue = (uvalue / 16);
s[0] = "0123456789ABCDEF"[uvalue % 16];
return 0;
}
/* XXX: This is ridiculously complicated to be backward compatible
* (mostly) with the quopri module. It doesn't re-create the quopri
* module bug where text ending in CRLF has the CR encoded */
/*[clinic input]
binascii.b2a_qp
data: Py_buffer
quotetabs: int(c_default="0") = False
istext: int(c_default="1") = True
header: int(c_default="0") = False
Encode a string using quoted-printable encoding.
On encoding, when istext is set, newlines are not encoded, and white
space at end of lines is. When istext is not set, \r and \n (CR/LF)
are both encoded. When quotetabs is set, space and tabs are encoded.
[clinic start generated code]*/
static PyObject *
binascii_b2a_qp_impl(PyObject *module, Py_buffer *data, int quotetabs,
int istext, int header)
/*[clinic end generated code: output=e9884472ebb1a94c input=7f2a9aaa008e92b2]*/
{
Py_ssize_t in, out;
const unsigned char *databuf;
unsigned char *odata;
Py_ssize_t datalen = 0, odatalen = 0;
PyObject *rv;
unsigned int linelen = 0;
unsigned char ch;
int crlf = 0;
const unsigned char *p;
databuf = data->buf;
datalen = data->len;
/* See if this string is using CRLF line ends */
/* XXX: this function has the side effect of converting all of
* the end of lines to be the same depending on this detection
* here */
p = (const unsigned char *) memchr(databuf, '\n', datalen);
if ((p != NULL) && (p > databuf) && (*(p-1) == '\r'))
crlf = 1;
/* First, scan to see how many characters need to be encoded */
in = 0;
while (in < datalen) {
Py_ssize_t delta = 0;
if ((databuf[in] > 126) ||
(databuf[in] == '=') ||
(header && databuf[in] == '_') ||
((databuf[in] == '.') && (linelen == 0) &&
(in + 1 == datalen || databuf[in+1] == '\n' ||
databuf[in+1] == '\r' || databuf[in+1] == 0)) ||
(!istext && ((databuf[in] == '\r') || (databuf[in] == '\n'))) ||
((databuf[in] == '\t' || databuf[in] == ' ') && (in + 1 == datalen)) ||
((databuf[in] < 33) &&
(databuf[in] != '\r') && (databuf[in] != '\n') &&
(quotetabs || ((databuf[in] != '\t') && (databuf[in] != ' ')))))
{
if ((linelen + 3) >= MAXLINESIZE) {
linelen = 0;
if (crlf)
delta += 3;
else
delta += 2;
}
linelen += 3;
delta += 3;
in++;
}
else {
if (istext &&
((databuf[in] == '\n') ||
((in+1 < datalen) && (databuf[in] == '\r') &&
(databuf[in+1] == '\n'))))
{
linelen = 0;
/* Protect against whitespace on end of line */
if (in && ((databuf[in-1] == ' ') || (databuf[in-1] == '\t')))
delta += 2;
if (crlf)
delta += 2;
else
delta += 1;
if (databuf[in] == '\r')
in += 2;
else
in++;
}
else {
if ((in + 1 != datalen) &&
(databuf[in+1] != '\n') &&
(linelen + 1) >= MAXLINESIZE) {
linelen = 0;
if (crlf)
delta += 3;
else
delta += 2;
}
linelen++;
delta++;
in++;
}
}
if (PY_SSIZE_T_MAX - delta < odatalen) {
PyErr_NoMemory();
return NULL;
}
odatalen += delta;
}
/* We allocate the output same size as input, this is overkill.
* The previous implementation used calloc() so we'll zero out the
* memory here too, since PyMem_Malloc() does not guarantee that.
*/
odata = (unsigned char *) PyMem_Malloc(odatalen);
if (odata == NULL) {
PyErr_NoMemory();
return NULL;
}
bzero(odata, odatalen);
in = out = linelen = 0;
while (in < datalen) {
if ((databuf[in] > 126) ||
(databuf[in] == '=') ||
(header && databuf[in] == '_') ||
((databuf[in] == '.') && (linelen == 0) &&
(in + 1 == datalen || databuf[in+1] == '\n' ||
databuf[in+1] == '\r' || databuf[in+1] == 0)) ||
(!istext && ((databuf[in] == '\r') || (databuf[in] == '\n'))) ||
((databuf[in] == '\t' || databuf[in] == ' ') && (in + 1 == datalen)) ||
((databuf[in] < 33) &&
(databuf[in] != '\r') && (databuf[in] != '\n') &&
(quotetabs || ((databuf[in] != '\t') && (databuf[in] != ' ')))))
{
if ((linelen + 3 )>= MAXLINESIZE) {
odata[out++] = '=';
if (crlf) odata[out++] = '\r';
odata[out++] = '\n';
linelen = 0;
}
odata[out++] = '=';
to_hex(databuf[in], &odata[out]);
out += 2;
in++;
linelen += 3;
}
else {
if (istext &&
((databuf[in] == '\n') ||
((in+1 < datalen) && (databuf[in] == '\r') &&
(databuf[in+1] == '\n'))))
{
linelen = 0;
/* Protect against whitespace on end of line */
if (out && ((odata[out-1] == ' ') || (odata[out-1] == '\t'))) {
ch = odata[out-1];
odata[out-1] = '=';
to_hex(ch, &odata[out]);
out += 2;
}
if (crlf) odata[out++] = '\r';
odata[out++] = '\n';
if (databuf[in] == '\r')
in += 2;
else
in++;
}
else {
if ((in + 1 != datalen) &&
(databuf[in+1] != '\n') &&
(linelen + 1) >= MAXLINESIZE) {
odata[out++] = '=';
if (crlf) odata[out++] = '\r';
odata[out++] = '\n';
linelen = 0;
}
linelen++;
if (header && databuf[in] == ' ') {
odata[out++] = '_';
in++;
}
else {
odata[out++] = databuf[in++];
}
}
}
}
if ((rv = PyBytes_FromStringAndSize((char *)odata, out)) == NULL) {
PyMem_Free(odata);
return NULL;
}
PyMem_Free(odata);
return rv;
}
/* List of functions defined in the module */
static struct PyMethodDef binascii_module_methods[] = {
BINASCII_A2B_UU_METHODDEF
BINASCII_B2A_UU_METHODDEF
BINASCII_A2B_BASE64_METHODDEF
BINASCII_B2A_BASE64_METHODDEF
BINASCII_A2B_HQX_METHODDEF
BINASCII_B2A_HQX_METHODDEF
BINASCII_A2B_HEX_METHODDEF
BINASCII_B2A_HEX_METHODDEF
BINASCII_HEXLIFY_METHODDEF
BINASCII_UNHEXLIFY_METHODDEF
BINASCII_RLECODE_HQX_METHODDEF
BINASCII_RLEDECODE_HQX_METHODDEF
BINASCII_CRC_HQX_METHODDEF
BINASCII_CRC32_METHODDEF
BINASCII_A2B_QP_METHODDEF
BINASCII_B2A_QP_METHODDEF
{NULL, NULL} /* sentinel */
};
/* Initialization function for the module (*must* be called PyInit_binascii) */
PyDoc_STRVAR(doc_binascii, "Conversion between binary data and ASCII");
static struct PyModuleDef binasciimodule = {
PyModuleDef_HEAD_INIT,
"binascii",
doc_binascii,
-1,
binascii_module_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_binascii(void)
{
PyObject *m, *d;
/* Create the module and add the functions */
m = PyModule_Create(&binasciimodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
Error = PyErr_NewException("binascii.Error", PyExc_ValueError, NULL);
PyDict_SetItemString(d, "Error", Error);
Incomplete = PyErr_NewException("binascii.Incomplete", NULL, NULL);
PyDict_SetItemString(d, "Incomplete", Incomplete);
if (PyErr_Occurred()) {
Py_DECREF(m);
m = NULL;
}
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_binascii = {
"binascii",
PyInit_binascii,
};
| 46,870 | 1,483 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_hashmbedtls.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Copyright 2021 Justine Alexandra Roberts Tunney â
â â
â Copying of this file is authorized only if (1) you are Justine Tunney, â
â or (2) you make absolutely no changes to your copy. â
â â
â THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL â
â WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED â
â WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE â
â AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL â
â DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR â
â PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER â
â TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR â
â PERFORMANCE OF THIS SOFTWARE. â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/calls/calls.h"
#include "libc/log/backtrace.internal.h"
#include "libc/macros.internal.h"
#include "libc/runtime/runtime.h"
#include "libc/stdio/stdio.h"
#include "libc/str/str.h"
#include "third_party/mbedtls/error.h"
#include "third_party/mbedtls/md.h"
#include "third_party/mbedtls/pkcs5.h"
#include "third_party/python/Include/Python.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pystrhex.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/hashlib.h"
/* clang-format off */
PYTHON_PROVIDE("_hashlib");
PYTHON_PROVIDE("_hashlib.HASH");
PYTHON_PROVIDE("_hashlib.__doc__");
PYTHON_PROVIDE("_hashlib.__loader__");
PYTHON_PROVIDE("_hashlib.__name__");
PYTHON_PROVIDE("_hashlib.__package__");
PYTHON_PROVIDE("_hashlib.__spec__");
PYTHON_PROVIDE("_hashlib.new");
PYTHON_PROVIDE("_hashlib.pbkdf2_hmac");
PYTHON_PROVIDE("_hashlib.mbedtls_md5");
PYTHON_PROVIDE("_hashlib.mbedtls_md_meth_names");
PYTHON_PROVIDE("_hashlib.mbedtls_sha1");
PYTHON_PROVIDE("_hashlib.mbedtls_sha224");
PYTHON_PROVIDE("_hashlib.mbedtls_sha256");
PYTHON_PROVIDE("_hashlib.mbedtls_sha384");
PYTHON_PROVIDE("_hashlib.mbedtls_sha512");
struct Hasher {
PyObject_HEAD
PyObject *name;
mbedtls_md_context_t ctx;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
};
static PyTypeObject hasher_type;
static const PyObject *CONST_MD5_name_obj;
static const PyObject *CONST_SHA1_name_obj;
static const PyObject *CONST_SHA224_name_obj;
static const PyObject *CONST_SHA256_name_obj;
static const PyObject *CONST_SHA384_name_obj;
static const PyObject *CONST_SHA512_name_obj;
static const PyObject *CONST_BLAKE2B256_name_obj;
static PyObject *
SetMbedtlsError(PyObject *exc, int rc)
{
char b[128];
stpcpy(b, "MBEDTLS - ");
mbedtls_strerror(rc, b + 10, sizeof(b) - 10);
PyErr_SetString(exc, b);
return NULL;
}
static struct Hasher *
hasher_new(PyObject *name)
{
struct Hasher *self;
if ((self = PyObject_New(struct Hasher, &hasher_type))) {
mbedtls_md_init(&self->ctx);
Py_INCREF(name);
self->name = name;
#ifdef WITH_THREAD
self->lock = 0;
#endif
}
return self;
}
static int
hasher_hash(struct Hasher *self, const void *p, Py_ssize_t n)
{
return mbedtls_md_update(&self->ctx, p, n);
}
static void
hasher_dealloc(struct Hasher *self)
{
#ifdef WITH_THREAD
if (self->lock)
PyThread_free_lock(self->lock);
#endif
mbedtls_md_free(&self->ctx);
Py_XDECREF(self->name);
PyObject_Del(self);
}
static int
mbedtls_md_clone_locked(mbedtls_md_context_t *new_ctx_p, struct Hasher *self)
{
int rc;
ENTER_HASHLIB(self);
if (!(rc = mbedtls_md_setup(new_ctx_p, self->ctx.md_info, 0))) {
rc = mbedtls_md_clone(new_ctx_p, &self->ctx);
}
LEAVE_HASHLIB(self);
return rc;
}
PyDoc_STRVAR(hashlib_copy__doc__, "\
copy($self, /)\n\
--\n\
\n\
Return a copy of the hash object.");
static PyObject *
hashlib_copy(struct Hasher *self, PyObject *unused)
{
int rc;
struct Hasher *newobj;
if ((newobj = hasher_new(self->name))) {
if ((rc = mbedtls_md_clone_locked(&newobj->ctx, self))) {
hasher_dealloc(newobj);
return SetMbedtlsError(PyExc_ValueError, rc);
}
}
return (PyObject *)newobj;
}
PyDoc_STRVAR(hashlib_digest__doc__, "\
digest($self, /)\n\
--\n\
\n\
Return the digest value as a bytes object.");
static PyObject *
hashlib_digest(struct Hasher *self, PyObject *unused)
{
int rc;
PyObject *retval;
unsigned int digest_size;
mbedtls_md_context_t temp_ctx;
unsigned char digest[MBEDTLS_MD_MAX_SIZE];
mbedtls_md_init(&temp_ctx);
if (!(rc = mbedtls_md_clone_locked(&temp_ctx, self))) {
digest_size = mbedtls_md_get_size(temp_ctx.md_info);
if (!(rc = mbedtls_md_finish(&temp_ctx, digest))) {
retval = PyBytes_FromStringAndSize((const char *)digest, digest_size);
} else {
retval = SetMbedtlsError(PyExc_ValueError, rc);
}
} else {
retval = SetMbedtlsError(PyExc_ValueError, rc);
}
mbedtls_md_free(&temp_ctx);
return retval;
}
PyDoc_STRVAR(hashlib_hexdigest__doc__, "\
hexdigest($self, /)\n\
--\n\
\n\
Return the digest value as a string of hexadecimal digits.");
static PyObject *
hashlib_hexdigest(struct Hasher *self, PyObject *unused)
{
int rc;
PyObject *retval;
unsigned int digest_size;
mbedtls_md_context_t temp_ctx;
unsigned char digest[MBEDTLS_MD_MAX_SIZE];
mbedtls_md_init(&temp_ctx);
if (!(rc = mbedtls_md_clone_locked(&temp_ctx, self))) {
digest_size = mbedtls_md_get_size(temp_ctx.md_info);
if (!(rc = mbedtls_md_finish(&temp_ctx, digest))) {
retval = _Py_strhex((const char *)digest, digest_size);
} else {
retval = SetMbedtlsError(PyExc_ValueError, rc);
}
} else {
retval = SetMbedtlsError(PyExc_ValueError, rc);
}
mbedtls_md_free(&temp_ctx);
return retval;
}
PyDoc_STRVAR(hashlib_update__doc__, "\
update($self, bytes, /)\n\
--\n\
\n\
Update this hash object's state with the provided string.");
static PyObject *
hashlib_update(struct Hasher *self, PyObject *args)
{
Py_buffer data;
if (!PyArg_ParseTuple(args, "y*:update", &data)) return 0;
hasher_hash(self, data.buf, data.len);
PyBuffer_Release(&data);
Py_RETURN_NONE;
}
static PyMethodDef hashlib_methods[] = {
{"update", (PyCFunction)hashlib_update, METH_VARARGS, hashlib_update__doc__},
{"digest", (PyCFunction)hashlib_digest, METH_NOARGS, hashlib_digest__doc__},
{"hexdigest", (PyCFunction)hashlib_hexdigest, METH_NOARGS, hashlib_hexdigest__doc__},
{"copy", (PyCFunction)hashlib_copy, METH_NOARGS, hashlib_copy__doc__},
{0}
};
static PyObject *
hashlib_get_block_size(struct Hasher *self, void *closure)
{
return PyLong_FromLong(mbedtls_md_get_block_size(self->ctx.md_info));
}
static PyObject *
hashlib_get_digest_size(struct Hasher *self, void *closure)
{
return PyLong_FromLong(mbedtls_md_get_size(self->ctx.md_info));
}
static PyMemberDef hashlib_members[] = {
{"name", T_OBJECT, offsetof(struct Hasher, name), READONLY, PyDoc_STR("algorithm name.")},
{0}
};
static PyGetSetDef hashlib_getseters[] = {
{"digest_size", (getter)hashlib_get_digest_size, NULL, NULL, NULL},
{"block_size", (getter)hashlib_get_block_size, NULL, NULL, NULL},
{0}
};
static PyObject *
hasher_repr(struct Hasher *self)
{
return PyUnicode_FromFormat("<%U HASH object @ %p>", self->name, self);
}
PyDoc_STRVAR(hashtype_doc,
"A hash represents the object used to calculate a checksum of a\n\
string of information.\n\
\n\
Attributes:\n\
\n\
name -- the hash algorithm being used by this object\n\
digest_size -- number of bytes in this hashes output\n");
static PyTypeObject hasher_type = {
PyVarObject_HEAD_INIT(NULL, 0)
/*tp_name*/ "_hashlib.HASH",
/*tp_basicsize*/ sizeof(struct Hasher),
/*tp_itemsize*/ 0,
/*tp_dealloc*/ (destructor)hasher_dealloc,
/*tp_print*/ 0,
/*tp_getattr*/ 0,
/*tp_setattr*/ 0,
/*tp_reserved*/ 0,
/*tp_repr*/ (reprfunc)hasher_repr,
/*tp_as_number*/ 0,
/*tp_as_sequence*/ 0,
/*tp_as_mapping*/ 0,
/*tp_hash*/ 0,
/*tp_call*/ 0,
/*tp_str*/ 0,
/*tp_getattro*/ 0,
/*tp_setattro*/ 0,
/*tp_as_buffer*/ 0,
/*tp_flags*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
/*tp_doc*/ hashtype_doc,
/*tp_traverse*/ 0,
/*tp_clear*/ 0,
/*tp_richcompare*/ 0,
/*tp_weaklistoffset*/ 0,
/*tp_iter*/ 0,
/*tp_iternext*/ 0,
/*tp_methods*/ hashlib_methods,
/*tp_members*/ hashlib_members,
/*tp_getset*/ hashlib_getseters,
/*tp_base*/ 0,
/*tp_dict*/ 0,
/*tp_descr_get*/ 0,
/*tp_descr_set*/ 0,
/*tp_dictoffset*/ 0,
};
static PyObject *
NewHasher(PyObject *name_obj,
const mbedtls_md_info_t *digest,
void *p, Py_ssize_t n)
{
int rc;
struct Hasher *self;
if (!digest) {
PyErr_SetString(PyExc_ValueError, "unsupported hash type");
return NULL;
}
if (!(self = hasher_new(name_obj))) return 0;
if ((rc = mbedtls_md_setup(&self->ctx, digest, 0)) ||
(rc = mbedtls_md_starts(&self->ctx))) {
SetMbedtlsError(PyExc_ValueError, rc);
Py_DECREF(self);
return NULL;
}
if (n) {
if (n >= HASHLIB_GIL_MINSIZE) {
Py_BEGIN_ALLOW_THREADS
hasher_hash(self, p, n);
Py_END_ALLOW_THREADS
} else {
hasher_hash(self, p, n);
}
}
return (PyObject *)self;
}
PyDoc_STRVAR(hashlib_new__doc__,
"new($module, name, string=b'')\n\
--\n\
\n\
Return a new hash object using the named algorithm.\n\
An optional string argument may be provided and will be\n\
automatically hashed.\n\
\n\
The MD5 and SHA1 algorithms are always supported.\n");
static PyObject *
hashlib_new(PyObject *self, PyObject *args, PyObject *kwdict)
{
char *name;
PyObject *res;
Py_buffer data = {0};
PyObject *name_obj = 0;
static char *kwlist[] = {"name", "string", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "O|y*:new", kwlist,
&name_obj, &data)) {
return NULL;
}
if (!PyArg_Parse(name_obj, "s", &name)) {
PyErr_SetString(PyExc_TypeError, "name must be a string");
PyBuffer_Release(&data);
return NULL;
}
res = NewHasher(name_obj, mbedtls_md_info_from_string(name),
data.buf, data.len);
PyBuffer_Release(&data);
return res;
}
static int
pbkdf2(const mbedtls_md_info_t *digest,
const void *pass, size_t passlen,
const void *salt, size_t saltlen,
size_t c, size_t dklen, void *dk)
{
int rc;
mbedtls_md_context_t ctx;
mbedtls_md_init(&ctx);
if (!(rc = mbedtls_md_setup(&ctx, digest, 1))) {
rc = mbedtls_pkcs5_pbkdf2_hmac(
&ctx, pass, passlen, salt, saltlen, c, dklen, dk);
}
mbedtls_md_free(&ctx);
return rc;
}
PyDoc_STRVAR(pbkdf2_hmac__doc__,
"pbkdf2_hmac($module, hash_name, password, salt, iterations, dklen=None)\n\
--\n\
\n\
Password based key derivation function 2 (PKCS #5 v2.o) with HMAC as\n\
pseudorandom function.");
static PyObject *
pbkdf2_hmac(PyObject *self, PyObject *args, PyObject *kwdict)
{
static char *kwlist[] = {
"hash_name",
"password",
"salt",
"iterations",
"dklen",
NULL,
};
int rc;
char *name, *key;
Py_buffer password, salt;
long iterations, dklen;
PyObject *key_obj = NULL;
PyObject *dklen_obj = Py_None;
const mbedtls_md_info_t *digest;
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "sy*y*l|O:pbkdf2_hmac",
kwlist, &name, &password, &salt,
&iterations, &dklen_obj)) {
return NULL;
}
digest = mbedtls_md_info_from_string(name);
if (digest == NULL) {
PyErr_SetString(PyExc_ValueError, "unsupported hash type");
goto end;
}
if (password.len > INT_MAX) {
PyErr_SetString(PyExc_OverflowError,
"password is too long.");
goto end;
}
if (salt.len > INT_MAX) {
PyErr_SetString(PyExc_OverflowError,
"salt is too long.");
goto end;
}
if (iterations < 1) {
PyErr_SetString(PyExc_ValueError,
"iteration value must be greater than 0.");
goto end;
}
if (iterations > INT_MAX) {
PyErr_SetString(PyExc_OverflowError,
"iteration value is too great.");
goto end;
}
if (dklen_obj == Py_None) {
dklen = mbedtls_md_get_size(digest);
} else {
dklen = PyLong_AsLong(dklen_obj);
if ((dklen == -1) && PyErr_Occurred()) {
goto end;
}
}
if (dklen < 1) {
PyErr_SetString(PyExc_ValueError,
"key length must be greater than 0.");
goto end;
}
if (dklen > INT_MAX) {
/* INT_MAX is always smaller than dkLen max (2^32 - 1) * hLen */
PyErr_SetString(PyExc_OverflowError,
"key length is too great.");
goto end;
}
key_obj = PyBytes_FromStringAndSize(NULL, dklen);
if (key_obj == NULL) {
goto end;
}
key = PyBytes_AS_STRING(key_obj);
Py_BEGIN_ALLOW_THREADS
rc = pbkdf2(digest, password.buf, password.len,
salt.buf, salt.len, iterations, dklen, key);
Py_END_ALLOW_THREADS
if (rc) {
Py_CLEAR(key_obj);
SetMbedtlsError(PyExc_ValueError, rc);
goto end;
}
end:
PyBuffer_Release(&password);
PyBuffer_Release(&salt);
return key_obj;
}
static PyObject *
GenerateHashNameList(void)
{
int i;
char *s;
uint8_t *p;
PyObject *set, *name;
if ((set = PyFrozenSet_New(0))) {
for (p = mbedtls_md_list(); *p != MBEDTLS_MD_NONE; ++p) {
s = strdup(mbedtls_md_info_from_type(*p)->name);
for (i = 0; s[i]; ++i) s[i] = tolower(s[i]);
name = PyUnicode_FromString(s);
PySet_Add(set, name);
Py_DECREF(name);
free(s);
}
}
return set;
}
#define GEN_CONSTRUCTOR(NAME, STRNAME) \
static PyObject * \
hashlib_new_ ## NAME (PyObject *self, PyObject *args) \
{ \
PyObject *ret; \
Py_buffer data = {0}; \
if (!PyArg_ParseTuple(args, "|y*:" STRNAME, &data)) return 0; \
ret = NewHasher(CONST_ ## NAME ## _name_obj, \
mbedtls_md_info_from_type(MBEDTLS_MD_ ## NAME), \
data.buf, data.len); \
PyBuffer_Release(&data); \
return ret; \
}
#define CONSTRUCTOR_METH_DEF(NAME, STRNAME) \
{"mbedtls_" STRNAME, (PyCFunction)hashlib_new_ ## NAME, METH_VARARGS,\
PyDoc_STR("mbedtls_" STRNAME "($module, string=b'')\n--\n\n" \
"Returns a " STRNAME " hash object; optionally " \
"initialized with a string")}
#define INIT_CONSTRUCTOR_CONSTANTS(NAME, STRNAME) \
if (CONST_ ## NAME ## _name_obj == NULL) { \
CONST_ ## NAME ## _name_obj = PyUnicode_FromString(#NAME); \
}
GEN_CONSTRUCTOR(MD5, "md5")
GEN_CONSTRUCTOR(SHA1, "sha1")
GEN_CONSTRUCTOR(SHA224, "sha224")
GEN_CONSTRUCTOR(SHA256, "sha256")
GEN_CONSTRUCTOR(SHA384, "sha384")
GEN_CONSTRUCTOR(SHA512, "sha512")
GEN_CONSTRUCTOR(BLAKE2B256, "blake2b256")
static struct PyMethodDef hashlib_functions[] = {
{"new", (PyCFunction)hashlib_new, METH_VARARGS|METH_KEYWORDS, hashlib_new__doc__},
{"pbkdf2_hmac", (PyCFunction)pbkdf2_hmac, METH_VARARGS|METH_KEYWORDS, pbkdf2_hmac__doc__},
CONSTRUCTOR_METH_DEF(MD5, "md5"),
CONSTRUCTOR_METH_DEF(SHA1, "sha1"),
CONSTRUCTOR_METH_DEF(SHA224, "sha224"),
CONSTRUCTOR_METH_DEF(SHA256, "sha256"),
CONSTRUCTOR_METH_DEF(SHA384, "sha384"),
CONSTRUCTOR_METH_DEF(SHA512, "sha512"),
CONSTRUCTOR_METH_DEF(BLAKE2B256, "blake2b256"),
{0}
};
static struct PyModuleDef _hashlibmodule = {
PyModuleDef_HEAD_INIT,
"_hashlib",
NULL,
-1,
hashlib_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__hashlib(void)
{
PyObject *m, *mbedtls_md_meth_names;
Py_TYPE(&hasher_type) = &PyType_Type;
if (PyType_Ready(&hasher_type) < 0) return 0;
if (!(m = PyModule_Create(&_hashlibmodule))) return 0;
if (!(mbedtls_md_meth_names = GenerateHashNameList())) {
Py_DECREF(m);
return NULL;
}
if (PyModule_AddObject(m, "mbedtls_md_meth_names", mbedtls_md_meth_names)) {
Py_DECREF(m);
return NULL;
}
Py_INCREF((PyObject *)&hasher_type);
PyModule_AddObject(m, "HASH", (PyObject *)&hasher_type);
INIT_CONSTRUCTOR_CONSTANTS(MD5, "md5")
INIT_CONSTRUCTOR_CONSTANTS(SHA1, "sha1")
INIT_CONSTRUCTOR_CONSTANTS(SHA224, "sha224")
INIT_CONSTRUCTOR_CONSTANTS(SHA256, "sha256")
INIT_CONSTRUCTOR_CONSTANTS(SHA384, "sha384")
INIT_CONSTRUCTOR_CONSTANTS(SHA512, "sha512")
INIT_CONSTRUCTOR_CONSTANTS(BLAKE2B256, "blake2b256")
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__hashlib = {
"_hashlib",
PyInit__hashlib,
};
| 18,777 | 589 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/timemodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/calls/calls.h"
#include "libc/calls/struct/rusage.h"
#include "libc/calls/struct/timespec.h"
#include "libc/calls/struct/tms.h"
#include "libc/dce.h"
#include "libc/errno.h"
#include "libc/fmt/conv.h"
#include "libc/nt/accounting.h"
#include "libc/nt/runtime.h"
#include "libc/runtime/clktck.h"
#include "libc/sock/select.h"
#include "libc/sysv/consts/clock.h"
#include "libc/sysv/consts/rusage.h"
#include "libc/time/struct/tm.h"
#include "libc/time/time.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/namespaceobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pytime.h"
#include "third_party/python/Include/structseq.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
PYTHON_PROVIDE("time");
PYTHON_PROVIDE("time.CLOCK_MONOTONIC");
PYTHON_PROVIDE("time.CLOCK_MONOTONIC_RAW");
PYTHON_PROVIDE("time.CLOCK_PROCESS_CPUTIME_ID");
PYTHON_PROVIDE("time.CLOCK_REALTIME");
PYTHON_PROVIDE("time.CLOCK_THREAD_CPUTIME_ID");
PYTHON_PROVIDE("time._STRUCT_TM_ITEMS");
PYTHON_PROVIDE("time.altzone");
PYTHON_PROVIDE("time.asctime");
PYTHON_PROVIDE("time.clock");
PYTHON_PROVIDE("time.clock_getres");
PYTHON_PROVIDE("time.clock_gettime");
PYTHON_PROVIDE("time.ctime");
PYTHON_PROVIDE("time.daylight");
PYTHON_PROVIDE("time.get_clock_info");
PYTHON_PROVIDE("time.gmtime");
PYTHON_PROVIDE("time.localtime");
PYTHON_PROVIDE("time.mktime");
PYTHON_PROVIDE("time.monotonic");
PYTHON_PROVIDE("time.perf_counter");
PYTHON_PROVIDE("time.process_time");
PYTHON_PROVIDE("time.sleep");
PYTHON_PROVIDE("time.strftime");
PYTHON_PROVIDE("time.strptime");
PYTHON_PROVIDE("time.struct_time");
PYTHON_PROVIDE("time.time");
PYTHON_PROVIDE("time.timezone");
PYTHON_PROVIDE("time.tzname");
PYTHON_PROVIDE("time.tzset");
PYTHON_YOINK("_strptime");
typedef int clockid_t;
#undef HAVE_CLOCK_SETTIME
/* Forward declarations */
static int pysleep(_PyTime_t);
static PyObject *floattime(_Py_clock_info_t *info);
static PyObject *
_PyFloat_FromPyTime(_PyTime_t t)
{
double d = _PyTime_AsSecondsDouble(t);
return PyFloat_FromDouble(d);
}
static PyObject *
time_time(PyObject *self, PyObject *unused)
{
return floattime(NULL);
}
PyDoc_STRVAR(time_doc,
"time() -> floating point number\n\
\n\
Return the current time in seconds since the Epoch.\n\
Fractions of a second may be present if the system clock provides them.");
static PyObject *
time_time_ns(PyObject *self, PyObject *unused)
{
_PyTime_t t;
if (_PyTime_GetSystemClockWithInfo(&t, 0)) return 0;
return _PyTime_AsNanosecondsObject(t);
}
PyDoc_STRVAR(time_ns_doc,
"time_ns($module)\n\
\n\
Return the current time in nanoseconds since the Epoch.");
#ifdef HAVE_CLOCK
static PyObject *
floatclock(_Py_clock_info_t *info)
{
clock_t value;
value = clock();
if (value == (clock_t)-1) {
PyErr_SetString(PyExc_RuntimeError,
"the processor time used is not available "
"or its value cannot be represented");
return NULL;
}
if (info) {
info->implementation = "clock()";
info->resolution = 1 / (double)CLOCKS_PER_SEC;
info->monotonic = 1;
info->adjustable = 0;
}
return PyFloat_FromDouble((double)value / CLOCKS_PER_SEC);
}
#endif /* HAVE_CLOCK */
#ifdef MS_WINDOWS
#define WIN32_PERF_COUNTER
/* Win32 has better clock replacement; we have our own version, due to Mark
Hammond and Tim Peters */
static PyObject*
win_perf_counter(_Py_clock_info_t *info)
{
static LONGLONG cpu_frequency = 0;
static LONGLONG ctrStart;
LARGE_INTEGER now;
double diff;
if (cpu_frequency == 0) {
LARGE_INTEGER freq;
QueryPerformanceCounter(&now);
ctrStart = now.QuadPart;
if (!QueryPerformanceFrequency(&freq) || freq.QuadPart == 0) {
PyErr_SetFromWindowsErr(0);
return NULL;
}
cpu_frequency = freq.QuadPart;
}
QueryPerformanceCounter(&now);
diff = (double)(now.QuadPart - ctrStart);
if (info) {
info->implementation = "QueryPerformanceCounter()";
info->resolution = 1.0 / (double)cpu_frequency;
info->monotonic = 1;
info->adjustable = 0;
}
return PyFloat_FromDouble(diff / (double)cpu_frequency);
}
#endif /* MS_WINDOWS */
#if defined(WIN32_PERF_COUNTER) || defined(HAVE_CLOCK)
#define PYCLOCK
static PyObject*
pyclock(_Py_clock_info_t *info)
{
#ifdef WIN32_PERF_COUNTER
return win_perf_counter(info);
#else
return floatclock(info);
#endif
}
static PyObject *
time_clock(PyObject *self, PyObject *unused)
{
return pyclock(NULL);
}
PyDoc_STRVAR(clock_doc,
"clock() -> floating point number\n\
\n\
Return the CPU time or real time since the start of the process or since\n\
the first call to clock(). This has as much precision as the system\n\
records.");
#endif
#ifdef HAVE_CLOCK_GETTIME
static PyObject *
time_clock_gettime(PyObject *self, PyObject *args)
{
int ret;
int clk_id;
struct timespec tp;
if (!PyArg_ParseTuple(args, "i:clock_gettime", &clk_id))
return NULL;
ret = clock_gettime((clockid_t)clk_id, &tp);
if (ret != 0) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
return PyFloat_FromDouble(tp.tv_sec + tp.tv_nsec * 1e-9);
}
PyDoc_STRVAR(clock_gettime_doc,
"clock_gettime(clk_id) -> floating point number\n\
\n\
Return the time of the specified clock clk_id.");
static PyObject *
time_clock_gettime_ns(PyObject *self, PyObject *args)
{
int clk_id;
_PyTime_t t;
struct timespec ts;
if (!PyArg_ParseTuple(args, "i:clock_gettime", &clk_id)) return 0;
if (clock_gettime((clockid_t)clk_id, &ts)) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
if (_PyTime_FromTimespec(&t, &ts) < 0) return 0;
return _PyTime_AsNanosecondsObject(t);
}
PyDoc_STRVAR(clock_gettime_ns_doc,
"clock_gettime_ns($module, clk_id)\n\
--\n\n\
Return the time of the specified clock clk_id as nanoseconds.");
#endif /* HAVE_CLOCK_GETTIME */
#if HAVE_CLOCK_SETTIME
static PyObject *
time_clock_settime(PyObject *self, PyObject *args)
{
int clk_id;
PyObject *obj;
_PyTime_t t;
struct timespec tp;
int ret;
if (!PyArg_ParseTuple(args, "iO:clock_settime", &clk_id, &obj))
return NULL;
if (_PyTime_FromSecondsObject(&t, obj, _PyTime_ROUND_FLOOR) < 0)
return NULL;
if (_PyTime_AsTimespec(t, &tp) == -1)
return NULL;
ret = clock_settime((clockid_t)clk_id, &tp);
if (ret != 0) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(clock_settime_doc,
"clock_settime(clk_id, time)\n\
\n\
Set the time of the specified clock clk_id.");
#endif /* HAVE_CLOCK_SETTIME */
#ifdef HAVE_CLOCK_GETRES
static PyObject *
time_clock_getres(PyObject *self, PyObject *args)
{
int ret;
int clk_id;
struct timespec tp;
if (!PyArg_ParseTuple(args, "i:clock_getres", &clk_id))
return NULL;
ret = clock_getres((clockid_t)clk_id, &tp);
if (ret != 0) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
return PyFloat_FromDouble(tp.tv_sec + tp.tv_nsec * 1e-9);
}
PyDoc_STRVAR(clock_getres_doc,
"clock_getres(clk_id) -> floating point number\n\
\n\
Return the resolution (precision) of the specified clock clk_id.");
#endif /* HAVE_CLOCK_GETRES */
static PyObject *
time_sleep(PyObject *self, PyObject *obj)
{
_PyTime_t secs;
if (_PyTime_FromSecondsObject(&secs, obj, _PyTime_ROUND_TIMEOUT))
return NULL;
if (secs < 0) {
PyErr_SetString(PyExc_ValueError,
"sleep length must be non-negative");
return NULL;
}
if (pysleep(secs) != 0)
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(sleep_doc,
"sleep(seconds)\n\
\n\
Delay execution for a given number of seconds. The argument may be\n\
a floating point number for subsecond precision.");
static PyStructSequence_Field struct_time_type_fields[] = {
{"tm_year", PyDoc_STR("year, for example, 1993")},
{"tm_mon", PyDoc_STR("month of year, range [1, 12]")},
{"tm_mday", PyDoc_STR("day of month, range [1, 31]")},
{"tm_hour", PyDoc_STR("hours, range [0, 23]")},
{"tm_min", PyDoc_STR("minutes, range [0, 59]")},
{"tm_sec", PyDoc_STR("seconds, range [0, 61])")},
{"tm_wday", PyDoc_STR("day of week, range [0, 6], Monday is 0")},
{"tm_yday", PyDoc_STR("day of year, range [1, 366]")},
{"tm_isdst", PyDoc_STR("1 if summer time is in effect, 0 if not, and -1 if unknown")},
{"tm_zone", PyDoc_STR("abbreviation of timezone name")},
{"tm_gmtoff", PyDoc_STR("offset from UTC in seconds")},
{0}
};
static PyStructSequence_Desc struct_time_type_desc = {
"time.struct_time",
"The time value as returned by gmtime(), localtime(), and strptime(), and\n"
" accepted by asctime(), mktime() and strftime(). May be considered as a\n"
" sequence of 9 integers.\n\n"
" Note that several fields' values are not the same as those defined by\n"
" the C language standard for struct tm. For example, the value of the\n"
" field tm_year is the actual year, not year - 1900. See individual\n"
" fields' descriptions for details.",
struct_time_type_fields,
9,
};
static int initialized;
static PyTypeObject StructTimeType;
static PyObject *
tmtotuple(struct tm *p
#ifndef HAVE_STRUCT_TM_TM_ZONE
, const char *zone, time_t gmtoff
#endif
)
{
PyObject *v = PyStructSequence_New(&StructTimeType);
if (v == NULL)
return NULL;
#define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyLong_FromLong((long) val))
SET(0, p->tm_year + 1900);
SET(1, p->tm_mon + 1); /* Want January == 1 */
SET(2, p->tm_mday);
SET(3, p->tm_hour);
SET(4, p->tm_min);
SET(5, p->tm_sec);
SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
SET(8, p->tm_isdst);
#ifdef HAVE_STRUCT_TM_TM_ZONE
PyStructSequence_SET_ITEM(v, 9,
PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape"));
SET(10, p->tm_gmtoff);
#else
PyStructSequence_SET_ITEM(v, 9,
PyUnicode_DecodeLocale(zone, "surrogateescape"));
PyStructSequence_SET_ITEM(v, 10, _PyLong_FromTime_t(gmtoff));
#endif /* HAVE_STRUCT_TM_TM_ZONE */
#undef SET
if (PyErr_Occurred()) {
Py_XDECREF(v);
return NULL;
}
return v;
}
static int64_t
Time(int64_t *tp) {
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
if (tp) *tp = ts.tv_sec;
return ts.tv_sec;
}
/* Parse arg tuple that can contain an optional float-or-None value;
format needs to be "|O:name".
Returns non-zero on success (parallels PyArg_ParseTuple).
*/
static int
parse_time_t_args(PyObject *args, const char *format, time_t *pwhen)
{
PyObject *ot = NULL;
time_t whent;
if (!PyArg_ParseTuple(args, format, &ot))
return 0;
if (ot == NULL || ot == Py_None) {
whent = Time(NULL);
}
else {
if (_PyTime_ObjectToTime_t(ot, &whent, _PyTime_ROUND_FLOOR) == -1)
return 0;
}
*pwhen = whent;
return 1;
}
static PyObject *
time_gmtime(PyObject *self, PyObject *args)
{
time_t when;
struct tm buf;
if (!parse_time_t_args(args, "|O:gmtime", &when))
return NULL;
errno = 0;
if (_PyTime_gmtime(when, &buf) != 0)
return NULL;
#ifdef HAVE_STRUCT_TM_TM_ZONE
return tmtotuple(&buf);
#else
return tmtotuple(&buf, "UTC", 0);
#endif
}
#ifndef HAVE_TIMEGM
static time_t
timegm(struct tm *p)
{
/* XXX: the following implementation will not work for tm_year < 1970.
but it is likely that platforms that don't have timegm do not support
negative timestamps anyways. */
return p->tm_sec + p->tm_min*60 + p->tm_hour*3600 + p->tm_yday*86400 +
(p->tm_year-70)*31536000 + ((p->tm_year-69)/4)*86400 -
((p->tm_year-1)/100)*86400 + ((p->tm_year+299)/400)*86400;
}
#endif
PyDoc_STRVAR(gmtime_doc,
"gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
tm_sec, tm_wday, tm_yday, tm_isdst)\n\
\n\
Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a.\n\
GMT). When 'seconds' is not passed in, convert the current time instead.\n\
\n\
If the platform supports the tm_gmtoff and tm_zone, they are available as\n\
attributes only.");
static PyObject *
time_localtime(PyObject *self, PyObject *args)
{
time_t when;
struct tm buf;
if (!parse_time_t_args(args, "|O:localtime", &when))
return NULL;
if (_PyTime_localtime(when, &buf) != 0)
return NULL;
#ifdef HAVE_STRUCT_TM_TM_ZONE
return tmtotuple(&buf);
#else
{
struct tm local = buf;
char zone[100];
time_t gmtoff;
strftime(zone, sizeof(zone), "%Z", &buf);
gmtoff = timegm(&buf) - when;
return tmtotuple(&local, zone, gmtoff);
}
#endif
}
PyDoc_STRVAR(localtime_doc,
"localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
tm_sec,tm_wday,tm_yday,tm_isdst)\n\
\n\
Convert seconds since the Epoch to a time tuple expressing local time.\n\
When 'seconds' is not passed in, convert the current time instead.");
/* Convert 9-item tuple to tm structure. Return 1 on success, set
* an exception and return 0 on error.
*/
static int
gettmarg(PyObject *args, struct tm *p)
{
int y;
bzero(p, sizeof(struct tm));
if (!PyTuple_Check(args)) {
PyErr_SetString(PyExc_TypeError,
"Tuple or struct_time argument required");
return 0;
}
if (!PyArg_ParseTuple(args, "iiiiiiiii",
&y, &p->tm_mon, &p->tm_mday,
&p->tm_hour, &p->tm_min, &p->tm_sec,
&p->tm_wday, &p->tm_yday, &p->tm_isdst))
return 0;
if (y < INT_MIN + 1900) {
PyErr_SetString(PyExc_OverflowError, "year out of range");
return 0;
}
p->tm_year = y - 1900;
p->tm_mon--;
p->tm_wday = (p->tm_wday + 1) % 7;
p->tm_yday--;
#ifdef HAVE_STRUCT_TM_TM_ZONE
if (Py_TYPE(args) == &StructTimeType) {
PyObject *item;
item = PyTuple_GET_ITEM(args, 9);
p->tm_zone = item == Py_None ? NULL : PyUnicode_AsUTF8(item);
item = PyTuple_GET_ITEM(args, 10);
p->tm_gmtoff = item == Py_None ? 0 : PyLong_AsLong(item);
if (PyErr_Occurred())
return 0;
}
#endif /* HAVE_STRUCT_TM_TM_ZONE */
return 1;
}
/* Check values of the struct tm fields before it is passed to strftime() and
* asctime(). Return 1 if all values are valid, otherwise set an exception
* and returns 0.
*/
static int
checktm(struct tm* buf)
{
/* Checks added to make sure strftime() and asctime() does not crash Python by
indexing blindly into some array for a textual representation
by some bad index (fixes bug #897625 and #6608).
Also support values of zero from Python code for arguments in which
that is out of range by forcing that value to the lowest value that
is valid (fixed bug #1520914).
Valid ranges based on what is allowed in struct tm:
- tm_year: [0, max(int)] (1)
- tm_mon: [0, 11] (2)
- tm_mday: [1, 31]
- tm_hour: [0, 23]
- tm_min: [0, 59]
- tm_sec: [0, 60]
- tm_wday: [0, 6] (1)
- tm_yday: [0, 365] (2)
- tm_isdst: [-max(int), max(int)]
(1) gettmarg() handles bounds-checking.
(2) Python's acceptable range is one greater than the range in C,
thus need to check against automatic decrement by gettmarg().
*/
if (buf->tm_mon == -1)
buf->tm_mon = 0;
else if (buf->tm_mon < 0 || buf->tm_mon > 11) {
PyErr_SetString(PyExc_ValueError, "month out of range");
return 0;
}
if (buf->tm_mday == 0)
buf->tm_mday = 1;
else if (buf->tm_mday < 0 || buf->tm_mday > 31) {
PyErr_SetString(PyExc_ValueError, "day of month out of range");
return 0;
}
if (buf->tm_hour < 0 || buf->tm_hour > 23) {
PyErr_SetString(PyExc_ValueError, "hour out of range");
return 0;
}
if (buf->tm_min < 0 || buf->tm_min > 59) {
PyErr_SetString(PyExc_ValueError, "minute out of range");
return 0;
}
if (buf->tm_sec < 0 || buf->tm_sec > 61) {
PyErr_SetString(PyExc_ValueError, "seconds out of range");
return 0;
}
/* tm_wday does not need checking of its upper-bound since taking
``% 7`` in gettmarg() automatically restricts the range. */
if (buf->tm_wday < 0) {
PyErr_SetString(PyExc_ValueError, "day of week out of range");
return 0;
}
if (buf->tm_yday == -1)
buf->tm_yday = 0;
else if (buf->tm_yday < 0 || buf->tm_yday > 365) {
PyErr_SetString(PyExc_ValueError, "day of year out of range");
return 0;
}
return 1;
}
#ifdef MS_WINDOWS
/* wcsftime() doesn't format correctly time zones, see issue #10653 */
# undef HAVE_WCSFTIME
#endif
#define STRFTIME_FORMAT_CODES \
"Commonly used format codes:\n\
\n\
%Y Year with century as a decimal number.\n\
%m Month as a decimal number [01,12].\n\
%d Day of the month as a decimal number [01,31].\n\
%H Hour (24-hour clock) as a decimal number [00,23].\n\
%M Minute as a decimal number [00,59].\n\
%S Second as a decimal number [00,61].\n\
%z Time zone offset from UTC.\n\
%a Locale's abbreviated weekday name.\n\
%A Locale's full weekday name.\n\
%b Locale's abbreviated month name.\n\
%B Locale's full month name.\n\
%c Locale's appropriate date and time representation.\n\
%I Hour (12-hour clock) as a decimal number [01,12].\n\
%p Locale's equivalent of either AM or PM.\n\
\n\
Other codes may be available on your platform. See documentation for\n\
the C library strftime function.\n"
#ifdef HAVE_STRFTIME
#ifdef HAVE_WCSFTIME
#define time_char wchar_t
#define format_time wcsftime
#define time_strlen wcslen
#else
#define time_char char
#define format_time strftime
#define time_strlen strlen
#endif
static PyObject *
time_strftime(PyObject *self, PyObject *args)
{
PyObject *tup = NULL;
struct tm buf;
const time_char *fmt;
#ifdef HAVE_WCSFTIME
wchar_t *format;
#else
PyObject *format;
#endif
PyObject *format_arg;
size_t fmtlen, buflen;
time_char *outbuf = NULL;
size_t i;
PyObject *ret = NULL;
bzero(&buf, sizeof(buf));
/* Will always expect a unicode string to be passed as format.
Given that there's no str type anymore in py3k this seems safe.
*/
if (!PyArg_ParseTuple(args, "U|O:strftime", &format_arg, &tup))
return NULL;
if (tup == NULL) {
time_t tt = Time(NULL);
if (_PyTime_localtime(tt, &buf) != 0)
return NULL;
}
else if (!gettmarg(tup, &buf) || !checktm(&buf))
return NULL;
#if defined(_MSC_VER) || defined(sun) || defined(_AIX)
if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) {
PyErr_SetString(PyExc_ValueError,
"strftime() requires year in [1; 9999]");
return NULL;
}
#endif
/* Normalize tm_isdst just in case someone foolishly implements %Z
based on the assumption that tm_isdst falls within the range of
[-1, 1] */
if (buf.tm_isdst < -1)
buf.tm_isdst = -1;
else if (buf.tm_isdst > 1)
buf.tm_isdst = 1;
#ifdef HAVE_WCSFTIME
format = _PyUnicode_AsWideCharString(format_arg);
if (format == NULL)
return NULL;
fmt = format;
#else
/* Convert the unicode string to an ascii one */
format = PyUnicode_EncodeLocale(format_arg, "surrogateescape");
if (format == NULL)
return NULL;
fmt = PyBytes_AS_STRING(format);
#endif
#if defined(MS_WINDOWS) && !defined(HAVE_WCSFTIME)
/* check that the format string contains only valid directives */
for (outbuf = strchr(fmt, '%');
outbuf != NULL;
outbuf = strchr(outbuf+2, '%'))
{
if (outbuf[1] == '#')
++outbuf; /* not documented by python, */
if (outbuf[1] == '\0')
break;
if ((outbuf[1] == 'y') && buf.tm_year < 0) {
PyErr_SetString(PyExc_ValueError,
"format %y requires year >= 1900 on Windows");
Py_DECREF(format);
return NULL;
}
}
#elif (defined(_AIX) || defined(sun)) && defined(HAVE_WCSFTIME)
for (outbuf = wcschr(fmt, '%');
outbuf != NULL;
outbuf = wcschr(outbuf+2, '%'))
{
if (outbuf[1] == L'\0')
break;
/* Issue #19634: On AIX, wcsftime("y", (1899, 1, 1, 0, 0, 0, 0, 0, 0))
returns "0/" instead of "99" */
if (outbuf[1] == L'y' && buf.tm_year < 0) {
PyErr_SetString(PyExc_ValueError,
"format %y requires year >= 1900 on AIX");
PyMem_Free(format);
return NULL;
}
}
#endif
fmtlen = time_strlen(fmt);
/* I hate these functions that presume you know how big the output
* will be ahead of time...
*/
for (i = 1024; ; i += i) {
outbuf = (time_char *)PyMem_Malloc(i*sizeof(time_char));
if (outbuf == NULL) {
PyErr_NoMemory();
break;
}
#if defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
errno = 0;
#endif
_Py_BEGIN_SUPPRESS_IPH
buflen = format_time(outbuf, i, fmt, &buf);
_Py_END_SUPPRESS_IPH
#if defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
/* VisualStudio .NET 2005 does this properly */
if (buflen == 0 && errno == EINVAL) {
PyErr_SetString(PyExc_ValueError, "Invalid format string");
PyMem_Free(outbuf);
break;
}
#endif
if (buflen > 0 || i >= 256 * fmtlen) {
/* If the buffer is 256 times as long as the format,
it's probably not failing for lack of room!
More likely, the format yields an empty result,
e.g. an empty format, or %Z when the timezone
is unknown. */
#ifdef HAVE_WCSFTIME
ret = PyUnicode_FromWideChar(outbuf, buflen);
#else
ret = PyUnicode_DecodeLocaleAndSize(outbuf, buflen,
"surrogateescape");
#endif
PyMem_Free(outbuf);
break;
}
PyMem_Free(outbuf);
}
#ifdef HAVE_WCSFTIME
PyMem_Free(format);
#else
Py_DECREF(format);
#endif
return ret;
}
#undef time_char
#undef format_time
PyDoc_STRVAR(strftime_doc,
"strftime(format[, tuple]) -> string\n\
\n\
Convert a time tuple to a string according to a format specification.\n\
See the library reference manual for formatting codes. When the time tuple\n\
is not present, current time as returned by localtime() is used.\n\
\n" STRFTIME_FORMAT_CODES);
#endif /* HAVE_STRFTIME */
static PyObject *
time_strptime(PyObject *self, PyObject *args)
{
PyObject *strptime_module = PyImport_ImportModuleNoBlock("_strptime");
PyObject *strptime_result;
_Py_IDENTIFIER(_strptime_time);
if (!strptime_module)
return NULL;
strptime_result = _PyObject_CallMethodId(strptime_module,
&PyId__strptime_time, "O", args);
Py_DECREF(strptime_module);
return strptime_result;
}
PyDoc_STRVAR(strptime_doc,
"strptime(string, format) -> struct_time\n\
\n\
Parse a string to a time tuple according to a format specification.\n\
See the library reference manual for formatting codes (same as\n\
strftime()).\n\
\n" STRFTIME_FORMAT_CODES);
static PyObject *
_asctime(struct tm *timeptr)
{
/* Inspired by Open Group reference implementation available at
* http://pubs.opengroup.org/onlinepubs/009695399/functions/asctime.html */
return PyUnicode_FromFormat(
"%s %s%3d %.2d:%.2d:%.2d %d",
kWeekdayNameShort[timeptr->tm_wday],
kMonthNameShort[timeptr->tm_mon],
timeptr->tm_mday, timeptr->tm_hour,
timeptr->tm_min, timeptr->tm_sec,
1900 + timeptr->tm_year);
}
static PyObject *
time_asctime(PyObject *self, PyObject *args)
{
PyObject *tup = NULL;
struct tm buf;
if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
return NULL;
if (tup == NULL) {
time_t tt = Time(NULL);
if (_PyTime_localtime(tt, &buf) != 0)
return NULL;
} else if (!gettmarg(tup, &buf) || !checktm(&buf))
return NULL;
return _asctime(&buf);
}
PyDoc_STRVAR(asctime_doc,
"asctime([tuple]) -> string\n\
\n\
Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'.\n\
When the time tuple is not present, current time as returned by localtime()\n\
is used.");
static PyObject *
time_ctime(PyObject *self, PyObject *args)
{
time_t tt;
struct tm buf;
if (!parse_time_t_args(args, "|O:ctime", &tt))
return NULL;
if (_PyTime_localtime(tt, &buf) != 0)
return NULL;
return _asctime(&buf);
}
PyDoc_STRVAR(ctime_doc,
"ctime(seconds) -> string\n\
\n\
Convert a time in seconds since the Epoch to a string in local time.\n\
This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
not present, current time as returned by localtime() is used.");
#ifdef HAVE_MKTIME
static PyObject *
time_mktime(PyObject *self, PyObject *tup)
{
struct tm buf;
time_t tt;
if (!gettmarg(tup, &buf))
return NULL;
#ifdef _AIX
/* year < 1902 or year > 2037 */
if (buf.tm_year < 2 || buf.tm_year > 137) {
/* Issue #19748: On AIX, mktime() doesn't report overflow error for
* timestamp < -2^31 or timestamp > 2**31-1. */
PyErr_SetString(PyExc_OverflowError,
"mktime argument out of range");
return NULL;
}
#else
buf.tm_wday = -1; /* sentinel; original value ignored */
#endif
tt = mktime(&buf);
/* Return value of -1 does not necessarily mean an error, but tm_wday
* cannot remain set to -1 if mktime succeeded. */
if (tt == (time_t)(-1)
#ifndef _AIX
/* Return value of -1 does not necessarily mean an error, but
* tm_wday cannot remain set to -1 if mktime succeeded. */
&& buf.tm_wday == -1
#else
/* on AIX, tm_wday is always sets, even on error */
#endif
)
{
PyErr_SetString(PyExc_OverflowError,
"mktime argument out of range");
return NULL;
}
return PyFloat_FromDouble((double)tt);
}
PyDoc_STRVAR(mktime_doc,
"mktime(tuple) -> floating point number\n\
\n\
Convert a time tuple in local time to seconds since the Epoch.\n\
Note that mktime(gmtime(0)) will not generally return zero for most\n\
time zones; instead the returned value will either be equal to that\n\
of the timezone or altzone attributes on the time module.");
#endif /* HAVE_MKTIME */
#ifdef HAVE_WORKING_TZSET
static int init_timezone(PyObject *module);
static PyObject *
time_tzset(PyObject *self, PyObject *unused)
{
PyObject* m;
m = PyImport_ImportModuleNoBlock("time");
if (m == NULL) {
return NULL;
}
tzset();
/* Reset timezone, altzone, daylight and tzname */
if (init_timezone(m) < 0) {
return NULL;
}
Py_DECREF(m);
if (PyErr_Occurred())
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(tzset_doc,
"tzset()\n\
\n\
Initialize, or reinitialize, the local timezone to the value stored in\n\
os.environ['TZ']. The TZ environment variable should be specified in\n\
standard Unix timezone format as documented in the tzset man page\n\
(eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently\n\
fall back to UTC. If the TZ environment variable is not set, the local\n\
timezone is set to the systems best guess of wallclock time.\n\
Changing the TZ environment variable without calling tzset *may* change\n\
the local timezone used by methods such as localtime, but this behaviour\n\
should not be relied on.");
#endif /* HAVE_WORKING_TZSET */
static PyObject *
pymonotonic(_Py_clock_info_t *info)
{
_PyTime_t t;
double d;
if (_PyTime_GetMonotonicClockWithInfo(&t, info) < 0) {
assert(info != NULL);
return NULL;
}
d = _PyTime_AsSecondsDouble(t);
return PyFloat_FromDouble(d);
}
static PyObject *
time_monotonic(PyObject *self, PyObject *unused)
{
return pymonotonic(NULL);
}
PyDoc_STRVAR(monotonic_doc,
"monotonic($module)\n\
\n\
Monotonic clock, cannot go backward, as float seconds.");
static PyObject *
time_monotonic_ns(PyObject *self, PyObject *unused)
{
_PyTime_t t;
if (_PyTime_GetMonotonicClockWithInfo(&t, 0)) return 0;
return _PyTime_AsNanosecondsObject(t);
}
PyDoc_STRVAR(monotonic_ns_doc,
"monotonic_ns($module)\n\
--\n\n\
Monotonic clock, cannot go backward, as nanoseconds.");
static PyObject*
perf_counter(_Py_clock_info_t *info)
{
#ifdef WIN32_PERF_COUNTER
return win_perf_counter(info);
#else
return pymonotonic(info);
#endif
}
static PyObject *
time_perf_counter(PyObject *self, PyObject *unused)
{
return perf_counter(NULL);
}
PyDoc_STRVAR(perf_counter_doc,
"perf_counter($module)\n\
--\n\n\
Performance counter for benchmarking, as float seconds.");
static PyObject *
time_perf_counter_ns(PyObject *self, PyObject *unused)
{
_PyTime_t t;
if (_PyTime_GetPerfCounterWithInfo(&t, 0)) return 0;
return _PyTime_AsNanosecondsObject(t);
}
PyDoc_STRVAR(perf_counter_ns_doc,
"perf_counter_ns($module)\n\
--\n\n\
Performance counter for benchmarking as nanoseconds.");
static int
_PyTime_GetProcessTimeWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)
{
struct tms t;
clock_t value;
clockid_t clk_id;
struct rusage ru;
const char *function;
struct timespec ts, res;
struct NtFileTime creation_time, exit_time, kernel_time, user_time;
if (IsWindows()) {
if (!GetProcessTimes(GetCurrentProcess(),
&creation_time,
&exit_time,
&kernel_time,
&user_time)) {
PyErr_SetFromWindowsErr(0);
return -1;
}
if (info) {
info->implementation = "GetProcessTimes()";
info->resolution = 1e-7;
info->monotonic = 1;
info->adjustable = 0;
}
*tp = (ReadFileTime(kernel_time) + ReadFileTime(user_time)) * 100;
return 0;
}
if (CLOCK_PROF != -1 || CLOCK_PROCESS_CPUTIME_ID != -1) {
if (CLOCK_PROF != -1) {
clk_id = CLOCK_PROF;
function = "clock_gettime(CLOCK_PROF)";
} else {
clk_id = CLOCK_PROCESS_CPUTIME_ID;
function = "clock_gettime(CLOCK_PROCESS_CPUTIME_ID)";
}
if (!clock_gettime(clk_id, &ts)) {
if (info) {
info->implementation = function;
info->monotonic = 1;
info->adjustable = 0;
if (!clock_getres(clk_id, &res)) {
info->resolution = res.tv_sec + res.tv_nsec * 1e-9;
} else {
info->resolution = 1e-9;
}
}
if (_PyTime_FromTimespec(tp, &ts) < 0) {
return -1;
}
return 0;
}
}
if (!getrusage(RUSAGE_SELF, &ru)) {
_PyTime_t utime, stime;
if (info) {
info->implementation = "getrusage(RUSAGE_SELF)";
info->monotonic = 1;
info->adjustable = 0;
info->resolution = 1e-6;
}
if (_PyTime_FromTimeval(&utime, &ru.ru_utime) < 0) {
return -1;
}
if (_PyTime_FromTimeval(&stime, &ru.ru_stime) < 0) {
return -1;
}
*tp = utime + stime;
return 0;
}
if (times(&t) != -1) {
if (info) {
info->implementation = "times()";
info->monotonic = 1;
info->adjustable = 0;
info->resolution = 1. / CLK_TCK;
}
*tp = (t.tms_utime + t.tms_stime) * (1000000000ull / CLK_TCK);
return 0;
}
/* Currently, Python 3 requires clock() to build: see issue #22624 */
value = clock();
if (value == (clock_t)-1) {
PyErr_SetString(PyExc_RuntimeError,
"the processor time used is not available "
"or its value cannot be represented");
return -1;
}
if (info) {
info->implementation = "clock()";
info->resolution = 1 / (double)CLOCKS_PER_SEC;
info->monotonic = 1;
info->adjustable = 0;
}
*tp = value * (1000000000ull / CLOCKS_PER_SEC);
return 0;
}
static PyObject *
time_process_time(PyObject *self, PyObject *unused)
{
_PyTime_t t;
if (_PyTime_GetProcessTimeWithInfo(&t, 0)) return 0;
return _PyFloat_FromPyTime(t);
}
PyDoc_STRVAR(process_time_doc,
"process_time($module)\n\
--\n\n\
Process time for profiling: sum of the kernel and user-space CPU time.\n\
Returned as float seconds.");
static PyObject *
time_process_time_ns(PyObject *self, PyObject *unused)
{
_PyTime_t t;
if (_PyTime_GetProcessTimeWithInfo(&t, 0)) return 0;
return _PyTime_AsNanosecondsObject(t);
}
PyDoc_STRVAR(process_time_ns_doc,
"process_time_ns($module)\n\
--\n\n\
Process time for profiling returned as integer nanoseconds:\n\
sum of the kernel and user-space CPU time.");
static PyObject *
time_get_clock_info(PyObject *self, PyObject *args)
{
char *name;
_PyTime_t t;
_Py_clock_info_t info;
PyObject *obj = NULL, *dict, *ns;
if (!PyArg_ParseTuple(args, "s:get_clock_info", &name))
return NULL;
#ifdef Py_DEBUG
info.implementation = NULL;
info.monotonic = -1;
info.adjustable = -1;
info.resolution = -1.0;
#else
info.implementation = "";
info.monotonic = 0;
info.adjustable = 0;
info.resolution = 1.0;
#endif
if (!strcmp(name, "clock")) {
info.implementation = "clock()";
info.resolution = 1 / (double)CLOCKS_PER_SEC;
info.monotonic = 1;
info.adjustable = 0;
}
else if (!strcmp(name, "time")) {
if (_PyTime_GetSystemClockWithInfo(&t, &info) < 0) {
return NULL;
}
}
else if (!strcmp(name, "monotonic")) {
if (_PyTime_GetMonotonicClockWithInfo(&t, &info) < 0) {
return NULL;
}
}
else if (!strcmp(name, "perf_counter")) {
if (_PyTime_GetPerfCounterWithInfo(&t, &info) < 0) {
return NULL;
}
}
else if (!strcmp(name, "process_time")) {
if (_PyTime_GetProcessTimeWithInfo(&t, &info) < 0) {
return NULL;
}
}
else {
PyErr_SetString(PyExc_ValueError, "unknown clock");
return NULL;
}
dict = PyDict_New();
if (dict == NULL)
return NULL;
assert(info.implementation != NULL);
obj = PyUnicode_FromString(info.implementation);
if (obj == NULL)
goto error;
if (PyDict_SetItemString(dict, "implementation", obj) == -1)
goto error;
Py_CLEAR(obj);
assert(info.monotonic != -1);
obj = PyBool_FromLong(info.monotonic);
if (obj == NULL)
goto error;
if (PyDict_SetItemString(dict, "monotonic", obj) == -1)
goto error;
Py_CLEAR(obj);
assert(info.adjustable != -1);
obj = PyBool_FromLong(info.adjustable);
if (obj == NULL)
goto error;
if (PyDict_SetItemString(dict, "adjustable", obj) == -1)
goto error;
Py_CLEAR(obj);
assert(info.resolution > 0.0);
assert(info.resolution <= 1.0);
obj = PyFloat_FromDouble(info.resolution);
if (obj == NULL)
goto error;
if (PyDict_SetItemString(dict, "resolution", obj) == -1)
goto error;
Py_CLEAR(obj);
ns = _PyNamespace_New(dict);
Py_DECREF(dict);
return ns;
error:
Py_DECREF(dict);
Py_XDECREF(obj);
return NULL;
}
PyDoc_STRVAR(get_clock_info_doc,
"get_clock_info(name: str) -> dict\n\
\n\
Get information of the specified clock.");
static void
get_zone(char *zone, int n, struct tm *p)
{
#ifdef HAVE_STRUCT_TM_TM_ZONE
strncpy(zone, p->tm_zone ? p->tm_zone : " ", n);
#else
tzset();
strftime(zone, n, "%Z", p);
#endif
}
static time_t
get_gmtoff(time_t t, struct tm *p)
{
#ifdef HAVE_STRUCT_TM_TM_ZONE
return p->tm_gmtoff;
#else
return timegm(p) - t;
#endif
}
static int
init_timezone(PyObject *m)
{
assert(!PyErr_Occurred());
/* This code moved from PyInit_time wholesale to allow calling it from
time_tzset. In the future, some parts of it can be moved back
(for platforms that don't HAVE_WORKING_TZSET, when we know what they
are), and the extraneous calls to tzset(3) should be removed.
I haven't done this yet, as I don't want to change this code as
little as possible when introducing the time.tzset and time.tzsetwall
methods. This should simply be a method of doing the following once,
at the top of this function and removing the call to tzset() from
time_tzset():
#ifdef HAVE_TZSET
tzset()
#endif
And I'm lazy and hate C so nyer.
*/
#if defined(HAVE_TZNAME) && !defined(__GLIBC__) && !defined(__CYGWIN__)
PyObject *otz0, *otz1;
tzset();
PyModule_AddIntConstant(m, "timezone", timezone);
#ifdef HAVE_ALTZONE
PyModule_AddIntConstant(m, "altzone", altzone);
#else
PyModule_AddIntConstant(m, "altzone", timezone-3600);
#endif
PyModule_AddIntConstant(m, "daylight", daylight);
otz0 = PyUnicode_DecodeLocale(tzname[0], "surrogateescape");
if (otz0 == NULL) {
return -1;
}
otz1 = PyUnicode_DecodeLocale(tzname[1], "surrogateescape");
if (otz1 == NULL) {
Py_DECREF(otz0);
return -1;
}
PyObject *tzname_obj = Py_BuildValue("(NN)", otz0, otz1);
if (tzname_obj == NULL) {
return -1;
}
PyModule_AddObject(m, "tzname", tzname_obj);
#else /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
{
#define YEAR ((time_t)((365 * 24 + 6) * 3600))
time_t t;
struct tm p;
time_t janzone_t, julyzone_t;
char janname[10], julyname[10];
t = (Time((time_t *)0) / YEAR) * YEAR;
_PyTime_localtime(t, &p);
get_zone(janname, 9, &p);
janzone_t = -get_gmtoff(t, &p);
janname[9] = '\0';
t += YEAR/2;
_PyTime_localtime(t, &p);
get_zone(julyname, 9, &p);
julyzone_t = -get_gmtoff(t, &p);
julyname[9] = '\0';
/* Sanity check, don't check for the validity of timezones.
In practice, it should be more in range -12 hours .. +14 hours. */
#define MAX_TIMEZONE (48 * 3600)
if (janzone_t < -MAX_TIMEZONE || janzone_t > MAX_TIMEZONE
|| julyzone_t < -MAX_TIMEZONE || julyzone_t > MAX_TIMEZONE)
{
PyErr_SetString(PyExc_RuntimeError, "invalid GMT offset");
return -1;
}
int janzone = (int)janzone_t;
int julyzone = (int)julyzone_t;
if( janzone < julyzone ) {
/* DST is reversed in the southern hemisphere */
PyModule_AddIntConstant(m, "timezone", julyzone);
PyModule_AddIntConstant(m, "altzone", janzone);
PyModule_AddIntConstant(m, "daylight",
janzone != julyzone);
PyModule_AddObject(m, "tzname",
Py_BuildValue("(zz)",
julyname, janname));
} else {
PyModule_AddIntConstant(m, "timezone", janzone);
PyModule_AddIntConstant(m, "altzone", julyzone);
PyModule_AddIntConstant(m, "daylight",
janzone != julyzone);
PyModule_AddObject(m, "tzname",
Py_BuildValue("(zz)",
janname, julyname));
}
}
#ifdef __CYGWIN__
tzset();
PyModule_AddIntConstant(m, "timezone", _timezone);
PyModule_AddIntConstant(m, "altzone", _timezone-3600);
PyModule_AddIntConstant(m, "daylight", _daylight);
PyModule_AddObject(m, "tzname",
Py_BuildValue("(zz)", _tzname[0], _tzname[1]));
#endif /* __CYGWIN__ */
#endif /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
if (PyErr_Occurred()) {
return -1;
}
return 0;
}
static PyMethodDef time_methods[] = {
{"time", time_time, METH_NOARGS, time_doc},
{"time_ns", time_time_ns, METH_NOARGS, time_ns_doc},
#ifdef PYCLOCK
{"clock", time_clock, METH_NOARGS, clock_doc},
#endif
#ifdef HAVE_CLOCK_GETTIME
{"clock_gettime", time_clock_gettime, METH_VARARGS, clock_gettime_doc},
{"clock_gettime_ns",time_clock_gettime_ns, METH_VARARGS, clock_gettime_ns_doc},
#endif
#ifdef HAVE_CLOCK_SETTIME
{"clock_settime", time_clock_settime, METH_VARARGS, clock_settime_doc},
#endif
#ifdef HAVE_CLOCK_GETRES
{"clock_getres", time_clock_getres, METH_VARARGS, clock_getres_doc},
#endif
{"sleep", time_sleep, METH_O, sleep_doc},
{"gmtime", time_gmtime, METH_VARARGS, gmtime_doc},
{"localtime", time_localtime, METH_VARARGS, localtime_doc},
{"asctime", time_asctime, METH_VARARGS, asctime_doc},
{"ctime", time_ctime, METH_VARARGS, ctime_doc},
#ifdef HAVE_MKTIME
{"mktime", time_mktime, METH_O, mktime_doc},
#endif
#ifdef HAVE_STRFTIME
{"strftime", time_strftime, METH_VARARGS, strftime_doc},
#endif
{"strptime", time_strptime, METH_VARARGS, strptime_doc},
#ifdef HAVE_WORKING_TZSET
{"tzset", time_tzset, METH_NOARGS, tzset_doc},
#endif
{"monotonic", time_monotonic, METH_NOARGS, monotonic_doc},
{"monotonic_ns", time_monotonic_ns, METH_NOARGS, monotonic_ns_doc},
{"process_time", time_process_time, METH_NOARGS, process_time_doc},
{"process_time_ns", time_process_time_ns, METH_NOARGS, process_time_ns_doc},
{"perf_counter", time_perf_counter, METH_NOARGS, perf_counter_doc},
{"perf_counter_ns", time_perf_counter_ns, METH_NOARGS, perf_counter_ns_doc},
{"get_clock_info", time_get_clock_info, METH_VARARGS, get_clock_info_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc,
"This module provides various functions to manipulate time values.\n\
\n\
There are two standard representations of time. One is the number\n\
of seconds since the Epoch, in UTC (a.k.a. GMT). It may be an integer\n\
or a floating point number (to represent fractions of seconds).\n\
The Epoch is system-defined; on Unix, it is generally January 1st, 1970.\n\
The actual value can be retrieved by calling gmtime(0).\n\
\n\
The other representation is a tuple of 9 integers giving local time.\n\
The tuple items are:\n\
year (including century, e.g. 1998)\n\
month (1-12)\n\
day (1-31)\n\
hours (0-23)\n\
minutes (0-59)\n\
seconds (0-59)\n\
weekday (0-6, Monday is 0)\n\
Julian day (day in the year, 1-366)\n\
DST (Daylight Savings Time) flag (-1, 0 or 1)\n\
If the DST flag is 0, the time is given in the regular time zone;\n\
if it is 1, the time is given in the DST time zone;\n\
if it is -1, mktime() should guess based on the date and time.\n");
static struct PyModuleDef timemodule = {
PyModuleDef_HEAD_INIT,
"time",
module_doc,
-1,
time_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_time(void)
{
PyObject *m;
m = PyModule_Create(&timemodule);
if (m == NULL)
return NULL;
/* Set, or reset, module variables like time.timezone */
if (init_timezone(m) < 0) {
return NULL;
}
PyModule_AddIntMacro(m, CLOCK_REALTIME);
PyModule_AddIntMacro(m, CLOCK_MONOTONIC);
if (CLOCK_MONOTONIC_RAW != -1) PyModule_AddIntMacro(m, CLOCK_MONOTONIC_RAW);
if (CLOCK_PROCESS_CPUTIME_ID != -1) PyModule_AddIntMacro(m, CLOCK_PROCESS_CPUTIME_ID);
if (CLOCK_THREAD_CPUTIME_ID != -1) PyModule_AddIntMacro(m, CLOCK_THREAD_CPUTIME_ID);
if (!initialized) {
if (PyStructSequence_InitType2(&StructTimeType,
&struct_time_type_desc) < 0)
return NULL;
}
Py_INCREF(&StructTimeType);
PyModule_AddIntConstant(m, "_STRUCT_TM_ITEMS", 11);
PyModule_AddObject(m, "struct_time", (PyObject*) &StructTimeType);
initialized = 1;
if (PyErr_Occurred()) {
return NULL;
}
return m;
}
static PyObject*
floattime(_Py_clock_info_t *info)
{
_PyTime_t t;
double d;
if (_PyTime_GetSystemClockWithInfo(&t, info) < 0) {
assert(info != NULL);
return NULL;
}
d = _PyTime_AsSecondsDouble(t);
return PyFloat_FromDouble(d);
}
/* Implement pysleep() for various platforms.
When interrupted (or when another error occurs), return -1 and
set an exception; else return 0. */
static int
pysleep(_PyTime_t secs)
{
_PyTime_t deadline, monotonic;
#ifndef MS_WINDOWS
struct timeval timeout;
struct timespec timeout2;
int err = 0;
#else
_PyTime_t millisecs;
unsigned long ul_millis;
uint32_t rc;
int64_t hInterruptEvent;
#endif
deadline = _PyTime_GetMonotonicClock() + secs;
do {
#ifndef MS_WINDOWS
Py_BEGIN_ALLOW_THREADS
#ifdef __COSMOPOLITAN__
if (_PyTime_AsTimespec(secs, &timeout2) < 0)
return -1;
err = nanosleep(&timeout2, 0);
#else /* b/c xnu */
if (_PyTime_AsTimeval(secs, &timeout, _PyTime_ROUND_CEILING) < 0)
return -1;
err = select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &timeout);
#endif
Py_END_ALLOW_THREADS
if (err == 0)
break;
if (errno != EINTR) {
PyErr_SetFromErrno(PyExc_OSError);
return -1;
}
#else
millisecs = _PyTime_AsMilliseconds(secs, _PyTime_ROUND_CEILING);
if (millisecs > (double)ULONG_MAX) {
PyErr_SetString(PyExc_OverflowError,
"sleep length is too large");
return -1;
}
/* Allow sleep(0) to maintain win32 semantics, and as decreed
* by Guido, only the main thread can be interrupted.
*/
ul_millis = (unsigned long)millisecs;
if (ul_millis == 0 || !_PyOS_IsMainThread()) {
Py_BEGIN_ALLOW_THREADS
Sleep(ul_millis);
Py_END_ALLOW_THREADS
break;
}
hInterruptEvent = _PyOS_SigintEvent();
ResetEvent(hInterruptEvent);
Py_BEGIN_ALLOW_THREADS
rc = WaitForSingleObjectEx(hInterruptEvent, ul_millis, FALSE);
Py_END_ALLOW_THREADS
if (rc != WAIT_OBJECT_0)
break;
#endif
/* sleep was interrupted by SIGINT */
if (PyErr_CheckSignals())
return -1;
monotonic = _PyTime_GetMonotonicClock();
secs = deadline - monotonic;
if (secs < 0)
break;
/* retry with the recomputed delay */
} while (1);
return 0;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_time = {
"time",
PyInit_time,
};
| 48,690 | 1,604 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_tracemalloc.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/errno.h"
#include "libc/fmt/conv.h"
#include "libc/mem/mem.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/frameobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/osdefs.h"
#include "third_party/python/Include/pydebug.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyhash.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pythread.h"
#include "third_party/python/Include/sysmodule.h"
#include "third_party/python/Include/traceback.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/hashtable.h"
/* clang-format off */
PYTHON_PROVIDE("_tracemalloc");
PYTHON_PROVIDE("_tracemalloc._get_object_traceback");
PYTHON_PROVIDE("_tracemalloc._get_traces");
PYTHON_PROVIDE("_tracemalloc.clear_traces");
PYTHON_PROVIDE("_tracemalloc.get_traceback_limit");
PYTHON_PROVIDE("_tracemalloc.get_traced_memory");
PYTHON_PROVIDE("_tracemalloc.get_tracemalloc_memory");
PYTHON_PROVIDE("_tracemalloc.is_tracing");
PYTHON_PROVIDE("_tracemalloc.start");
PYTHON_PROVIDE("_tracemalloc.stop");
#if IsModeDbg()
#define USETRACEMALLOC
#define TRACE_RAW_MALLOC
/* Forward declaration */
static void tracemalloc_stop(void);
static void* raw_malloc(size_t size);
static void raw_free(void *ptr);
#ifdef Py_DEBUG
# define TRACE_DEBUG
#endif
/* Protected by the GIL */
static struct {
PyMemAllocatorEx mem;
PyMemAllocatorEx raw;
PyMemAllocatorEx obj;
} allocators;
static struct {
/* Module initialized?
Variable protected by the GIL */
enum {
TRACEMALLOC_NOT_INITIALIZED,
TRACEMALLOC_INITIALIZED,
TRACEMALLOC_FINALIZED
} initialized;
/* Is tracemalloc tracing memory allocations?
Variable protected by the GIL */
int tracing;
/* limit of the number of frames in a traceback, 1 by default.
Variable protected by the GIL. */
int max_nframe;
/* use domain in trace key?
Variable protected by the GIL. */
int use_domain;
} tracemalloc_config = {TRACEMALLOC_NOT_INITIALIZED, 0, 1, 0};
#if defined(TRACE_RAW_MALLOC) && defined(WITH_THREAD)
/* This lock is needed because tracemalloc_free() is called without
the GIL held from PyMem_RawFree(). It cannot acquire the lock because it
would introduce a deadlock in PyThreadState_DeleteCurrent(). */
static PyThread_type_lock tables_lock;
# define TABLES_LOCK() PyThread_acquire_lock(tables_lock, 1)
# define TABLES_UNLOCK() PyThread_release_lock(tables_lock)
#else
/* variables are protected by the GIL */
# define TABLES_LOCK()
# define TABLES_UNLOCK()
#endif
#define DEFAULT_DOMAIN 0
/* Pack the frame_t structure to reduce the memory footprint. */
typedef struct thatispacked {
uintptr_t ptr;
_PyTraceMalloc_domain_t domain;
} pointer_t;
/* Pack the frame_t structure to reduce the memory footprint on 64-bit
architectures: 12 bytes instead of 16. */
typedef struct thatispacked {
/* filename cannot be NULL: "<unknown>" is used if the Python frame
filename is NULL */
PyObject *filename;
unsigned int lineno;
} frame_t;
typedef struct {
Py_uhash_t hash;
int nframe;
frame_t frames[1];
} traceback_t;
#define TRACEBACK_SIZE(NFRAME) \
(sizeof(traceback_t) + sizeof(frame_t) * (NFRAME - 1))
#define MAX_NFRAME \
((INT_MAX - (int)sizeof(traceback_t)) / (int)sizeof(frame_t) + 1)
static PyObject *unknown_filename;
static traceback_t tracemalloc_empty_traceback;
/* Trace of a memory block */
typedef struct {
/* Size of the memory block in bytes */
size_t size;
/* Traceback where the memory block was allocated */
traceback_t *traceback;
} trace_t;
/* Size in bytes of currently traced memory.
Protected by TABLES_LOCK(). */
static size_t tracemalloc_traced_memory;
/* Peak size in bytes of traced memory.
Protected by TABLES_LOCK(). */
static size_t tracemalloc_peak_traced_memory;
/* Hash table used as a set to intern filenames:
PyObject* => PyObject*.
Protected by the GIL */
static _Py_hashtable_t *tracemalloc_filenames;
/* Buffer to store a new traceback in traceback_new().
Protected by the GIL. */
static traceback_t *tracemalloc_traceback;
/* Hash table used as a set to intern tracebacks:
traceback_t* => traceback_t*
Protected by the GIL */
static _Py_hashtable_t *tracemalloc_tracebacks;
/* pointer (void*) => trace (trace_t).
Protected by TABLES_LOCK(). */
static _Py_hashtable_t *tracemalloc_traces;
#ifdef TRACE_DEBUG
static void
tracemalloc_error(const char *format, ...)
{
va_list ap;
fprintf(stderr, "tracemalloc: ");
va_start(ap, format);
vfprintf(stderr, format, ap);
va_end(ap);
fprintf(stderr, "\n");
fflush(stderr);
}
#endif /* TRACE_DEBUG */
#if defined(WITH_THREAD) && defined(TRACE_RAW_MALLOC)
#define REENTRANT_THREADLOCAL
/* If your OS does not provide native thread local storage, you can implement
it manually using a lock. Functions of thread.c cannot be used because
they use PyMem_RawMalloc() which leads to a reentrant call. */
#if !(defined(_POSIX_THREADS) || defined(NT_THREADS))
# error "need native thread local storage (TLS)"
#endif /* _POSIX_THREADS */
static int tracemalloc_reentrant_key = -1;
/* Any non-NULL pointer can be used */
#define REENTRANT Py_True
static int
get_reentrant(void)
{
void *ptr;
assert(tracemalloc_reentrant_key != -1);
ptr = PyThread_get_key_value(tracemalloc_reentrant_key);
if (ptr != NULL) {
assert(ptr == REENTRANT);
return 1;
}
else
return 0;
}
static void
set_reentrant(int reentrant)
{
assert(reentrant == 0 || reentrant == 1);
assert(tracemalloc_reentrant_key != -1);
if (reentrant) {
assert(!get_reentrant());
PyThread_set_key_value(tracemalloc_reentrant_key, REENTRANT);
}
else {
assert(get_reentrant());
PyThread_set_key_value(tracemalloc_reentrant_key, NULL);
}
}
#else
/* WITH_THREAD not defined: Python compiled without threads,
or TRACE_RAW_MALLOC not defined: variable protected by the GIL */
static int tracemalloc_reentrant;
static int
get_reentrant(void)
{
return tracemalloc_reentrant;
}
static void
set_reentrant(int reentrant)
{
assert(reentrant != tracemalloc_reentrant);
tracemalloc_reentrant = reentrant;
}
#endif /* WITH_THREAD */
static Py_uhash_t
hashtable_hash_pyobject(_Py_hashtable_t *ht, const void *pkey)
{
PyObject *obj;
_Py_HASHTABLE_READ_KEY(ht, pkey, obj);
return PyObject_Hash(obj);
}
static int
hashtable_compare_unicode(_Py_hashtable_t *ht, const void *pkey,
const _Py_hashtable_entry_t *entry)
{
PyObject *key1, *key2;
_Py_HASHTABLE_READ_KEY(ht, pkey, key1);
_Py_HASHTABLE_ENTRY_READ_KEY(ht, entry, key2);
if (key1 != NULL && key2 != NULL)
return (PyUnicode_Compare(key1, key2) == 0);
else
return key1 == key2;
}
static Py_uhash_t
hashtable_hash_pointer_t(_Py_hashtable_t *ht, const void *pkey)
{
pointer_t ptr;
Py_uhash_t hash;
_Py_HASHTABLE_READ_KEY(ht, pkey, ptr);
hash = (Py_uhash_t)_Py_HashPointer((void*)ptr.ptr);
hash ^= ptr.domain;
return hash;
}
static int
hashtable_compare_pointer_t(_Py_hashtable_t *ht, const void *pkey,
const _Py_hashtable_entry_t *entry)
{
pointer_t ptr1, ptr2;
_Py_HASHTABLE_READ_KEY(ht, pkey, ptr1);
_Py_HASHTABLE_ENTRY_READ_KEY(ht, entry, ptr2);
/* compare pointer before domain, because pointer is more likely to be
different */
return (ptr1.ptr == ptr2.ptr && ptr1.domain == ptr2.domain);
}
static _Py_hashtable_t *
hashtable_new(size_t key_size, size_t data_size,
_Py_hashtable_hash_func hash_func,
_Py_hashtable_compare_func compare_func)
{
_Py_hashtable_allocator_t hashtable_alloc = {malloc, free};
return _Py_hashtable_new_full(key_size, data_size, 0,
hash_func, compare_func,
&hashtable_alloc);
}
static void*
raw_malloc(size_t size)
{
return allocators.raw.malloc(allocators.raw.ctx, size);
}
static void
raw_free(void *ptr)
{
allocators.raw.free(allocators.raw.ctx, ptr);
}
static Py_uhash_t
hashtable_hash_traceback(_Py_hashtable_t *ht, const void *pkey)
{
traceback_t *traceback;
_Py_HASHTABLE_READ_KEY(ht, pkey, traceback);
return traceback->hash;
}
static int
hashtable_compare_traceback(_Py_hashtable_t *ht, const void *pkey,
const _Py_hashtable_entry_t *entry)
{
traceback_t *traceback1, *traceback2;
const frame_t *frame1, *frame2;
int i;
_Py_HASHTABLE_READ_KEY(ht, pkey, traceback1);
_Py_HASHTABLE_ENTRY_READ_KEY(ht, entry, traceback2);
if (traceback1->nframe != traceback2->nframe)
return 0;
for (i=0; i < traceback1->nframe; i++) {
frame1 = &traceback1->frames[i];
frame2 = &traceback2->frames[i];
if (frame1->lineno != frame2->lineno)
return 0;
if (frame1->filename != frame2->filename) {
assert(PyUnicode_Compare(frame1->filename, frame2->filename) != 0);
return 0;
}
}
return 1;
}
static void
tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame)
{
PyCodeObject *code;
PyObject *filename;
_Py_hashtable_entry_t *entry;
int lineno;
frame->filename = unknown_filename;
lineno = PyFrame_GetLineNumber(pyframe);
if (lineno < 0)
lineno = 0;
frame->lineno = (unsigned int)lineno;
code = pyframe->f_code;
if (code == NULL) {
#ifdef TRACE_DEBUG
tracemalloc_error("failed to get the code object of the frame");
#endif
return;
}
if (code->co_filename == NULL) {
#ifdef TRACE_DEBUG
tracemalloc_error("failed to get the filename of the code object");
#endif
return;
}
filename = code->co_filename;
assert(filename != NULL);
if (filename == NULL)
return;
if (!PyUnicode_Check(filename)) {
#ifdef TRACE_DEBUG
tracemalloc_error("filename is not a unicode string");
#endif
return;
}
if (!PyUnicode_IS_READY(filename)) {
/* Don't make a Unicode string ready to avoid reentrant calls
to tracemalloc_malloc() or tracemalloc_realloc() */
#ifdef TRACE_DEBUG
tracemalloc_error("filename is not a ready unicode string");
#endif
return;
}
/* intern the filename */
entry = _Py_HASHTABLE_GET_ENTRY(tracemalloc_filenames, filename);
if (entry != NULL) {
_Py_HASHTABLE_ENTRY_READ_KEY(tracemalloc_filenames, entry, filename);
}
else {
/* tracemalloc_filenames is responsible to keep a reference
to the filename */
Py_INCREF(filename);
if (_Py_HASHTABLE_SET_NODATA(tracemalloc_filenames, filename) < 0) {
Py_DECREF(filename);
#ifdef TRACE_DEBUG
tracemalloc_error("failed to intern the filename");
#endif
return;
}
}
/* the tracemalloc_filenames table keeps a reference to the filename */
frame->filename = filename;
}
static Py_uhash_t
traceback_hash(traceback_t *traceback)
{
/* code based on tuplehash() of Objects/tupleobject.c */
Py_uhash_t x, y; /* Unsigned for defined overflow behavior. */
int len = traceback->nframe;
Py_uhash_t mult = _PyHASH_MULTIPLIER;
frame_t *frame;
x = 0x345678UL;
frame = traceback->frames;
while (--len >= 0) {
y = (Py_uhash_t)PyObject_Hash(frame->filename);
y ^= (Py_uhash_t)frame->lineno;
frame++;
x = (x ^ y) * mult;
/* the cast might truncate len; that doesn't change hash stability */
mult += (Py_uhash_t)(82520UL + len + len);
}
x += 97531UL;
return x;
}
static void
traceback_get_frames(traceback_t *traceback)
{
PyThreadState *tstate;
PyFrameObject *pyframe;
#ifdef WITH_THREAD
tstate = PyGILState_GetThisThreadState();
#else
tstate = PyThreadState_Get();
#endif
if (tstate == NULL) {
#ifdef TRACE_DEBUG
tracemalloc_error("failed to get the current thread state");
#endif
return;
}
for (pyframe = tstate->frame; pyframe != NULL; pyframe = pyframe->f_back) {
tracemalloc_get_frame(pyframe, &traceback->frames[traceback->nframe]);
assert(traceback->frames[traceback->nframe].filename != NULL);
traceback->nframe++;
if (traceback->nframe == tracemalloc_config.max_nframe)
break;
}
}
static traceback_t *
traceback_new(void)
{
traceback_t *traceback;
_Py_hashtable_entry_t *entry;
#ifdef WITH_THREAD
assert(PyGILState_Check());
#endif
/* get frames */
traceback = tracemalloc_traceback;
traceback->nframe = 0;
traceback_get_frames(traceback);
if (traceback->nframe == 0)
return &tracemalloc_empty_traceback;
traceback->hash = traceback_hash(traceback);
/* intern the traceback */
entry = _Py_HASHTABLE_GET_ENTRY(tracemalloc_tracebacks, traceback);
if (entry != NULL) {
_Py_HASHTABLE_ENTRY_READ_KEY(tracemalloc_tracebacks, entry, traceback);
}
else {
traceback_t *copy;
size_t traceback_size;
traceback_size = TRACEBACK_SIZE(traceback->nframe);
copy = raw_malloc(traceback_size);
if (copy == NULL) {
#ifdef TRACE_DEBUG
tracemalloc_error("failed to intern the traceback: malloc failed");
#endif
return NULL;
}
memcpy(copy, traceback, traceback_size);
if (_Py_HASHTABLE_SET_NODATA(tracemalloc_tracebacks, copy) < 0) {
raw_free(copy);
#ifdef TRACE_DEBUG
tracemalloc_error("failed to intern the traceback: putdata failed");
#endif
return NULL;
}
traceback = copy;
}
return traceback;
}
static int
tracemalloc_use_domain_cb(_Py_hashtable_t *old_traces,
_Py_hashtable_entry_t *entry, void *user_data)
{
uintptr_t ptr;
pointer_t key;
_Py_hashtable_t *new_traces = (_Py_hashtable_t *)user_data;
const void *pdata = _Py_HASHTABLE_ENTRY_PDATA(old_traces, entry);
_Py_HASHTABLE_ENTRY_READ_KEY(old_traces, entry, ptr);
key.ptr = ptr;
key.domain = DEFAULT_DOMAIN;
return _Py_hashtable_set(new_traces,
sizeof(key), &key,
old_traces->data_size, pdata);
}
/* Convert tracemalloc_traces from compact key (uintptr_t) to pointer_t key.
* Return 0 on success, -1 on error. */
static int
tracemalloc_use_domain(void)
{
_Py_hashtable_t *new_traces = NULL;
assert(!tracemalloc_config.use_domain);
new_traces = hashtable_new(sizeof(pointer_t),
sizeof(trace_t),
hashtable_hash_pointer_t,
hashtable_compare_pointer_t);
if (new_traces == NULL) {
return -1;
}
if (_Py_hashtable_foreach(tracemalloc_traces, tracemalloc_use_domain_cb,
new_traces) < 0)
{
_Py_hashtable_destroy(new_traces);
return -1;
}
_Py_hashtable_destroy(tracemalloc_traces);
tracemalloc_traces = new_traces;
tracemalloc_config.use_domain = 1;
return 0;
}
static void
tracemalloc_remove_trace(_PyTraceMalloc_domain_t domain, uintptr_t ptr)
{
trace_t trace;
int removed;
assert(tracemalloc_config.tracing);
if (tracemalloc_config.use_domain) {
pointer_t key = {ptr, domain};
removed = _Py_HASHTABLE_POP(tracemalloc_traces, key, trace);
}
else {
removed = _Py_HASHTABLE_POP(tracemalloc_traces, ptr, trace);
}
if (!removed) {
return;
}
assert(tracemalloc_traced_memory >= trace.size);
tracemalloc_traced_memory -= trace.size;
}
#define REMOVE_TRACE(ptr) \
tracemalloc_remove_trace(DEFAULT_DOMAIN, (uintptr_t)(ptr))
static int
tracemalloc_add_trace(_PyTraceMalloc_domain_t domain, uintptr_t ptr,
size_t size)
{
pointer_t key = {ptr, domain};
traceback_t *traceback;
trace_t trace;
_Py_hashtable_entry_t* entry;
int res;
assert(tracemalloc_config.tracing);
traceback = traceback_new();
if (traceback == NULL) {
return -1;
}
if (!tracemalloc_config.use_domain && domain != DEFAULT_DOMAIN) {
/* first trace using a non-zero domain whereas traces use compact
(uintptr_t) keys: switch to pointer_t keys. */
if (tracemalloc_use_domain() < 0) {
return -1;
}
}
if (tracemalloc_config.use_domain) {
entry = _Py_HASHTABLE_GET_ENTRY(tracemalloc_traces, key);
}
else {
entry = _Py_HASHTABLE_GET_ENTRY(tracemalloc_traces, ptr);
}
if (entry != NULL) {
/* the memory block is already tracked */
_Py_HASHTABLE_ENTRY_READ_DATA(tracemalloc_traces, entry, trace);
assert(tracemalloc_traced_memory >= trace.size);
tracemalloc_traced_memory -= trace.size;
trace.size = size;
trace.traceback = traceback;
_Py_HASHTABLE_ENTRY_WRITE_DATA(tracemalloc_traces, entry, trace);
}
else {
trace.size = size;
trace.traceback = traceback;
if (tracemalloc_config.use_domain) {
res = _Py_HASHTABLE_SET(tracemalloc_traces, key, trace);
}
else {
res = _Py_HASHTABLE_SET(tracemalloc_traces, ptr, trace);
}
if (res != 0) {
return res;
}
}
assert(tracemalloc_traced_memory <= SIZE_MAX - size);
tracemalloc_traced_memory += size;
if (tracemalloc_traced_memory > tracemalloc_peak_traced_memory)
tracemalloc_peak_traced_memory = tracemalloc_traced_memory;
return 0;
}
#define ADD_TRACE(ptr, size) \
tracemalloc_add_trace(DEFAULT_DOMAIN, (uintptr_t)(ptr), size)
static void*
tracemalloc_alloc(int use_calloc, void *ctx, size_t nelem, size_t elsize)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
void *ptr;
assert(elsize == 0 || nelem <= SIZE_MAX / elsize);
if (use_calloc)
ptr = alloc->calloc(alloc->ctx, nelem, elsize);
else
ptr = alloc->malloc(alloc->ctx, nelem * elsize);
if (ptr == NULL)
return NULL;
TABLES_LOCK();
if (ADD_TRACE(ptr, nelem * elsize) < 0) {
/* Failed to allocate a trace for the new memory block */
TABLES_UNLOCK();
alloc->free(alloc->ctx, ptr);
return NULL;
}
TABLES_UNLOCK();
return ptr;
}
static void*
tracemalloc_realloc(void *ctx, void *ptr, size_t new_size)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
void *ptr2;
ptr2 = alloc->realloc(alloc->ctx, ptr, new_size);
if (ptr2 == NULL)
return NULL;
if (ptr != NULL) {
/* an existing memory block has been resized */
TABLES_LOCK();
/* tracemalloc_add_trace() updates the trace if there is already
a trace at address (domain, ptr2) */
if (ptr2 != ptr) {
REMOVE_TRACE(ptr);
}
if (ADD_TRACE(ptr2, new_size) < 0) {
/* Memory allocation failed. The error cannot be reported to
the caller, because realloc() may already have shrunk the
memory block and so removed bytes.
This case is very unlikely: a hash entry has just been
released, so the hash table should have at least one free entry.
The GIL and the table lock ensures that only one thread is
allocating memory. */
assert(0 && "should never happen");
}
TABLES_UNLOCK();
}
else {
/* new allocation */
TABLES_LOCK();
if (ADD_TRACE(ptr2, new_size) < 0) {
/* Failed to allocate a trace for the new memory block */
TABLES_UNLOCK();
alloc->free(alloc->ctx, ptr2);
return NULL;
}
TABLES_UNLOCK();
}
return ptr2;
}
static void
tracemalloc_free(void *ctx, void *ptr)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (ptr == NULL)
return;
/* GIL cannot be locked in PyMem_RawFree() because it would introduce
a deadlock in PyThreadState_DeleteCurrent(). */
alloc->free(alloc->ctx, ptr);
TABLES_LOCK();
REMOVE_TRACE(ptr);
TABLES_UNLOCK();
}
static void*
tracemalloc_alloc_gil(int use_calloc, void *ctx, size_t nelem, size_t elsize)
{
void *ptr;
if (get_reentrant()) {
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (use_calloc)
return alloc->calloc(alloc->ctx, nelem, elsize);
else
return alloc->malloc(alloc->ctx, nelem * elsize);
}
/* Ignore reentrant call. PyObjet_Malloc() calls PyMem_Malloc() for
allocations larger than 512 bytes, don't trace the same memory
allocation twice. */
set_reentrant(1);
ptr = tracemalloc_alloc(use_calloc, ctx, nelem, elsize);
set_reentrant(0);
return ptr;
}
static void*
tracemalloc_malloc_gil(void *ctx, size_t size)
{
return tracemalloc_alloc_gil(0, ctx, 1, size);
}
static void*
tracemalloc_calloc_gil(void *ctx, size_t nelem, size_t elsize)
{
return tracemalloc_alloc_gil(1, ctx, nelem, elsize);
}
static void*
tracemalloc_realloc_gil(void *ctx, void *ptr, size_t new_size)
{
void *ptr2;
if (get_reentrant()) {
/* Reentrant call to PyMem_Realloc() and PyMem_RawRealloc().
Example: PyMem_RawRealloc() is called internally by pymalloc
(_PyObject_Malloc() and _PyObject_Realloc()) to allocate a new
arena (new_arena()). */
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
ptr2 = alloc->realloc(alloc->ctx, ptr, new_size);
if (ptr2 != NULL && ptr != NULL) {
TABLES_LOCK();
REMOVE_TRACE(ptr);
TABLES_UNLOCK();
}
return ptr2;
}
/* Ignore reentrant call. PyObjet_Realloc() calls PyMem_Realloc() for
allocations larger than 512 bytes. Don't trace the same memory
allocation twice. */
set_reentrant(1);
ptr2 = tracemalloc_realloc(ctx, ptr, new_size);
set_reentrant(0);
return ptr2;
}
#ifdef TRACE_RAW_MALLOC
static void*
tracemalloc_raw_alloc(int use_calloc, void *ctx, size_t nelem, size_t elsize)
{
#ifdef WITH_THREAD
PyGILState_STATE gil_state;
#endif /* WITH_THREAD */
void *ptr;
if (get_reentrant()) {
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (use_calloc)
return alloc->calloc(alloc->ctx, nelem, elsize);
else
return alloc->malloc(alloc->ctx, nelem * elsize);
}
/* Ignore reentrant call. PyGILState_Ensure() may call PyMem_RawMalloc()
indirectly which would call PyGILState_Ensure() if reentrant are not
disabled. */
set_reentrant(1);
#ifdef WITH_THREAD
gil_state = PyGILState_Ensure();
ptr = tracemalloc_alloc(use_calloc, ctx, nelem, elsize);
PyGILState_Release(gil_state);
#else
ptr = tracemalloc_alloc(use_calloc, ctx, nelem, elsize);
#endif /* WITH_THREAD */
set_reentrant(0);
return ptr;
}
static void*
tracemalloc_raw_malloc(void *ctx, size_t size)
{
return tracemalloc_raw_alloc(0, ctx, 1, size);
}
static void*
tracemalloc_raw_calloc(void *ctx, size_t nelem, size_t elsize)
{
return tracemalloc_raw_alloc(1, ctx, nelem, elsize);
}
static void*
tracemalloc_raw_realloc(void *ctx, void *ptr, size_t new_size)
{
#ifdef WITH_THREAD
PyGILState_STATE gil_state;
#endif
void *ptr2;
if (get_reentrant()) {
/* Reentrant call to PyMem_RawRealloc(). */
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
ptr2 = alloc->realloc(alloc->ctx, ptr, new_size);
if (ptr2 != NULL && ptr != NULL) {
TABLES_LOCK();
REMOVE_TRACE(ptr);
TABLES_UNLOCK();
}
return ptr2;
}
/* Ignore reentrant call. PyGILState_Ensure() may call PyMem_RawMalloc()
indirectly which would call PyGILState_Ensure() if reentrant calls are
not disabled. */
set_reentrant(1);
#ifdef WITH_THREAD
gil_state = PyGILState_Ensure();
ptr2 = tracemalloc_realloc(ctx, ptr, new_size);
PyGILState_Release(gil_state);
#else
ptr2 = tracemalloc_realloc(ctx, ptr, new_size);
#endif
set_reentrant(0);
return ptr2;
}
#endif /* TRACE_RAW_MALLOC */
static int
tracemalloc_clear_filename(_Py_hashtable_t *ht, _Py_hashtable_entry_t *entry,
void *user_data)
{
PyObject *filename;
_Py_HASHTABLE_ENTRY_READ_KEY(ht, entry, filename);
Py_DECREF(filename);
return 0;
}
static int
traceback_free_traceback(_Py_hashtable_t *ht, _Py_hashtable_entry_t *entry,
void *user_data)
{
traceback_t *traceback;
_Py_HASHTABLE_ENTRY_READ_KEY(ht, entry, traceback);
raw_free(traceback);
return 0;
}
/* reentrant flag must be set to call this function and GIL must be held */
static void
tracemalloc_clear_traces(void)
{
#ifdef WITH_THREAD
/* The GIL protects variables againt concurrent access */
assert(PyGILState_Check());
#endif
TABLES_LOCK();
_Py_hashtable_clear(tracemalloc_traces);
tracemalloc_traced_memory = 0;
tracemalloc_peak_traced_memory = 0;
TABLES_UNLOCK();
_Py_hashtable_foreach(tracemalloc_tracebacks, traceback_free_traceback, NULL);
_Py_hashtable_clear(tracemalloc_tracebacks);
_Py_hashtable_foreach(tracemalloc_filenames, tracemalloc_clear_filename, NULL);
_Py_hashtable_clear(tracemalloc_filenames);
}
static int
tracemalloc_init(void)
{
if (tracemalloc_config.initialized == TRACEMALLOC_FINALIZED) {
PyErr_SetString(PyExc_RuntimeError,
"the tracemalloc module has been unloaded");
return -1;
}
if (tracemalloc_config.initialized == TRACEMALLOC_INITIALIZED)
return 0;
PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw);
#ifdef REENTRANT_THREADLOCAL
tracemalloc_reentrant_key = PyThread_create_key();
if (tracemalloc_reentrant_key == -1) {
#ifdef MS_WINDOWS
PyErr_SetFromWindowsErr(0);
#else
PyErr_SetFromErrno(PyExc_OSError);
#endif /* MS_WINDOWS */
return -1;
}
#endif /* REENTRANT_THREADLOCAL */
#if defined(WITH_THREAD) && defined(TRACE_RAW_MALLOC)
if (tables_lock == NULL) {
tables_lock = PyThread_allocate_lock();
if (tables_lock == NULL) {
PyErr_SetString(PyExc_RuntimeError, "cannot allocate lock");
return -1;
}
}
#endif /* WITH_THREAD */
tracemalloc_filenames = hashtable_new(sizeof(PyObject *), 0,
hashtable_hash_pyobject,
hashtable_compare_unicode);
tracemalloc_tracebacks = hashtable_new(sizeof(traceback_t *), 0,
hashtable_hash_traceback,
hashtable_compare_traceback);
if (tracemalloc_config.use_domain) {
tracemalloc_traces = hashtable_new(sizeof(pointer_t),
sizeof(trace_t),
hashtable_hash_pointer_t,
hashtable_compare_pointer_t);
}
else {
tracemalloc_traces = hashtable_new(sizeof(uintptr_t),
sizeof(trace_t),
_Py_hashtable_hash_ptr,
_Py_hashtable_compare_direct);
}
if (tracemalloc_filenames == NULL || tracemalloc_tracebacks == NULL
|| tracemalloc_traces == NULL) {
PyErr_NoMemory();
return -1;
}
unknown_filename = PyUnicode_FromString("<unknown>");
if (unknown_filename == NULL)
return -1;
PyUnicode_InternInPlace(&unknown_filename);
tracemalloc_empty_traceback.nframe = 1;
/* borrowed reference */
tracemalloc_empty_traceback.frames[0].filename = unknown_filename;
tracemalloc_empty_traceback.frames[0].lineno = 0;
tracemalloc_empty_traceback.hash = traceback_hash(&tracemalloc_empty_traceback);
tracemalloc_config.initialized = TRACEMALLOC_INITIALIZED;
return 0;
}
static void
tracemalloc_deinit(void)
{
if (tracemalloc_config.initialized != TRACEMALLOC_INITIALIZED)
return;
tracemalloc_config.initialized = TRACEMALLOC_FINALIZED;
tracemalloc_stop();
/* destroy hash tables */
_Py_hashtable_destroy(tracemalloc_tracebacks);
_Py_hashtable_destroy(tracemalloc_filenames);
_Py_hashtable_destroy(tracemalloc_traces);
#if defined(WITH_THREAD) && defined(TRACE_RAW_MALLOC)
if (tables_lock != NULL) {
PyThread_free_lock(tables_lock);
tables_lock = NULL;
}
#endif
#ifdef REENTRANT_THREADLOCAL
PyThread_delete_key(tracemalloc_reentrant_key);
tracemalloc_reentrant_key = -1;
#endif
Py_XDECREF(unknown_filename);
}
static int
tracemalloc_start(int max_nframe)
{
PyMemAllocatorEx alloc;
size_t size;
if (tracemalloc_init() < 0)
return -1;
if (tracemalloc_config.tracing) {
/* hook already installed: do nothing */
return 0;
}
assert(1 <= max_nframe && max_nframe <= MAX_NFRAME);
tracemalloc_config.max_nframe = max_nframe;
/* allocate a buffer to store a new traceback */
size = TRACEBACK_SIZE(max_nframe);
assert(tracemalloc_traceback == NULL);
tracemalloc_traceback = raw_malloc(size);
if (tracemalloc_traceback == NULL) {
PyErr_NoMemory();
return -1;
}
#ifdef TRACE_RAW_MALLOC
alloc.malloc = tracemalloc_raw_malloc;
alloc.calloc = tracemalloc_raw_calloc;
alloc.realloc = tracemalloc_raw_realloc;
alloc.free = tracemalloc_free;
alloc.ctx = &allocators.raw;
PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw);
PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &alloc);
#endif
alloc.malloc = tracemalloc_malloc_gil;
alloc.calloc = tracemalloc_calloc_gil;
alloc.realloc = tracemalloc_realloc_gil;
alloc.free = tracemalloc_free;
alloc.ctx = &allocators.mem;
PyMem_GetAllocator(PYMEM_DOMAIN_MEM, &allocators.mem);
PyMem_SetAllocator(PYMEM_DOMAIN_MEM, &alloc);
alloc.ctx = &allocators.obj;
PyMem_GetAllocator(PYMEM_DOMAIN_OBJ, &allocators.obj);
PyMem_SetAllocator(PYMEM_DOMAIN_OBJ, &alloc);
/* everything is ready: start tracing Python memory allocations */
tracemalloc_config.tracing = 1;
return 0;
}
static void
tracemalloc_stop(void)
{
if (!tracemalloc_config.tracing)
return;
/* stop tracing Python memory allocations */
tracemalloc_config.tracing = 0;
/* unregister the hook on memory allocators */
#ifdef TRACE_RAW_MALLOC
PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &allocators.raw);
#endif
PyMem_SetAllocator(PYMEM_DOMAIN_MEM, &allocators.mem);
PyMem_SetAllocator(PYMEM_DOMAIN_OBJ, &allocators.obj);
tracemalloc_clear_traces();
/* release memory */
raw_free(tracemalloc_traceback);
tracemalloc_traceback = NULL;
}
PyDoc_STRVAR(tracemalloc_is_tracing_doc,
"is_tracing()->bool\n"
"\n"
"True if the tracemalloc module is tracing Python memory allocations,\n"
"False otherwise.");
static PyObject*
py_tracemalloc_is_tracing(PyObject *self)
{
return PyBool_FromLong(tracemalloc_config.tracing);
}
PyDoc_STRVAR(tracemalloc_clear_traces_doc,
"clear_traces()\n"
"\n"
"Clear traces of memory blocks allocated by Python.");
static PyObject*
py_tracemalloc_clear_traces(PyObject *self)
{
if (!tracemalloc_config.tracing)
Py_RETURN_NONE;
set_reentrant(1);
tracemalloc_clear_traces();
set_reentrant(0);
Py_RETURN_NONE;
}
static PyObject*
frame_to_pyobject(frame_t *frame)
{
PyObject *frame_obj, *lineno_obj;
frame_obj = PyTuple_New(2);
if (frame_obj == NULL)
return NULL;
Py_INCREF(frame->filename);
PyTuple_SET_ITEM(frame_obj, 0, frame->filename);
lineno_obj = PyLong_FromUnsignedLong(frame->lineno);
if (lineno_obj == NULL) {
Py_DECREF(frame_obj);
return NULL;
}
PyTuple_SET_ITEM(frame_obj, 1, lineno_obj);
return frame_obj;
}
static PyObject*
traceback_to_pyobject(traceback_t *traceback, _Py_hashtable_t *intern_table)
{
int i;
PyObject *frames, *frame;
if (intern_table != NULL) {
if (_Py_HASHTABLE_GET(intern_table, traceback, frames)) {
Py_INCREF(frames);
return frames;
}
}
frames = PyTuple_New(traceback->nframe);
if (frames == NULL)
return NULL;
for (i=0; i < traceback->nframe; i++) {
frame = frame_to_pyobject(&traceback->frames[i]);
if (frame == NULL) {
Py_DECREF(frames);
return NULL;
}
PyTuple_SET_ITEM(frames, i, frame);
}
if (intern_table != NULL) {
if (_Py_HASHTABLE_SET(intern_table, traceback, frames) < 0) {
Py_DECREF(frames);
PyErr_NoMemory();
return NULL;
}
/* intern_table keeps a new reference to frames */
Py_INCREF(frames);
}
return frames;
}
static PyObject*
trace_to_pyobject(_PyTraceMalloc_domain_t domain, trace_t *trace,
_Py_hashtable_t *intern_tracebacks)
{
PyObject *trace_obj = NULL;
PyObject *obj;
trace_obj = PyTuple_New(3);
if (trace_obj == NULL)
return NULL;
obj = PyLong_FromSize_t(domain);
if (obj == NULL) {
Py_DECREF(trace_obj);
return NULL;
}
PyTuple_SET_ITEM(trace_obj, 0, obj);
obj = PyLong_FromSize_t(trace->size);
if (obj == NULL) {
Py_DECREF(trace_obj);
return NULL;
}
PyTuple_SET_ITEM(trace_obj, 1, obj);
obj = traceback_to_pyobject(trace->traceback, intern_tracebacks);
if (obj == NULL) {
Py_DECREF(trace_obj);
return NULL;
}
PyTuple_SET_ITEM(trace_obj, 2, obj);
return trace_obj;
}
typedef struct {
_Py_hashtable_t *traces;
_Py_hashtable_t *tracebacks;
PyObject *list;
} get_traces_t;
static int
tracemalloc_get_traces_fill(_Py_hashtable_t *traces, _Py_hashtable_entry_t *entry,
void *user_data)
{
get_traces_t *get_traces = user_data;
_PyTraceMalloc_domain_t domain;
trace_t trace;
PyObject *tracemalloc_obj;
int res;
if (tracemalloc_config.use_domain) {
pointer_t key;
_Py_HASHTABLE_ENTRY_READ_KEY(traces, entry, key);
domain = key.domain;
}
else {
domain = DEFAULT_DOMAIN;
}
_Py_HASHTABLE_ENTRY_READ_DATA(traces, entry, trace);
tracemalloc_obj = trace_to_pyobject(domain, &trace, get_traces->tracebacks);
if (tracemalloc_obj == NULL)
return 1;
res = PyList_Append(get_traces->list, tracemalloc_obj);
Py_DECREF(tracemalloc_obj);
if (res < 0)
return 1;
return 0;
}
static int
tracemalloc_pyobject_decref_cb(_Py_hashtable_t *tracebacks,
_Py_hashtable_entry_t *entry,
void *user_data)
{
PyObject *obj;
_Py_HASHTABLE_ENTRY_READ_DATA(tracebacks, entry, obj);
Py_DECREF(obj);
return 0;
}
PyDoc_STRVAR(tracemalloc_get_traces_doc,
"_get_traces() -> list\n"
"\n"
"Get traces of all memory blocks allocated by Python.\n"
"Return a list of (size: int, traceback: tuple) tuples.\n"
"traceback is a tuple of (filename: str, lineno: int) tuples.\n"
"\n"
"Return an empty list if the tracemalloc module is disabled.");
static PyObject*
py_tracemalloc_get_traces(PyObject *self, PyObject *obj)
{
get_traces_t get_traces;
int err;
get_traces.traces = NULL;
get_traces.tracebacks = NULL;
get_traces.list = PyList_New(0);
if (get_traces.list == NULL)
goto error;
if (!tracemalloc_config.tracing)
return get_traces.list;
/* the traceback hash table is used temporarily to intern traceback tuple
of (filename, lineno) tuples */
get_traces.tracebacks = hashtable_new(sizeof(traceback_t *),
sizeof(PyObject *),
_Py_hashtable_hash_ptr,
_Py_hashtable_compare_direct);
if (get_traces.tracebacks == NULL) {
PyErr_NoMemory();
goto error;
}
TABLES_LOCK();
get_traces.traces = _Py_hashtable_copy(tracemalloc_traces);
TABLES_UNLOCK();
if (get_traces.traces == NULL) {
PyErr_NoMemory();
goto error;
}
set_reentrant(1);
err = _Py_hashtable_foreach(get_traces.traces,
tracemalloc_get_traces_fill, &get_traces);
set_reentrant(0);
if (err)
goto error;
goto finally;
error:
Py_CLEAR(get_traces.list);
finally:
if (get_traces.tracebacks != NULL) {
_Py_hashtable_foreach(get_traces.tracebacks,
tracemalloc_pyobject_decref_cb, NULL);
_Py_hashtable_destroy(get_traces.tracebacks);
}
if (get_traces.traces != NULL) {
_Py_hashtable_destroy(get_traces.traces);
}
return get_traces.list;
}
static traceback_t*
tracemalloc_get_traceback(_PyTraceMalloc_domain_t domain, uintptr_t ptr)
{
trace_t trace;
int found;
if (!tracemalloc_config.tracing)
return NULL;
TABLES_LOCK();
if (tracemalloc_config.use_domain) {
pointer_t key = {ptr, domain};
found = _Py_HASHTABLE_GET(tracemalloc_traces, key, trace);
}
else {
found = _Py_HASHTABLE_GET(tracemalloc_traces, ptr, trace);
}
TABLES_UNLOCK();
if (!found)
return NULL;
return trace.traceback;
}
PyDoc_STRVAR(tracemalloc_get_object_traceback_doc,
"_get_object_traceback(obj)\n"
"\n"
"Get the traceback where the Python object obj was allocated.\n"
"Return a tuple of (filename: str, lineno: int) tuples.\n"
"\n"
"Return None if the tracemalloc module is disabled or did not\n"
"trace the allocation of the object.");
static PyObject*
py_tracemalloc_get_object_traceback(PyObject *self, PyObject *obj)
{
PyTypeObject *type;
void *ptr;
traceback_t *traceback;
type = Py_TYPE(obj);
if (PyType_IS_GC(type))
ptr = (void *)((char *)obj - sizeof(PyGC_Head));
else
ptr = (void *)obj;
traceback = tracemalloc_get_traceback(DEFAULT_DOMAIN, (uintptr_t)ptr);
if (traceback == NULL)
Py_RETURN_NONE;
return traceback_to_pyobject(traceback, NULL);
}
#define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str))
static void
_PyMem_DumpFrame(int fd, frame_t * frame)
{
PUTS(fd, " File \"");
_Py_DumpASCII(fd, frame->filename);
PUTS(fd, "\", line ");
_Py_DumpDecimal(fd, frame->lineno);
PUTS(fd, "\n");
}
/* Dump the traceback where a memory block was allocated into file descriptor
fd. The function may block on TABLES_LOCK() but it is unlikely. */
void
_PyMem_DumpTraceback(int fd, const void *ptr)
{
traceback_t *traceback;
int i;
if (!tracemalloc_config.tracing) {
PUTS(fd, "Enable tracemalloc to get the memory block "
"allocation traceback\n\n");
return;
}
traceback = tracemalloc_get_traceback(DEFAULT_DOMAIN, (uintptr_t)ptr);
if (traceback == NULL)
return;
PUTS(fd, "Memory block allocated at (most recent call first):\n");
for (i=0; i < traceback->nframe; i++) {
_PyMem_DumpFrame(fd, &traceback->frames[i]);
}
PUTS(fd, "\n");
}
#undef PUTS
PyDoc_STRVAR(tracemalloc_start_doc,
"start(nframe: int=1)\n"
"\n"
"Start tracing Python memory allocations. Set also the maximum number \n"
"of frames stored in the traceback of a trace to nframe.");
static PyObject*
py_tracemalloc_start(PyObject *self, PyObject *args)
{
Py_ssize_t nframe = 1;
int nframe_int;
if (!PyArg_ParseTuple(args, "|n:start", &nframe))
return NULL;
if (nframe < 1 || nframe > MAX_NFRAME) {
PyErr_Format(PyExc_ValueError,
"the number of frames must be in range [1; %i]",
MAX_NFRAME);
return NULL;
}
nframe_int = Py_SAFE_DOWNCAST(nframe, Py_ssize_t, int);
if (tracemalloc_start(nframe_int) < 0)
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(tracemalloc_stop_doc,
"stop()\n"
"\n"
"Stop tracing Python memory allocations and clear traces\n"
"of memory blocks allocated by Python.");
static PyObject*
py_tracemalloc_stop(PyObject *self)
{
tracemalloc_stop();
Py_RETURN_NONE;
}
PyDoc_STRVAR(tracemalloc_get_traceback_limit_doc,
"get_traceback_limit() -> int\n"
"\n"
"Get the maximum number of frames stored in the traceback\n"
"of a trace.\n"
"\n"
"By default, a trace of an allocated memory block only stores\n"
"the most recent frame: the limit is 1.");
static PyObject*
py_tracemalloc_get_traceback_limit(PyObject *self)
{
return PyLong_FromLong(tracemalloc_config.max_nframe);
}
PyDoc_STRVAR(tracemalloc_get_tracemalloc_memory_doc,
"get_tracemalloc_memory() -> int\n"
"\n"
"Get the memory usage in bytes of the tracemalloc module\n"
"used internally to trace memory allocations.");
static PyObject*
tracemalloc_get_tracemalloc_memory(PyObject *self)
{
size_t size;
PyObject *size_obj;
size = _Py_hashtable_size(tracemalloc_tracebacks);
size += _Py_hashtable_size(tracemalloc_filenames);
TABLES_LOCK();
size += _Py_hashtable_size(tracemalloc_traces);
TABLES_UNLOCK();
size_obj = PyLong_FromSize_t(size);
return Py_BuildValue("N", size_obj);
}
PyDoc_STRVAR(tracemalloc_get_traced_memory_doc,
"get_traced_memory() -> (int, int)\n"
"\n"
"Get the current size and peak size of memory blocks traced\n"
"by the tracemalloc module as a tuple: (current: int, peak: int).");
static PyObject*
tracemalloc_get_traced_memory(PyObject *self)
{
Py_ssize_t size, peak_size;
PyObject *size_obj, *peak_size_obj;
if (!tracemalloc_config.tracing)
return Py_BuildValue("ii", 0, 0);
TABLES_LOCK();
size = tracemalloc_traced_memory;
peak_size = tracemalloc_peak_traced_memory;
TABLES_UNLOCK();
size_obj = PyLong_FromSize_t(size);
peak_size_obj = PyLong_FromSize_t(peak_size);
return Py_BuildValue("NN", size_obj, peak_size_obj);
}
static PyMethodDef module_methods[] = {
{"is_tracing", (PyCFunction)py_tracemalloc_is_tracing,
METH_NOARGS, tracemalloc_is_tracing_doc},
{"clear_traces", (PyCFunction)py_tracemalloc_clear_traces,
METH_NOARGS, tracemalloc_clear_traces_doc},
{"_get_traces", (PyCFunction)py_tracemalloc_get_traces,
METH_NOARGS, tracemalloc_get_traces_doc},
{"_get_object_traceback", (PyCFunction)py_tracemalloc_get_object_traceback,
METH_O, tracemalloc_get_object_traceback_doc},
{"start", (PyCFunction)py_tracemalloc_start,
METH_VARARGS, tracemalloc_start_doc},
{"stop", (PyCFunction)py_tracemalloc_stop,
METH_NOARGS, tracemalloc_stop_doc},
{"get_traceback_limit", (PyCFunction)py_tracemalloc_get_traceback_limit,
METH_NOARGS, tracemalloc_get_traceback_limit_doc},
{"get_tracemalloc_memory", (PyCFunction)tracemalloc_get_tracemalloc_memory,
METH_NOARGS, tracemalloc_get_tracemalloc_memory_doc},
{"get_traced_memory", (PyCFunction)tracemalloc_get_traced_memory,
METH_NOARGS, tracemalloc_get_traced_memory_doc},
{0}
};
PyDoc_STRVAR(module_doc,
"Debug module to trace memory blocks allocated by Python.");
static int
parse_sys_xoptions(PyObject *value)
{
PyObject *valuelong;
long nframe;
if (value == Py_True)
return 1;
assert(PyUnicode_Check(value));
if (PyUnicode_GetLength(value) == 0)
return -1;
valuelong = PyLong_FromUnicodeObject(value, 10);
if (valuelong == NULL)
return -1;
nframe = PyLong_AsLong(valuelong);
Py_DECREF(valuelong);
if (nframe == -1 && PyErr_Occurred())
return -1;
if (nframe < 1 || nframe > MAX_NFRAME)
return -1;
return Py_SAFE_DOWNCAST(nframe, long, int);
}
int
_PyTraceMalloc_Init(void)
{
char *p;
int nframe;
#ifdef WITH_THREAD
assert(PyGILState_Check());
#endif
if ((p = Py_GETENV("PYTHONTRACEMALLOC")) && *p != '\0') {
char *endptr = p;
long value;
errno = 0;
value = strtol(p, &endptr, 10);
if (*endptr != '\0'
|| value < 1
|| value > MAX_NFRAME
|| errno == ERANGE)
{
Py_FatalError("PYTHONTRACEMALLOC: invalid number of frames");
return -1;
}
nframe = (int)value;
}
else {
PyObject *xoptions, *key, *value;
xoptions = PySys_GetXOptions();
if (xoptions == NULL)
return -1;
key = PyUnicode_FromString("tracemalloc");
if (key == NULL)
return -1;
value = PyDict_GetItemWithError(xoptions, key); /* borrowed */
Py_DECREF(key);
if (value == NULL) {
if (PyErr_Occurred())
return -1;
/* -X tracemalloc is not used */
return 0;
}
nframe = parse_sys_xoptions(value);
if (nframe < 0) {
Py_FatalError("-X tracemalloc=NFRAME: invalid number of frames");
}
}
return tracemalloc_start(nframe);
}
void
_PyTraceMalloc_Fini(void)
{
#ifdef WITH_THREAD
assert(PyGILState_Check());
#endif
tracemalloc_deinit();
}
int
(_PyTraceMalloc_Track)(_PyTraceMalloc_domain_t domain, uintptr_t ptr,
size_t size)
{
int res;
#ifdef WITH_THREAD
PyGILState_STATE gil_state;
#endif
if (!tracemalloc_config.tracing) {
/* tracemalloc is not tracing: do nothing */
return -2;
}
#ifdef WITH_THREAD
gil_state = PyGILState_Ensure();
#endif
TABLES_LOCK();
res = tracemalloc_add_trace(domain, ptr, size);
TABLES_UNLOCK();
#ifdef WITH_THREAD
PyGILState_Release(gil_state);
#endif
return res;
}
int
(_PyTraceMalloc_Untrack)(_PyTraceMalloc_domain_t domain, uintptr_t ptr)
{
if (!tracemalloc_config.tracing) {
/* tracemalloc is not tracing: do nothing */
return -2;
}
TABLES_LOCK();
tracemalloc_remove_trace(domain, ptr);
TABLES_UNLOCK();
return 0;
}
PyObject*
(_PyTraceMalloc_GetTraceback)(_PyTraceMalloc_domain_t domain, uintptr_t ptr)
{
traceback_t *traceback;
traceback = tracemalloc_get_traceback(domain, ptr);
if (traceback == NULL)
Py_RETURN_NONE;
return traceback_to_pyobject(traceback, NULL);
}
#endif /* IsModeDbg() */
static struct PyModuleDef module_def = {
PyModuleDef_HEAD_INIT,
"_tracemalloc",
#ifdef USETRACEMALLOC
module_doc,
#else
NULL,
#endif
0, /* non-negative size to be able to unload the module */
#ifdef USETRACEMALLOC
module_methods,
#else
NULL,
#endif
NULL,
};
PyMODINIT_FUNC
PyInit__tracemalloc(void)
{
PyObject *m;
m = PyModule_Create(&module_def);
if (m == NULL)
return NULL;
#ifdef USETRACEMALLOC
if (tracemalloc_init() < 0)
return NULL;
#endif
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__tracemalloc = {
"_tracemalloc",
PyInit__tracemalloc,
};
| 48,729 | 1,620 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_findnfcindex.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
int
_PyUnicode_FindNfcIndex(const _PyUnicode_Reindex *nfc, Py_UCS4 code)
{
unsigned int index;
for (index = 0; nfc[index].start; index++) {
unsigned int start = nfc[index].start;
if (code < start)
return -1;
if (code <= start + nfc[index].count) {
unsigned int delta = code - start;
return nfc[index].index + delta;
}
}
return -1;
}
| 1,309 | 25 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/fspath.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/unicodeobject.h"
/* clang-format off */
/*
Return the file system path representation of the object.
If the object is str or bytes, then allow it to pass through with
an incremented refcount. If the object defines __fspath__(), then
return the result of that method. All other types raise a TypeError.
*/
PyObject *
PyOS_FSPath(PyObject *path)
{
/* For error message reasons, this function is manually inlined in
path_converter(). */
_Py_IDENTIFIER(__fspath__);
PyObject *func = NULL;
PyObject *path_repr = NULL;
if (PyUnicode_Check(path) || PyBytes_Check(path)) {
Py_INCREF(path);
return path;
}
func = _PyObject_LookupSpecial(path, &PyId___fspath__);
if (NULL == func) {
return PyErr_Format(PyExc_TypeError,
"expected str, bytes or os.PathLike object, "
"not %.200s",
Py_TYPE(path)->tp_name);
}
path_repr = PyObject_CallFunctionObjArgs(func, NULL);
Py_DECREF(func);
if (NULL == path_repr) {
return NULL;
}
if (!(PyUnicode_Check(path_repr) || PyBytes_Check(path_repr))) {
PyErr_Format(PyExc_TypeError,
"expected %.200s.__fspath__() to return str or bytes, "
"not %.200s", Py_TYPE(path)->tp_name,
Py_TYPE(path_repr)->tp_name);
Py_DECREF(path_repr);
return NULL;
}
return path_repr;
}
| 2,531 | 60 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/overlapped.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/structmember.h"
/* clang-format off */
/*
* Support for overlapped IO
*
* Some code borrowed from Modules/_winapi.c of CPython
*/
/* XXX check overflow and DWORD <-> Py_ssize_t conversions
Check itemsize */
#define WINDOWS_LEAN_AND_MEAN
#include <winsock2.h>
#include <ws2tcpip.h>
#include <mswsock.h>
#if defined(MS_WIN32) && !defined(MS_WIN64)
# define F_POINTER "k"
# define T_POINTER T_ULONG
#else
# define F_POINTER "K"
# define T_POINTER T_ULONGLONG
#endif
/* Compatibility with Python 3.3 */
#if PY_VERSION_HEX < 0x03040000
# define PyMem_RawMalloc PyMem_Malloc
# define PyMem_RawFree PyMem_Free
#endif
#define F_HANDLE F_POINTER
#define F_ULONG_PTR F_POINTER
#define F_DWORD "k"
#define F_BOOL "i"
#define F_UINT "I"
#define T_HANDLE T_POINTER
enum {TYPE_NONE, TYPE_NOT_STARTED, TYPE_READ, TYPE_WRITE, TYPE_ACCEPT,
TYPE_CONNECT, TYPE_DISCONNECT, TYPE_CONNECT_NAMED_PIPE,
TYPE_WAIT_NAMED_PIPE_AND_CONNECT};
typedef struct {
PyObject_HEAD
OVERLAPPED overlapped;
/* For convenience, we store the file handle too */
HANDLE handle;
/* Error returned by last method call */
DWORD error;
/* Type of operation */
DWORD type;
union {
/* Buffer used for reading: TYPE_READ and TYPE_ACCEPT */
PyObject *read_buffer;
/* Buffer used for writing: TYPE_WRITE */
Py_buffer write_buffer;
};
} OverlappedObject;
/*
* Map Windows error codes to subclasses of OSError
*/
static PyObject *
SetFromWindowsErr(DWORD err)
{
PyObject *exception_type;
if (err == 0)
err = GetLastError();
switch (err) {
case ERROR_CONNECTION_REFUSED:
exception_type = PyExc_ConnectionRefusedError;
break;
case ERROR_CONNECTION_ABORTED:
exception_type = PyExc_ConnectionAbortedError;
break;
default:
exception_type = PyExc_OSError;
}
return PyErr_SetExcFromWindowsErr(exception_type, err);
}
/*
* Some functions should be loaded at runtime
*/
static LPFN_ACCEPTEX Py_AcceptEx = NULL;
static LPFN_CONNECTEX Py_ConnectEx = NULL;
static LPFN_DISCONNECTEX Py_DisconnectEx = NULL;
static BOOL (CALLBACK *Py_CancelIoEx)(HANDLE, LPOVERLAPPED) = NULL;
#define GET_WSA_POINTER(s, x) \
(SOCKET_ERROR != WSAIoctl(s, SIO_GET_EXTENSION_FUNCTION_POINTER, \
&Guid##x, sizeof(Guid##x), &Py_##x, \
sizeof(Py_##x), &dwBytes, NULL, NULL))
static int
initialize_function_pointers(void)
{
GUID GuidAcceptEx = WSAID_ACCEPTEX;
GUID GuidConnectEx = WSAID_CONNECTEX;
GUID GuidDisconnectEx = WSAID_DISCONNECTEX;
HINSTANCE hKernel32;
SOCKET s;
DWORD dwBytes;
s = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (s == INVALID_SOCKET) {
SetFromWindowsErr(WSAGetLastError());
return -1;
}
if (!GET_WSA_POINTER(s, AcceptEx) ||
!GET_WSA_POINTER(s, ConnectEx) ||
!GET_WSA_POINTER(s, DisconnectEx))
{
closesocket(s);
SetFromWindowsErr(WSAGetLastError());
return -1;
}
closesocket(s);
/* On WinXP we will have Py_CancelIoEx == NULL */
hKernel32 = GetModuleHandle("KERNEL32");
*(FARPROC *)&Py_CancelIoEx = GetProcAddress(hKernel32, "CancelIoEx");
return 0;
}
/*
* Completion port stuff
*/
PyDoc_STRVAR(
CreateIoCompletionPort_doc,
"CreateIoCompletionPort(handle, port, key, concurrency) -> port\n\n"
"Create a completion port or register a handle with a port.");
static PyObject *
overlapped_CreateIoCompletionPort(PyObject *self, PyObject *args)
{
HANDLE FileHandle;
HANDLE ExistingCompletionPort;
ULONG_PTR CompletionKey;
DWORD NumberOfConcurrentThreads;
HANDLE ret;
if (!PyArg_ParseTuple(args, F_HANDLE F_HANDLE F_ULONG_PTR F_DWORD,
&FileHandle, &ExistingCompletionPort, &CompletionKey,
&NumberOfConcurrentThreads))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = CreateIoCompletionPort(FileHandle, ExistingCompletionPort,
CompletionKey, NumberOfConcurrentThreads);
Py_END_ALLOW_THREADS
if (ret == NULL)
return SetFromWindowsErr(0);
return Py_BuildValue(F_HANDLE, ret);
}
PyDoc_STRVAR(
GetQueuedCompletionStatus_doc,
"GetQueuedCompletionStatus(port, msecs) -> (err, bytes, key, address)\n\n"
"Get a message from completion port. Wait for up to msecs milliseconds.");
static PyObject *
overlapped_GetQueuedCompletionStatus(PyObject *self, PyObject *args)
{
HANDLE CompletionPort = NULL;
DWORD NumberOfBytes = 0;
ULONG_PTR CompletionKey = 0;
OVERLAPPED *Overlapped = NULL;
DWORD Milliseconds;
DWORD err;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE F_DWORD,
&CompletionPort, &Milliseconds))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = GetQueuedCompletionStatus(CompletionPort, &NumberOfBytes,
&CompletionKey, &Overlapped, Milliseconds);
Py_END_ALLOW_THREADS
err = ret ? ERROR_SUCCESS : GetLastError();
if (Overlapped == NULL) {
if (err == WAIT_TIMEOUT)
Py_RETURN_NONE;
else
return SetFromWindowsErr(err);
}
return Py_BuildValue(F_DWORD F_DWORD F_ULONG_PTR F_POINTER,
err, NumberOfBytes, CompletionKey, Overlapped);
}
PyDoc_STRVAR(
PostQueuedCompletionStatus_doc,
"PostQueuedCompletionStatus(port, bytes, key, address) -> None\n\n"
"Post a message to completion port.");
static PyObject *
overlapped_PostQueuedCompletionStatus(PyObject *self, PyObject *args)
{
HANDLE CompletionPort;
DWORD NumberOfBytes;
ULONG_PTR CompletionKey;
OVERLAPPED *Overlapped;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE F_DWORD F_ULONG_PTR F_POINTER,
&CompletionPort, &NumberOfBytes, &CompletionKey,
&Overlapped))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = PostQueuedCompletionStatus(CompletionPort, NumberOfBytes,
CompletionKey, Overlapped);
Py_END_ALLOW_THREADS
if (!ret)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*
* Wait for a handle
*/
struct PostCallbackData {
HANDLE CompletionPort;
LPOVERLAPPED Overlapped;
};
static VOID CALLBACK
PostToQueueCallback(PVOID lpParameter, BOOL TimerOrWaitFired)
{
struct PostCallbackData *p = (struct PostCallbackData*) lpParameter;
PostQueuedCompletionStatus(p->CompletionPort, TimerOrWaitFired,
0, p->Overlapped);
/* ignore possible error! */
PyMem_RawFree(p);
}
PyDoc_STRVAR(
RegisterWaitWithQueue_doc,
"RegisterWaitWithQueue(Object, CompletionPort, Overlapped, Timeout)\n"
" -> WaitHandle\n\n"
"Register wait for Object; when complete CompletionPort is notified.\n");
static PyObject *
overlapped_RegisterWaitWithQueue(PyObject *self, PyObject *args)
{
HANDLE NewWaitObject;
HANDLE Object;
ULONG Milliseconds;
struct PostCallbackData data, *pdata;
if (!PyArg_ParseTuple(args, F_HANDLE F_HANDLE F_POINTER F_DWORD,
&Object,
&data.CompletionPort,
&data.Overlapped,
&Milliseconds))
return NULL;
/* Use PyMem_RawMalloc() rather than PyMem_Malloc(), since
PostToQueueCallback() will call PyMem_Free() from a new C thread
which doesn't hold the GIL. */
pdata = PyMem_RawMalloc(sizeof(struct PostCallbackData));
if (pdata == NULL)
return SetFromWindowsErr(0);
*pdata = data;
if (!RegisterWaitForSingleObject(
&NewWaitObject, Object, (WAITORTIMERCALLBACK)PostToQueueCallback,
pdata, Milliseconds,
WT_EXECUTEINWAITTHREAD | WT_EXECUTEONLYONCE))
{
PyMem_RawFree(pdata);
return SetFromWindowsErr(0);
}
return Py_BuildValue(F_HANDLE, NewWaitObject);
}
PyDoc_STRVAR(
UnregisterWait_doc,
"UnregisterWait(WaitHandle) -> None\n\n"
"Unregister wait handle.\n");
static PyObject *
overlapped_UnregisterWait(PyObject *self, PyObject *args)
{
HANDLE WaitHandle;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE, &WaitHandle))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = UnregisterWait(WaitHandle);
Py_END_ALLOW_THREADS
if (!ret)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
PyDoc_STRVAR(
UnregisterWaitEx_doc,
"UnregisterWaitEx(WaitHandle, Event) -> None\n\n"
"Unregister wait handle.\n");
static PyObject *
overlapped_UnregisterWaitEx(PyObject *self, PyObject *args)
{
HANDLE WaitHandle, Event;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE F_HANDLE, &WaitHandle, &Event))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = UnregisterWaitEx(WaitHandle, Event);
Py_END_ALLOW_THREADS
if (!ret)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*
* Event functions -- currently only used by tests
*/
PyDoc_STRVAR(
CreateEvent_doc,
"CreateEvent(EventAttributes, ManualReset, InitialState, Name)"
" -> Handle\n\n"
"Create an event. EventAttributes must be None.\n");
static PyObject *
overlapped_CreateEvent(PyObject *self, PyObject *args)
{
PyObject *EventAttributes;
BOOL ManualReset;
BOOL InitialState;
Py_UNICODE *Name;
HANDLE Event;
if (!PyArg_ParseTuple(args, "O" F_BOOL F_BOOL "Z",
&EventAttributes, &ManualReset,
&InitialState, &Name))
return NULL;
if (EventAttributes != Py_None) {
PyErr_SetString(PyExc_ValueError, "EventAttributes must be None");
return NULL;
}
Py_BEGIN_ALLOW_THREADS
Event = CreateEventW(NULL, ManualReset, InitialState, Name);
Py_END_ALLOW_THREADS
if (Event == NULL)
return SetFromWindowsErr(0);
return Py_BuildValue(F_HANDLE, Event);
}
PyDoc_STRVAR(
SetEvent_doc,
"SetEvent(Handle) -> None\n\n"
"Set event.\n");
static PyObject *
overlapped_SetEvent(PyObject *self, PyObject *args)
{
HANDLE Handle;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE, &Handle))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = SetEvent(Handle);
Py_END_ALLOW_THREADS
if (!ret)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
PyDoc_STRVAR(
ResetEvent_doc,
"ResetEvent(Handle) -> None\n\n"
"Reset event.\n");
static PyObject *
overlapped_ResetEvent(PyObject *self, PyObject *args)
{
HANDLE Handle;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE, &Handle))
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = ResetEvent(Handle);
Py_END_ALLOW_THREADS
if (!ret)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*
* Bind socket handle to local port without doing slow getaddrinfo()
*/
PyDoc_STRVAR(
BindLocal_doc,
"BindLocal(handle, family) -> None\n\n"
"Bind a socket handle to an arbitrary local port.\n"
"family should AF_INET or AF_INET6.\n");
static PyObject *
overlapped_BindLocal(PyObject *self, PyObject *args)
{
SOCKET Socket;
int Family;
BOOL ret;
if (!PyArg_ParseTuple(args, F_HANDLE "i", &Socket, &Family))
return NULL;
if (Family == AF_INET) {
struct sockaddr_in addr;
bzero(&addr, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = 0;
addr.sin_addr.S_un.S_addr = INADDR_ANY;
ret = bind(Socket, (SOCKADDR*)&addr, sizeof(addr)) != SOCKET_ERROR;
} else if (Family == AF_INET6) {
struct sockaddr_in6 addr;
bzero(&addr, sizeof(addr));
addr.sin6_family = AF_INET6;
addr.sin6_port = 0;
addr.sin6_addr = in6addr_any;
ret = bind(Socket, (SOCKADDR*)&addr, sizeof(addr)) != SOCKET_ERROR;
} else {
PyErr_SetString(PyExc_ValueError, "expected tuple of length 2 or 4");
return NULL;
}
if (!ret)
return SetFromWindowsErr(WSAGetLastError());
Py_RETURN_NONE;
}
/*
* Windows equivalent of os.strerror() -- compare _ctypes/callproc.c
*/
PyDoc_STRVAR(
FormatMessage_doc,
"FormatMessage(error_code) -> error_message\n\n"
"Return error message for an error code.");
static PyObject *
overlapped_FormatMessage(PyObject *ignore, PyObject *args)
{
DWORD code, n;
WCHAR *lpMsgBuf;
PyObject *res;
if (!PyArg_ParseTuple(args, F_DWORD, &code))
return NULL;
n = FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM,
NULL,
code,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPWSTR) &lpMsgBuf,
0,
NULL);
if (n) {
while (iswspace(lpMsgBuf[n-1]))
--n;
lpMsgBuf[n] = L'\0';
res = Py_BuildValue("u", lpMsgBuf);
} else {
res = PyUnicode_FromFormat("unknown error code %u", code);
}
LocalFree(lpMsgBuf);
return res;
}
/*
* Mark operation as completed - used when reading produces ERROR_BROKEN_PIPE
*/
static void
mark_as_completed(OVERLAPPED *ov)
{
ov->Internal = 0;
if (ov->hEvent != NULL)
SetEvent(ov->hEvent);
}
/*
* A Python object wrapping an OVERLAPPED structure and other useful data
* for overlapped I/O
*/
PyDoc_STRVAR(
Overlapped_doc,
"Overlapped object");
static PyObject *
Overlapped_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
OverlappedObject *self;
HANDLE event = INVALID_HANDLE_VALUE;
static char *kwlist[] = {"event", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|" F_HANDLE, kwlist, &event))
return NULL;
if (event == INVALID_HANDLE_VALUE) {
event = CreateEvent(NULL, TRUE, FALSE, NULL);
if (event == NULL)
return SetFromWindowsErr(0);
}
self = PyObject_New(OverlappedObject, type);
if (self == NULL) {
if (event != NULL)
CloseHandle(event);
return NULL;
}
self->handle = NULL;
self->error = 0;
self->type = TYPE_NONE;
self->read_buffer = NULL;
bzero(&self->overlapped, sizeof(OVERLAPPED));
bzero(&self->write_buffer, sizeof(Py_buffer));
if (event)
self->overlapped.hEvent = event;
return (PyObject *)self;
}
static void
Overlapped_dealloc(OverlappedObject *self)
{
DWORD bytes;
DWORD olderr = GetLastError();
BOOL wait = FALSE;
BOOL ret;
if (!HasOverlappedIoCompleted(&self->overlapped) &&
self->type != TYPE_NOT_STARTED)
{
if (Py_CancelIoEx && Py_CancelIoEx(self->handle, &self->overlapped))
wait = TRUE;
Py_BEGIN_ALLOW_THREADS
ret = GetOverlappedResult(self->handle, &self->overlapped,
&bytes, wait);
Py_END_ALLOW_THREADS
switch (ret ? ERROR_SUCCESS : GetLastError()) {
case ERROR_SUCCESS:
case ERROR_NOT_FOUND:
case ERROR_OPERATION_ABORTED:
break;
default:
PyErr_Format(
PyExc_RuntimeError,
"%R still has pending operation at "
"deallocation, the process may crash", self);
PyErr_WriteUnraisable(NULL);
}
}
if (self->overlapped.hEvent != NULL)
CloseHandle(self->overlapped.hEvent);
switch (self->type) {
case TYPE_READ:
case TYPE_ACCEPT:
Py_CLEAR(self->read_buffer);
break;
case TYPE_WRITE:
if (self->write_buffer.obj)
PyBuffer_Release(&self->write_buffer);
break;
}
PyObject_Del(self);
SetLastError(olderr);
}
PyDoc_STRVAR(
Overlapped_cancel_doc,
"cancel() -> None\n\n"
"Cancel overlapped operation");
static PyObject *
Overlapped_cancel(OverlappedObject *self)
{
BOOL ret = TRUE;
if (self->type == TYPE_NOT_STARTED
|| self->type == TYPE_WAIT_NAMED_PIPE_AND_CONNECT)
Py_RETURN_NONE;
if (!HasOverlappedIoCompleted(&self->overlapped)) {
Py_BEGIN_ALLOW_THREADS
if (Py_CancelIoEx)
ret = Py_CancelIoEx(self->handle, &self->overlapped);
else
ret = CancelIo(self->handle);
Py_END_ALLOW_THREADS
}
/* CancelIoEx returns ERROR_NOT_FOUND if the I/O completed in-between */
if (!ret && GetLastError() != ERROR_NOT_FOUND)
return SetFromWindowsErr(0);
Py_RETURN_NONE;
}
PyDoc_STRVAR(
Overlapped_getresult_doc,
"getresult(wait=False) -> result\n\n"
"Retrieve result of operation. If wait is true then it blocks\n"
"until the operation is finished. If wait is false and the\n"
"operation is still pending then an error is raised.");
static PyObject *
Overlapped_getresult(OverlappedObject *self, PyObject *args)
{
BOOL wait = FALSE;
DWORD transferred = 0;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, "|" F_BOOL, &wait))
return NULL;
if (self->type == TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation not yet attempted");
return NULL;
}
if (self->type == TYPE_NOT_STARTED) {
PyErr_SetString(PyExc_ValueError, "operation failed to start");
return NULL;
}
Py_BEGIN_ALLOW_THREADS
ret = GetOverlappedResult(self->handle, &self->overlapped, &transferred,
wait);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : GetLastError();
switch (err) {
case ERROR_SUCCESS:
case ERROR_MORE_DATA:
break;
case ERROR_BROKEN_PIPE:
if ((self->type == TYPE_READ || self->type == TYPE_ACCEPT) && self->read_buffer != NULL)
break;
/* fall through */
default:
return SetFromWindowsErr(err);
}
switch (self->type) {
case TYPE_READ:
assert(PyBytes_CheckExact(self->read_buffer));
if (transferred != PyBytes_GET_SIZE(self->read_buffer) &&
_PyBytes_Resize(&self->read_buffer, transferred))
return NULL;
Py_INCREF(self->read_buffer);
return self->read_buffer;
default:
return PyLong_FromUnsignedLong((unsigned long) transferred);
}
}
PyDoc_STRVAR(
Overlapped_ReadFile_doc,
"ReadFile(handle, size) -> Overlapped[message]\n\n"
"Start overlapped read");
static PyObject *
Overlapped_ReadFile(OverlappedObject *self, PyObject *args)
{
HANDLE handle;
DWORD size;
DWORD nread;
PyObject *buf;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE F_DWORD, &handle, &size))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
#if SIZEOF_SIZE_T <= SIZEOF_LONG
size = Py_MIN(size, (DWORD)PY_SSIZE_T_MAX);
#endif
buf = PyBytes_FromStringAndSize(NULL, Py_MAX(size, 1));
if (buf == NULL)
return NULL;
self->type = TYPE_READ;
self->handle = handle;
self->read_buffer = buf;
Py_BEGIN_ALLOW_THREADS
ret = ReadFile(handle, PyBytes_AS_STRING(buf), size, &nread,
&self->overlapped);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : GetLastError();
switch (err) {
case ERROR_BROKEN_PIPE:
mark_as_completed(&self->overlapped);
return SetFromWindowsErr(err);
case ERROR_SUCCESS:
case ERROR_MORE_DATA:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_WSARecv_doc,
"RecvFile(handle, size, flags) -> Overlapped[message]\n\n"
"Start overlapped receive");
static PyObject *
Overlapped_WSARecv(OverlappedObject *self, PyObject *args)
{
HANDLE handle;
DWORD size;
DWORD flags = 0;
DWORD nread;
PyObject *buf;
WSABUF wsabuf;
int ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE F_DWORD "|" F_DWORD,
&handle, &size, &flags))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
#if SIZEOF_SIZE_T <= SIZEOF_LONG
size = Py_MIN(size, (DWORD)PY_SSIZE_T_MAX);
#endif
buf = PyBytes_FromStringAndSize(NULL, Py_MAX(size, 1));
if (buf == NULL)
return NULL;
self->type = TYPE_READ;
self->handle = handle;
self->read_buffer = buf;
wsabuf.len = size;
wsabuf.buf = PyBytes_AS_STRING(buf);
Py_BEGIN_ALLOW_THREADS
ret = WSARecv((SOCKET)handle, &wsabuf, 1, &nread, &flags,
&self->overlapped, NULL);
Py_END_ALLOW_THREADS
self->error = err = (ret < 0 ? WSAGetLastError() : ERROR_SUCCESS);
switch (err) {
case ERROR_BROKEN_PIPE:
mark_as_completed(&self->overlapped);
return SetFromWindowsErr(err);
case ERROR_SUCCESS:
case ERROR_MORE_DATA:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_WriteFile_doc,
"WriteFile(handle, buf) -> Overlapped[bytes_transferred]\n\n"
"Start overlapped write");
static PyObject *
Overlapped_WriteFile(OverlappedObject *self, PyObject *args)
{
HANDLE handle;
PyObject *bufobj;
DWORD written;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE "O", &handle, &bufobj))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
if (!PyArg_Parse(bufobj, "y*", &self->write_buffer))
return NULL;
#if SIZEOF_SIZE_T > SIZEOF_LONG
if (self->write_buffer.len > (Py_ssize_t)ULONG_MAX) {
PyBuffer_Release(&self->write_buffer);
PyErr_SetString(PyExc_ValueError, "buffer to large");
return NULL;
}
#endif
self->type = TYPE_WRITE;
self->handle = handle;
Py_BEGIN_ALLOW_THREADS
ret = WriteFile(handle, self->write_buffer.buf,
(DWORD)self->write_buffer.len,
&written, &self->overlapped);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : GetLastError();
switch (err) {
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_WSASend_doc,
"WSASend(handle, buf, flags) -> Overlapped[bytes_transferred]\n\n"
"Start overlapped send");
static PyObject *
Overlapped_WSASend(OverlappedObject *self, PyObject *args)
{
HANDLE handle;
PyObject *bufobj;
DWORD flags;
DWORD written;
WSABUF wsabuf;
int ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE "O" F_DWORD,
&handle, &bufobj, &flags))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
if (!PyArg_Parse(bufobj, "y*", &self->write_buffer))
return NULL;
#if SIZEOF_SIZE_T > SIZEOF_LONG
if (self->write_buffer.len > (Py_ssize_t)ULONG_MAX) {
PyBuffer_Release(&self->write_buffer);
PyErr_SetString(PyExc_ValueError, "buffer to large");
return NULL;
}
#endif
self->type = TYPE_WRITE;
self->handle = handle;
wsabuf.len = (DWORD)self->write_buffer.len;
wsabuf.buf = self->write_buffer.buf;
Py_BEGIN_ALLOW_THREADS
ret = WSASend((SOCKET)handle, &wsabuf, 1, &written, flags,
&self->overlapped, NULL);
Py_END_ALLOW_THREADS
self->error = err = (ret < 0 ? WSAGetLastError() : ERROR_SUCCESS);
switch (err) {
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_AcceptEx_doc,
"AcceptEx(listen_handle, accept_handle) -> Overlapped[address_as_bytes]\n\n"
"Start overlapped wait for client to connect");
static PyObject *
Overlapped_AcceptEx(OverlappedObject *self, PyObject *args)
{
SOCKET ListenSocket;
SOCKET AcceptSocket;
DWORD BytesReceived;
DWORD size;
PyObject *buf;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE F_HANDLE,
&ListenSocket, &AcceptSocket))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
size = sizeof(struct sockaddr_in6) + 16;
buf = PyBytes_FromStringAndSize(NULL, size*2);
if (!buf)
return NULL;
self->type = TYPE_ACCEPT;
self->handle = (HANDLE)ListenSocket;
self->read_buffer = buf;
Py_BEGIN_ALLOW_THREADS
ret = Py_AcceptEx(ListenSocket, AcceptSocket, PyBytes_AS_STRING(buf),
0, size, size, &BytesReceived, &self->overlapped);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : WSAGetLastError();
switch (err) {
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
static int
parse_address(PyObject *obj, SOCKADDR *Address, int Length)
{
Py_UNICODE *Host;
unsigned short Port;
unsigned long FlowInfo;
unsigned long ScopeId;
bzero(Address, Length);
if (PyArg_ParseTuple(obj, "uH", &Host, &Port))
{
Address->sa_family = AF_INET;
if (WSAStringToAddressW(Host, AF_INET, NULL, Address, &Length) < 0) {
SetFromWindowsErr(WSAGetLastError());
return -1;
}
((SOCKADDR_IN*)Address)->sin_port = htons(Port);
return Length;
}
else if (PyArg_ParseTuple(obj, "uHkk", &Host, &Port, &FlowInfo, &ScopeId))
{
PyErr_Clear();
Address->sa_family = AF_INET6;
if (WSAStringToAddressW(Host, AF_INET6, NULL, Address, &Length) < 0) {
SetFromWindowsErr(WSAGetLastError());
return -1;
}
((SOCKADDR_IN6*)Address)->sin6_port = htons(Port);
((SOCKADDR_IN6*)Address)->sin6_flowinfo = FlowInfo;
((SOCKADDR_IN6*)Address)->sin6_scope_id = ScopeId;
return Length;
}
return -1;
}
PyDoc_STRVAR(
Overlapped_ConnectEx_doc,
"ConnectEx(client_handle, address_as_bytes) -> Overlapped[None]\n\n"
"Start overlapped connect. client_handle should be unbound.");
static PyObject *
Overlapped_ConnectEx(OverlappedObject *self, PyObject *args)
{
SOCKET ConnectSocket;
PyObject *AddressObj;
char AddressBuf[sizeof(struct sockaddr_in6)];
SOCKADDR *Address = (SOCKADDR*)AddressBuf;
int Length;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE "O", &ConnectSocket, &AddressObj))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
Length = sizeof(AddressBuf);
Length = parse_address(AddressObj, Address, Length);
if (Length < 0)
return NULL;
self->type = TYPE_CONNECT;
self->handle = (HANDLE)ConnectSocket;
Py_BEGIN_ALLOW_THREADS
ret = Py_ConnectEx(ConnectSocket, Address, Length,
NULL, 0, NULL, &self->overlapped);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : WSAGetLastError();
switch (err) {
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_DisconnectEx_doc,
"DisconnectEx(handle, flags) -> Overlapped[None]\n\n"
"Start overlapped connect. client_handle should be unbound.");
static PyObject *
Overlapped_DisconnectEx(OverlappedObject *self, PyObject *args)
{
SOCKET Socket;
DWORD flags;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE F_DWORD, &Socket, &flags))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
self->type = TYPE_DISCONNECT;
self->handle = (HANDLE)Socket;
Py_BEGIN_ALLOW_THREADS
ret = Py_DisconnectEx(Socket, &self->overlapped, flags, 0);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : WSAGetLastError();
switch (err) {
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_NONE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
Overlapped_ConnectNamedPipe_doc,
"ConnectNamedPipe(handle) -> Overlapped[None]\n\n"
"Start overlapped wait for a client to connect.");
static PyObject *
Overlapped_ConnectNamedPipe(OverlappedObject *self, PyObject *args)
{
HANDLE Pipe;
BOOL ret;
DWORD err;
if (!PyArg_ParseTuple(args, F_HANDLE, &Pipe))
return NULL;
if (self->type != TYPE_NONE) {
PyErr_SetString(PyExc_ValueError, "operation already attempted");
return NULL;
}
self->type = TYPE_CONNECT_NAMED_PIPE;
self->handle = Pipe;
Py_BEGIN_ALLOW_THREADS
ret = ConnectNamedPipe(Pipe, &self->overlapped);
Py_END_ALLOW_THREADS
self->error = err = ret ? ERROR_SUCCESS : GetLastError();
switch (err) {
case ERROR_PIPE_CONNECTED:
mark_as_completed(&self->overlapped);
Py_RETURN_TRUE;
case ERROR_SUCCESS:
case ERROR_IO_PENDING:
Py_RETURN_FALSE;
default:
self->type = TYPE_NOT_STARTED;
return SetFromWindowsErr(err);
}
}
PyDoc_STRVAR(
ConnectPipe_doc,
"ConnectPipe(addr) -> pipe_handle\n\n"
"Connect to the pipe for asynchronous I/O (overlapped).");
static PyObject *
ConnectPipe(OverlappedObject *self, PyObject *args)
{
PyObject *AddressObj;
wchar_t *Address;
HANDLE PipeHandle;
if (!PyArg_ParseTuple(args, "U", &AddressObj))
return NULL;
Address = _PyUnicode_AsWideCharString(AddressObj);
if (Address == NULL)
return NULL;
Py_BEGIN_ALLOW_THREADS
PipeHandle = CreateFileW(Address,
GENERIC_READ | GENERIC_WRITE,
0, NULL, OPEN_EXISTING,
FILE_FLAG_OVERLAPPED, NULL);
Py_END_ALLOW_THREADS
PyMem_Free(Address);
if (PipeHandle == INVALID_HANDLE_VALUE)
return SetFromWindowsErr(0);
return Py_BuildValue(F_HANDLE, PipeHandle);
}
static PyObject*
Overlapped_getaddress(OverlappedObject *self)
{
return PyLong_FromVoidPtr(&self->overlapped);
}
static PyObject*
Overlapped_getpending(OverlappedObject *self)
{
return PyBool_FromLong(!HasOverlappedIoCompleted(&self->overlapped) &&
self->type != TYPE_NOT_STARTED);
}
static PyMethodDef Overlapped_methods[] = {
{"getresult", (PyCFunction) Overlapped_getresult,
METH_VARARGS, Overlapped_getresult_doc},
{"cancel", (PyCFunction) Overlapped_cancel,
METH_NOARGS, Overlapped_cancel_doc},
{"ReadFile", (PyCFunction) Overlapped_ReadFile,
METH_VARARGS, Overlapped_ReadFile_doc},
{"WSARecv", (PyCFunction) Overlapped_WSARecv,
METH_VARARGS, Overlapped_WSARecv_doc},
{"WriteFile", (PyCFunction) Overlapped_WriteFile,
METH_VARARGS, Overlapped_WriteFile_doc},
{"WSASend", (PyCFunction) Overlapped_WSASend,
METH_VARARGS, Overlapped_WSASend_doc},
{"AcceptEx", (PyCFunction) Overlapped_AcceptEx,
METH_VARARGS, Overlapped_AcceptEx_doc},
{"ConnectEx", (PyCFunction) Overlapped_ConnectEx,
METH_VARARGS, Overlapped_ConnectEx_doc},
{"DisconnectEx", (PyCFunction) Overlapped_DisconnectEx,
METH_VARARGS, Overlapped_DisconnectEx_doc},
{"ConnectNamedPipe", (PyCFunction) Overlapped_ConnectNamedPipe,
METH_VARARGS, Overlapped_ConnectNamedPipe_doc},
{NULL}
};
static PyMemberDef Overlapped_members[] = {
{"error", T_ULONG,
offsetof(OverlappedObject, error),
READONLY, "Error from last operation"},
{"event", T_HANDLE,
offsetof(OverlappedObject, overlapped) + offsetof(OVERLAPPED, hEvent),
READONLY, "Overlapped event handle"},
{NULL}
};
static PyGetSetDef Overlapped_getsets[] = {
{"address", (getter)Overlapped_getaddress, NULL,
"Address of overlapped structure"},
{"pending", (getter)Overlapped_getpending, NULL,
"Whether the operation is pending"},
{NULL},
};
PyTypeObject OverlappedType = {
PyVarObject_HEAD_INIT(NULL, 0)
/* tp_name */ "_overlapped.Overlapped",
/* tp_basicsize */ sizeof(OverlappedObject),
/* tp_itemsize */ 0,
/* tp_dealloc */ (destructor) Overlapped_dealloc,
/* tp_print */ 0,
/* tp_getattr */ 0,
/* tp_setattr */ 0,
/* tp_reserved */ 0,
/* tp_repr */ 0,
/* tp_as_number */ 0,
/* tp_as_sequence */ 0,
/* tp_as_mapping */ 0,
/* tp_hash */ 0,
/* tp_call */ 0,
/* tp_str */ 0,
/* tp_getattro */ 0,
/* tp_setattro */ 0,
/* tp_as_buffer */ 0,
/* tp_flags */ Py_TPFLAGS_DEFAULT,
/* tp_doc */ "OVERLAPPED structure wrapper",
/* tp_traverse */ 0,
/* tp_clear */ 0,
/* tp_richcompare */ 0,
/* tp_weaklistoffset */ 0,
/* tp_iter */ 0,
/* tp_iternext */ 0,
/* tp_methods */ Overlapped_methods,
/* tp_members */ Overlapped_members,
/* tp_getset */ Overlapped_getsets,
/* tp_base */ 0,
/* tp_dict */ 0,
/* tp_descr_get */ 0,
/* tp_descr_set */ 0,
/* tp_dictoffset */ 0,
/* tp_init */ 0,
/* tp_alloc */ 0,
/* tp_new */ Overlapped_new,
};
static PyMethodDef overlapped_functions[] = {
{"CreateIoCompletionPort", overlapped_CreateIoCompletionPort,
METH_VARARGS, CreateIoCompletionPort_doc},
{"GetQueuedCompletionStatus", overlapped_GetQueuedCompletionStatus,
METH_VARARGS, GetQueuedCompletionStatus_doc},
{"PostQueuedCompletionStatus", overlapped_PostQueuedCompletionStatus,
METH_VARARGS, PostQueuedCompletionStatus_doc},
{"FormatMessage", overlapped_FormatMessage,
METH_VARARGS, FormatMessage_doc},
{"BindLocal", overlapped_BindLocal,
METH_VARARGS, BindLocal_doc},
{"RegisterWaitWithQueue", overlapped_RegisterWaitWithQueue,
METH_VARARGS, RegisterWaitWithQueue_doc},
{"UnregisterWait", overlapped_UnregisterWait,
METH_VARARGS, UnregisterWait_doc},
{"UnregisterWaitEx", overlapped_UnregisterWaitEx,
METH_VARARGS, UnregisterWaitEx_doc},
{"CreateEvent", overlapped_CreateEvent,
METH_VARARGS, CreateEvent_doc},
{"SetEvent", overlapped_SetEvent,
METH_VARARGS, SetEvent_doc},
{"ResetEvent", overlapped_ResetEvent,
METH_VARARGS, ResetEvent_doc},
{"ConnectPipe",
(PyCFunction) ConnectPipe,
METH_VARARGS, ConnectPipe_doc},
{NULL}
};
static struct PyModuleDef overlapped_module = {
PyModuleDef_HEAD_INIT,
"_overlapped",
NULL,
-1,
overlapped_functions,
NULL,
NULL,
NULL,
NULL
};
#define WINAPI_CONSTANT(fmt, con) \
PyDict_SetItemString(d, #con, Py_BuildValue(fmt, con))
PyMODINIT_FUNC
PyInit__overlapped(void)
{
PyObject *m, *d;
/* Ensure WSAStartup() called before initializing function pointers */
m = PyImport_ImportModule("_socket");
if (!m)
return NULL;
Py_DECREF(m);
if (initialize_function_pointers() < 0)
return NULL;
if (PyType_Ready(&OverlappedType) < 0)
return NULL;
m = PyModule_Create(&overlapped_module);
if (PyModule_AddObject(m, "Overlapped", (PyObject *)&OverlappedType) < 0)
return NULL;
d = PyModule_GetDict(m);
WINAPI_CONSTANT(F_DWORD, ERROR_IO_PENDING);
WINAPI_CONSTANT(F_DWORD, ERROR_NETNAME_DELETED);
WINAPI_CONSTANT(F_DWORD, ERROR_SEM_TIMEOUT);
WINAPI_CONSTANT(F_DWORD, ERROR_PIPE_BUSY);
WINAPI_CONSTANT(F_DWORD, INFINITE);
WINAPI_CONSTANT(F_HANDLE, INVALID_HANDLE_VALUE);
WINAPI_CONSTANT(F_HANDLE, NULL);
WINAPI_CONSTANT(F_DWORD, SO_UPDATE_ACCEPT_CONTEXT);
WINAPI_CONSTANT(F_DWORD, SO_UPDATE_CONNECT_CONTEXT);
WINAPI_CONSTANT(F_DWORD, TF_REUSE_SOCKET);
return m;
}
| 37,955 | 1,353 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/hashtable.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/pyhash.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Modules/hashtable.h"
/* clang-format off */
asm(".ident\t\"\\n\\n\
cfuhash (bsd-3)\\n\
Copyright (c) 2005 Don Owens\"");
asm(".include \"libc/disclaimer.inc\"");
/* The implementation of the hash table (_Py_hashtable_t) is based on the
cfuhash project:
http://sourceforge.net/projects/libcfu/
Copyright of cfuhash:
----------------------------------
Creation date: 2005-06-24 21:22:40
Authors: Don
Change log:
Copyright (c) 2005 Don Owens
All rights reserved.
This code is released under the BSD license:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
----------------------------------
*/
#define HASHTABLE_MIN_SIZE 16
#define HASHTABLE_HIGH 0.50
#define HASHTABLE_LOW 0.10
#define HASHTABLE_REHASH_FACTOR 2.0 / (HASHTABLE_LOW + HASHTABLE_HIGH)
#define BUCKETS_HEAD(SLIST) \
((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(SLIST)))
#define TABLE_HEAD(HT, BUCKET) \
((_Py_hashtable_entry_t *)_Py_SLIST_HEAD(&(HT)->buckets[BUCKET]))
#define ENTRY_NEXT(ENTRY) \
((_Py_hashtable_entry_t *)_Py_SLIST_ITEM_NEXT(ENTRY))
#define HASHTABLE_ITEM_SIZE(HT) \
(sizeof(_Py_hashtable_entry_t) + (HT)->key_size + (HT)->data_size)
#define ENTRY_READ_PDATA(TABLE, ENTRY, DATA_SIZE, PDATA) \
do { \
assert((DATA_SIZE) == (TABLE)->data_size); \
memcpy((PDATA), _Py_HASHTABLE_ENTRY_PDATA(TABLE, (ENTRY)), \
(DATA_SIZE)); \
} while (0)
#define ENTRY_WRITE_PDATA(TABLE, ENTRY, DATA_SIZE, PDATA) \
do { \
assert((DATA_SIZE) == (TABLE)->data_size); \
memcpy((void *)_Py_HASHTABLE_ENTRY_PDATA((TABLE), (ENTRY)), \
(PDATA), (DATA_SIZE)); \
} while (0)
/* Forward declaration */
static void hashtable_rehash(_Py_hashtable_t *ht);
static void
_Py_slist_init(_Py_slist_t *list)
{
list->head = NULL;
}
static void
_Py_slist_prepend(_Py_slist_t *list, _Py_slist_item_t *item)
{
item->next = list->head;
list->head = item;
}
static void
_Py_slist_remove(_Py_slist_t *list, _Py_slist_item_t *previous,
_Py_slist_item_t *item)
{
if (previous != NULL)
previous->next = item->next;
else
list->head = item->next;
}
Py_uhash_t
_Py_hashtable_hash_ptr(struct _Py_hashtable_t *ht, const void *pkey)
{
void *key;
_Py_HASHTABLE_READ_KEY(ht, pkey, key);
return (Py_uhash_t)_Py_HashPointer(key);
}
int
_Py_hashtable_compare_direct(_Py_hashtable_t *ht, const void *pkey,
const _Py_hashtable_entry_t *entry)
{
const void *pkey2 = _Py_HASHTABLE_ENTRY_PKEY(entry);
return !bcmp(pkey, pkey2, ht->key_size);
}
/* makes sure the real size of the buckets array is a power of 2 */
static size_t
round_size(size_t s)
{
size_t i;
if (s < HASHTABLE_MIN_SIZE)
return HASHTABLE_MIN_SIZE;
i = 1;
while (i < s)
i <<= 1;
return i;
}
_Py_hashtable_t *
_Py_hashtable_new_full(size_t key_size, size_t data_size,
size_t init_size,
_Py_hashtable_hash_func hash_func,
_Py_hashtable_compare_func compare_func,
_Py_hashtable_allocator_t *allocator)
{
_Py_hashtable_t *ht;
size_t buckets_size;
_Py_hashtable_allocator_t alloc;
if (allocator == NULL) {
alloc.malloc = PyMem_RawMalloc;
alloc.free = PyMem_RawFree;
}
else
alloc = *allocator;
ht = (_Py_hashtable_t *)alloc.malloc(sizeof(_Py_hashtable_t));
if (ht == NULL)
return ht;
ht->num_buckets = round_size(init_size);
ht->entries = 0;
ht->key_size = key_size;
ht->data_size = data_size;
buckets_size = ht->num_buckets * sizeof(ht->buckets[0]);
ht->buckets = alloc.malloc(buckets_size);
if (ht->buckets == NULL) {
alloc.free(ht);
return NULL;
}
bzero(ht->buckets, buckets_size);
ht->hash_func = hash_func;
ht->compare_func = compare_func;
ht->alloc = alloc;
return ht;
}
_Py_hashtable_t *
_Py_hashtable_new(size_t key_size, size_t data_size,
_Py_hashtable_hash_func hash_func,
_Py_hashtable_compare_func compare_func)
{
return _Py_hashtable_new_full(key_size, data_size,
HASHTABLE_MIN_SIZE,
hash_func, compare_func,
NULL);
}
size_t
_Py_hashtable_size(_Py_hashtable_t *ht)
{
size_t size;
size = sizeof(_Py_hashtable_t);
/* buckets */
size += ht->num_buckets * sizeof(_Py_hashtable_entry_t *);
/* entries */
size += ht->entries * HASHTABLE_ITEM_SIZE(ht);
return size;
}
#ifdef Py_DEBUG
void
_Py_hashtable_print_stats(_Py_hashtable_t *ht)
{
size_t size;
size_t chain_len, max_chain_len, total_chain_len, nchains;
_Py_hashtable_entry_t *entry;
size_t hv;
double load;
size = _Py_hashtable_size(ht);
load = (double)ht->entries / ht->num_buckets;
max_chain_len = 0;
total_chain_len = 0;
nchains = 0;
for (hv = 0; hv < ht->num_buckets; hv++) {
entry = TABLE_HEAD(ht, hv);
if (entry != NULL) {
chain_len = 0;
for (; entry; entry = ENTRY_NEXT(entry)) {
chain_len++;
}
if (chain_len > max_chain_len)
max_chain_len = chain_len;
total_chain_len += chain_len;
nchains++;
}
}
printf("hash table %p: entries=%"
PY_FORMAT_SIZE_T "u/%" PY_FORMAT_SIZE_T "u (%.0f%%), ",
ht, ht->entries, ht->num_buckets, load * 100.0);
if (nchains)
printf("avg_chain_len=%.1f, ", (double)total_chain_len / nchains);
printf("max_chain_len=%" PY_FORMAT_SIZE_T "u, %" PY_FORMAT_SIZE_T "u kB\n",
max_chain_len, size / 1024);
}
#endif
_Py_hashtable_entry_t *
_Py_hashtable_get_entry(_Py_hashtable_t *ht,
size_t key_size, const void *pkey)
{
Py_uhash_t key_hash;
size_t index;
_Py_hashtable_entry_t *entry;
assert(key_size == ht->key_size);
key_hash = ht->hash_func(ht, pkey);
index = key_hash & (ht->num_buckets - 1);
for (entry = TABLE_HEAD(ht, index); entry != NULL; entry = ENTRY_NEXT(entry)) {
if (entry->key_hash == key_hash && ht->compare_func(ht, pkey, entry))
break;
}
return entry;
}
static int
_Py_hashtable_pop_entry(_Py_hashtable_t *ht, size_t key_size, const void *pkey,
void *data, size_t data_size)
{
Py_uhash_t key_hash;
size_t index;
_Py_hashtable_entry_t *entry, *previous;
assert(key_size == ht->key_size);
key_hash = ht->hash_func(ht, pkey);
index = key_hash & (ht->num_buckets - 1);
previous = NULL;
for (entry = TABLE_HEAD(ht, index); entry != NULL; entry = ENTRY_NEXT(entry)) {
if (entry->key_hash == key_hash && ht->compare_func(ht, pkey, entry))
break;
previous = entry;
}
if (entry == NULL)
return 0;
_Py_slist_remove(&ht->buckets[index], (_Py_slist_item_t *)previous,
(_Py_slist_item_t *)entry);
ht->entries--;
if (data != NULL)
ENTRY_READ_PDATA(ht, entry, data_size, data);
ht->alloc.free(entry);
if ((float)ht->entries / (float)ht->num_buckets < HASHTABLE_LOW)
hashtable_rehash(ht);
return 1;
}
int
_Py_hashtable_set(_Py_hashtable_t *ht, size_t key_size, const void *pkey,
size_t data_size, const void *data)
{
Py_uhash_t key_hash;
size_t index;
_Py_hashtable_entry_t *entry;
assert(key_size == ht->key_size);
assert(data != NULL || data_size == 0);
#ifndef NDEBUG
/* Don't write the assertion on a single line because it is interesting
to know the duplicated entry if the assertion failed. The entry can
be read using a debugger. */
entry = _Py_hashtable_get_entry(ht, key_size, pkey);
assert(entry == NULL);
#endif
key_hash = ht->hash_func(ht, pkey);
index = key_hash & (ht->num_buckets - 1);
entry = ht->alloc.malloc(HASHTABLE_ITEM_SIZE(ht));
if (entry == NULL) {
/* memory allocation failed */
return -1;
}
entry->key_hash = key_hash;
memcpy((void *)_Py_HASHTABLE_ENTRY_PKEY(entry), pkey, ht->key_size);
if (data)
ENTRY_WRITE_PDATA(ht, entry, data_size, data);
_Py_slist_prepend(&ht->buckets[index], (_Py_slist_item_t*)entry);
ht->entries++;
if ((float)ht->entries / (float)ht->num_buckets > HASHTABLE_HIGH)
hashtable_rehash(ht);
return 0;
}
int
_Py_hashtable_get(_Py_hashtable_t *ht, size_t key_size,const void *pkey,
size_t data_size, void *data)
{
_Py_hashtable_entry_t *entry;
assert(data != NULL);
entry = _Py_hashtable_get_entry(ht, key_size, pkey);
if (entry == NULL)
return 0;
ENTRY_READ_PDATA(ht, entry, data_size, data);
return 1;
}
int
_Py_hashtable_pop(_Py_hashtable_t *ht, size_t key_size, const void *pkey,
size_t data_size, void *data)
{
assert(data != NULL);
return _Py_hashtable_pop_entry(ht, key_size, pkey, data, data_size);
}
/* Code commented since the function is not needed in Python */
#if 0
void
_Py_hashtable_delete(_Py_hashtable_t *ht, size_t key_size, const void *pkey)
{
#ifndef NDEBUG
int found = _Py_hashtable_pop_entry(ht, key_size, pkey, NULL, 0);
assert(found);
#else
(void)_Py_hashtable_pop_entry(ht, key_size, pkey, NULL, 0);
#endif
}
#endif
int
_Py_hashtable_foreach(_Py_hashtable_t *ht,
_Py_hashtable_foreach_func func,
void *arg)
{
_Py_hashtable_entry_t *entry;
size_t hv;
for (hv = 0; hv < ht->num_buckets; hv++) {
for (entry = TABLE_HEAD(ht, hv); entry; entry = ENTRY_NEXT(entry)) {
int res = func(ht, entry, arg);
if (res)
return res;
}
}
return 0;
}
static void
hashtable_rehash(_Py_hashtable_t *ht)
{
size_t buckets_size, new_size, bucket;
_Py_slist_t *old_buckets = NULL;
size_t old_num_buckets;
new_size = round_size((size_t)(ht->entries * HASHTABLE_REHASH_FACTOR));
if (new_size == ht->num_buckets)
return;
old_num_buckets = ht->num_buckets;
buckets_size = new_size * sizeof(ht->buckets[0]);
old_buckets = ht->buckets;
ht->buckets = ht->alloc.malloc(buckets_size);
if (ht->buckets == NULL) {
/* cancel rehash on memory allocation failure */
ht->buckets = old_buckets ;
/* memory allocation failed */
return;
}
bzero(ht->buckets, buckets_size);
ht->num_buckets = new_size;
for (bucket = 0; bucket < old_num_buckets; bucket++) {
_Py_hashtable_entry_t *entry, *next;
for (entry = BUCKETS_HEAD(old_buckets[bucket]); entry != NULL; entry = next) {
size_t entry_index;
assert(ht->hash_func(ht, _Py_HASHTABLE_ENTRY_PKEY(entry)) == entry->key_hash);
next = ENTRY_NEXT(entry);
entry_index = entry->key_hash & (new_size - 1);
_Py_slist_prepend(&ht->buckets[entry_index], (_Py_slist_item_t*)entry);
}
}
ht->alloc.free(old_buckets);
}
void
_Py_hashtable_clear(_Py_hashtable_t *ht)
{
_Py_hashtable_entry_t *entry, *next;
size_t i;
for (i=0; i < ht->num_buckets; i++) {
for (entry = TABLE_HEAD(ht, i); entry != NULL; entry = next) {
next = ENTRY_NEXT(entry);
ht->alloc.free(entry);
}
_Py_slist_init(&ht->buckets[i]);
}
ht->entries = 0;
hashtable_rehash(ht);
}
void
_Py_hashtable_destroy(_Py_hashtable_t *ht)
{
size_t i;
for (i = 0; i < ht->num_buckets; i++) {
_Py_slist_item_t *entry = ht->buckets[i].head;
while (entry) {
_Py_slist_item_t *entry_next = entry->next;
ht->alloc.free(entry);
entry = entry_next;
}
}
ht->alloc.free(ht->buckets);
ht->alloc.free(ht);
}
_Py_hashtable_t *
_Py_hashtable_copy(_Py_hashtable_t *src)
{
const size_t key_size = src->key_size;
const size_t data_size = src->data_size;
_Py_hashtable_t *dst;
_Py_hashtable_entry_t *entry;
size_t bucket;
int err;
dst = _Py_hashtable_new_full(key_size, data_size,
src->num_buckets,
src->hash_func,
src->compare_func,
&src->alloc);
if (dst == NULL)
return NULL;
for (bucket=0; bucket < src->num_buckets; bucket++) {
entry = TABLE_HEAD(src, bucket);
for (; entry; entry = ENTRY_NEXT(entry)) {
const void *pkey = _Py_HASHTABLE_ENTRY_PKEY(entry);
const void *pdata = _Py_HASHTABLE_ENTRY_PDATA(src, entry);
err = _Py_hashtable_set(dst, key_size, pkey, data_size, pdata);
if (err) {
_Py_hashtable_destroy(dst);
return NULL;
}
}
}
return dst;
}
| 15,457 | 538 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_heapqmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/assert.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_heapq");
PYTHON_PROVIDE("_heapq._heapify_max");
PYTHON_PROVIDE("_heapq._heappop_max");
PYTHON_PROVIDE("_heapq._heapreplace_max");
PYTHON_PROVIDE("_heapq.heapify");
PYTHON_PROVIDE("_heapq.heappop");
PYTHON_PROVIDE("_heapq.heappush");
PYTHON_PROVIDE("_heapq.heappushpop");
PYTHON_PROVIDE("_heapq.heapreplace");
/* Drop in replacement for heapq.py
C implementation derived directly from heapq.py in Py2.3
which was written by Kevin O'Connor, augmented by Tim Peters,
annotated by François Pinard, and converted to C by Raymond Hettinger.
*/
static int
siftdown(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
{
PyObject *newitem, *parent, **arr;
Py_ssize_t parentpos, size;
int cmp;
assert(PyList_Check(heap));
size = PyList_GET_SIZE(heap);
if (pos >= size) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return -1;
}
/* Follow the path to the root, moving parents down until finding
a place newitem fits. */
arr = _PyList_ITEMS(heap);
newitem = arr[pos];
while (pos > startpos) {
parentpos = (pos - 1) >> 1;
parent = arr[parentpos];
Py_INCREF(newitem);
Py_INCREF(parent);
cmp = PyObject_RichCompareBool(newitem, parent, Py_LT);
Py_DECREF(parent);
Py_DECREF(newitem);
if (cmp < 0)
return -1;
if (size != PyList_GET_SIZE(heap)) {
PyErr_SetString(PyExc_RuntimeError,
"list changed size during iteration");
return -1;
}
if (cmp == 0)
break;
arr = _PyList_ITEMS(heap);
parent = arr[parentpos];
newitem = arr[pos];
arr[parentpos] = newitem;
arr[pos] = parent;
pos = parentpos;
}
return 0;
}
static int
siftup(PyListObject *heap, Py_ssize_t pos)
{
Py_ssize_t startpos, endpos, childpos, limit;
PyObject *tmp1, *tmp2, **arr;
int cmp;
assert(PyList_Check(heap));
endpos = PyList_GET_SIZE(heap);
startpos = pos;
if (pos >= endpos) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return -1;
}
/* Bubble up the smaller child until hitting a leaf. */
arr = _PyList_ITEMS(heap);
limit = endpos >> 1; /* smallest pos that has no child */
while (pos < limit) {
/* Set childpos to index of smaller child. */
childpos = 2*pos + 1; /* leftmost child position */
if (childpos + 1 < endpos) {
PyObject* a = arr[childpos];
PyObject* b = arr[childpos + 1];
Py_INCREF(a);
Py_INCREF(b);
cmp = PyObject_RichCompareBool(a, b, Py_LT);
Py_DECREF(a);
Py_DECREF(b);
if (cmp < 0)
return -1;
childpos += ((unsigned)cmp ^ 1); /* increment when cmp==0 */
arr = _PyList_ITEMS(heap); /* arr may have changed */
if (endpos != PyList_GET_SIZE(heap)) {
PyErr_SetString(PyExc_RuntimeError,
"list changed size during iteration");
return -1;
}
}
/* Move the smaller child up. */
tmp1 = arr[childpos];
tmp2 = arr[pos];
arr[childpos] = tmp2;
arr[pos] = tmp1;
pos = childpos;
}
/* Bubble it up to its final resting place (by sifting its parents down). */
return siftdown(heap, startpos, pos);
}
static PyObject *
heappush(PyObject *self, PyObject *args)
{
PyObject *heap, *item;
if (!PyArg_UnpackTuple(args, "heappush", 2, 2, &heap, &item))
return NULL;
if (!PyList_Check(heap)) {
PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
return NULL;
}
if (PyList_Append(heap, item))
return NULL;
if (siftdown((PyListObject *)heap, 0, PyList_GET_SIZE(heap)-1))
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(heappush_doc,
"heappush(heap, item) -> None. Push item onto heap, maintaining the heap invariant.");
static PyObject *
heappop_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
{
PyObject *lastelt, *returnitem;
Py_ssize_t n;
if (!PyList_Check(heap)) {
PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
return NULL;
}
/* raises IndexError if the heap is empty */
n = PyList_GET_SIZE(heap);
if (n == 0) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return NULL;
}
lastelt = PyList_GET_ITEM(heap, n-1) ;
Py_INCREF(lastelt);
if (PyList_SetSlice(heap, n-1, n, NULL)) {
Py_DECREF(lastelt);
return NULL;
}
n--;
if (!n)
return lastelt;
returnitem = PyList_GET_ITEM(heap, 0);
PyList_SET_ITEM(heap, 0, lastelt);
if (siftup_func((PyListObject *)heap, 0)) {
Py_DECREF(returnitem);
return NULL;
}
return returnitem;
}
static PyObject *
heappop(PyObject *self, PyObject *heap)
{
return heappop_internal(heap, siftup);
}
PyDoc_STRVAR(heappop_doc,
"Pop the smallest item off the heap, maintaining the heap invariant.");
static PyObject *
heapreplace_internal(PyObject *args, int siftup_func(PyListObject *, Py_ssize_t))
{
PyObject *heap, *item, *returnitem;
if (!PyArg_UnpackTuple(args, "heapreplace", 2, 2, &heap, &item))
return NULL;
if (!PyList_Check(heap)) {
PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
return NULL;
}
if (PyList_GET_SIZE(heap) == 0) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return NULL;
}
returnitem = PyList_GET_ITEM(heap, 0);
Py_INCREF(item);
PyList_SET_ITEM(heap, 0, item);
if (siftup_func((PyListObject *)heap, 0)) {
Py_DECREF(returnitem);
return NULL;
}
return returnitem;
}
static PyObject *
heapreplace(PyObject *self, PyObject *args)
{
return heapreplace_internal(args, siftup);
}
PyDoc_STRVAR(heapreplace_doc,
"heapreplace(heap, item) -> value. Pop and return the current smallest value, and add the new item.\n\
\n\
This is more efficient than heappop() followed by heappush(), and can be\n\
more appropriate when using a fixed-size heap. Note that the value\n\
returned may be larger than item! That constrains reasonable uses of\n\
this routine unless written as part of a conditional replacement:\n\n\
if item > heap[0]:\n\
item = heapreplace(heap, item)\n");
static PyObject *
heappushpop(PyObject *self, PyObject *args)
{
int cmp;
PyObject *top, *heap, *item, *returnitem;
if (!PyArg_UnpackTuple(args, "heappushpop", 2, 2, &heap, &item))
return NULL;
if (!PyList_Check(heap)) {
PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
return NULL;
}
if (PyList_GET_SIZE(heap) == 0) {
Py_INCREF(item);
return item;
}
top = PyList_GET_ITEM(heap, 0);
Py_INCREF(top);
cmp = PyObject_RichCompareBool(top, item, Py_LT);
Py_DECREF(top);
if (cmp < 0)
return NULL;
if (cmp == 0) {
Py_INCREF(item);
return item;
}
if (PyList_GET_SIZE(heap) == 0) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return NULL;
}
returnitem = PyList_GET_ITEM(heap, 0);
Py_INCREF(item);
PyList_SET_ITEM(heap, 0, item);
if (siftup((PyListObject *)heap, 0)) {
Py_DECREF(returnitem);
return NULL;
}
return returnitem;
}
PyDoc_STRVAR(heappushpop_doc,
"heappushpop(heap, item) -> value. Push item on the heap, then pop and return the smallest item\n\
from the heap. The combined action runs more efficiently than\n\
heappush() followed by a separate call to heappop().");
static inline Py_ssize_t
keep_top_bit(Py_ssize_t n)
{
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
/* [jart] constant-time bitscan */
if (n > 0) {
return (Py_ssize_t)1 << (__builtin_clzll(n) ^
(sizeof(long long) * CHAR_BIT - 1));
} else if (n < 0) {
return n;
} else {
return 0;
}
#else
int i = 0;
while (n > 1) {
n >>= 1;
i++;
}
return n << i;
#endif
}
/* Cache friendly version of heapify()
-----------------------------------
Build-up a heap in O(n) time by performing siftup() operations
on nodes whose children are already heaps.
The simplest way is to sift the nodes in reverse order from
n//2-1 to 0 inclusive. The downside is that children may be
out of cache by the time their parent is reached.
A better way is to not wait for the children to go out of cache.
Once a sibling pair of child nodes have been sifted, immediately
sift their parent node (while the children are still in cache).
Both ways build child heaps before their parents, so both ways
do the exact same number of comparisons and produce exactly
the same heap. The only difference is that the traversal
order is optimized for cache efficiency.
*/
static PyObject *
cache_friendly_heapify(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
{
Py_ssize_t i, j, m, mhalf, leftmost;
m = PyList_GET_SIZE(heap) >> 1; /* index of first childless node */
leftmost = keep_top_bit(m + 1) - 1; /* leftmost node in row of m */
mhalf = m >> 1; /* parent of first childless node */
for (i = leftmost - 1 ; i >= mhalf ; i--) {
j = i;
while (1) {
if (siftup_func((PyListObject *)heap, j))
return NULL;
if (!(j & 1))
break;
j >>= 1;
}
}
for (i = m - 1 ; i >= leftmost ; i--) {
j = i;
while (1) {
if (siftup_func((PyListObject *)heap, j))
return NULL;
if (!(j & 1))
break;
j >>= 1;
}
}
Py_RETURN_NONE;
}
static PyObject *
heapify_internal(PyObject *heap, int siftup_func(PyListObject *, Py_ssize_t))
{
Py_ssize_t i, n;
if (!PyList_Check(heap)) {
PyErr_SetString(PyExc_TypeError, "heap argument must be a list");
return NULL;
}
/* For heaps likely to be bigger than L1 cache, we use the cache
friendly heapify function. For smaller heaps that fit entirely
in cache, we prefer the simpler algorithm with less branching.
*/
n = PyList_GET_SIZE(heap);
if (n > 2500)
return cache_friendly_heapify(heap, siftup_func);
/* Transform bottom-up. The largest index there's any point to
looking at is the largest with a child index in-range, so must
have 2*i + 1 < n, or i < (n-1)/2. If n is even = 2*j, this is
(2*j-1)/2 = j-1/2 so j-1 is the largest, which is n//2 - 1. If
n is odd = 2*j+1, this is (2*j+1-1)/2 = j so j-1 is the largest,
and that's again n//2-1.
*/
for (i = (n >> 1) - 1 ; i >= 0 ; i--)
if (siftup_func((PyListObject *)heap, i))
return NULL;
Py_RETURN_NONE;
}
static PyObject *
heapify(PyObject *self, PyObject *heap)
{
return heapify_internal(heap, siftup);
}
PyDoc_STRVAR(heapify_doc,
"Transform list into a heap, in-place, in O(len(heap)) time.");
static int
siftdown_max(PyListObject *heap, Py_ssize_t startpos, Py_ssize_t pos)
{
PyObject *newitem, *parent, **arr;
Py_ssize_t parentpos, size;
int cmp;
assert(PyList_Check(heap));
size = PyList_GET_SIZE(heap);
if (pos >= size) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return -1;
}
/* Follow the path to the root, moving parents down until finding
a place newitem fits. */
arr = _PyList_ITEMS(heap);
newitem = arr[pos];
while (pos > startpos) {
parentpos = (pos - 1) >> 1;
parent = arr[parentpos];
Py_INCREF(parent);
Py_INCREF(newitem);
cmp = PyObject_RichCompareBool(parent, newitem, Py_LT);
Py_DECREF(parent);
Py_DECREF(newitem);
if (cmp < 0)
return -1;
if (size != PyList_GET_SIZE(heap)) {
PyErr_SetString(PyExc_RuntimeError,
"list changed size during iteration");
return -1;
}
if (cmp == 0)
break;
arr = _PyList_ITEMS(heap);
parent = arr[parentpos];
newitem = arr[pos];
arr[parentpos] = newitem;
arr[pos] = parent;
pos = parentpos;
}
return 0;
}
static int
siftup_max(PyListObject *heap, Py_ssize_t pos)
{
Py_ssize_t startpos, endpos, childpos, limit;
PyObject *tmp1, *tmp2, **arr;
int cmp;
assert(PyList_Check(heap));
endpos = PyList_GET_SIZE(heap);
startpos = pos;
if (pos >= endpos) {
PyErr_SetString(PyExc_IndexError, "index out of range");
return -1;
}
/* Bubble up the smaller child until hitting a leaf. */
arr = _PyList_ITEMS(heap);
limit = endpos >> 1; /* smallest pos that has no child */
while (pos < limit) {
/* Set childpos to index of smaller child. */
childpos = 2*pos + 1; /* leftmost child position */
if (childpos + 1 < endpos) {
PyObject* a = arr[childpos + 1];
PyObject* b = arr[childpos];
Py_INCREF(a);
Py_INCREF(b);
cmp = PyObject_RichCompareBool(a, b, Py_LT);
Py_DECREF(a);
Py_DECREF(b);
if (cmp < 0)
return -1;
childpos += ((unsigned)cmp ^ 1); /* increment when cmp==0 */
arr = _PyList_ITEMS(heap); /* arr may have changed */
if (endpos != PyList_GET_SIZE(heap)) {
PyErr_SetString(PyExc_RuntimeError,
"list changed size during iteration");
return -1;
}
}
/* Move the smaller child up. */
tmp1 = arr[childpos];
tmp2 = arr[pos];
arr[childpos] = tmp2;
arr[pos] = tmp1;
pos = childpos;
}
/* Bubble it up to its final resting place (by sifting its parents down). */
return siftdown_max(heap, startpos, pos);
}
static PyObject *
heappop_max(PyObject *self, PyObject *heap)
{
return heappop_internal(heap, siftup_max);
}
PyDoc_STRVAR(heappop_max_doc, "Maxheap variant of heappop.");
static PyObject *
heapreplace_max(PyObject *self, PyObject *args)
{
return heapreplace_internal(args, siftup_max);
}
PyDoc_STRVAR(heapreplace_max_doc, "Maxheap variant of heapreplace");
static PyObject *
heapify_max(PyObject *self, PyObject *heap)
{
return heapify_internal(heap, siftup_max);
}
PyDoc_STRVAR(heapify_max_doc, "Maxheap variant of heapify.");
static PyMethodDef heapq_methods[] = {
{"heappush",
(PyCFunction)heappush,
METH_VARARGS,
heappush_doc},
{"heappushpop",
(PyCFunction)heappushpop,
METH_VARARGS,
heappushpop_doc},
{"heappop",
(PyCFunction)heappop,
METH_O,
heappop_doc},
{"heapreplace",
(PyCFunction)heapreplace,
METH_VARARGS,
heapreplace_doc},
{"heapify",
(PyCFunction)heapify,
METH_O,
heapify_doc},
{"_heappop_max",
(PyCFunction)heappop_max,
METH_O,
heappop_max_doc},
{"_heapreplace_max",
(PyCFunction)heapreplace_max,
METH_VARARGS,
heapreplace_max_doc},
{"_heapify_max",
(PyCFunction)heapify_max,
METH_O,
heapify_max_doc},
{0}
};
PyDoc_STRVAR(module_doc,
"Heap queue algorithm (a.k.a. priority queue).\n\
\n\
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\
all k, counting elements from 0. For the sake of comparison,\n\
non-existing elements are considered to be infinite. The interesting\n\
property of a heap is that a[0] is always its smallest element.\n\
\n\
Usage:\n\
\n\
heap = [] # creates an empty heap\n\
heappush(heap, item) # pushes a new item on the heap\n\
item = heappop(heap) # pops the smallest item from the heap\n\
item = heap[0] # smallest item on the heap without popping it\n\
heapify(x) # transforms list into a heap, in-place, in linear time\n\
item = heapreplace(heap, item) # pops and returns smallest item, and adds\n\
# new item; the heap size is unchanged\n\
\n\
Our API differs from textbook heap algorithms as follows:\n\
\n\
- We use 0-based indexing. This makes the relationship between the\n\
index for a node and the indexes for its children slightly less\n\
obvious, but is more suitable since Python uses 0-based indexing.\n\
\n\
- Our heappop() method returns the smallest item, not the largest.\n\
\n\
These two make it possible to view the heap as a regular Python list\n\
without surprises: heap[0] is the smallest item, and heap.sort()\n\
maintains the heap invariant!\n");
PyDoc_STRVAR(__about__,
"Heap queues\n\
\n\
[explanation by Fran\xc3\xa7ois Pinard]\n\
\n\
Heaps are arrays for which a[k] <= a[2*k+1] and a[k] <= a[2*k+2] for\n\
all k, counting elements from 0. For the sake of comparison,\n\
non-existing elements are considered to be infinite. The interesting\n\
property of a heap is that a[0] is always its smallest element.\n"
"\n\
The strange invariant above is meant to be an efficient memory\n\
representation for a tournament. The numbers below are `k', not a[k]:\n\
\n\
0\n\
\n\
1 2\n\
\n\
3 4 5 6\n\
\n\
7 8 9 10 11 12 13 14\n\
\n\
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30\n\
\n\
\n\
In the tree above, each cell `k' is topping `2*k+1' and `2*k+2'. In\n\
a usual binary tournament we see in sports, each cell is the winner\n\
over the two cells it tops, and we can trace the winner down the tree\n\
to see all opponents s/he had. However, in many computer applications\n\
of such tournaments, we do not need to trace the history of a winner.\n\
To be more memory efficient, when a winner is promoted, we try to\n\
replace it by something else at a lower level, and the rule becomes\n\
that a cell and the two cells it tops contain three different items,\n\
but the top cell \"wins\" over the two topped cells.\n"
"\n\
If this heap invariant is protected at all time, index 0 is clearly\n\
the overall winner. The simplest algorithmic way to remove it and\n\
find the \"next\" winner is to move some loser (let's say cell 30 in the\n\
diagram above) into the 0 position, and then percolate this new 0 down\n\
the tree, exchanging values, until the invariant is re-established.\n\
This is clearly logarithmic on the total number of items in the tree.\n\
By iterating over all items, you get an O(n ln n) sort.\n"
"\n\
A nice feature of this sort is that you can efficiently insert new\n\
items while the sort is going on, provided that the inserted items are\n\
not \"better\" than the last 0'th element you extracted. This is\n\
especially useful in simulation contexts, where the tree holds all\n\
incoming events, and the \"win\" condition means the smallest scheduled\n\
time. When an event schedule other events for execution, they are\n\
scheduled into the future, so they can easily go into the heap. So, a\n\
heap is a good structure for implementing schedulers (this is what I\n\
used for my MIDI sequencer :-).\n"
"\n\
Various structures for implementing schedulers have been extensively\n\
studied, and heaps are good for this, as they are reasonably speedy,\n\
the speed is almost constant, and the worst case is not much different\n\
than the average case. However, there are other representations which\n\
are more efficient overall, yet the worst cases might be terrible.\n"
"\n\
Heaps are also very useful in big disk sorts. You most probably all\n\
know that a big sort implies producing \"runs\" (which are pre-sorted\n\
sequences, which size is usually related to the amount of CPU memory),\n\
followed by a merging passes for these runs, which merging is often\n\
very cleverly organised[1]. It is very important that the initial\n\
sort produces the longest runs possible. Tournaments are a good way\n\
to that. If, using all the memory available to hold a tournament, you\n\
replace and percolate items that happen to fit the current run, you'll\n\
produce runs which are twice the size of the memory for random input,\n\
and much better for input fuzzily ordered.\n"
"\n\
Moreover, if you output the 0'th item on disk and get an input which\n\
may not fit in the current tournament (because the value \"wins\" over\n\
the last output value), it cannot fit in the heap, so the size of the\n\
heap decreases. The freed memory could be cleverly reused immediately\n\
for progressively building a second heap, which grows at exactly the\n\
same rate the first heap is melting. When the first heap completely\n\
vanishes, you switch heaps and start a new run. Clever and quite\n\
effective!\n\
\n\
In a word, heaps are useful memory structures to know. I use them in\n\
a few applications, and I think it is good to keep a `heap' module\n\
around. :-)\n"
"\n\
--------------------\n\
[1] The disk balancing algorithms which are current, nowadays, are\n\
more annoying than clever, and this is a consequence of the seeking\n\
capabilities of the disks. On devices which cannot seek, like big\n\
tape drives, the story was quite different, and one had to be very\n\
clever to ensure (far in advance) that each tape movement will be the\n\
most effective possible (that is, will best participate at\n\
\"progressing\" the merge). Some tapes were even able to read\n\
backwards, and this was also used to avoid the rewinding time.\n\
Believe me, real good tape sorts were quite spectacular to watch!\n\
From all times, sorting has always been a Great Art! :-)\n");
static struct PyModuleDef _heapqmodule = {
PyModuleDef_HEAD_INIT,
"_heapq",
module_doc,
-1,
heapq_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__heapq(void)
{
PyObject *m, *about;
m = PyModule_Create(&_heapqmodule);
if (m == NULL)
return NULL;
about = PyUnicode_DecodeUTF8(__about__, strlen(__about__), NULL);
PyModule_AddObject(m, "__about__", about);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__heapq = {
"_heapq",
PyInit__heapq,
};
| 23,695 | 685 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_decompprefix.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const char *const _PyUnicode_DecompPrefix[17] = {
"",
"<noBreak>",
"<compat>",
"<super>",
"<fraction>",
"<sub>",
"<font>",
"<circle>",
"<wide>",
"<vertical>",
"<square>",
"<isolated>",
"<final>",
"<initial>",
"<medial>",
"<small>",
"<narrow>",
};
| 505 | 25 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/rotatingtree.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Modules/rotatingtree.h"
/* clang-format off */
#define KEY_LOWER_THAN(key1, key2) ((char*)(key1) < (char*)(key2))
/* The randombits() function below is a fast-and-dirty generator that
* is probably irregular enough for our purposes. Note that it's biased:
* I think that ones are slightly more probable than zeroes. It's not
* important here, though.
*/
static unsigned int random_value = 1;
static unsigned int random_stream = 0;
static int
randombits(int bits)
{
int result;
if (random_stream < (1U << bits)) {
random_value *= 1082527;
random_stream = random_value;
}
result = random_stream & ((1<<bits)-1);
random_stream >>= bits;
return result;
}
/* Insert a new node into the tree.
(*root) is modified to point to the new root. */
void
RotatingTree_Add(rotating_node_t **root, rotating_node_t *node)
{
while (*root != NULL) {
if (KEY_LOWER_THAN(node->key, (*root)->key))
root = &((*root)->left);
else
root = &((*root)->right);
}
node->left = NULL;
node->right = NULL;
*root = node;
}
/* Locate the node with the given key. This is the most complicated
function because it occasionally rebalances the tree to move the
resulting node closer to the root. */
rotating_node_t *
RotatingTree_Get(rotating_node_t **root, void *key)
{
if (randombits(3) != 4) {
/* Fast path, no rebalancing */
rotating_node_t *node = *root;
while (node != NULL) {
if (node->key == key)
return node;
if (KEY_LOWER_THAN(key, node->key))
node = node->left;
else
node = node->right;
}
return NULL;
}
else {
rotating_node_t **pnode = root;
rotating_node_t *node = *pnode;
rotating_node_t *next;
int rotate;
if (node == NULL)
return NULL;
while (1) {
if (node->key == key)
return node;
rotate = !randombits(1);
if (KEY_LOWER_THAN(key, node->key)) {
next = node->left;
if (next == NULL)
return NULL;
if (rotate) {
node->left = next->right;
next->right = node;
*pnode = next;
}
else
pnode = &(node->left);
}
else {
next = node->right;
if (next == NULL)
return NULL;
if (rotate) {
node->right = next->left;
next->left = node;
*pnode = next;
}
else
pnode = &(node->right);
}
node = next;
}
}
}
/* Enumerate all nodes in the tree. The callback enumfn() should return
zero to continue the enumeration, or non-zero to interrupt it.
A non-zero value is directly returned by RotatingTree_Enum(). */
int
RotatingTree_Enum(rotating_node_t *root, rotating_tree_enum_fn enumfn,
void *arg)
{
int result;
rotating_node_t *node;
while (root != NULL) {
result = RotatingTree_Enum(root->left, enumfn, arg);
if (result != 0) return result;
node = root->right;
result = enumfn(root, arg);
if (result != 0) return result;
root = node;
}
return 0;
}
| 4,333 | 129 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/parsermodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/Python-ast.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/ast.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/compile.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/errcode.h"
#include "third_party/python/Include/graminit.h"
#include "third_party/python/Include/grammar.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/node.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/parsetok.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/token.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("parser");
PYTHON_PROVIDE("parser.ParserError");
PYTHON_PROVIDE("parser.STType");
PYTHON_PROVIDE("parser._pickler");
PYTHON_PROVIDE("parser.compilest");
PYTHON_PROVIDE("parser.expr");
PYTHON_PROVIDE("parser.isexpr");
PYTHON_PROVIDE("parser.issuite");
PYTHON_PROVIDE("parser.sequence2st");
PYTHON_PROVIDE("parser.st2list");
PYTHON_PROVIDE("parser.st2tuple");
PYTHON_PROVIDE("parser.suite");
PYTHON_PROVIDE("parser.tuple2st");
asm(".ident\t\"\\n\\n\
parsermodule (Python license)\\n\
Copyright 1995-1996 by Virginia Polytechnic Institute & State\\n\
University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\\n\
Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\\n\
Centrum, Amsterdam, The Netherlands.\"");
static const char parser_copyright_string[] =
"Copyright 1995-1996 by Virginia Polytechnic Institute & State\n\
University, Blacksburg, Virginia, USA, and Fred L. Drake, Jr., Reston,\n\
Virginia, USA. Portions copyright 1991-1995 by Stichting Mathematisch\n\
Centrum, Amsterdam, The Netherlands.";
/* parsermodule.c
*
* Copyright 1995-1996 by Fred L. Drake, Jr. and Virginia Polytechnic
* Institute and State University, Blacksburg, Virginia, USA.
* Portions copyright 1991-1995 by Stichting Mathematisch Centrum,
* Amsterdam, The Netherlands. Copying is permitted under the terms
* associated with the main Python distribution, with the additional
* restriction that this additional notice be included and maintained
* on all distributed copies.
*
* This module serves to replace the original parser module written
* by Guido. The functionality is not matched precisely, but the
* original may be implemented on top of this. This is desirable
* since the source of the text to be parsed is now divorced from
* this interface.
*
* Unlike the prior interface, the ability to give a parse tree
* produced by Python code as a tuple to the compiler is enabled by
* this module. See the documentation for more details.
*
* I've added some annotations that help with the lint code-checking
* program, but they're not complete by a long shot. The real errors
* that lint detects are gone, but there are still warnings with
* Py_[X]DECREF() and Py_[X]INCREF() macros. The lint annotations
* look like "NOTE(...)".
*
* To debug parser errors like
* "parser.ParserError: Expected node type 12, got 333."
* decode symbol numbers using the automatically-generated files
* Lib/symbol.h and Include/token.h.
*/
extern grammar _PyParser_Grammar; /* From graminit.c */
#define NOTE(x)
PyDoc_STRVAR(parser_doc_string,
"This is an interface to Python's internal parser.");
static const char parser_version_string[] = "0.5";
typedef PyObject* (*SeqMaker) (Py_ssize_t length);
typedef int (*SeqInserter) (PyObject* sequence,
Py_ssize_t index,
PyObject* element);
/* The function below is copyrighted by Stichting Mathematisch Centrum. The
* original copyright statement is included below, and continues to apply
* in full to the function immediately following. All other material is
* original, copyrighted by Fred L. Drake, Jr. and Virginia Polytechnic
* Institute and State University. Changes were made to comply with the
* new naming conventions. Added arguments to provide support for creating
* lists as well as tuples, and optionally including the line numbers.
*/
static PyObject*
node2tuple(node *n, /* node to convert */
SeqMaker mkseq, /* create sequence */
SeqInserter addelem, /* func. to add elem. in seq. */
int lineno, /* include line numbers? */
int col_offset) /* include column offsets? */
{
PyObject *result = NULL, *w;
if (n == NULL) {
Py_INCREF(Py_None);
return Py_None;
}
if (ISNONTERMINAL(TYPE(n))) {
int i;
result = mkseq(1 + NCH(n) + (TYPE(n) == encoding_decl));
if (result == NULL)
goto error;
w = PyLong_FromLong(TYPE(n));
if (w == NULL)
goto error;
(void) addelem(result, 0, w);
for (i = 0; i < NCH(n); i++) {
w = node2tuple(CHILD(n, i), mkseq, addelem, lineno, col_offset);
if (w == NULL)
goto error;
(void) addelem(result, i+1, w);
}
if (TYPE(n) == encoding_decl) {
w = PyUnicode_FromString(STR(n));
if (w == NULL)
goto error;
(void) addelem(result, i+1, w);
}
}
else if (ISTERMINAL(TYPE(n))) {
result = mkseq(2 + lineno + col_offset);
if (result == NULL)
goto error;
w = PyLong_FromLong(TYPE(n));
if (w == NULL)
goto error;
(void) addelem(result, 0, w);
w = PyUnicode_FromString(STR(n));
if (w == NULL)
goto error;
(void) addelem(result, 1, w);
if (lineno) {
w = PyLong_FromLong(n->n_lineno);
if (w == NULL)
goto error;
(void) addelem(result, 2, w);
}
if (col_offset) {
w = PyLong_FromLong(n->n_col_offset);
if (w == NULL)
goto error;
(void) addelem(result, 2 + lineno, w);
}
}
else {
PyErr_SetString(PyExc_SystemError,
"unrecognized parse tree node type");
return ((PyObject*) NULL);
}
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*
* End of material copyrighted by Stichting Mathematisch Centrum.
*/
/* There are two types of intermediate objects we're interested in:
* 'eval' and 'exec' types. These constants can be used in the st_type
* field of the object type to identify which any given object represents.
* These should probably go in an external header to allow other extensions
* to use them, but then, we really should be using C++ too. ;-)
*/
#define PyST_EXPR 1
#define PyST_SUITE 2
/* These are the internal objects and definitions required to implement the
* ST type. Most of the internal names are more reminiscent of the 'old'
* naming style, but the code uses the new naming convention.
*/
static PyObject*
parser_error = 0;
typedef struct {
PyObject_HEAD /* standard object header */
node* st_node; /* the node* returned by the parser */
int st_type; /* EXPR or SUITE ? */
PyCompilerFlags st_flags; /* Parser and compiler flags */
} PyST_Object;
static void parser_free(PyST_Object *st);
static PyObject* parser_sizeof(PyST_Object *, void *);
static PyObject* parser_richcompare(PyObject *left, PyObject *right, int op);
static PyObject* parser_compilest(PyST_Object *, PyObject *, PyObject *);
static PyObject* parser_isexpr(PyST_Object *, PyObject *, PyObject *);
static PyObject* parser_issuite(PyST_Object *, PyObject *, PyObject *);
static PyObject* parser_st2list(PyST_Object *, PyObject *, PyObject *);
static PyObject* parser_st2tuple(PyST_Object *, PyObject *, PyObject *);
#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
static PyMethodDef parser_methods[] = {
{"compile", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
PyDoc_STR("Compile this ST object into a code object.")},
{"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
PyDoc_STR("Determines if this ST object was created from an expression.")},
{"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
PyDoc_STR("Determines if this ST object was created from a suite.")},
{"tolist", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates a list-tree representation of this ST.")},
{"totuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates a tuple-tree representation of this ST.")},
{"__sizeof__", (PyCFunction)parser_sizeof, METH_NOARGS,
PyDoc_STR("Returns size in memory, in bytes.")},
{NULL, NULL, 0, NULL}
};
static
PyTypeObject PyST_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"parser.st", /* tp_name */
(int) sizeof(PyST_Object), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)parser_free, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
/* Functions to access object as input/output buffer */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
/* __doc__ */
"Intermediate representation of a Python parse tree.",
0, /* tp_traverse */
0, /* tp_clear */
parser_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
parser_methods, /* tp_methods */
}; /* PyST_Type */
/* PyST_Type isn't subclassable, so just check ob_type */
#define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
static int
parser_compare_nodes(node *left, node *right)
{
int j;
if (TYPE(left) < TYPE(right))
return (-1);
if (TYPE(right) < TYPE(left))
return (1);
if (ISTERMINAL(TYPE(left)))
return (strcmp(STR(left), STR(right)));
if (NCH(left) < NCH(right))
return (-1);
if (NCH(right) < NCH(left))
return (1);
for (j = 0; j < NCH(left); ++j) {
int v = parser_compare_nodes(CHILD(left, j), CHILD(right, j));
if (v != 0)
return (v);
}
return (0);
}
/* parser_richcompare(PyObject* left, PyObject* right, int op)
*
* Comparison function used by the Python operators ==, !=, <, >, <=, >=
* This really just wraps a call to parser_compare_nodes() with some easy
* checks and protection code.
*
*/
#define TEST_COND(cond) ((cond) ? Py_True : Py_False)
static PyObject *
parser_richcompare(PyObject *left, PyObject *right, int op)
{
int result;
PyObject *v;
/* neither argument should be NULL, unless something's gone wrong */
if (left == NULL || right == NULL) {
PyErr_BadInternalCall();
return NULL;
}
/* both arguments should be instances of PyST_Object */
if (!PyST_Object_Check(left) || !PyST_Object_Check(right)) {
v = Py_NotImplemented;
goto finished;
}
if (left == right)
/* if arguments are identical, they're equal */
result = 0;
else
result = parser_compare_nodes(((PyST_Object *)left)->st_node,
((PyST_Object *)right)->st_node);
/* Convert return value to a Boolean */
switch (op) {
case Py_EQ:
v = TEST_COND(result == 0);
break;
case Py_NE:
v = TEST_COND(result != 0);
break;
case Py_LE:
v = TEST_COND(result <= 0);
break;
case Py_GE:
v = TEST_COND(result >= 0);
break;
case Py_LT:
v = TEST_COND(result < 0);
break;
case Py_GT:
v = TEST_COND(result > 0);
break;
default:
PyErr_BadArgument();
return NULL;
}
finished:
Py_INCREF(v);
return v;
}
/* parser_newstobject(node* st)
*
* Allocates a new Python object representing an ST. This is simply the
* 'wrapper' object that holds a node* and allows it to be passed around in
* Python code.
*
*/
static PyObject*
parser_newstobject(node *st, int type)
{
PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type);
if (o != 0) {
o->st_node = st;
o->st_type = type;
o->st_flags.cf_flags = 0;
}
else {
PyNode_Free(st);
}
return ((PyObject*)o);
}
/* void parser_free(PyST_Object* st)
*
* This is called by a del statement that reduces the reference count to 0.
*
*/
static void
parser_free(PyST_Object *st)
{
PyNode_Free(st->st_node);
PyObject_Del(st);
}
static PyObject *
parser_sizeof(PyST_Object *st, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(st)) + _PyNode_SizeOf(st->st_node);
return PyLong_FromSsize_t(res);
}
/* parser_st2tuple(PyObject* self, PyObject* args, PyObject* kw)
*
* This provides conversion from a node* to a tuple object that can be
* returned to the Python-level caller. The ST object is not modified.
*
*/
static PyObject*
parser_st2tuple(PyST_Object *self, PyObject *args, PyObject *kw)
{
int line_info = 0;
int col_info = 0;
PyObject *res = 0;
int ok;
static char *keywords[] = {"st", "line_info", "col_info", NULL};
if (self == NULL || PyModule_Check(self)) {
ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2tuple", keywords,
&PyST_Type, &self, &line_info,
&col_info);
}
else
ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:totuple", &keywords[1],
&line_info, &col_info);
if (ok != 0) {
/*
* Convert ST into a tuple representation. Use Guido's function,
* since it's known to work already.
*/
res = node2tuple(((PyST_Object*)self)->st_node,
PyTuple_New, PyTuple_SetItem, line_info, col_info);
}
return (res);
}
/* parser_st2list(PyObject* self, PyObject* args, PyObject* kw)
*
* This provides conversion from a node* to a list object that can be
* returned to the Python-level caller. The ST object is not modified.
*
*/
static PyObject*
parser_st2list(PyST_Object *self, PyObject *args, PyObject *kw)
{
int line_info = 0;
int col_info = 0;
PyObject *res = 0;
int ok;
static char *keywords[] = {"st", "line_info", "col_info", NULL};
if (self == NULL || PyModule_Check(self))
ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|pp:st2list", keywords,
&PyST_Type, &self, &line_info,
&col_info);
else
ok = PyArg_ParseTupleAndKeywords(args, kw, "|pp:tolist", &keywords[1],
&line_info, &col_info);
if (ok) {
/*
* Convert ST into a tuple representation. Use Guido's function,
* since it's known to work already.
*/
res = node2tuple(self->st_node,
PyList_New, PyList_SetItem, line_info, col_info);
}
return (res);
}
/* parser_compilest(PyObject* self, PyObject* args)
*
* This function creates code objects from the parse tree represented by
* the passed-in data object. An optional file name is passed in as well.
*
*/
static PyObject*
parser_compilest(PyST_Object *self, PyObject *args, PyObject *kw)
{
PyObject* res = NULL;
PyArena* arena = NULL;
mod_ty mod;
PyObject* filename = NULL;
int ok;
static char *keywords[] = {"st", "filename", NULL};
if (self == NULL || PyModule_Check(self))
ok = PyArg_ParseTupleAndKeywords(args, kw, "O!|O&:compilest", keywords,
&PyST_Type, &self,
PyUnicode_FSDecoder, &filename);
else
ok = PyArg_ParseTupleAndKeywords(args, kw, "|O&:compile", &keywords[1],
PyUnicode_FSDecoder, &filename);
if (!ok)
goto error;
if (filename == NULL) {
filename = PyUnicode_FromString("<syntax-tree>");
if (filename == NULL)
goto error;
}
arena = PyArena_New();
if (!arena)
goto error;
mod = PyAST_FromNodeObject(self->st_node, &self->st_flags,
filename, arena);
if (!mod)
goto error;
res = (PyObject *)PyAST_CompileObject(mod, filename,
&self->st_flags, -1, arena);
error:
Py_XDECREF(filename);
if (arena != NULL)
PyArena_Free(arena);
return res;
}
/* PyObject* parser_isexpr(PyObject* self, PyObject* args)
* PyObject* parser_issuite(PyObject* self, PyObject* args)
*
* Checks the passed-in ST object to determine if it is an expression or
* a statement suite, respectively. The return is a Python truth value.
*
*/
static PyObject*
parser_isexpr(PyST_Object *self, PyObject *args, PyObject *kw)
{
PyObject* res = 0;
int ok;
static char *keywords[] = {"st", NULL};
if (self == NULL || PyModule_Check(self))
ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:isexpr", keywords,
&PyST_Type, &self);
else
ok = PyArg_ParseTupleAndKeywords(args, kw, ":isexpr", &keywords[1]);
if (ok) {
/* Check to see if the ST represents an expression or not. */
res = (self->st_type == PyST_EXPR) ? Py_True : Py_False;
Py_INCREF(res);
}
return (res);
}
static PyObject*
parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
{
PyObject* res = 0;
int ok;
static char *keywords[] = {"st", NULL};
if (self == NULL || PyModule_Check(self))
ok = PyArg_ParseTupleAndKeywords(args, kw, "O!:issuite", keywords,
&PyST_Type, &self);
else
ok = PyArg_ParseTupleAndKeywords(args, kw, ":issuite", &keywords[1]);
if (ok) {
/* Check to see if the ST represents an expression or not. */
res = (self->st_type == PyST_EXPR) ? Py_False : Py_True;
Py_INCREF(res);
}
return (res);
}
/* err_string(const char* message)
*
* Sets the error string for an exception of type ParserError.
*
*/
static void
err_string(const char *message)
{
PyErr_SetString(parser_error, message);
}
/* PyObject* parser_do_parse(PyObject* args, int type)
*
* Internal function to actually execute the parse and return the result if
* successful or set an exception if not.
*
*/
static PyObject*
parser_do_parse(PyObject *args, PyObject *kw, const char *argspec, int type)
{
char* string = 0;
PyObject* res = 0;
int flags = 0;
perrdetail err;
static char *keywords[] = {"source", NULL};
if (PyArg_ParseTupleAndKeywords(args, kw, argspec, keywords, &string)) {
node* n = PyParser_ParseStringFlagsFilenameEx(string, NULL,
&_PyParser_Grammar,
(type == PyST_EXPR)
? eval_input : file_input,
&err, &flags);
if (n) {
res = parser_newstobject(n, type);
if (res)
((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK;
}
else {
PyParser_SetError(&err);
}
PyParser_ClearError(&err);
}
return (res);
}
/* PyObject* parser_expr(PyObject* self, PyObject* args)
* PyObject* parser_suite(PyObject* self, PyObject* args)
*
* External interfaces to the parser itself. Which is called determines if
* the parser attempts to recognize an expression ('eval' form) or statement
* suite ('exec' form). The real work is done by parser_do_parse() above.
*
*/
static PyObject*
parser_expr(PyST_Object *self, PyObject *args, PyObject *kw)
{
NOTE(ARGUNUSED(self))
return (parser_do_parse(args, kw, "s:expr", PyST_EXPR));
}
static PyObject*
parser_suite(PyST_Object *self, PyObject *args, PyObject *kw)
{
NOTE(ARGUNUSED(self))
return (parser_do_parse(args, kw, "s:suite", PyST_SUITE));
}
/* This is the messy part of the code. Conversion from a tuple to an ST
* object requires that the input tuple be valid without having to rely on
* catching an exception from the compiler. This is done to allow the
* compiler itself to remain fast, since most of its input will come from
* the parser directly, and therefore be known to be syntactically correct.
* This validation is done to ensure that we don't core dump the compile
* phase, returning an exception instead.
*
* Two aspects can be broken out in this code: creating a node tree from
* the tuple passed in, and verifying that it is indeed valid. It may be
* advantageous to expand the number of ST types to include funcdefs and
* lambdadefs to take advantage of the optimizer, recognizing those STs
* here. They are not necessary, and not quite as useful in a raw form.
* For now, let's get expressions and suites working reliably.
*/
static node* build_node_tree(PyObject *tuple);
static int
validate_node(node *tree)
{
int type = TYPE(tree);
int nch = NCH(tree);
dfa *nt_dfa;
state *dfa_state;
int pos, arc;
assert(ISNONTERMINAL(type));
type -= NT_OFFSET;
if (type >= _PyParser_Grammar.g_ndfas) {
PyErr_Format(parser_error, "Unrecognized node type %d.", TYPE(tree));
return 0;
}
nt_dfa = &_PyParser_Grammar.g_dfa[type];
REQ(tree, nt_dfa->d_type);
/* Run the DFA for this nonterminal. */
dfa_state = &nt_dfa->d_state[nt_dfa->d_initial];
for (pos = 0; pos < nch; ++pos) {
node *ch = CHILD(tree, pos);
int ch_type = TYPE(ch);
for (arc = 0; arc < dfa_state->s_narcs; ++arc) {
short a_label = dfa_state->s_arc[arc].a_lbl;
assert(a_label < _PyParser_Grammar.g_ll.ll_nlabels);
if (_PyParser_Grammar.g_ll.ll_label[a_label].lb_type == ch_type) {
/* The child is acceptable; if non-terminal, validate it recursively. */
if (ISNONTERMINAL(ch_type) && !validate_node(ch))
return 0;
/* Update the state, and move on to the next child. */
dfa_state = &nt_dfa->d_state[dfa_state->s_arc[arc].a_arrow];
goto arc_found;
}
}
/* What would this state have accepted? */
{
short a_label = dfa_state->s_arc->a_lbl;
int next_type;
if (!a_label) /* Wouldn't accept any more children */
goto illegal_num_children;
next_type = _PyParser_Grammar.g_ll.ll_label[a_label].lb_type;
if (ISNONTERMINAL(next_type))
PyErr_Format(parser_error, "Expected node type %d, got %d.",
next_type, ch_type);
else
PyErr_Format(parser_error, "Illegal terminal: expected %s.",
_PyParser_TokenNames[next_type]);
return 0;
}
arc_found:
continue;
}
/* Are we in a final state? If so, return 1 for successful validation. */
for (arc = 0; arc < dfa_state->s_narcs; ++arc) {
if (!dfa_state->s_arc[arc].a_lbl) {
return 1;
}
}
illegal_num_children:
PyErr_Format(parser_error,
"Illegal number of children for %s node.", nt_dfa->d_name);
return 0;
}
/* PyObject* parser_tuple2st(PyObject* self, PyObject* args)
*
* This is the public function, called from the Python code. It receives a
* single tuple object from the caller, and creates an ST object if the
* tuple can be validated. It does this by checking the first code of the
* tuple, and, if acceptable, builds the internal representation. If this
* step succeeds, the internal representation is validated as fully as
* possible with the recursive validate_node() routine defined above.
*
* This function must be changed if support is to be added for PyST_FRAGMENT
* ST objects.
*
*/
static PyObject*
parser_tuple2st(PyST_Object *self, PyObject *args, PyObject *kw)
{
NOTE(ARGUNUSED(self))
PyObject *st = 0;
PyObject *tuple;
node *tree;
static char *keywords[] = {"sequence", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kw, "O:sequence2st", keywords,
&tuple))
return (0);
if (!PySequence_Check(tuple)) {
PyErr_SetString(PyExc_ValueError,
"sequence2st() requires a single sequence argument");
return (0);
}
/*
* Convert the tree to the internal form before checking it.
*/
tree = build_node_tree(tuple);
if (tree != 0) {
node *validation_root = NULL;
int tree_type = 0;
switch (TYPE(tree)) {
case eval_input:
/* Might be an eval form. */
tree_type = PyST_EXPR;
validation_root = tree;
break;
case encoding_decl:
/* This looks like an encoding_decl so far. */
if (NCH(tree) == 1) {
tree_type = PyST_SUITE;
validation_root = CHILD(tree, 0);
}
else {
err_string("Error Parsing encoding_decl");
}
break;
case file_input:
/* This looks like an exec form so far. */
tree_type = PyST_SUITE;
validation_root = tree;
break;
default:
/* This is a fragment, at best. */
err_string("parse tree does not use a valid start symbol");
}
if (validation_root != NULL && validate_node(validation_root))
st = parser_newstobject(tree, tree_type);
else
PyNode_Free(tree);
}
/* Make sure we raise an exception on all errors. We should never
* get this, but we'd do well to be sure something is done.
*/
if (st == NULL && !PyErr_Occurred())
err_string("unspecified ST error occurred");
return st;
}
/* node* build_node_children()
*
* Iterate across the children of the current non-terminal node and build
* their structures. If successful, return the root of this portion of
* the tree, otherwise, 0. Any required exception will be specified already,
* and no memory will have been deallocated.
*
*/
static node*
build_node_children(PyObject *tuple, node *root, int *line_num)
{
Py_ssize_t len = PyObject_Size(tuple);
Py_ssize_t i;
int err;
if (len < 0) {
return NULL;
}
for (i = 1; i < len; ++i) {
/* elem must always be a sequence, however simple */
PyObject* elem = PySequence_GetItem(tuple, i);
int ok = elem != NULL;
int type = 0;
char *strn = 0;
if (ok)
ok = PySequence_Check(elem);
if (ok) {
PyObject *temp = PySequence_GetItem(elem, 0);
if (temp == NULL)
ok = 0;
else {
ok = PyLong_Check(temp);
if (ok) {
type = _PyLong_AsInt(temp);
if (type == -1 && PyErr_Occurred()) {
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
}
Py_DECREF(temp);
}
}
if (!ok) {
PyObject *err = Py_BuildValue("Os", elem,
"Illegal node construct.");
PyErr_SetObject(parser_error, err);
Py_XDECREF(err);
Py_XDECREF(elem);
return NULL;
}
if (ISTERMINAL(type)) {
Py_ssize_t len = PyObject_Size(elem);
PyObject *temp;
const char *temp_str;
if ((len != 2) && (len != 3)) {
err_string("terminal nodes must have 2 or 3 entries");
Py_DECREF(elem);
return NULL;
}
temp = PySequence_GetItem(elem, 1);
if (temp == NULL) {
Py_DECREF(elem);
return NULL;
}
if (!PyUnicode_Check(temp)) {
PyErr_Format(parser_error,
"second item in terminal node must be a string,"
" found %s",
Py_TYPE(temp)->tp_name);
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
if (len == 3) {
PyObject *o = PySequence_GetItem(elem, 2);
if (o == NULL) {
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
if (PyLong_Check(o)) {
int num = _PyLong_AsInt(o);
if (num == -1 && PyErr_Occurred()) {
Py_DECREF(o);
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
*line_num = num;
}
else {
PyErr_Format(parser_error,
"third item in terminal node must be an"
" integer, found %s",
Py_TYPE(temp)->tp_name);
Py_DECREF(o);
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
Py_DECREF(o);
}
temp_str = PyUnicode_AsUTF8AndSize(temp, &len);
if (temp_str == NULL) {
Py_DECREF(temp);
Py_DECREF(elem);
return NULL;
}
strn = (char *)PyObject_MALLOC(len + 1);
if (strn == NULL) {
Py_DECREF(temp);
Py_DECREF(elem);
PyErr_NoMemory();
return NULL;
}
(void) memcpy(strn, temp_str, len + 1);
Py_DECREF(temp);
}
else if (!ISNONTERMINAL(type)) {
/*
* It has to be one or the other; this is an error.
* Raise an exception.
*/
PyObject *err = Py_BuildValue("Os", elem, "unknown node type.");
PyErr_SetObject(parser_error, err);
Py_XDECREF(err);
Py_DECREF(elem);
return NULL;
}
err = PyNode_AddChild(root, type, strn, *line_num, 0);
if (err == E_NOMEM) {
Py_DECREF(elem);
PyObject_FREE(strn);
PyErr_NoMemory();
return NULL;
}
if (err == E_OVERFLOW) {
Py_DECREF(elem);
PyObject_FREE(strn);
PyErr_SetString(PyExc_ValueError,
"unsupported number of child nodes");
return NULL;
}
if (ISNONTERMINAL(type)) {
node* new_child = CHILD(root, i - 1);
if (new_child != build_node_children(elem, new_child, line_num)) {
Py_DECREF(elem);
return NULL;
}
}
else if (type == NEWLINE) { /* It's true: we increment the */
++(*line_num); /* line number *after* the newline! */
}
Py_DECREF(elem);
}
return root;
}
static node*
build_node_tree(PyObject *tuple)
{
node* res = 0;
PyObject *temp = PySequence_GetItem(tuple, 0);
long num = -1;
if (temp != NULL)
num = PyLong_AsLong(temp);
Py_XDECREF(temp);
if (ISTERMINAL(num)) {
/*
* The tuple is simple, but it doesn't start with a start symbol.
* Raise an exception now and be done with it.
*/
tuple = Py_BuildValue("Os", tuple,
"Illegal syntax-tree; cannot start with terminal symbol.");
PyErr_SetObject(parser_error, tuple);
Py_XDECREF(tuple);
}
else if (ISNONTERMINAL(num)) {
/*
* Not efficient, but that can be handled later.
*/
int line_num = 0;
PyObject *encoding = NULL;
if (num == encoding_decl) {
encoding = PySequence_GetItem(tuple, 2);
if (encoding == NULL) {
PyErr_SetString(parser_error, "missed encoding");
return NULL;
}
if (!PyUnicode_Check(encoding)) {
PyErr_Format(parser_error,
"encoding must be a string, found %.200s",
Py_TYPE(encoding)->tp_name);
Py_DECREF(encoding);
return NULL;
}
/* tuple isn't borrowed anymore here, need to DECREF */
tuple = PySequence_GetSlice(tuple, 0, 2);
if (tuple == NULL) {
Py_DECREF(encoding);
return NULL;
}
}
res = PyNode_New(num);
if (res != NULL) {
if (res != build_node_children(tuple, res, &line_num)) {
PyNode_Free(res);
res = NULL;
}
if (res && encoding) {
Py_ssize_t len;
const char *temp;
temp = PyUnicode_AsUTF8AndSize(encoding, &len);
if (temp == NULL) {
PyNode_Free(res);
Py_DECREF(encoding);
Py_DECREF(tuple);
return NULL;
}
res->n_str = (char *)PyObject_MALLOC(len + 1);
if (res->n_str == NULL) {
PyNode_Free(res);
Py_DECREF(encoding);
Py_DECREF(tuple);
PyErr_NoMemory();
return NULL;
}
(void) memcpy(res->n_str, temp, len + 1);
}
}
if (encoding != NULL) {
Py_DECREF(encoding);
Py_DECREF(tuple);
}
}
else {
/* The tuple is illegal -- if the number is neither TERMINAL nor
* NONTERMINAL, we can't use it. Not sure the implementation
* allows this condition, but the API doesn't preclude it.
*/
PyObject *err = Py_BuildValue("Os", tuple,
"Illegal component tuple.");
PyErr_SetObject(parser_error, err);
Py_XDECREF(err);
}
return (res);
}
static PyObject*
pickle_constructor = NULL;
static PyObject*
parser__pickler(PyObject *self, PyObject *args)
{
NOTE(ARGUNUSED(self))
PyObject *result = NULL;
PyObject *st = NULL;
PyObject *empty_dict = NULL;
if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) {
PyObject *newargs;
PyObject *tuple;
if ((empty_dict = PyDict_New()) == NULL)
goto finally;
if ((newargs = Py_BuildValue("Oi", st, 1)) == NULL)
goto finally;
tuple = parser_st2tuple((PyST_Object*)NULL, newargs, empty_dict);
if (tuple != NULL) {
result = Py_BuildValue("O(O)", pickle_constructor, tuple);
Py_DECREF(tuple);
}
Py_DECREF(newargs);
}
finally:
Py_XDECREF(empty_dict);
return (result);
}
/* Functions exported by this module. Most of this should probably
* be converted into an ST object with methods, but that is better
* done directly in Python, allowing subclasses to be created directly.
* We'd really have to write a wrapper around it all anyway to allow
* inheritance.
*/
static PyMethodDef parser_functions[] = {
{"compilest", (PyCFunction)parser_compilest, PUBLIC_METHOD_TYPE,
PyDoc_STR("Compiles an ST object into a code object.")},
{"expr", (PyCFunction)parser_expr, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates an ST object from an expression.")},
{"isexpr", (PyCFunction)parser_isexpr, PUBLIC_METHOD_TYPE,
PyDoc_STR("Determines if an ST object was created from an expression.")},
{"issuite", (PyCFunction)parser_issuite, PUBLIC_METHOD_TYPE,
PyDoc_STR("Determines if an ST object was created from a suite.")},
{"suite", (PyCFunction)parser_suite, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates an ST object from a suite.")},
{"sequence2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates an ST object from a tree representation.")},
{"st2tuple", (PyCFunction)parser_st2tuple, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates a tuple-tree representation of an ST.")},
{"st2list", (PyCFunction)parser_st2list, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates a list-tree representation of an ST.")},
{"tuple2st", (PyCFunction)parser_tuple2st, PUBLIC_METHOD_TYPE,
PyDoc_STR("Creates an ST object from a tree representation.")},
/* private stuff: support pickle module */
{"_pickler", (PyCFunction)parser__pickler, METH_VARARGS,
PyDoc_STR("Returns the pickle magic to allow ST objects to be pickled.")},
{NULL, NULL, 0, NULL}
};
static struct PyModuleDef parsermodule = {
PyModuleDef_HEAD_INIT,
"parser",
NULL,
-1,
parser_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC PyInit_parser(void); /* supply a prototype */
PyMODINIT_FUNC
PyInit_parser(void)
{
PyObject *module, *copyreg;
if (PyType_Ready(&PyST_Type) < 0)
return NULL;
module = PyModule_Create(&parsermodule);
if (module == NULL)
return NULL;
if (parser_error == 0)
parser_error = PyErr_NewException("parser.ParserError", NULL, NULL);
if (parser_error == 0)
return NULL;
/* CAUTION: The code next used to skip bumping the refcount on
* parser_error. That's a disaster if PyInit_parser() gets called more
* than once. By incref'ing, we ensure that each module dict that
* gets created owns its reference to the shared parser_error object,
* and the file static parser_error vrbl owns a reference too.
*/
Py_INCREF(parser_error);
if (PyModule_AddObject(module, "ParserError", parser_error) != 0)
return NULL;
Py_INCREF(&PyST_Type);
PyModule_AddObject(module, "STType", (PyObject*)&PyST_Type);
PyModule_AddStringConstant(module, "__copyright__",
parser_copyright_string);
PyModule_AddStringConstant(module, "__doc__",
parser_doc_string);
PyModule_AddStringConstant(module, "__version__",
parser_version_string);
/* Register to support pickling.
* If this fails, the import of this module will fail because an
* exception will be raised here; should we clear the exception?
*/
copyreg = PyImport_ImportModuleNoBlock("copyreg");
if (copyreg != NULL) {
PyObject *func, *pickler;
_Py_IDENTIFIER(pickle);
_Py_IDENTIFIER(sequence2st);
_Py_IDENTIFIER(_pickler);
func = _PyObject_GetAttrId(copyreg, &PyId_pickle);
pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st);
pickler = _PyObject_GetAttrId(module, &PyId__pickler);
Py_XINCREF(pickle_constructor);
if ((func != NULL) && (pickle_constructor != NULL)
&& (pickler != NULL)) {
PyObject *res;
res = PyObject_CallFunctionObjArgs(func, &PyST_Type, pickler,
pickle_constructor, NULL);
Py_XDECREF(res);
}
Py_XDECREF(func);
Py_XDECREF(pickle_constructor);
Py_XDECREF(pickler);
Py_DECREF(copyreg);
}
return module;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_parser = {
"parser",
PyInit_parser,
};
| 42,752 | 1,247 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_phrasebook.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const unsigned char _PyUnicode_Phrasebook[188803] = {
0, 202, 160, 233, 204, 77, 208, 142, 77, 31, 57, 236, 127, 57, 210, 133,
57, 250, 229, 250, 147, 46, 210, 230, 51, 210, 230, 250, 37, 102, 57,
242, 38, 228, 110, 232, 71, 201, 238, 202, 189, 17, 192, 76, 17, 101, 17,
104, 17, 133, 17, 134, 17, 151, 17, 170, 17, 179, 17, 174, 17, 182, 242,
47, 204, 180, 219, 240, 57, 234, 30, 57, 230, 204, 57, 208, 159, 77, 242,
36, 250, 26, 8, 6, 1, 64, 8, 6, 1, 249, 226, 8, 6, 1, 247, 52, 8, 6, 1,
238, 95, 8, 6, 1, 71, 8, 6, 1, 233, 163, 8, 6, 1, 232, 44, 8, 6, 1, 230,
124, 8, 6, 1, 70, 8, 6, 1, 223, 65, 8, 6, 1, 222, 184, 8, 6, 1, 165, 8,
6, 1, 218, 236, 8, 6, 1, 215, 151, 8, 6, 1, 74, 8, 6, 1, 211, 93, 8, 6,
1, 208, 247, 8, 6, 1, 150, 8, 6, 1, 206, 158, 8, 6, 1, 200, 228, 8, 6, 1,
68, 8, 6, 1, 196, 236, 8, 6, 1, 194, 202, 8, 6, 1, 193, 223, 8, 6, 1,
193, 148, 8, 6, 1, 192, 155, 46, 50, 186, 207, 169, 202, 189, 51, 50,
186, 242, 122, 251, 143, 132, 219, 175, 230, 211, 251, 143, 8, 2, 1, 64,
8, 2, 1, 249, 226, 8, 2, 1, 247, 52, 8, 2, 1, 238, 95, 8, 2, 1, 71, 8, 2,
1, 233, 163, 8, 2, 1, 232, 44, 8, 2, 1, 230, 124, 8, 2, 1, 70, 8, 2, 1,
223, 65, 8, 2, 1, 222, 184, 8, 2, 1, 165, 8, 2, 1, 218, 236, 8, 2, 1,
215, 151, 8, 2, 1, 74, 8, 2, 1, 211, 93, 8, 2, 1, 208, 247, 8, 2, 1, 150,
8, 2, 1, 206, 158, 8, 2, 1, 200, 228, 8, 2, 1, 68, 8, 2, 1, 196, 236, 8,
2, 1, 194, 202, 8, 2, 1, 193, 223, 8, 2, 1, 193, 148, 8, 2, 1, 192, 155,
46, 238, 138, 186, 84, 219, 175, 51, 238, 138, 186, 199, 90, 213, 136,
202, 160, 223, 121, 233, 204, 77, 246, 140, 57, 209, 143, 57, 238, 137,
57, 193, 60, 57, 247, 136, 161, 205, 209, 57, 237, 14, 238, 227, 57, 233,
28, 211, 158, 223, 172, 220, 23, 55, 250, 208, 208, 142, 77, 213, 111,
57, 202, 198, 228, 111, 207, 228, 57, 217, 214, 237, 95, 57, 209, 205,
57, 201, 107, 104, 201, 107, 133, 251, 130, 251, 143, 216, 166, 57, 210,
9, 57, 85, 236, 114, 246, 151, 201, 107, 101, 217, 111, 211, 158, 223,
172, 207, 96, 55, 250, 208, 208, 142, 77, 194, 220, 232, 109, 90, 208,
167, 194, 220, 232, 109, 90, 230, 78, 194, 220, 232, 109, 112, 208, 165,
223, 121, 208, 159, 77, 8, 6, 1, 41, 4, 230, 210, 8, 6, 1, 41, 4, 251,
129, 8, 6, 1, 41, 4, 242, 121, 8, 6, 1, 41, 4, 199, 90, 8, 6, 1, 41, 4,
237, 14, 8, 6, 1, 41, 4, 207, 82, 58, 8, 6, 1, 251, 108, 8, 6, 1, 247,
53, 4, 246, 151, 8, 6, 1, 234, 253, 4, 230, 210, 8, 6, 1, 234, 253, 4,
251, 129, 8, 6, 1, 234, 253, 4, 242, 121, 8, 6, 1, 234, 253, 4, 237, 14,
8, 6, 1, 228, 97, 4, 230, 210, 8, 6, 1, 228, 97, 4, 251, 129, 8, 6, 1,
228, 97, 4, 242, 121, 8, 6, 1, 228, 97, 4, 237, 14, 8, 6, 1, 233, 235, 8,
6, 1, 215, 152, 4, 199, 90, 8, 6, 1, 185, 4, 230, 210, 8, 6, 1, 185, 4,
251, 129, 8, 6, 1, 185, 4, 242, 121, 8, 6, 1, 185, 4, 199, 90, 8, 6, 1,
185, 4, 237, 14, 215, 214, 57, 8, 6, 1, 185, 4, 111, 8, 6, 1, 124, 4,
230, 210, 8, 6, 1, 124, 4, 251, 129, 8, 6, 1, 124, 4, 242, 121, 8, 6, 1,
124, 4, 237, 14, 8, 6, 1, 193, 149, 4, 251, 129, 8, 6, 1, 199, 168, 8, 2,
1, 204, 26, 206, 158, 8, 2, 1, 41, 4, 230, 210, 8, 2, 1, 41, 4, 251, 129,
8, 2, 1, 41, 4, 242, 121, 8, 2, 1, 41, 4, 199, 90, 8, 2, 1, 41, 4, 237,
14, 8, 2, 1, 41, 4, 207, 82, 58, 8, 2, 1, 251, 108, 8, 2, 1, 247, 53, 4,
246, 151, 8, 2, 1, 234, 253, 4, 230, 210, 8, 2, 1, 234, 253, 4, 251, 129,
8, 2, 1, 234, 253, 4, 242, 121, 8, 2, 1, 234, 253, 4, 237, 14, 8, 2, 1,
228, 97, 4, 230, 210, 8, 2, 1, 228, 97, 4, 251, 129, 8, 2, 1, 228, 97, 4,
242, 121, 8, 2, 1, 228, 97, 4, 237, 14, 8, 2, 1, 233, 235, 8, 2, 1, 215,
152, 4, 199, 90, 8, 2, 1, 185, 4, 230, 210, 8, 2, 1, 185, 4, 251, 129, 8,
2, 1, 185, 4, 242, 121, 8, 2, 1, 185, 4, 199, 90, 8, 2, 1, 185, 4, 237,
14, 236, 172, 57, 8, 2, 1, 185, 4, 111, 8, 2, 1, 124, 4, 230, 210, 8, 2,
1, 124, 4, 251, 129, 8, 2, 1, 124, 4, 242, 121, 8, 2, 1, 124, 4, 237, 14,
8, 2, 1, 193, 149, 4, 251, 129, 8, 2, 1, 199, 168, 8, 2, 1, 193, 149, 4,
237, 14, 8, 6, 1, 41, 4, 217, 214, 8, 2, 1, 41, 4, 217, 214, 8, 6, 1, 41,
4, 247, 150, 8, 2, 1, 41, 4, 247, 150, 8, 6, 1, 41, 4, 211, 243, 8, 2, 1,
41, 4, 211, 243, 8, 6, 1, 247, 53, 4, 251, 129, 8, 2, 1, 247, 53, 4, 251,
129, 8, 6, 1, 247, 53, 4, 242, 121, 8, 2, 1, 247, 53, 4, 242, 121, 8, 6,
1, 247, 53, 4, 78, 58, 8, 2, 1, 247, 53, 4, 78, 58, 8, 6, 1, 247, 53, 4,
246, 207, 8, 2, 1, 247, 53, 4, 246, 207, 8, 6, 1, 238, 96, 4, 246, 207,
8, 2, 1, 238, 96, 4, 246, 207, 8, 6, 1, 238, 96, 4, 111, 8, 2, 1, 238,
96, 4, 111, 8, 6, 1, 234, 253, 4, 217, 214, 8, 2, 1, 234, 253, 4, 217,
214, 8, 6, 1, 234, 253, 4, 247, 150, 8, 2, 1, 234, 253, 4, 247, 150, 8,
6, 1, 234, 253, 4, 78, 58, 8, 2, 1, 234, 253, 4, 78, 58, 8, 6, 1, 234,
253, 4, 211, 243, 8, 2, 1, 234, 253, 4, 211, 243, 8, 6, 1, 234, 253, 4,
246, 207, 8, 2, 1, 234, 253, 4, 246, 207, 8, 6, 1, 232, 45, 4, 242, 121,
8, 2, 1, 232, 45, 4, 242, 121, 8, 6, 1, 232, 45, 4, 247, 150, 8, 2, 1,
232, 45, 4, 247, 150, 8, 6, 1, 232, 45, 4, 78, 58, 8, 2, 1, 232, 45, 4,
78, 58, 8, 6, 1, 232, 45, 4, 246, 151, 8, 2, 1, 232, 45, 4, 246, 151, 8,
6, 1, 230, 125, 4, 242, 121, 8, 2, 1, 230, 125, 4, 242, 121, 8, 6, 1,
230, 125, 4, 111, 8, 2, 1, 230, 125, 4, 111, 8, 6, 1, 228, 97, 4, 199,
90, 8, 2, 1, 228, 97, 4, 199, 90, 8, 6, 1, 228, 97, 4, 217, 214, 8, 2, 1,
228, 97, 4, 217, 214, 8, 6, 1, 228, 97, 4, 247, 150, 8, 2, 1, 228, 97, 4,
247, 150, 8, 6, 1, 228, 97, 4, 211, 243, 8, 2, 1, 228, 97, 4, 211, 243,
8, 6, 1, 228, 97, 4, 78, 58, 8, 2, 1, 236, 113, 70, 8, 6, 34, 223, 222,
8, 2, 34, 223, 222, 8, 6, 1, 223, 66, 4, 242, 121, 8, 2, 1, 223, 66, 4,
242, 121, 8, 6, 1, 222, 185, 4, 246, 151, 8, 2, 1, 222, 185, 4, 246, 151,
8, 2, 1, 221, 56, 8, 6, 1, 220, 202, 4, 251, 129, 8, 2, 1, 220, 202, 4,
251, 129, 8, 6, 1, 220, 202, 4, 246, 151, 8, 2, 1, 220, 202, 4, 246, 151,
8, 6, 1, 220, 202, 4, 246, 207, 8, 2, 1, 220, 202, 4, 246, 207, 8, 6, 1,
220, 202, 4, 85, 236, 114, 8, 2, 1, 220, 202, 4, 85, 236, 114, 8, 6, 1,
220, 202, 4, 111, 8, 2, 1, 220, 202, 4, 111, 8, 6, 1, 215, 152, 4, 251,
129, 8, 2, 1, 215, 152, 4, 251, 129, 8, 6, 1, 215, 152, 4, 246, 151, 8,
2, 1, 215, 152, 4, 246, 151, 8, 6, 1, 215, 152, 4, 246, 207, 8, 2, 1,
215, 152, 4, 246, 207, 8, 2, 1, 215, 152, 209, 117, 247, 64, 250, 147, 8,
6, 1, 234, 73, 8, 2, 1, 234, 73, 8, 6, 1, 185, 4, 217, 214, 8, 2, 1, 185,
4, 217, 214, 8, 6, 1, 185, 4, 247, 150, 8, 2, 1, 185, 4, 247, 150, 8, 6,
1, 185, 4, 55, 251, 129, 8, 2, 1, 185, 4, 55, 251, 129, 8, 6, 34, 212, 0,
8, 2, 34, 212, 0, 8, 6, 1, 208, 112, 4, 251, 129, 8, 2, 1, 208, 112, 4,
251, 129, 8, 6, 1, 208, 112, 4, 246, 151, 8, 2, 1, 208, 112, 4, 246, 151,
8, 6, 1, 208, 112, 4, 246, 207, 8, 2, 1, 208, 112, 4, 246, 207, 8, 6, 1,
206, 159, 4, 251, 129, 8, 2, 1, 206, 159, 4, 251, 129, 8, 6, 1, 206, 159,
4, 242, 121, 8, 2, 1, 206, 159, 4, 242, 121, 8, 6, 1, 206, 159, 4, 246,
151, 8, 2, 1, 206, 159, 4, 246, 151, 8, 6, 1, 206, 159, 4, 246, 207, 8,
2, 1, 206, 159, 4, 246, 207, 8, 6, 1, 200, 229, 4, 246, 151, 8, 2, 1,
200, 229, 4, 246, 151, 8, 6, 1, 200, 229, 4, 246, 207, 8, 2, 1, 200, 229,
4, 246, 207, 8, 6, 1, 200, 229, 4, 111, 8, 2, 1, 200, 229, 4, 111, 8, 6,
1, 124, 4, 199, 90, 8, 2, 1, 124, 4, 199, 90, 8, 6, 1, 124, 4, 217, 214,
8, 2, 1, 124, 4, 217, 214, 8, 6, 1, 124, 4, 247, 150, 8, 2, 1, 124, 4,
247, 150, 8, 6, 1, 124, 4, 207, 82, 58, 8, 2, 1, 124, 4, 207, 82, 58, 8,
6, 1, 124, 4, 55, 251, 129, 8, 2, 1, 124, 4, 55, 251, 129, 8, 6, 1, 124,
4, 211, 243, 8, 2, 1, 124, 4, 211, 243, 8, 6, 1, 194, 203, 4, 242, 121,
8, 2, 1, 194, 203, 4, 242, 121, 8, 6, 1, 193, 149, 4, 242, 121, 8, 2, 1,
193, 149, 4, 242, 121, 8, 6, 1, 193, 149, 4, 237, 14, 8, 6, 1, 192, 156,
4, 251, 129, 8, 2, 1, 192, 156, 4, 251, 129, 8, 6, 1, 192, 156, 4, 78,
58, 8, 2, 1, 192, 156, 4, 78, 58, 8, 6, 1, 192, 156, 4, 246, 207, 8, 2,
1, 192, 156, 4, 246, 207, 8, 2, 1, 184, 206, 158, 8, 2, 1, 76, 4, 111, 8,
6, 1, 76, 4, 128, 8, 6, 1, 76, 4, 198, 246, 8, 2, 1, 76, 4, 198, 246, 8,
6, 1, 158, 170, 8, 2, 1, 158, 170, 8, 6, 1, 211, 184, 74, 8, 6, 1, 247,
53, 4, 128, 8, 2, 1, 247, 53, 4, 128, 8, 6, 1, 251, 83, 238, 95, 8, 6, 1,
238, 96, 4, 128, 8, 6, 1, 238, 96, 4, 198, 246, 8, 2, 1, 238, 96, 4, 198,
246, 8, 2, 1, 163, 237, 76, 8, 6, 1, 207, 168, 71, 8, 6, 1, 205, 240, 8,
6, 1, 211, 184, 71, 8, 6, 1, 233, 164, 4, 128, 8, 2, 1, 233, 164, 4, 128,
8, 6, 1, 232, 45, 4, 128, 8, 6, 1, 231, 204, 8, 2, 1, 228, 148, 8, 6, 1,
223, 111, 8, 6, 1, 228, 97, 4, 111, 8, 6, 1, 222, 185, 4, 128, 8, 2, 1,
222, 185, 4, 128, 8, 2, 1, 220, 202, 4, 161, 8, 2, 1, 220, 92, 4, 111, 8,
6, 1, 163, 218, 236, 8, 6, 1, 215, 152, 4, 46, 128, 8, 2, 1, 215, 152, 4,
184, 51, 220, 16, 8, 6, 1, 185, 4, 85, 199, 90, 8, 6, 1, 185, 4, 228,
208, 8, 2, 1, 185, 4, 228, 208, 8, 6, 1, 211, 238, 8, 2, 1, 211, 238, 8,
6, 1, 211, 94, 4, 128, 8, 2, 1, 211, 94, 4, 128, 8, 1, 192, 217, 8, 6, 1,
158, 104, 8, 2, 1, 158, 104, 8, 6, 1, 233, 255, 8, 1, 207, 168, 234, 0,
219, 69, 8, 2, 1, 200, 229, 4, 211, 49, 128, 8, 6, 1, 200, 229, 4, 128,
8, 2, 1, 200, 229, 4, 128, 8, 6, 1, 200, 229, 4, 207, 174, 128, 8, 6, 1,
124, 4, 228, 208, 8, 2, 1, 124, 4, 228, 208, 8, 6, 1, 197, 34, 8, 6, 1,
196, 237, 4, 128, 8, 6, 1, 193, 149, 4, 128, 8, 2, 1, 193, 149, 4, 128,
8, 6, 1, 192, 156, 4, 111, 8, 2, 1, 192, 156, 4, 111, 8, 6, 1, 233, 166,
8, 6, 1, 233, 167, 207, 167, 8, 2, 1, 233, 167, 207, 167, 8, 2, 1, 233,
167, 4, 200, 147, 8, 1, 103, 4, 111, 8, 6, 1, 158, 151, 8, 2, 1, 158,
151, 8, 1, 223, 121, 231, 6, 201, 239, 4, 111, 8, 1, 193, 226, 8, 1, 237,
69, 242, 96, 8, 1, 220, 63, 242, 96, 8, 1, 250, 242, 242, 96, 8, 1, 207,
174, 242, 96, 8, 6, 1, 235, 19, 4, 246, 207, 8, 6, 1, 238, 96, 4, 2, 1,
192, 156, 4, 246, 207, 8, 2, 1, 235, 19, 4, 246, 207, 8, 6, 1, 219, 141,
8, 6, 1, 220, 202, 4, 2, 1, 223, 65, 8, 2, 1, 219, 141, 8, 6, 1, 214, 1,
8, 6, 1, 215, 152, 4, 2, 1, 223, 65, 8, 2, 1, 214, 1, 8, 6, 1, 41, 4,
246, 207, 8, 2, 1, 41, 4, 246, 207, 8, 6, 1, 228, 97, 4, 246, 207, 8, 2,
1, 228, 97, 4, 246, 207, 8, 6, 1, 185, 4, 246, 207, 8, 2, 1, 185, 4, 246,
207, 8, 6, 1, 124, 4, 246, 207, 8, 2, 1, 124, 4, 246, 207, 8, 6, 1, 124,
4, 237, 15, 26, 217, 214, 8, 2, 1, 124, 4, 237, 15, 26, 217, 214, 8, 6,
1, 124, 4, 237, 15, 26, 251, 129, 8, 2, 1, 124, 4, 237, 15, 26, 251, 129,
8, 6, 1, 124, 4, 237, 15, 26, 246, 207, 8, 2, 1, 124, 4, 237, 15, 26,
246, 207, 8, 6, 1, 124, 4, 237, 15, 26, 230, 210, 8, 2, 1, 124, 4, 237,
15, 26, 230, 210, 8, 2, 1, 163, 71, 8, 6, 1, 41, 4, 237, 15, 26, 217,
214, 8, 2, 1, 41, 4, 237, 15, 26, 217, 214, 8, 6, 1, 41, 4, 78, 95, 26,
217, 214, 8, 2, 1, 41, 4, 78, 95, 26, 217, 214, 8, 6, 1, 251, 109, 4,
217, 214, 8, 2, 1, 251, 109, 4, 217, 214, 8, 6, 1, 232, 45, 4, 111, 8, 2,
1, 232, 45, 4, 111, 8, 6, 1, 232, 45, 4, 246, 207, 8, 2, 1, 232, 45, 4,
246, 207, 8, 6, 1, 222, 185, 4, 246, 207, 8, 2, 1, 222, 185, 4, 246, 207,
8, 6, 1, 185, 4, 211, 243, 8, 2, 1, 185, 4, 211, 243, 8, 6, 1, 185, 4,
211, 244, 26, 217, 214, 8, 2, 1, 185, 4, 211, 244, 26, 217, 214, 8, 6, 1,
233, 167, 4, 246, 207, 8, 2, 1, 233, 167, 4, 246, 207, 8, 2, 1, 223, 66,
4, 246, 207, 8, 6, 1, 235, 18, 8, 6, 1, 238, 96, 4, 2, 1, 192, 155, 8, 2,
1, 235, 18, 8, 6, 1, 232, 45, 4, 251, 129, 8, 2, 1, 232, 45, 4, 251, 129,
8, 6, 1, 228, 145, 8, 6, 1, 193, 226, 8, 6, 1, 215, 152, 4, 230, 210, 8,
2, 1, 215, 152, 4, 230, 210, 8, 6, 1, 41, 4, 207, 82, 95, 26, 251, 129,
8, 2, 1, 41, 4, 207, 82, 95, 26, 251, 129, 8, 6, 1, 251, 109, 4, 251,
129, 8, 2, 1, 251, 109, 4, 251, 129, 8, 6, 1, 185, 4, 201, 208, 26, 251,
129, 8, 2, 1, 185, 4, 201, 208, 26, 251, 129, 8, 6, 1, 41, 4, 55, 230,
210, 8, 2, 1, 41, 4, 55, 230, 210, 8, 6, 1, 41, 4, 223, 121, 247, 150, 8,
2, 1, 41, 4, 223, 121, 247, 150, 8, 6, 1, 234, 253, 4, 55, 230, 210, 8,
2, 1, 234, 253, 4, 55, 230, 210, 8, 6, 1, 234, 253, 4, 223, 121, 247,
150, 8, 2, 1, 234, 253, 4, 223, 121, 247, 150, 8, 6, 1, 228, 97, 4, 55,
230, 210, 8, 2, 1, 228, 97, 4, 55, 230, 210, 8, 6, 1, 228, 97, 4, 223,
121, 247, 150, 8, 2, 1, 228, 97, 4, 223, 121, 247, 150, 8, 6, 1, 185, 4,
55, 230, 210, 8, 2, 1, 185, 4, 55, 230, 210, 8, 6, 1, 185, 4, 223, 121,
247, 150, 8, 2, 1, 185, 4, 223, 121, 247, 150, 8, 6, 1, 208, 112, 4, 55,
230, 210, 8, 2, 1, 208, 112, 4, 55, 230, 210, 8, 6, 1, 208, 112, 4, 223,
121, 247, 150, 8, 2, 1, 208, 112, 4, 223, 121, 247, 150, 8, 6, 1, 124, 4,
55, 230, 210, 8, 2, 1, 124, 4, 55, 230, 210, 8, 6, 1, 124, 4, 223, 121,
247, 150, 8, 2, 1, 124, 4, 223, 121, 247, 150, 8, 6, 1, 206, 159, 4, 242,
39, 63, 8, 2, 1, 206, 159, 4, 242, 39, 63, 8, 6, 1, 200, 229, 4, 242, 39,
63, 8, 2, 1, 200, 229, 4, 242, 39, 63, 8, 6, 1, 192, 237, 8, 2, 1, 192,
237, 8, 6, 1, 230, 125, 4, 246, 207, 8, 2, 1, 230, 125, 4, 246, 207, 8,
6, 1, 215, 152, 4, 184, 51, 220, 16, 8, 2, 1, 238, 96, 4, 238, 142, 8, 6,
1, 211, 130, 8, 2, 1, 211, 130, 8, 6, 1, 192, 156, 4, 128, 8, 2, 1, 192,
156, 4, 128, 8, 6, 1, 41, 4, 78, 58, 8, 2, 1, 41, 4, 78, 58, 8, 6, 1,
234, 253, 4, 246, 151, 8, 2, 1, 234, 253, 4, 246, 151, 8, 6, 1, 185, 4,
237, 15, 26, 217, 214, 8, 2, 1, 185, 4, 237, 15, 26, 217, 214, 8, 6, 1,
185, 4, 199, 91, 26, 217, 214, 8, 2, 1, 185, 4, 199, 91, 26, 217, 214, 8,
6, 1, 185, 4, 78, 58, 8, 2, 1, 185, 4, 78, 58, 8, 6, 1, 185, 4, 78, 95,
26, 217, 214, 8, 2, 1, 185, 4, 78, 95, 26, 217, 214, 8, 6, 1, 193, 149,
4, 217, 214, 8, 2, 1, 193, 149, 4, 217, 214, 8, 2, 1, 220, 202, 4, 238,
142, 8, 2, 1, 215, 152, 4, 238, 142, 8, 2, 1, 200, 229, 4, 238, 142, 8,
2, 1, 236, 113, 223, 65, 8, 2, 1, 237, 171, 236, 230, 8, 2, 1, 208, 178,
236, 230, 8, 6, 1, 41, 4, 111, 8, 6, 1, 247, 53, 4, 111, 8, 2, 1, 247,
53, 4, 111, 8, 6, 1, 220, 202, 4, 161, 8, 6, 1, 200, 229, 4, 237, 11,
111, 8, 2, 1, 206, 159, 4, 201, 75, 200, 147, 8, 2, 1, 192, 156, 4, 201,
75, 200, 147, 8, 6, 1, 231, 6, 201, 238, 8, 2, 1, 231, 6, 201, 238, 8, 6,
1, 76, 4, 111, 8, 6, 1, 124, 161, 8, 6, 1, 163, 196, 236, 8, 6, 1, 234,
253, 4, 111, 8, 2, 1, 234, 253, 4, 111, 8, 6, 1, 223, 66, 4, 111, 8, 2,
1, 223, 66, 4, 111, 8, 6, 1, 2, 208, 248, 4, 229, 15, 200, 147, 8, 2, 1,
208, 248, 4, 229, 15, 200, 147, 8, 6, 1, 208, 112, 4, 111, 8, 2, 1, 208,
112, 4, 111, 8, 6, 1, 193, 149, 4, 111, 8, 2, 1, 193, 149, 4, 111, 8, 2,
1, 163, 64, 8, 2, 1, 250, 252, 8, 2, 1, 163, 250, 252, 8, 2, 1, 76, 4,
128, 8, 2, 1, 211, 184, 74, 8, 2, 1, 247, 53, 4, 238, 142, 8, 2, 1, 238,
96, 4, 200, 147, 8, 2, 1, 238, 96, 4, 128, 8, 2, 1, 207, 168, 71, 8, 2,
1, 205, 240, 8, 2, 1, 205, 241, 4, 128, 8, 2, 1, 211, 184, 71, 8, 2, 1,
207, 168, 211, 184, 71, 8, 2, 1, 207, 168, 211, 184, 234, 253, 4, 128, 8,
2, 1, 242, 84, 207, 168, 211, 184, 71, 8, 2, 1, 236, 113, 223, 66, 4,
111, 8, 2, 1, 232, 45, 4, 128, 8, 2, 1, 27, 232, 44, 8, 1, 2, 6, 232, 44,
8, 2, 1, 231, 204, 8, 2, 1, 208, 32, 228, 208, 8, 2, 1, 163, 230, 124, 8,
2, 1, 230, 125, 4, 128, 8, 2, 1, 229, 207, 4, 128, 8, 2, 1, 228, 97, 4,
111, 8, 2, 1, 223, 111, 8, 1, 2, 6, 70, 8, 2, 1, 220, 202, 4, 85, 199,
90, 8, 2, 1, 220, 202, 4, 248, 82, 8, 2, 1, 220, 202, 4, 207, 174, 128,
8, 2, 1, 219, 225, 8, 2, 1, 163, 218, 236, 8, 2, 1, 163, 218, 237, 4,
184, 220, 16, 8, 2, 1, 218, 237, 4, 128, 8, 2, 1, 215, 152, 4, 46, 128,
8, 2, 1, 215, 152, 4, 207, 174, 128, 8, 1, 2, 6, 215, 151, 8, 2, 1, 248,
188, 74, 8, 1, 2, 6, 212, 0, 8, 2, 1, 242, 84, 211, 216, 8, 2, 1, 210,
77, 8, 2, 1, 163, 150, 8, 2, 1, 163, 208, 112, 4, 184, 220, 16, 8, 2, 1,
163, 208, 112, 4, 128, 8, 2, 1, 208, 112, 4, 184, 220, 16, 8, 2, 1, 208,
112, 4, 200, 147, 8, 2, 1, 208, 112, 4, 232, 221, 8, 2, 1, 207, 168, 208,
112, 4, 232, 221, 8, 1, 2, 6, 150, 8, 1, 2, 6, 223, 121, 150, 8, 2, 1,
206, 159, 4, 128, 8, 2, 1, 233, 255, 8, 2, 1, 236, 113, 223, 66, 4, 201,
208, 26, 128, 8, 2, 1, 202, 103, 207, 168, 233, 255, 8, 2, 1, 234, 0, 4,
238, 142, 8, 2, 1, 163, 200, 228, 8, 2, 1, 200, 229, 4, 207, 174, 128, 8,
2, 1, 124, 161, 8, 2, 1, 197, 34, 8, 2, 1, 196, 237, 4, 128, 8, 2, 1,
163, 196, 236, 8, 2, 1, 163, 194, 202, 8, 2, 1, 163, 193, 148, 8, 1, 2,
6, 193, 148, 8, 2, 1, 192, 156, 4, 207, 174, 128, 8, 2, 1, 192, 156, 4,
238, 142, 8, 2, 1, 233, 166, 8, 2, 1, 233, 167, 4, 238, 142, 8, 1, 231,
6, 201, 238, 8, 1, 210, 85, 195, 248, 232, 95, 8, 1, 223, 121, 231, 6,
201, 238, 8, 1, 201, 216, 247, 52, 8, 1, 248, 25, 242, 96, 8, 1, 2, 6,
249, 226, 8, 2, 1, 242, 84, 211, 184, 71, 8, 1, 2, 6, 232, 45, 4, 128, 8,
1, 2, 6, 230, 124, 8, 2, 1, 223, 66, 4, 238, 178, 8, 2, 1, 163, 222, 184,
8, 1, 2, 6, 165, 8, 2, 1, 208, 248, 4, 128, 8, 1, 231, 6, 201, 239, 4,
111, 8, 1, 207, 168, 231, 6, 201, 239, 4, 111, 8, 2, 1, 235, 19, 236,
230, 8, 2, 1, 237, 42, 236, 230, 8, 2, 1, 235, 19, 236, 231, 4, 238, 142,
8, 2, 1, 198, 120, 236, 230, 8, 2, 1, 200, 14, 236, 230, 8, 2, 1, 200,
86, 236, 231, 4, 238, 142, 8, 2, 1, 233, 25, 236, 230, 8, 2, 1, 219, 38,
236, 230, 8, 2, 1, 218, 238, 236, 230, 8, 1, 248, 25, 210, 132, 8, 1,
248, 33, 210, 132, 8, 2, 1, 163, 230, 125, 4, 232, 221, 8, 2, 1, 163,
230, 125, 4, 232, 222, 26, 200, 147, 73, 1, 2, 230, 124, 73, 1, 2, 230,
125, 4, 128, 73, 1, 2, 223, 65, 73, 1, 2, 150, 73, 1, 2, 163, 150, 73, 1,
2, 163, 208, 112, 4, 128, 73, 1, 2, 6, 223, 121, 150, 73, 1, 2, 194, 202,
73, 1, 2, 193, 148, 73, 1, 209, 99, 73, 1, 55, 209, 99, 73, 1, 163, 242,
38, 73, 1, 250, 147, 73, 1, 207, 168, 242, 38, 73, 1, 51, 138, 207, 81,
73, 1, 46, 138, 207, 81, 73, 1, 231, 6, 201, 238, 73, 1, 207, 168, 231,
6, 201, 238, 73, 1, 46, 250, 77, 73, 1, 51, 250, 77, 73, 1, 130, 250, 77,
73, 1, 142, 250, 77, 73, 1, 242, 122, 251, 143, 246, 207, 73, 1, 84, 219,
175, 73, 1, 217, 214, 73, 1, 251, 130, 251, 143, 73, 1, 230, 211, 251,
143, 73, 1, 132, 84, 219, 175, 73, 1, 132, 217, 214, 73, 1, 132, 230,
211, 251, 143, 73, 1, 132, 251, 130, 251, 143, 73, 1, 198, 182, 242, 47,
73, 1, 138, 198, 182, 242, 47, 73, 1, 246, 136, 51, 138, 207, 81, 73, 1,
246, 136, 46, 138, 207, 81, 73, 1, 130, 200, 159, 73, 1, 142, 200, 159,
73, 1, 102, 57, 73, 1, 216, 113, 57, 247, 150, 78, 58, 207, 82, 58, 211,
243, 2, 199, 90, 55, 251, 130, 251, 143, 73, 1, 207, 152, 128, 73, 1,
238, 184, 251, 143, 73, 1, 2, 231, 204, 73, 1, 2, 165, 73, 1, 2, 206,
158, 73, 1, 2, 193, 223, 73, 1, 2, 207, 168, 231, 6, 201, 238, 73, 1,
233, 188, 158, 161, 73, 1, 139, 158, 161, 73, 1, 216, 162, 158, 161, 73,
1, 132, 158, 161, 73, 1, 233, 187, 158, 161, 73, 1, 193, 11, 237, 66,
158, 77, 73, 1, 193, 96, 237, 66, 158, 77, 73, 1, 195, 246, 73, 1, 197,
73, 73, 1, 55, 250, 147, 73, 1, 132, 142, 250, 77, 73, 1, 132, 130, 250,
77, 73, 1, 132, 46, 250, 77, 73, 1, 132, 51, 250, 77, 73, 1, 132, 207,
81, 73, 1, 85, 230, 211, 251, 143, 73, 1, 85, 55, 230, 211, 251, 143, 73,
1, 85, 55, 251, 130, 251, 143, 73, 1, 132, 199, 90, 73, 1, 208, 39, 242,
47, 73, 1, 248, 100, 139, 199, 18, 73, 1, 234, 80, 139, 199, 18, 73, 1,
248, 100, 132, 199, 18, 73, 1, 234, 80, 132, 199, 18, 73, 1, 204, 3, 73,
1, 211, 184, 204, 3, 73, 1, 132, 46, 54, 38, 230, 211, 251, 143, 38, 251,
130, 251, 143, 38, 242, 122, 251, 143, 38, 199, 90, 38, 217, 214, 38,
211, 109, 38, 247, 150, 38, 78, 58, 38, 237, 14, 38, 229, 15, 58, 38,
207, 82, 58, 38, 55, 251, 130, 251, 143, 38, 246, 207, 38, 84, 219, 176,
58, 38, 55, 84, 219, 176, 58, 38, 55, 230, 211, 251, 143, 38, 246, 234,
38, 223, 121, 247, 150, 38, 163, 242, 39, 58, 38, 242, 39, 58, 38, 207,
168, 242, 39, 58, 38, 242, 39, 95, 207, 101, 38, 230, 211, 251, 144, 63,
38, 251, 130, 251, 144, 63, 38, 46, 200, 160, 63, 38, 51, 200, 160, 63,
38, 46, 250, 208, 58, 38, 228, 208, 38, 46, 138, 207, 82, 63, 38, 130,
200, 160, 63, 38, 142, 200, 160, 63, 38, 102, 3, 63, 38, 216, 113, 3, 63,
38, 211, 47, 229, 15, 63, 38, 207, 174, 229, 15, 63, 38, 78, 63, 38, 237,
15, 63, 38, 207, 82, 63, 38, 242, 39, 63, 38, 246, 151, 38, 211, 243, 38,
84, 219, 176, 63, 38, 247, 143, 63, 38, 223, 121, 55, 250, 113, 63, 38,
246, 208, 63, 38, 242, 122, 251, 144, 63, 38, 247, 151, 63, 38, 223, 121,
247, 151, 63, 38, 199, 91, 63, 38, 217, 215, 63, 38, 132, 219, 175, 38,
55, 132, 219, 175, 38, 199, 91, 211, 110, 38, 203, 195, 201, 208, 211,
110, 38, 184, 201, 208, 211, 110, 38, 203, 195, 202, 190, 211, 110, 38,
184, 202, 190, 211, 110, 38, 51, 138, 207, 82, 63, 38, 223, 121, 247,
143, 63, 38, 50, 63, 38, 205, 217, 63, 38, 193, 224, 58, 38, 84, 199, 90,
38, 55, 211, 109, 38, 230, 211, 158, 77, 38, 251, 130, 158, 77, 38, 33,
210, 126, 38, 33, 221, 78, 38, 33, 237, 8, 198, 255, 38, 33, 192, 222,
38, 247, 143, 58, 38, 234, 30, 3, 63, 38, 55, 84, 219, 176, 63, 38, 46,
250, 208, 63, 38, 213, 111, 199, 91, 58, 38, 229, 21, 58, 38, 251, 1,
187, 115, 58, 38, 46, 51, 61, 63, 38, 197, 30, 61, 63, 38, 230, 217, 222,
228, 38, 51, 250, 78, 58, 38, 46, 138, 207, 82, 58, 38, 233, 22, 38, 193,
224, 63, 38, 46, 250, 78, 63, 38, 51, 250, 78, 63, 38, 51, 250, 78, 26,
130, 250, 78, 63, 38, 51, 138, 207, 82, 58, 38, 78, 95, 207, 101, 38,
250, 38, 63, 38, 55, 207, 82, 63, 38, 192, 21, 58, 38, 55, 247, 151, 63,
38, 55, 247, 150, 38, 55, 217, 214, 38, 55, 217, 215, 63, 38, 55, 199,
90, 38, 55, 223, 121, 247, 150, 38, 55, 94, 61, 63, 38, 8, 2, 1, 64, 38,
8, 2, 1, 71, 38, 8, 2, 1, 70, 38, 8, 2, 1, 74, 38, 8, 2, 1, 68, 38, 8, 2,
1, 247, 52, 38, 8, 2, 1, 238, 95, 38, 8, 2, 1, 230, 124, 38, 8, 2, 1,
218, 236, 38, 8, 2, 1, 150, 38, 8, 2, 1, 200, 228, 38, 8, 2, 1, 196, 236,
38, 8, 2, 1, 193, 223, 33, 6, 1, 229, 195, 33, 2, 1, 229, 195, 33, 6, 1,
250, 112, 206, 43, 33, 2, 1, 250, 112, 206, 43, 33, 212, 234, 57, 33,
106, 212, 234, 57, 33, 6, 1, 211, 30, 236, 238, 33, 2, 1, 211, 30, 236,
238, 33, 192, 222, 33, 2, 207, 168, 219, 18, 203, 100, 109, 33, 2, 235,
111, 219, 18, 203, 100, 109, 33, 2, 207, 168, 235, 111, 219, 18, 203,
100, 109, 33, 208, 159, 77, 33, 6, 1, 192, 229, 33, 198, 255, 33, 237, 8,
198, 255, 33, 6, 1, 250, 253, 4, 198, 255, 33, 250, 191, 200, 43, 33, 6,
1, 234, 33, 4, 198, 255, 33, 6, 1, 233, 241, 4, 198, 255, 33, 6, 1, 223,
112, 4, 198, 255, 33, 6, 1, 211, 215, 4, 198, 255, 33, 6, 1, 197, 35, 4,
198, 255, 33, 6, 1, 211, 217, 4, 198, 255, 33, 2, 1, 223, 112, 4, 237, 8,
26, 198, 255, 33, 6, 1, 250, 252, 33, 6, 1, 248, 63, 33, 6, 1, 231, 204,
33, 6, 1, 237, 76, 33, 6, 1, 234, 32, 33, 6, 1, 192, 75, 33, 6, 1, 233,
240, 33, 6, 1, 199, 206, 33, 6, 1, 223, 111, 33, 6, 1, 222, 106, 33, 6,
1, 220, 90, 33, 6, 1, 215, 241, 33, 6, 1, 213, 22, 33, 6, 1, 193, 196,
33, 6, 1, 211, 214, 33, 6, 1, 210, 51, 33, 6, 1, 207, 153, 33, 6, 1, 203,
99, 33, 6, 1, 200, 100, 33, 6, 1, 197, 34, 33, 6, 1, 210, 77, 33, 6, 1,
242, 215, 33, 6, 1, 209, 62, 33, 6, 1, 211, 216, 33, 6, 1, 223, 112, 4,
237, 7, 33, 6, 1, 197, 35, 4, 237, 7, 33, 2, 1, 250, 253, 4, 198, 255,
33, 2, 1, 234, 33, 4, 198, 255, 33, 2, 1, 233, 241, 4, 198, 255, 33, 2,
1, 223, 112, 4, 198, 255, 33, 2, 1, 197, 35, 4, 237, 8, 26, 198, 255, 33,
2, 1, 250, 252, 33, 2, 1, 248, 63, 33, 2, 1, 231, 204, 33, 2, 1, 237, 76,
33, 2, 1, 234, 32, 33, 2, 1, 192, 75, 33, 2, 1, 233, 240, 33, 2, 1, 199,
206, 33, 2, 1, 223, 111, 33, 2, 1, 222, 106, 33, 2, 1, 220, 90, 33, 2, 1,
215, 241, 33, 2, 1, 213, 22, 33, 2, 1, 193, 196, 33, 2, 1, 211, 214, 33,
2, 1, 210, 51, 33, 2, 1, 207, 153, 33, 2, 1, 52, 203, 99, 33, 2, 1, 203,
99, 33, 2, 1, 200, 100, 33, 2, 1, 197, 34, 33, 2, 1, 210, 77, 33, 2, 1,
242, 215, 33, 2, 1, 209, 62, 33, 2, 1, 211, 216, 33, 2, 1, 223, 112, 4,
237, 7, 33, 2, 1, 197, 35, 4, 237, 7, 33, 2, 1, 211, 215, 4, 198, 255,
33, 2, 1, 197, 35, 4, 198, 255, 33, 2, 1, 211, 217, 4, 198, 255, 33, 6,
222, 136, 109, 33, 248, 64, 109, 33, 199, 207, 109, 33, 197, 35, 4, 229,
15, 109, 33, 197, 35, 4, 251, 130, 26, 229, 15, 109, 33, 197, 35, 4, 237,
15, 26, 229, 15, 109, 33, 210, 78, 109, 33, 210, 52, 109, 33, 222, 136,
109, 33, 1, 250, 112, 221, 82, 33, 2, 1, 250, 112, 221, 82, 33, 1, 201,
248, 33, 2, 1, 201, 248, 33, 1, 236, 238, 33, 2, 1, 236, 238, 33, 1, 221,
82, 33, 2, 1, 221, 82, 33, 1, 206, 43, 33, 2, 1, 206, 43, 92, 6, 1, 204,
4, 92, 2, 1, 204, 4, 92, 6, 1, 233, 32, 92, 2, 1, 233, 32, 92, 6, 1, 221,
232, 92, 2, 1, 221, 232, 92, 6, 1, 229, 6, 92, 2, 1, 229, 6, 92, 6, 1,
231, 199, 92, 2, 1, 231, 199, 92, 6, 1, 203, 226, 92, 2, 1, 203, 226, 92,
6, 1, 237, 92, 92, 2, 1, 237, 92, 33, 222, 107, 109, 33, 207, 154, 109,
33, 219, 18, 203, 100, 109, 33, 1, 192, 229, 33, 6, 199, 207, 109, 33,
219, 18, 234, 33, 109, 33, 207, 168, 219, 18, 234, 33, 109, 33, 6, 1,
203, 211, 33, 2, 1, 203, 211, 33, 6, 219, 18, 203, 100, 109, 33, 6, 1,
206, 40, 33, 2, 1, 206, 40, 33, 207, 154, 4, 201, 208, 109, 33, 6, 207,
168, 219, 18, 203, 100, 109, 33, 6, 235, 111, 219, 18, 203, 100, 109, 33,
6, 207, 168, 235, 111, 219, 18, 203, 100, 109, 42, 6, 1, 223, 252, 4,
230, 210, 42, 6, 1, 223, 116, 42, 6, 1, 236, 164, 42, 6, 1, 231, 15, 42,
6, 1, 197, 89, 223, 251, 42, 6, 1, 235, 14, 42, 6, 1, 247, 62, 70, 42, 6,
1, 193, 22, 42, 6, 1, 223, 41, 42, 6, 1, 219, 140, 42, 6, 1, 213, 249,
42, 6, 1, 198, 106, 42, 6, 1, 221, 141, 42, 6, 1, 228, 97, 4, 230, 210,
42, 6, 1, 203, 195, 68, 42, 6, 1, 235, 10, 42, 6, 1, 64, 42, 6, 1, 248,
123, 42, 6, 1, 196, 123, 42, 6, 1, 231, 70, 42, 6, 1, 237, 116, 42, 6, 1,
223, 251, 42, 6, 1, 192, 62, 42, 6, 1, 192, 85, 42, 6, 1, 70, 42, 6, 1,
203, 195, 70, 42, 6, 1, 160, 42, 6, 1, 234, 124, 42, 6, 1, 234, 99, 42,
6, 1, 234, 88, 42, 6, 1, 74, 42, 6, 1, 210, 181, 42, 6, 1, 234, 21, 42,
6, 1, 234, 9, 42, 6, 1, 200, 79, 42, 6, 1, 68, 42, 6, 1, 234, 164, 42, 6,
1, 144, 42, 6, 1, 198, 112, 42, 6, 1, 242, 245, 42, 6, 1, 204, 64, 42, 6,
1, 204, 15, 42, 6, 1, 230, 26, 57, 42, 6, 1, 193, 47, 42, 6, 1, 202, 198,
57, 42, 6, 1, 71, 42, 6, 1, 192, 214, 42, 6, 1, 168, 42, 2, 1, 64, 42, 2,
1, 248, 123, 42, 2, 1, 196, 123, 42, 2, 1, 231, 70, 42, 2, 1, 237, 116,
42, 2, 1, 223, 251, 42, 2, 1, 192, 62, 42, 2, 1, 192, 85, 42, 2, 1, 70,
42, 2, 1, 203, 195, 70, 42, 2, 1, 160, 42, 2, 1, 234, 124, 42, 2, 1, 234,
99, 42, 2, 1, 234, 88, 42, 2, 1, 74, 42, 2, 1, 210, 181, 42, 2, 1, 234,
21, 42, 2, 1, 234, 9, 42, 2, 1, 200, 79, 42, 2, 1, 68, 42, 2, 1, 234,
164, 42, 2, 1, 144, 42, 2, 1, 198, 112, 42, 2, 1, 242, 245, 42, 2, 1,
204, 64, 42, 2, 1, 204, 15, 42, 2, 1, 230, 26, 57, 42, 2, 1, 193, 47, 42,
2, 1, 202, 198, 57, 42, 2, 1, 71, 42, 2, 1, 192, 214, 42, 2, 1, 168, 42,
2, 1, 223, 252, 4, 230, 210, 42, 2, 1, 223, 116, 42, 2, 1, 236, 164, 42,
2, 1, 231, 15, 42, 2, 1, 197, 89, 223, 251, 42, 2, 1, 235, 14, 42, 2, 1,
247, 62, 70, 42, 2, 1, 193, 22, 42, 2, 1, 223, 41, 42, 2, 1, 219, 140,
42, 2, 1, 213, 249, 42, 2, 1, 198, 106, 42, 2, 1, 221, 141, 42, 2, 1,
228, 97, 4, 230, 210, 42, 2, 1, 203, 195, 68, 42, 2, 1, 235, 10, 42, 6,
1, 211, 216, 42, 2, 1, 211, 216, 42, 6, 1, 193, 84, 42, 2, 1, 193, 84,
42, 6, 1, 223, 109, 71, 42, 2, 1, 223, 109, 71, 42, 6, 1, 219, 147, 192,
179, 42, 2, 1, 219, 147, 192, 179, 42, 6, 1, 223, 109, 219, 147, 192,
179, 42, 2, 1, 223, 109, 219, 147, 192, 179, 42, 6, 1, 248, 28, 192, 179,
42, 2, 1, 248, 28, 192, 179, 42, 6, 1, 223, 109, 248, 28, 192, 179, 42,
2, 1, 223, 109, 248, 28, 192, 179, 42, 6, 1, 221, 49, 42, 2, 1, 221, 49,
42, 6, 1, 209, 62, 42, 2, 1, 209, 62, 42, 6, 1, 232, 216, 42, 2, 1, 232,
216, 42, 6, 1, 223, 67, 42, 2, 1, 223, 67, 42, 6, 1, 223, 68, 4, 55, 230,
211, 251, 143, 42, 2, 1, 223, 68, 4, 55, 230, 211, 251, 143, 42, 6, 1,
197, 92, 42, 2, 1, 197, 92, 42, 6, 1, 207, 9, 211, 216, 42, 2, 1, 207, 9,
211, 216, 42, 6, 1, 211, 217, 4, 199, 60, 42, 2, 1, 211, 217, 4, 199, 60,
42, 6, 1, 211, 140, 42, 2, 1, 211, 140, 42, 6, 1, 221, 82, 42, 2, 1, 221,
82, 42, 199, 164, 57, 38, 42, 199, 60, 38, 42, 211, 48, 38, 42, 237, 183,
209, 200, 38, 42, 209, 56, 209, 200, 38, 42, 209, 184, 38, 42, 228, 163,
199, 164, 57, 38, 42, 216, 124, 57, 42, 6, 1, 203, 195, 228, 97, 4, 200,
147, 42, 2, 1, 203, 195, 228, 97, 4, 200, 147, 42, 6, 1, 204, 176, 57,
42, 2, 1, 204, 176, 57, 42, 6, 1, 234, 22, 4, 199, 117, 42, 2, 1, 234,
22, 4, 199, 117, 42, 6, 1, 231, 71, 4, 197, 33, 42, 2, 1, 231, 71, 4,
197, 33, 42, 6, 1, 231, 71, 4, 111, 42, 2, 1, 231, 71, 4, 111, 42, 6, 1,
231, 71, 4, 85, 128, 42, 2, 1, 231, 71, 4, 85, 128, 42, 6, 1, 192, 63, 4,
237, 59, 42, 2, 1, 192, 63, 4, 237, 59, 42, 6, 1, 192, 86, 4, 237, 59,
42, 2, 1, 192, 86, 4, 237, 59, 42, 6, 1, 222, 174, 4, 237, 59, 42, 2, 1,
222, 174, 4, 237, 59, 42, 6, 1, 222, 174, 4, 84, 111, 42, 2, 1, 222, 174,
4, 84, 111, 42, 6, 1, 222, 174, 4, 111, 42, 2, 1, 222, 174, 4, 111, 42,
6, 1, 248, 176, 160, 42, 2, 1, 248, 176, 160, 42, 6, 1, 234, 89, 4, 237,
59, 42, 2, 1, 234, 89, 4, 237, 59, 42, 6, 34, 234, 89, 231, 70, 42, 2,
34, 234, 89, 231, 70, 42, 6, 1, 210, 182, 4, 85, 128, 42, 2, 1, 210, 182,
4, 85, 128, 42, 6, 1, 251, 150, 144, 42, 2, 1, 251, 150, 144, 42, 6, 1,
234, 10, 4, 237, 59, 42, 2, 1, 234, 10, 4, 237, 59, 42, 6, 1, 200, 80, 4,
237, 59, 42, 2, 1, 200, 80, 4, 237, 59, 42, 6, 1, 201, 230, 68, 42, 2, 1,
201, 230, 68, 42, 6, 1, 201, 230, 124, 4, 111, 42, 2, 1, 201, 230, 124,
4, 111, 42, 6, 1, 230, 113, 4, 237, 59, 42, 2, 1, 230, 113, 4, 237, 59,
42, 6, 34, 200, 80, 198, 112, 42, 2, 34, 200, 80, 198, 112, 42, 6, 1,
242, 246, 4, 237, 59, 42, 2, 1, 242, 246, 4, 237, 59, 42, 6, 1, 242, 246,
4, 84, 111, 42, 2, 1, 242, 246, 4, 84, 111, 42, 6, 1, 203, 237, 42, 2, 1,
203, 237, 42, 6, 1, 251, 150, 242, 245, 42, 2, 1, 251, 150, 242, 245, 42,
6, 1, 251, 150, 242, 246, 4, 237, 59, 42, 2, 1, 251, 150, 242, 246, 4,
237, 59, 42, 1, 211, 37, 42, 6, 1, 192, 63, 4, 247, 150, 42, 2, 1, 192,
63, 4, 247, 150, 42, 6, 1, 222, 174, 4, 128, 42, 2, 1, 222, 174, 4, 128,
42, 6, 1, 234, 125, 4, 200, 147, 42, 2, 1, 234, 125, 4, 200, 147, 42, 6,
1, 234, 89, 4, 128, 42, 2, 1, 234, 89, 4, 128, 42, 6, 1, 234, 89, 4, 200,
147, 42, 2, 1, 234, 89, 4, 200, 147, 42, 6, 1, 221, 243, 242, 245, 42, 2,
1, 221, 243, 242, 245, 42, 6, 1, 234, 100, 4, 200, 147, 42, 2, 1, 234,
100, 4, 200, 147, 42, 2, 1, 211, 37, 42, 6, 1, 41, 4, 247, 150, 42, 2, 1,
41, 4, 247, 150, 42, 6, 1, 41, 4, 237, 14, 42, 2, 1, 41, 4, 237, 14, 42,
6, 34, 41, 223, 251, 42, 2, 34, 41, 223, 251, 42, 6, 1, 223, 252, 4, 247,
150, 42, 2, 1, 223, 252, 4, 247, 150, 42, 6, 1, 205, 240, 42, 2, 1, 205,
240, 42, 6, 1, 205, 241, 4, 237, 14, 42, 2, 1, 205, 241, 4, 237, 14, 42,
6, 1, 192, 63, 4, 237, 14, 42, 2, 1, 192, 63, 4, 237, 14, 42, 6, 1, 192,
86, 4, 237, 14, 42, 2, 1, 192, 86, 4, 237, 14, 42, 6, 1, 251, 150, 235,
14, 42, 2, 1, 251, 150, 235, 14, 42, 6, 1, 228, 97, 4, 217, 214, 42, 2,
1, 228, 97, 4, 217, 214, 42, 6, 1, 228, 97, 4, 237, 14, 42, 2, 1, 228,
97, 4, 237, 14, 42, 6, 1, 185, 4, 237, 14, 42, 2, 1, 185, 4, 237, 14, 42,
6, 1, 248, 188, 74, 42, 2, 1, 248, 188, 74, 42, 6, 1, 248, 188, 185, 4,
237, 14, 42, 2, 1, 248, 188, 185, 4, 237, 14, 42, 6, 1, 234, 253, 4, 237,
14, 42, 2, 1, 234, 253, 4, 237, 14, 42, 6, 1, 124, 4, 217, 214, 42, 2, 1,
124, 4, 217, 214, 42, 6, 1, 124, 4, 237, 14, 42, 2, 1, 124, 4, 237, 14,
42, 6, 1, 124, 4, 55, 251, 129, 42, 2, 1, 124, 4, 55, 251, 129, 42, 6, 1,
242, 246, 4, 237, 14, 42, 2, 1, 242, 246, 4, 237, 14, 42, 6, 1, 231, 71,
4, 237, 59, 42, 2, 1, 231, 71, 4, 237, 59, 42, 6, 1, 193, 48, 4, 237, 14,
42, 2, 1, 193, 48, 4, 237, 14, 42, 6, 1, 231, 71, 4, 201, 208, 26, 128,
42, 2, 1, 231, 71, 4, 201, 208, 26, 128, 42, 6, 1, 230, 113, 4, 128, 42,
2, 1, 230, 113, 4, 128, 42, 6, 1, 230, 113, 4, 111, 42, 2, 1, 230, 113,
4, 111, 42, 6, 1, 221, 92, 237, 116, 42, 2, 1, 221, 92, 237, 116, 42, 6,
1, 221, 92, 236, 164, 42, 2, 1, 221, 92, 236, 164, 42, 6, 1, 221, 92,
192, 12, 42, 2, 1, 221, 92, 192, 12, 42, 6, 1, 221, 92, 235, 6, 42, 2, 1,
221, 92, 235, 6, 42, 6, 1, 221, 92, 219, 140, 42, 2, 1, 221, 92, 219,
140, 42, 6, 1, 221, 92, 213, 249, 42, 2, 1, 221, 92, 213, 249, 42, 6, 1,
221, 92, 203, 20, 42, 2, 1, 221, 92, 203, 20, 42, 6, 1, 221, 92, 199, 54,
42, 2, 1, 221, 92, 199, 54, 42, 6, 1, 207, 168, 192, 85, 42, 2, 1, 207,
168, 192, 85, 42, 6, 1, 234, 125, 4, 128, 42, 2, 1, 234, 125, 4, 128, 42,
6, 1, 219, 222, 42, 2, 1, 219, 222, 42, 6, 1, 207, 156, 42, 2, 1, 207,
156, 42, 6, 1, 193, 118, 42, 2, 1, 193, 118, 42, 6, 1, 208, 239, 42, 2,
1, 208, 239, 42, 6, 1, 194, 111, 42, 2, 1, 194, 111, 42, 6, 1, 251, 22,
160, 42, 2, 1, 251, 22, 160, 42, 6, 1, 234, 125, 4, 85, 128, 42, 2, 1,
234, 125, 4, 85, 128, 42, 6, 1, 234, 89, 4, 85, 128, 42, 2, 1, 234, 89,
4, 85, 128, 42, 6, 1, 210, 182, 4, 237, 59, 42, 2, 1, 210, 182, 4, 237,
59, 42, 6, 1, 203, 238, 4, 237, 59, 42, 2, 1, 203, 238, 4, 237, 59, 42,
6, 1, 234, 89, 4, 46, 128, 42, 2, 1, 234, 89, 4, 46, 128, 42, 6, 1, 234,
254, 42, 2, 1, 234, 254, 42, 6, 1, 237, 165, 42, 2, 1, 237, 165, 42, 6,
1, 234, 125, 4, 237, 59, 42, 2, 1, 234, 125, 4, 237, 59, 250, 91, 6, 1,
249, 233, 250, 91, 6, 1, 248, 80, 250, 91, 6, 1, 231, 33, 250, 91, 6, 1,
238, 0, 250, 91, 6, 1, 234, 177, 250, 91, 6, 1, 192, 112, 250, 91, 6, 1,
234, 157, 250, 91, 6, 1, 233, 242, 250, 91, 6, 1, 155, 250, 91, 6, 1,
192, 62, 250, 91, 6, 1, 223, 159, 250, 91, 6, 1, 219, 144, 250, 91, 6, 1,
193, 201, 250, 91, 6, 1, 247, 19, 250, 91, 6, 1, 222, 30, 250, 91, 6, 1,
229, 43, 250, 91, 6, 1, 223, 62, 250, 91, 6, 1, 231, 81, 250, 91, 6, 1,
242, 235, 250, 91, 6, 1, 217, 5, 250, 91, 6, 1, 193, 22, 250, 91, 6, 1,
213, 96, 250, 91, 6, 1, 204, 64, 250, 91, 6, 1, 195, 252, 250, 91, 6, 1,
246, 117, 250, 91, 6, 1, 210, 161, 250, 91, 6, 1, 223, 23, 250, 91, 6, 1,
167, 250, 91, 6, 1, 205, 194, 250, 91, 6, 1, 196, 44, 250, 91, 6, 1, 199,
57, 250, 91, 6, 1, 207, 221, 250, 91, 6, 1, 242, 63, 250, 91, 6, 1, 193,
6, 250, 91, 6, 1, 209, 238, 250, 91, 6, 1, 222, 41, 250, 91, 6, 1, 211,
241, 250, 91, 6, 1, 233, 34, 250, 91, 73, 1, 46, 138, 207, 81, 250, 91,
250, 147, 250, 91, 234, 92, 77, 250, 91, 233, 204, 77, 250, 91, 242, 38,
250, 91, 208, 159, 77, 250, 91, 251, 151, 77, 250, 91, 2, 1, 163, 249,
233, 250, 91, 2, 1, 249, 233, 250, 91, 2, 1, 248, 80, 250, 91, 2, 1, 231,
33, 250, 91, 2, 1, 238, 0, 250, 91, 2, 1, 234, 177, 250, 91, 2, 1, 192,
112, 250, 91, 2, 1, 234, 157, 250, 91, 2, 1, 233, 242, 250, 91, 2, 1,
155, 250, 91, 2, 1, 192, 62, 250, 91, 2, 1, 223, 159, 250, 91, 2, 1, 219,
144, 250, 91, 2, 1, 193, 201, 250, 91, 2, 1, 247, 19, 250, 91, 2, 1, 222,
30, 250, 91, 2, 1, 229, 43, 250, 91, 2, 1, 223, 62, 250, 91, 2, 1, 231,
81, 250, 91, 2, 1, 242, 235, 250, 91, 2, 1, 217, 5, 250, 91, 2, 1, 193,
22, 250, 91, 2, 1, 213, 96, 250, 91, 2, 1, 204, 64, 250, 91, 2, 1, 195,
252, 250, 91, 2, 1, 246, 117, 250, 91, 2, 1, 210, 161, 250, 91, 2, 1,
223, 23, 250, 91, 2, 1, 167, 250, 91, 2, 1, 205, 194, 250, 91, 2, 1, 196,
44, 250, 91, 2, 1, 199, 57, 250, 91, 2, 1, 207, 221, 250, 91, 2, 1, 242,
63, 250, 91, 2, 1, 193, 6, 250, 91, 2, 1, 209, 238, 250, 91, 2, 1, 222,
41, 250, 91, 2, 1, 211, 241, 250, 91, 2, 1, 233, 34, 250, 91, 2, 34, 234,
178, 193, 6, 250, 91, 2, 1, 11, 4, 111, 250, 91, 232, 71, 201, 238, 250,
91, 228, 111, 207, 100, 250, 91, 233, 238, 57, 220, 27, 250, 91, 233,
238, 57, 250, 91, 235, 83, 57, 129, 251, 144, 233, 233, 129, 251, 144,
205, 195, 129, 251, 144, 204, 40, 129, 251, 144, 192, 97, 208, 222, 129,
251, 144, 192, 97, 231, 223, 129, 251, 144, 199, 72, 129, 251, 144, 207,
165, 129, 251, 144, 192, 95, 129, 251, 144, 210, 214, 129, 251, 144, 193,
37, 129, 251, 144, 199, 247, 129, 251, 144, 231, 132, 129, 251, 144, 231,
133, 215, 198, 129, 251, 144, 231, 130, 129, 251, 144, 208, 223, 210,
246, 129, 251, 144, 200, 38, 231, 151, 129, 251, 144, 210, 187, 129, 251,
144, 250, 17, 230, 93, 129, 251, 144, 215, 208, 129, 251, 144, 217, 185,
129, 251, 144, 216, 250, 129, 251, 144, 216, 251, 222, 42, 129, 251, 144,
237, 192, 129, 251, 144, 208, 234, 129, 251, 144, 200, 38, 208, 217, 129,
251, 144, 193, 50, 248, 81, 192, 236, 129, 251, 144, 211, 223, 129, 251,
144, 223, 210, 129, 251, 144, 237, 93, 129, 251, 144, 192, 19, 129, 122,
217, 105, 242, 130, 129, 209, 192, 203, 240, 129, 209, 192, 230, 17, 205,
195, 129, 209, 192, 230, 17, 210, 205, 129, 209, 192, 230, 17, 208, 227,
129, 209, 192, 229, 139, 129, 209, 192, 198, 109, 129, 209, 192, 205,
195, 129, 209, 192, 210, 205, 129, 209, 192, 208, 227, 129, 209, 192,
229, 27, 129, 209, 192, 229, 28, 230, 19, 39, 196, 127, 129, 209, 192,
208, 163, 129, 209, 192, 237, 241, 211, 164, 217, 140, 129, 209, 192,
216, 239, 129, 209, 38, 217, 137, 129, 209, 192, 208, 51, 129, 209, 38,
210, 216, 129, 209, 192, 203, 225, 236, 114, 129, 209, 192, 203, 79, 236,
114, 129, 209, 38, 202, 199, 210, 207, 129, 122, 113, 236, 114, 129, 122,
106, 236, 114, 129, 209, 38, 212, 231, 230, 92, 129, 209, 192, 208, 228,
208, 222, 129, 1, 251, 26, 129, 1, 248, 65, 129, 1, 231, 31, 129, 1, 237,
221, 129, 1, 229, 255, 129, 1, 196, 127, 129, 1, 192, 89, 129, 1, 229,
196, 129, 1, 200, 8, 129, 1, 192, 239, 129, 1, 52, 222, 139, 129, 1, 222,
139, 129, 1, 220, 86, 129, 1, 52, 217, 12, 129, 1, 217, 12, 129, 1, 52,
212, 230, 129, 1, 212, 230, 129, 1, 206, 46, 129, 1, 249, 231, 129, 1,
52, 210, 181, 129, 1, 210, 181, 129, 1, 52, 198, 113, 129, 1, 198, 113,
129, 1, 208, 186, 129, 1, 207, 188, 129, 1, 203, 224, 129, 1, 200, 96,
129, 192, 240, 198, 185, 129, 34, 193, 20, 55, 196, 127, 129, 34, 193,
20, 196, 128, 192, 239, 129, 34, 193, 20, 55, 192, 239, 129, 209, 38,
231, 132, 129, 209, 38, 231, 130, 9, 31, 57, 9, 3, 206, 39, 9, 232, 147,
217, 122, 9, 3, 206, 81, 9, 3, 206, 42, 9, 31, 122, 58, 250, 126, 238,
158, 207, 22, 250, 126, 232, 112, 207, 22, 9, 208, 15, 250, 126, 210,
134, 216, 126, 57, 250, 126, 210, 134, 200, 31, 199, 165, 57, 251, 85,
57, 9, 242, 38, 9, 237, 179, 204, 165, 9, 209, 194, 196, 107, 57, 9, 3,
216, 104, 9, 3, 206, 57, 251, 29, 194, 135, 9, 3, 251, 29, 250, 42, 9, 3,
208, 49, 251, 28, 9, 3, 208, 57, 251, 6, 250, 199, 9, 3, 200, 138, 9, 2,
139, 200, 151, 9, 2, 139, 34, 157, 4, 220, 95, 4, 193, 64, 9, 2, 139,
192, 103, 9, 2, 233, 58, 9, 2, 237, 215, 9, 2, 222, 86, 9, 204, 180, 9,
1, 77, 9, 198, 170, 78, 209, 38, 77, 9, 208, 159, 77, 9, 1, 222, 90, 193,
64, 9, 1, 230, 66, 9, 1, 157, 4, 217, 210, 58, 9, 1, 157, 4, 230, 67, 58,
9, 1, 194, 120, 4, 230, 67, 58, 9, 1, 157, 4, 230, 67, 63, 9, 1, 97, 4,
230, 67, 58, 9, 1, 251, 26, 9, 1, 248, 96, 9, 1, 200, 50, 217, 133, 9, 1,
200, 49, 9, 1, 199, 220, 9, 1, 223, 37, 9, 1, 230, 89, 9, 1, 221, 245, 9,
1, 237, 227, 9, 1, 199, 232, 9, 1, 207, 221, 9, 1, 192, 103, 9, 1, 205,
201, 9, 1, 204, 8, 9, 1, 206, 86, 9, 1, 237, 250, 9, 1, 200, 151, 9, 1,
192, 106, 9, 1, 251, 57, 9, 1, 231, 79, 9, 1, 222, 40, 4, 103, 236, 112,
58, 9, 1, 222, 40, 4, 112, 236, 112, 63, 9, 1, 233, 62, 97, 4, 223, 121,
196, 236, 9, 1, 233, 62, 97, 4, 103, 236, 112, 58, 9, 1, 233, 62, 97, 4,
112, 236, 112, 58, 9, 200, 102, 9, 1, 233, 34, 9, 1, 208, 232, 9, 1, 222,
139, 9, 1, 220, 94, 9, 1, 217, 26, 9, 1, 213, 123, 9, 1, 229, 220, 9, 1,
194, 119, 9, 1, 157, 217, 168, 9, 1, 193, 64, 9, 233, 56, 9, 237, 213, 9,
222, 84, 9, 233, 58, 9, 237, 215, 9, 222, 86, 9, 204, 54, 9, 201, 131, 9,
217, 208, 58, 9, 230, 67, 58, 9, 230, 67, 63, 9, 201, 155, 251, 26, 9,
223, 121, 237, 215, 9, 122, 213, 124, 231, 50, 9, 191, 238, 9, 18, 3, 2,
196, 237, 58, 9, 18, 3, 223, 121, 2, 196, 237, 58, 9, 18, 3, 78, 63, 9,
207, 168, 237, 215, 9, 233, 59, 4, 103, 236, 111, 9, 194, 121, 230, 67,
63, 250, 126, 17, 192, 76, 250, 126, 17, 101, 250, 126, 17, 104, 250,
126, 17, 133, 250, 126, 17, 134, 250, 126, 17, 151, 250, 126, 17, 170,
250, 126, 17, 179, 250, 126, 17, 174, 250, 126, 17, 182, 9, 210, 133, 57,
9, 237, 108, 204, 165, 9, 199, 164, 204, 165, 9, 232, 214, 209, 190, 202,
19, 9, 1, 236, 113, 248, 96, 9, 1, 236, 113, 208, 232, 9, 1, 201, 107,
251, 26, 9, 1, 157, 194, 136, 9, 1, 157, 4, 194, 121, 230, 67, 58, 9, 1,
157, 4, 194, 121, 230, 67, 63, 9, 1, 139, 230, 66, 9, 1, 139, 230, 67,
251, 26, 9, 1, 139, 230, 67, 194, 119, 9, 1, 124, 4, 230, 67, 58, 9, 1,
139, 230, 67, 193, 64, 9, 1, 198, 75, 9, 1, 198, 73, 9, 1, 248, 106, 9,
1, 200, 50, 4, 207, 81, 9, 1, 200, 50, 4, 112, 236, 112, 95, 235, 91, 9,
1, 210, 161, 9, 1, 200, 47, 9, 1, 248, 94, 9, 1, 176, 4, 230, 67, 58, 9,
1, 176, 4, 103, 236, 112, 84, 58, 9, 1, 212, 187, 9, 1, 235, 23, 9, 1,
176, 4, 112, 236, 112, 58, 9, 1, 200, 83, 9, 1, 200, 81, 9, 1, 237, 156,
9, 1, 237, 228, 4, 207, 81, 9, 1, 237, 228, 4, 78, 63, 9, 1, 237, 228, 4,
78, 248, 84, 26, 2, 200, 151, 9, 1, 237, 234, 9, 1, 237, 158, 9, 1, 235,
52, 9, 1, 237, 228, 4, 112, 236, 112, 95, 235, 91, 9, 1, 237, 228, 4,
232, 119, 236, 112, 58, 9, 1, 206, 251, 9, 1, 207, 222, 4, 2, 196, 236,
9, 1, 207, 222, 4, 207, 81, 9, 1, 207, 222, 4, 78, 63, 9, 1, 207, 222, 4,
2, 196, 237, 63, 9, 1, 207, 222, 4, 78, 248, 84, 26, 78, 58, 9, 1, 207,
222, 4, 103, 236, 112, 58, 9, 1, 223, 34, 9, 1, 207, 222, 4, 232, 119,
236, 112, 58, 9, 1, 205, 202, 4, 78, 248, 84, 26, 78, 58, 9, 1, 205, 202,
4, 112, 236, 112, 63, 9, 1, 205, 202, 4, 112, 236, 112, 248, 84, 26, 112,
236, 112, 58, 9, 1, 206, 87, 4, 103, 236, 112, 63, 9, 1, 206, 87, 4, 112,
236, 112, 58, 9, 1, 200, 152, 4, 112, 236, 112, 58, 9, 1, 251, 58, 4,
112, 236, 112, 58, 9, 1, 236, 113, 233, 34, 9, 1, 233, 35, 4, 78, 216, 2,
63, 9, 1, 233, 35, 4, 78, 63, 9, 1, 196, 116, 9, 1, 233, 35, 4, 112, 236,
112, 63, 9, 1, 210, 159, 9, 1, 208, 233, 4, 78, 58, 9, 1, 208, 233, 4,
112, 236, 112, 58, 9, 1, 222, 39, 9, 1, 201, 75, 222, 139, 9, 1, 222,
140, 4, 207, 81, 9, 1, 222, 140, 4, 78, 58, 9, 1, 214, 167, 9, 1, 222,
140, 4, 112, 236, 112, 63, 9, 1, 231, 220, 9, 1, 231, 221, 4, 207, 81, 9,
1, 214, 88, 9, 1, 231, 221, 4, 103, 236, 112, 63, 9, 1, 230, 173, 9, 1,
231, 221, 4, 112, 236, 112, 58, 9, 1, 220, 95, 4, 2, 196, 236, 9, 1, 220,
95, 4, 78, 58, 9, 1, 220, 95, 4, 112, 236, 112, 58, 9, 1, 220, 95, 4,
112, 236, 112, 63, 9, 1, 213, 124, 4, 78, 63, 9, 1, 213, 124, 231, 50, 9,
1, 207, 58, 9, 1, 213, 124, 4, 207, 81, 9, 1, 213, 124, 4, 112, 236, 112,
58, 9, 1, 229, 221, 236, 142, 9, 1, 200, 84, 4, 78, 58, 9, 1, 229, 221,
4, 97, 58, 9, 1, 229, 221, 230, 251, 9, 1, 229, 221, 230, 252, 4, 230,
67, 58, 9, 1, 200, 50, 217, 134, 230, 251, 9, 1, 194, 120, 4, 207, 81, 9,
1, 221, 170, 212, 0, 9, 1, 212, 0, 9, 1, 68, 9, 1, 192, 214, 9, 1, 221,
170, 192, 214, 9, 1, 194, 120, 4, 103, 236, 112, 58, 9, 1, 196, 123, 9,
1, 233, 62, 193, 64, 9, 1, 97, 4, 200, 147, 9, 1, 97, 4, 2, 196, 236, 9,
1, 194, 120, 4, 78, 58, 9, 1, 71, 9, 1, 97, 4, 112, 236, 112, 63, 9, 1,
97, 248, 186, 9, 1, 97, 248, 187, 4, 230, 67, 58, 9, 232, 71, 201, 238,
9, 1, 251, 108, 9, 2, 139, 34, 206, 87, 4, 220, 95, 4, 157, 217, 168, 9,
2, 139, 34, 208, 233, 4, 220, 95, 4, 157, 217, 168, 9, 2, 139, 91, 88,
20, 9, 2, 139, 220, 95, 251, 26, 9, 2, 139, 223, 37, 9, 2, 139, 112, 236,
111, 9, 2, 139, 205, 201, 9, 234, 80, 80, 249, 235, 9, 202, 15, 80, 206,
210, 234, 125, 229, 134, 9, 2, 139, 207, 7, 192, 76, 9, 2, 139, 197, 37,
207, 241, 192, 76, 9, 2, 139, 236, 113, 229, 246, 80, 221, 245, 9, 2,
139, 91, 72, 20, 9, 2, 132, 205, 201, 9, 2, 139, 217, 209, 9, 2, 194,
119, 9, 2, 193, 64, 9, 2, 139, 193, 64, 9, 2, 139, 213, 123, 9, 209, 232,
80, 206, 71, 9, 234, 90, 246, 138, 132, 201, 238, 9, 234, 90, 246, 138,
139, 201, 238, 9, 207, 7, 139, 201, 239, 4, 232, 248, 246, 137, 9, 2,
132, 217, 26, 9, 1, 237, 228, 4, 223, 121, 196, 236, 9, 1, 207, 222, 4,
223, 121, 196, 236, 233, 193, 250, 126, 17, 192, 76, 233, 193, 250, 126,
17, 101, 233, 193, 250, 126, 17, 104, 233, 193, 250, 126, 17, 133, 233,
193, 250, 126, 17, 134, 233, 193, 250, 126, 17, 151, 233, 193, 250, 126,
17, 170, 233, 193, 250, 126, 17, 179, 233, 193, 250, 126, 17, 174, 233,
193, 250, 126, 17, 182, 9, 1, 204, 9, 4, 78, 63, 9, 1, 237, 251, 4, 78,
63, 9, 1, 231, 80, 4, 78, 63, 9, 3, 203, 77, 250, 229, 9, 3, 203, 77,
209, 151, 217, 5, 9, 1, 229, 221, 4, 223, 121, 196, 236, 200, 248, 234,
80, 80, 210, 243, 200, 248, 201, 102, 232, 71, 201, 238, 200, 248, 201,
157, 232, 71, 201, 238, 200, 248, 201, 102, 242, 47, 200, 248, 201, 157,
242, 47, 200, 248, 229, 5, 242, 47, 200, 248, 242, 48, 203, 16, 220, 28,
200, 248, 242, 48, 203, 16, 207, 101, 200, 248, 201, 102, 242, 48, 203,
16, 220, 28, 200, 248, 201, 157, 242, 48, 203, 16, 207, 101, 200, 248,
238, 245, 200, 248, 230, 24, 212, 20, 200, 248, 230, 24, 216, 237, 200,
248, 230, 24, 250, 39, 200, 248, 251, 151, 77, 200, 248, 1, 251, 31, 200,
248, 1, 201, 107, 251, 31, 200, 248, 1, 248, 62, 200, 248, 1, 231, 210,
200, 248, 1, 231, 211, 231, 187, 200, 248, 1, 237, 224, 200, 248, 1, 236,
113, 237, 225, 207, 74, 200, 248, 1, 229, 255, 200, 248, 1, 194, 119,
200, 248, 1, 192, 103, 200, 248, 1, 229, 194, 200, 248, 1, 200, 4, 200,
248, 1, 200, 5, 231, 187, 200, 248, 1, 192, 197, 200, 248, 1, 192, 198,
229, 255, 200, 248, 1, 222, 109, 200, 248, 1, 220, 93, 200, 248, 1, 216,
122, 200, 248, 1, 212, 230, 200, 248, 1, 204, 173, 200, 248, 1, 52, 204,
173, 200, 248, 1, 71, 200, 248, 1, 210, 181, 200, 248, 1, 207, 168, 210,
181, 200, 248, 1, 206, 83, 200, 248, 1, 208, 226, 200, 248, 1, 207, 74,
200, 248, 1, 203, 224, 200, 248, 1, 200, 93, 200, 248, 1, 210, 118, 248,
47, 200, 248, 1, 210, 118, 231, 77, 200, 248, 1, 210, 118, 237, 35, 200,
248, 209, 52, 58, 200, 248, 209, 52, 63, 200, 248, 209, 52, 235, 110,
200, 248, 192, 1, 58, 200, 248, 192, 1, 63, 200, 248, 192, 1, 235, 110,
200, 248, 208, 10, 58, 200, 248, 208, 10, 63, 200, 248, 235, 111, 192, 9,
229, 4, 200, 248, 235, 111, 192, 9, 250, 200, 200, 248, 230, 4, 58, 200,
248, 230, 4, 63, 200, 248, 230, 3, 235, 110, 200, 248, 234, 3, 58, 200,
248, 234, 3, 63, 200, 248, 206, 174, 200, 248, 233, 28, 236, 114, 200,
248, 208, 136, 200, 248, 206, 204, 200, 248, 103, 84, 236, 112, 58, 200,
248, 103, 84, 236, 112, 63, 200, 248, 112, 236, 112, 58, 200, 248, 112,
236, 112, 63, 200, 248, 212, 18, 219, 176, 58, 200, 248, 212, 18, 219,
176, 63, 200, 248, 215, 184, 200, 248, 248, 185, 200, 248, 1, 202, 194,
192, 69, 200, 248, 1, 202, 194, 221, 238, 200, 248, 1, 202, 194, 233, 47,
9, 1, 248, 97, 4, 112, 236, 112, 228, 210, 63, 9, 1, 248, 97, 4, 78, 248,
84, 26, 112, 236, 112, 58, 9, 1, 248, 97, 4, 112, 236, 112, 209, 188,
197, 30, 63, 9, 1, 248, 97, 4, 112, 236, 112, 209, 188, 197, 30, 248, 84,
26, 103, 236, 112, 58, 9, 1, 248, 97, 4, 103, 236, 112, 248, 84, 26, 78,
58, 9, 1, 248, 97, 4, 223, 121, 2, 196, 237, 63, 9, 1, 248, 97, 4, 2,
196, 236, 9, 1, 176, 4, 103, 236, 112, 58, 9, 1, 176, 4, 112, 236, 112,
209, 188, 197, 30, 63, 9, 1, 237, 228, 4, 103, 236, 112, 196, 55, 248,
84, 26, 2, 200, 151, 9, 1, 237, 228, 4, 223, 121, 2, 196, 237, 63, 9, 1,
207, 222, 4, 111, 9, 1, 205, 202, 4, 232, 119, 236, 112, 58, 9, 1, 251,
58, 4, 103, 236, 112, 58, 9, 1, 251, 58, 4, 112, 236, 112, 209, 188, 235,
92, 58, 9, 1, 251, 58, 4, 103, 236, 112, 196, 55, 58, 9, 1, 233, 35, 4,
103, 236, 112, 63, 9, 1, 233, 35, 4, 112, 236, 112, 209, 188, 197, 30,
63, 9, 1, 222, 40, 4, 78, 58, 9, 1, 222, 40, 4, 112, 236, 112, 58, 9, 1,
222, 40, 4, 112, 236, 112, 209, 188, 197, 30, 63, 9, 1, 91, 4, 78, 58, 9,
1, 91, 4, 78, 63, 9, 1, 213, 124, 4, 103, 236, 112, 63, 9, 1, 213, 124,
4, 2, 200, 151, 9, 1, 213, 124, 4, 2, 196, 236, 9, 1, 220, 95, 4, 161, 9,
1, 207, 222, 4, 103, 236, 112, 196, 55, 58, 9, 1, 207, 222, 4, 230, 67,
58, 9, 1, 205, 202, 4, 103, 236, 112, 196, 55, 58, 9, 1, 176, 4, 2, 9, 1,
200, 152, 63, 9, 1, 176, 4, 2, 9, 1, 200, 152, 26, 103, 236, 111, 9, 1,
205, 202, 4, 2, 9, 1, 200, 152, 26, 103, 236, 111, 9, 1, 207, 222, 4, 2,
9, 1, 200, 152, 26, 103, 236, 111, 9, 1, 176, 4, 2, 9, 1, 200, 152, 58,
9, 1, 157, 4, 233, 193, 250, 126, 17, 103, 58, 9, 1, 157, 4, 233, 193,
250, 126, 17, 112, 58, 9, 1, 233, 62, 97, 4, 233, 193, 250, 126, 17, 103,
58, 9, 1, 233, 62, 97, 4, 233, 193, 250, 126, 17, 112, 58, 9, 1, 233, 62,
97, 4, 233, 193, 250, 126, 17, 232, 119, 63, 9, 1, 194, 120, 4, 233, 193,
250, 126, 17, 103, 58, 9, 1, 194, 120, 4, 233, 193, 250, 126, 17, 112,
58, 9, 1, 97, 248, 187, 4, 233, 193, 250, 126, 17, 103, 58, 9, 1, 97,
248, 187, 4, 233, 193, 250, 126, 17, 112, 58, 9, 1, 176, 4, 233, 193,
250, 126, 17, 232, 119, 63, 9, 1, 205, 202, 4, 233, 193, 250, 126, 17,
232, 119, 58, 9, 1, 205, 202, 4, 223, 121, 196, 236, 9, 1, 222, 140, 4,
103, 236, 112, 58, 199, 237, 1, 230, 99, 199, 237, 1, 204, 18, 199, 237,
1, 213, 122, 199, 237, 1, 208, 68, 199, 237, 1, 249, 1, 199, 237, 1, 219,
219, 199, 237, 1, 222, 154, 199, 237, 1, 251, 13, 199, 237, 1, 196, 155,
199, 237, 1, 217, 25, 199, 237, 1, 233, 95, 199, 237, 1, 237, 38, 199,
237, 1, 199, 239, 199, 237, 1, 220, 181, 199, 237, 1, 231, 229, 199, 237,
1, 231, 1, 199, 237, 1, 205, 200, 199, 237, 1, 237, 177, 199, 237, 1,
192, 92, 199, 237, 1, 200, 95, 199, 237, 1, 193, 129, 199, 237, 1, 210,
195, 199, 237, 1, 223, 46, 199, 237, 1, 242, 248, 199, 237, 1, 198, 82,
199, 237, 1, 229, 186, 199, 237, 1, 221, 249, 199, 237, 1, 199, 238, 199,
237, 1, 192, 110, 199, 237, 1, 204, 7, 199, 237, 1, 206, 90, 199, 237, 1,
237, 254, 199, 237, 1, 155, 199, 237, 1, 192, 8, 199, 237, 1, 251, 54,
199, 237, 1, 231, 78, 199, 237, 1, 208, 236, 199, 237, 1, 194, 162, 199,
237, 251, 153, 199, 237, 251, 254, 199, 237, 228, 52, 199, 237, 234, 170,
199, 237, 197, 112, 199, 237, 211, 193, 199, 237, 234, 180, 199, 237,
233, 183, 199, 237, 212, 17, 199, 237, 212, 25, 199, 237, 201, 131, 199,
237, 1, 215, 84, 213, 206, 17, 192, 76, 213, 206, 17, 101, 213, 206, 17,
104, 213, 206, 17, 133, 213, 206, 17, 134, 213, 206, 17, 151, 213, 206,
17, 170, 213, 206, 17, 179, 213, 206, 17, 174, 213, 206, 17, 182, 213,
206, 1, 64, 213, 206, 1, 234, 171, 213, 206, 1, 70, 213, 206, 1, 71, 213,
206, 1, 68, 213, 206, 1, 211, 194, 213, 206, 1, 74, 213, 206, 1, 237,
242, 213, 206, 1, 215, 151, 213, 206, 1, 249, 3, 213, 206, 1, 166, 213,
206, 1, 189, 213, 206, 1, 223, 62, 213, 206, 1, 246, 117, 213, 206, 1,
238, 0, 213, 206, 1, 167, 213, 206, 1, 207, 3, 213, 206, 1, 188, 213,
206, 1, 231, 175, 213, 206, 1, 233, 97, 213, 206, 1, 160, 213, 206, 1,
177, 213, 206, 1, 215, 97, 194, 25, 213, 206, 1, 172, 213, 206, 1, 212,
201, 213, 206, 1, 181, 213, 206, 1, 144, 213, 206, 1, 194, 169, 213, 206,
1, 168, 213, 206, 1, 212, 202, 194, 25, 213, 206, 1, 222, 225, 223, 62,
213, 206, 1, 222, 225, 246, 117, 213, 206, 1, 222, 225, 167, 213, 206,
38, 203, 195, 139, 199, 18, 213, 206, 38, 203, 195, 132, 199, 18, 213,
206, 38, 203, 195, 207, 73, 199, 18, 213, 206, 38, 184, 237, 58, 199, 18,
213, 206, 38, 184, 139, 199, 18, 213, 206, 38, 184, 132, 199, 18, 213,
206, 38, 184, 207, 73, 199, 18, 213, 206, 38, 215, 48, 77, 213, 206, 38,
55, 78, 58, 213, 206, 139, 158, 250, 147, 213, 206, 132, 158, 250, 147,
213, 206, 16, 211, 195, 237, 72, 213, 206, 16, 231, 174, 213, 206, 242,
38, 213, 206, 233, 204, 77, 213, 206, 220, 153, 213, 206, 237, 203, 213,
206, 236, 116, 57, 213, 206, 200, 127, 57, 206, 49, 1, 251, 33, 206, 49,
1, 248, 1, 206, 49, 1, 231, 209, 206, 49, 1, 237, 226, 206, 49, 1, 223,
73, 206, 49, 1, 249, 1, 206, 49, 1, 192, 79, 206, 49, 1, 223, 82, 206,
49, 1, 199, 63, 206, 49, 1, 192, 178, 206, 49, 1, 222, 155, 206, 49, 1,
220, 177, 206, 49, 1, 216, 122, 206, 49, 1, 212, 230, 206, 49, 1, 203,
75, 206, 49, 1, 223, 190, 206, 49, 1, 233, 11, 206, 49, 1, 198, 116, 206,
49, 1, 208, 156, 206, 49, 1, 207, 74, 206, 49, 1, 204, 37, 206, 49, 1,
200, 173, 206, 49, 122, 223, 190, 206, 49, 122, 223, 189, 206, 49, 122,
212, 12, 206, 49, 122, 237, 240, 206, 49, 73, 1, 234, 37, 192, 178, 206,
49, 122, 234, 37, 192, 178, 206, 49, 18, 3, 184, 71, 206, 49, 18, 3, 71,
206, 49, 18, 3, 211, 108, 252, 33, 206, 49, 18, 3, 184, 252, 33, 206, 49,
18, 3, 252, 33, 206, 49, 18, 3, 211, 108, 64, 206, 49, 18, 3, 184, 64,
206, 49, 18, 3, 64, 206, 49, 73, 1, 203, 195, 64, 206, 49, 18, 3, 203,
195, 64, 206, 49, 18, 3, 184, 68, 206, 49, 18, 3, 68, 206, 49, 73, 1, 70,
206, 49, 18, 3, 184, 70, 206, 49, 18, 3, 70, 206, 49, 18, 3, 74, 206, 49,
18, 3, 201, 131, 206, 49, 122, 214, 188, 206, 49, 209, 38, 214, 188, 206,
49, 209, 38, 251, 82, 206, 49, 209, 38, 250, 213, 206, 49, 209, 38, 248,
163, 206, 49, 209, 38, 250, 18, 206, 49, 209, 38, 203, 212, 206, 49, 251,
151, 77, 206, 49, 209, 38, 217, 15, 208, 192, 206, 49, 209, 38, 192, 16,
206, 49, 209, 38, 208, 192, 206, 49, 209, 38, 192, 109, 206, 49, 209, 38,
198, 5, 206, 49, 209, 38, 250, 97, 206, 49, 209, 38, 202, 199, 217, 108,
206, 49, 209, 38, 250, 194, 217, 156, 1, 230, 73, 217, 156, 1, 251, 238,
217, 156, 1, 251, 80, 217, 156, 1, 251, 125, 217, 156, 1, 251, 72, 217,
156, 1, 197, 1, 217, 156, 1, 249, 228, 217, 156, 1, 223, 82, 217, 156, 1,
250, 15, 217, 156, 1, 251, 39, 217, 156, 1, 251, 44, 217, 156, 1, 251,
35, 217, 156, 1, 250, 241, 217, 156, 1, 250, 224, 217, 156, 1, 250, 61,
217, 156, 1, 223, 190, 217, 156, 1, 250, 163, 217, 156, 1, 250, 28, 217,
156, 1, 250, 135, 217, 156, 1, 250, 131, 217, 156, 1, 250, 53, 217, 156,
1, 250, 26, 217, 156, 1, 235, 36, 217, 156, 1, 222, 147, 217, 156, 1,
251, 57, 217, 156, 251, 86, 77, 217, 156, 195, 250, 77, 217, 156, 231,
146, 77, 217, 156, 209, 37, 200, 248, 1, 135, 214, 165, 200, 248, 1, 135,
223, 62, 200, 248, 1, 135, 212, 201, 200, 248, 1, 135, 198, 83, 200, 248,
1, 135, 213, 178, 200, 248, 1, 135, 213, 160, 200, 248, 1, 135, 248, 54,
200, 248, 1, 135, 167, 200, 248, 1, 135, 219, 137, 200, 248, 1, 135, 219,
126, 200, 248, 1, 135, 202, 92, 9, 1, 248, 97, 4, 2, 196, 237, 63, 9, 1,
248, 97, 4, 230, 67, 58, 9, 1, 223, 38, 4, 103, 236, 112, 58, 9, 1, 200,
152, 4, 103, 236, 112, 58, 9, 1, 233, 35, 4, 78, 248, 84, 26, 112, 236,
112, 58, 9, 1, 208, 233, 4, 78, 63, 9, 1, 220, 95, 4, 55, 161, 9, 1, 91,
4, 112, 236, 112, 58, 9, 1, 97, 4, 103, 236, 112, 248, 84, 26, 230, 67,
58, 9, 1, 97, 4, 103, 236, 112, 248, 84, 26, 78, 58, 9, 1, 207, 222, 4,
219, 69, 9, 1, 194, 120, 4, 78, 194, 40, 9, 1, 207, 36, 193, 64, 9, 1,
132, 251, 26, 9, 1, 237, 228, 4, 112, 236, 112, 63, 9, 1, 206, 87, 4,
112, 236, 112, 63, 9, 1, 231, 221, 4, 223, 121, 111, 9, 1, 201, 230, 194,
119, 9, 1, 192, 104, 4, 223, 121, 196, 237, 58, 9, 1, 251, 58, 4, 112,
236, 112, 63, 9, 1, 222, 140, 4, 78, 63, 9, 1, 248, 97, 4, 2, 91, 58, 9,
1, 210, 162, 4, 2, 91, 58, 9, 1, 200, 50, 4, 2, 200, 50, 58, 9, 1, 207,
222, 4, 2, 213, 124, 58, 9, 1, 97, 4, 103, 236, 112, 248, 84, 26, 2, 213,
124, 58, 9, 1, 251, 83, 233, 34, 9, 1, 251, 83, 208, 232, 9, 1, 251, 83,
213, 123, 9, 1, 210, 162, 4, 2, 196, 236, 9, 1, 200, 50, 4, 2, 196, 236,
9, 1, 198, 76, 4, 2, 196, 236, 9, 1, 200, 84, 4, 2, 196, 236, 9, 1, 222,
40, 4, 2, 196, 236, 9, 1, 231, 80, 4, 112, 236, 112, 58, 9, 1, 251, 83,
208, 233, 4, 112, 236, 112, 58, 9, 1, 223, 38, 4, 112, 236, 112, 58, 9,
1, 223, 38, 4, 112, 236, 112, 63, 9, 1, 220, 95, 4, 2, 9, 1, 200, 152,
58, 9, 2, 132, 194, 119, 9, 2, 139, 194, 11, 250, 128, 9, 2, 139, 206,
86, 9, 2, 139, 251, 57, 9, 2, 139, 208, 232, 9, 2, 139, 213, 124, 4, 222,
86, 9, 2, 132, 213, 124, 4, 222, 86, 9, 2, 139, 194, 11, 250, 25, 9, 2,
139, 194, 11, 250, 60, 9, 2, 139, 194, 11, 250, 223, 9, 2, 139, 194, 11,
206, 65, 9, 2, 139, 194, 11, 208, 196, 9, 2, 139, 194, 11, 194, 142, 9,
2, 139, 232, 147, 217, 122, 9, 2, 139, 3, 206, 81, 9, 236, 190, 234, 80,
80, 249, 235, 9, 163, 237, 216, 63, 9, 238, 138, 233, 58, 9, 238, 138,
237, 215, 9, 238, 138, 222, 86, 9, 238, 138, 233, 56, 9, 238, 138, 237,
213, 9, 238, 138, 222, 84, 9, 158, 90, 78, 58, 9, 158, 103, 236, 112, 58,
9, 158, 219, 70, 58, 9, 158, 90, 78, 63, 9, 158, 103, 236, 112, 63, 9,
158, 219, 70, 63, 9, 211, 184, 233, 56, 9, 211, 184, 237, 213, 9, 211,
184, 222, 84, 9, 2, 139, 194, 119, 9, 233, 59, 4, 207, 81, 9, 233, 59, 4,
78, 58, 9, 222, 87, 4, 78, 63, 9, 46, 250, 78, 58, 9, 51, 250, 78, 58, 9,
46, 250, 78, 63, 9, 51, 250, 78, 63, 9, 55, 51, 250, 78, 58, 9, 55, 51,
250, 78, 95, 4, 236, 114, 9, 51, 250, 78, 95, 4, 236, 114, 9, 237, 216,
4, 236, 114, 9, 122, 203, 109, 213, 124, 231, 50, 107, 3, 223, 121, 246,
234, 107, 3, 246, 234, 107, 3, 250, 168, 107, 3, 196, 6, 107, 1, 203,
195, 64, 107, 1, 64, 107, 1, 252, 33, 107, 1, 70, 107, 1, 223, 224, 107,
1, 68, 107, 1, 196, 251, 107, 1, 118, 150, 107, 1, 118, 165, 107, 1, 246,
237, 71, 107, 1, 203, 195, 71, 107, 1, 71, 107, 1, 251, 63, 107, 1, 246,
237, 74, 107, 1, 203, 195, 74, 107, 1, 74, 107, 1, 250, 8, 107, 1, 160,
107, 1, 221, 250, 107, 1, 231, 233, 107, 1, 231, 84, 107, 1, 214, 165,
107, 1, 247, 19, 107, 1, 246, 117, 107, 1, 223, 62, 107, 1, 223, 28, 107,
1, 212, 201, 107, 1, 198, 83, 107, 1, 198, 71, 107, 1, 237, 161, 107, 1,
237, 145, 107, 1, 213, 178, 107, 1, 189, 107, 1, 199, 240, 107, 1, 238,
0, 107, 1, 237, 40, 107, 1, 181, 107, 1, 213, 160, 107, 1, 166, 107, 1,
210, 94, 107, 1, 249, 3, 107, 1, 248, 54, 107, 1, 172, 107, 1, 168, 107,
1, 167, 107, 1, 207, 3, 107, 1, 177, 107, 1, 219, 137, 107, 1, 219, 126,
107, 1, 196, 157, 107, 1, 204, 64, 107, 1, 202, 92, 107, 1, 188, 107, 1,
144, 107, 18, 3, 212, 0, 107, 18, 3, 211, 192, 107, 3, 212, 241, 107, 3,
249, 246, 107, 18, 3, 252, 33, 107, 18, 3, 70, 107, 18, 3, 223, 224, 107,
18, 3, 68, 107, 18, 3, 196, 251, 107, 18, 3, 118, 150, 107, 18, 3, 118,
207, 4, 107, 18, 3, 246, 237, 71, 107, 18, 3, 203, 195, 71, 107, 18, 3,
71, 107, 18, 3, 251, 63, 107, 18, 3, 246, 237, 74, 107, 18, 3, 203, 195,
74, 107, 18, 3, 74, 107, 18, 3, 250, 8, 107, 3, 196, 11, 107, 18, 3, 209,
91, 71, 107, 18, 3, 249, 241, 107, 211, 219, 107, 201, 218, 3, 197, 106,
107, 201, 218, 3, 250, 170, 107, 230, 211, 251, 143, 107, 251, 130, 251,
143, 107, 18, 3, 246, 237, 184, 71, 107, 18, 3, 197, 104, 107, 18, 3,
196, 250, 107, 1, 208, 239, 107, 1, 221, 230, 107, 1, 231, 59, 107, 1,
192, 112, 107, 1, 237, 150, 107, 1, 207, 156, 107, 1, 233, 97, 107, 1,
192, 164, 107, 1, 118, 207, 4, 107, 1, 118, 219, 138, 107, 18, 3, 118,
165, 107, 18, 3, 118, 219, 138, 107, 237, 208, 107, 55, 237, 208, 107,
17, 192, 76, 107, 17, 101, 107, 17, 104, 107, 17, 133, 107, 17, 134, 107,
17, 151, 107, 17, 170, 107, 17, 179, 107, 17, 174, 107, 17, 182, 107,
251, 151, 57, 107, 3, 139, 202, 159, 236, 114, 107, 1, 246, 237, 64, 107,
1, 212, 0, 107, 1, 211, 192, 107, 1, 249, 241, 107, 1, 197, 104, 107, 1,
196, 250, 107, 1, 217, 114, 237, 161, 107, 1, 192, 71, 107, 1, 87, 168,
107, 1, 231, 120, 107, 1, 223, 6, 107, 1, 231, 6, 201, 238, 107, 1, 237,
151, 107, 1, 248, 159, 248, 76, 250, 197, 248, 76, 3, 246, 234, 248, 76,
3, 250, 168, 248, 76, 3, 196, 6, 248, 76, 1, 64, 248, 76, 1, 252, 33,
248, 76, 1, 70, 248, 76, 1, 223, 224, 248, 76, 1, 68, 248, 76, 1, 196,
251, 248, 76, 1, 118, 150, 248, 76, 1, 118, 165, 248, 76, 1, 71, 248, 76,
1, 251, 63, 248, 76, 1, 74, 248, 76, 1, 250, 8, 248, 76, 1, 160, 248, 76,
1, 221, 250, 248, 76, 1, 231, 233, 248, 76, 1, 231, 84, 248, 76, 1, 214,
165, 248, 76, 1, 247, 19, 248, 76, 1, 246, 117, 248, 76, 1, 223, 62, 248,
76, 1, 223, 28, 248, 76, 1, 212, 201, 248, 76, 1, 198, 83, 248, 76, 1,
198, 71, 248, 76, 1, 237, 161, 248, 76, 1, 237, 145, 248, 76, 1, 213,
178, 248, 76, 1, 189, 248, 76, 1, 199, 240, 248, 76, 1, 238, 0, 248, 76,
1, 237, 40, 248, 76, 1, 181, 248, 76, 1, 166, 248, 76, 1, 210, 94, 248,
76, 1, 249, 3, 248, 76, 1, 248, 54, 248, 76, 1, 172, 248, 76, 1, 168,
248, 76, 1, 167, 248, 76, 1, 177, 248, 76, 1, 204, 64, 248, 76, 1, 202,
92, 248, 76, 1, 188, 248, 76, 1, 144, 248, 76, 3, 212, 241, 248, 76, 3,
249, 246, 248, 76, 18, 3, 252, 33, 248, 76, 18, 3, 70, 248, 76, 18, 3,
223, 224, 248, 76, 18, 3, 68, 248, 76, 18, 3, 196, 251, 248, 76, 18, 3,
118, 150, 248, 76, 18, 3, 118, 207, 4, 248, 76, 18, 3, 71, 248, 76, 18,
3, 251, 63, 248, 76, 18, 3, 74, 248, 76, 18, 3, 250, 8, 248, 76, 3, 196,
11, 248, 76, 1, 221, 240, 189, 248, 76, 250, 9, 220, 2, 77, 248, 76, 1,
207, 3, 248, 76, 1, 207, 156, 248, 76, 1, 192, 164, 248, 76, 1, 118, 207,
4, 248, 76, 1, 118, 219, 138, 248, 76, 18, 3, 118, 165, 248, 76, 18, 3,
118, 219, 138, 248, 76, 17, 192, 76, 248, 76, 17, 101, 248, 76, 17, 104,
248, 76, 17, 133, 248, 76, 17, 134, 248, 76, 17, 151, 248, 76, 17, 170,
248, 76, 17, 179, 248, 76, 17, 174, 248, 76, 17, 182, 248, 76, 1, 208,
76, 4, 85, 237, 10, 248, 76, 1, 208, 76, 4, 106, 237, 10, 248, 76, 206,
186, 77, 248, 76, 206, 186, 57, 248, 76, 238, 137, 212, 233, 101, 248,
76, 238, 137, 212, 233, 104, 248, 76, 238, 137, 212, 233, 133, 248, 76,
238, 137, 212, 233, 134, 248, 76, 238, 137, 212, 233, 90, 219, 241, 199,
230, 199, 225, 237, 70, 248, 76, 238, 137, 237, 71, 203, 35, 248, 76,
223, 83, 248, 76, 231, 200, 77, 248, 76, 1, 196, 120, 250, 168, 248, 76,
251, 151, 57, 248, 76, 206, 36, 77, 230, 152, 3, 251, 124, 248, 20, 230,
152, 3, 248, 20, 230, 152, 3, 196, 6, 230, 152, 1, 64, 230, 152, 1, 252,
33, 230, 152, 1, 70, 230, 152, 1, 223, 224, 230, 152, 1, 68, 230, 152, 1,
196, 251, 230, 152, 1, 234, 171, 230, 152, 1, 251, 63, 230, 152, 1, 211,
194, 230, 152, 1, 250, 8, 230, 152, 1, 160, 230, 152, 1, 221, 250, 230,
152, 1, 231, 233, 230, 152, 1, 231, 84, 230, 152, 1, 214, 165, 230, 152,
1, 247, 19, 230, 152, 1, 246, 117, 230, 152, 1, 223, 62, 230, 152, 1,
223, 28, 230, 152, 1, 212, 201, 230, 152, 1, 198, 83, 230, 152, 1, 198,
71, 230, 152, 1, 237, 161, 230, 152, 1, 237, 145, 230, 152, 1, 213, 178,
230, 152, 1, 189, 230, 152, 1, 199, 240, 230, 152, 1, 238, 0, 230, 152,
1, 237, 40, 230, 152, 1, 181, 230, 152, 1, 166, 230, 152, 1, 210, 94,
230, 152, 1, 249, 3, 230, 152, 1, 248, 54, 230, 152, 1, 172, 230, 152, 1,
168, 230, 152, 1, 167, 230, 152, 1, 177, 230, 152, 1, 219, 137, 230, 152,
1, 196, 157, 230, 152, 1, 204, 64, 230, 152, 1, 188, 230, 152, 1, 144,
230, 152, 3, 212, 241, 230, 152, 18, 3, 252, 33, 230, 152, 18, 3, 70,
230, 152, 18, 3, 223, 224, 230, 152, 18, 3, 68, 230, 152, 18, 3, 196,
251, 230, 152, 18, 3, 234, 171, 230, 152, 18, 3, 251, 63, 230, 152, 18,
3, 211, 194, 230, 152, 18, 3, 250, 8, 230, 152, 3, 196, 11, 230, 152, 3,
197, 108, 230, 152, 1, 221, 230, 230, 152, 1, 231, 59, 230, 152, 1, 192,
112, 230, 152, 1, 207, 3, 230, 152, 1, 233, 97, 230, 152, 17, 192, 76,
230, 152, 17, 101, 230, 152, 17, 104, 230, 152, 17, 133, 230, 152, 17,
134, 230, 152, 17, 151, 230, 152, 17, 170, 230, 152, 17, 179, 230, 152,
17, 174, 230, 152, 17, 182, 230, 152, 199, 71, 230, 152, 251, 123, 230,
152, 223, 103, 230, 152, 197, 23, 230, 152, 234, 132, 211, 199, 230, 152,
3, 193, 104, 230, 152, 251, 151, 57, 230, 168, 3, 246, 234, 230, 168, 3,
250, 168, 230, 168, 3, 196, 6, 230, 168, 1, 64, 230, 168, 1, 252, 33,
230, 168, 1, 70, 230, 168, 1, 223, 224, 230, 168, 1, 68, 230, 168, 1,
196, 251, 230, 168, 1, 118, 150, 230, 168, 1, 118, 165, 230, 168, 18,
246, 237, 71, 230, 168, 1, 71, 230, 168, 1, 251, 63, 230, 168, 18, 246,
237, 74, 230, 168, 1, 74, 230, 168, 1, 250, 8, 230, 168, 1, 160, 230,
168, 1, 221, 250, 230, 168, 1, 231, 233, 230, 168, 1, 231, 84, 230, 168,
1, 214, 165, 230, 168, 1, 247, 19, 230, 168, 1, 246, 117, 230, 168, 1,
223, 62, 230, 168, 1, 223, 28, 230, 168, 1, 212, 201, 230, 168, 1, 198,
83, 230, 168, 1, 198, 71, 230, 168, 1, 237, 161, 230, 168, 1, 237, 145,
230, 168, 1, 213, 178, 230, 168, 1, 189, 230, 168, 1, 199, 240, 230, 168,
1, 238, 0, 230, 168, 1, 237, 40, 230, 168, 1, 181, 230, 168, 1, 166, 230,
168, 1, 210, 94, 230, 168, 1, 249, 3, 230, 168, 1, 248, 54, 230, 168, 1,
172, 230, 168, 1, 168, 230, 168, 1, 167, 230, 168, 1, 177, 230, 168, 1,
219, 137, 230, 168, 1, 196, 157, 230, 168, 1, 204, 64, 230, 168, 1, 202,
92, 230, 168, 1, 188, 230, 168, 1, 144, 230, 168, 3, 212, 241, 230, 168,
3, 249, 246, 230, 168, 18, 3, 252, 33, 230, 168, 18, 3, 70, 230, 168, 18,
3, 223, 224, 230, 168, 18, 3, 68, 230, 168, 18, 3, 196, 251, 230, 168,
18, 3, 118, 150, 230, 168, 18, 3, 118, 207, 4, 230, 168, 18, 3, 246, 237,
71, 230, 168, 18, 3, 71, 230, 168, 18, 3, 251, 63, 230, 168, 18, 3, 246,
237, 74, 230, 168, 18, 3, 74, 230, 168, 18, 3, 250, 8, 230, 168, 3, 196,
11, 230, 168, 211, 219, 230, 168, 1, 118, 207, 4, 230, 168, 1, 118, 219,
138, 230, 168, 18, 3, 118, 165, 230, 168, 18, 3, 118, 219, 138, 230, 168,
17, 192, 76, 230, 168, 17, 101, 230, 168, 17, 104, 230, 168, 17, 133,
230, 168, 17, 134, 230, 168, 17, 151, 230, 168, 17, 170, 230, 168, 17,
179, 230, 168, 17, 174, 230, 168, 17, 182, 230, 168, 251, 151, 57, 230,
168, 206, 186, 57, 230, 168, 1, 192, 71, 230, 168, 3, 201, 131, 230, 168,
3, 204, 54, 230, 168, 3, 217, 207, 230, 168, 3, 199, 159, 212, 242, 58,
230, 168, 3, 242, 131, 212, 242, 58, 230, 168, 3, 197, 222, 212, 242, 58,
211, 153, 3, 246, 234, 211, 153, 3, 250, 168, 211, 153, 3, 196, 6, 211,
153, 1, 64, 211, 153, 1, 252, 33, 211, 153, 1, 70, 211, 153, 1, 223, 224,
211, 153, 1, 68, 211, 153, 1, 196, 251, 211, 153, 1, 118, 150, 211, 153,
1, 118, 165, 211, 153, 1, 71, 211, 153, 1, 251, 63, 211, 153, 1, 74, 211,
153, 1, 250, 8, 211, 153, 1, 160, 211, 153, 1, 221, 250, 211, 153, 1,
231, 233, 211, 153, 1, 231, 84, 211, 153, 1, 214, 165, 211, 153, 1, 247,
19, 211, 153, 1, 246, 117, 211, 153, 1, 223, 62, 211, 153, 1, 223, 28,
211, 153, 1, 212, 201, 211, 153, 1, 198, 83, 211, 153, 1, 198, 71, 211,
153, 1, 237, 161, 211, 153, 1, 237, 145, 211, 153, 1, 213, 178, 211, 153,
1, 189, 211, 153, 1, 199, 240, 211, 153, 1, 238, 0, 211, 153, 1, 237, 40,
211, 153, 1, 181, 211, 153, 1, 166, 211, 153, 1, 210, 94, 211, 153, 1,
249, 3, 211, 153, 1, 248, 54, 211, 153, 1, 172, 211, 153, 1, 168, 211,
153, 1, 167, 211, 153, 1, 177, 211, 153, 1, 219, 137, 211, 153, 1, 196,
157, 211, 153, 1, 204, 64, 211, 153, 1, 202, 92, 211, 153, 1, 188, 211,
153, 1, 144, 211, 153, 3, 212, 241, 211, 153, 3, 249, 246, 211, 153, 18,
3, 252, 33, 211, 153, 18, 3, 70, 211, 153, 18, 3, 223, 224, 211, 153, 18,
3, 68, 211, 153, 18, 3, 196, 251, 211, 153, 18, 3, 118, 150, 211, 153,
18, 3, 118, 207, 4, 211, 153, 18, 3, 71, 211, 153, 18, 3, 251, 63, 211,
153, 18, 3, 74, 211, 153, 18, 3, 250, 8, 211, 153, 3, 196, 11, 211, 153,
3, 211, 109, 211, 153, 251, 64, 220, 2, 77, 211, 153, 250, 9, 220, 2, 77,
211, 153, 1, 207, 3, 211, 153, 1, 207, 156, 211, 153, 1, 192, 164, 211,
153, 1, 118, 207, 4, 211, 153, 1, 118, 219, 138, 211, 153, 18, 3, 118,
165, 211, 153, 18, 3, 118, 219, 138, 211, 153, 17, 192, 76, 211, 153, 17,
101, 211, 153, 17, 104, 211, 153, 17, 133, 211, 153, 17, 134, 211, 153,
17, 151, 211, 153, 17, 170, 211, 153, 17, 179, 211, 153, 17, 174, 211,
153, 17, 182, 211, 153, 223, 83, 211, 153, 1, 194, 169, 211, 153, 232,
109, 90, 208, 167, 211, 153, 232, 109, 90, 230, 78, 211, 153, 232, 109,
112, 208, 165, 211, 153, 232, 109, 90, 203, 33, 211, 153, 232, 109, 90,
234, 143, 211, 153, 232, 109, 112, 203, 30, 44, 3, 250, 168, 44, 3, 196,
6, 44, 1, 64, 44, 1, 252, 33, 44, 1, 70, 44, 1, 223, 224, 44, 1, 68, 44,
1, 196, 251, 44, 1, 71, 44, 1, 234, 171, 44, 1, 251, 63, 44, 1, 74, 44,
1, 211, 194, 44, 1, 250, 8, 44, 1, 160, 44, 1, 214, 165, 44, 1, 247, 19,
44, 1, 223, 62, 44, 1, 212, 201, 44, 1, 198, 83, 44, 1, 213, 178, 44, 1,
189, 44, 1, 181, 44, 1, 213, 160, 44, 1, 166, 44, 1, 172, 44, 1, 168, 44,
1, 167, 44, 1, 207, 3, 44, 1, 177, 44, 1, 219, 137, 44, 1, 219, 126, 44,
1, 196, 157, 44, 1, 204, 64, 44, 1, 202, 92, 44, 1, 188, 44, 1, 144, 44,
18, 3, 252, 33, 44, 18, 3, 70, 44, 18, 3, 223, 224, 44, 18, 3, 68, 44,
18, 3, 196, 251, 44, 18, 3, 71, 44, 18, 3, 234, 171, 44, 18, 3, 251, 63,
44, 18, 3, 74, 44, 18, 3, 211, 194, 44, 18, 3, 250, 8, 44, 3, 196, 11,
44, 211, 219, 44, 250, 9, 220, 2, 77, 44, 17, 192, 76, 44, 17, 101, 44,
17, 104, 44, 17, 133, 44, 17, 134, 44, 17, 151, 44, 17, 170, 44, 17, 179,
44, 17, 174, 44, 17, 182, 44, 31, 200, 30, 44, 31, 90, 228, 162, 44, 31,
90, 180, 44, 237, 174, 57, 44, 216, 38, 57, 44, 193, 67, 57, 44, 237,
112, 57, 44, 238, 196, 57, 44, 250, 62, 95, 57, 44, 206, 186, 57, 44, 31,
57, 200, 34, 3, 38, 246, 235, 58, 200, 34, 3, 246, 234, 200, 34, 3, 250,
168, 200, 34, 3, 196, 6, 200, 34, 3, 38, 250, 169, 58, 200, 34, 1, 64,
200, 34, 1, 252, 33, 200, 34, 1, 70, 200, 34, 1, 223, 224, 200, 34, 1,
68, 200, 34, 1, 196, 251, 200, 34, 1, 118, 150, 200, 34, 1, 118, 165,
200, 34, 1, 71, 200, 34, 1, 234, 171, 200, 34, 1, 251, 63, 200, 34, 1,
74, 200, 34, 1, 211, 194, 200, 34, 1, 250, 8, 200, 34, 1, 160, 200, 34,
1, 221, 250, 200, 34, 1, 231, 233, 200, 34, 1, 231, 84, 200, 34, 1, 214,
165, 200, 34, 1, 247, 19, 200, 34, 1, 246, 117, 200, 34, 1, 223, 62, 200,
34, 1, 223, 28, 200, 34, 1, 212, 201, 200, 34, 1, 198, 83, 200, 34, 1,
198, 71, 200, 34, 1, 237, 161, 200, 34, 1, 237, 145, 200, 34, 1, 213,
178, 200, 34, 1, 189, 200, 34, 1, 199, 240, 200, 34, 1, 238, 0, 200, 34,
1, 237, 40, 200, 34, 1, 181, 200, 34, 1, 166, 200, 34, 1, 210, 94, 200,
34, 1, 249, 3, 200, 34, 1, 248, 54, 200, 34, 1, 172, 200, 34, 1, 168,
200, 34, 1, 167, 200, 34, 1, 207, 3, 200, 34, 1, 177, 200, 34, 1, 219,
137, 200, 34, 1, 219, 126, 200, 34, 1, 196, 157, 200, 34, 1, 204, 64,
200, 34, 1, 202, 92, 200, 34, 1, 188, 200, 34, 1, 144, 200, 34, 3, 249,
246, 200, 34, 18, 3, 252, 33, 200, 34, 18, 3, 70, 200, 34, 18, 3, 223,
224, 200, 34, 18, 3, 68, 200, 34, 18, 3, 196, 251, 200, 34, 18, 3, 118,
150, 200, 34, 18, 3, 118, 207, 4, 200, 34, 18, 3, 71, 200, 34, 18, 3,
234, 171, 200, 34, 18, 3, 251, 63, 200, 34, 18, 3, 74, 200, 34, 18, 3,
211, 194, 200, 34, 18, 3, 250, 8, 200, 34, 3, 196, 11, 200, 34, 220, 2,
77, 200, 34, 251, 64, 220, 2, 77, 200, 34, 1, 198, 118, 200, 34, 1, 235,
17, 200, 34, 1, 206, 240, 200, 34, 1, 118, 207, 4, 200, 34, 1, 118, 219,
138, 200, 34, 18, 3, 118, 165, 200, 34, 18, 3, 118, 219, 138, 200, 34,
17, 192, 76, 200, 34, 17, 101, 200, 34, 17, 104, 200, 34, 17, 133, 200,
34, 17, 134, 200, 34, 17, 151, 200, 34, 17, 170, 200, 34, 17, 179, 200,
34, 17, 174, 200, 34, 17, 182, 200, 34, 3, 203, 113, 200, 34, 232, 109,
17, 192, 77, 39, 212, 4, 209, 137, 80, 134, 200, 34, 232, 109, 17, 90,
39, 212, 4, 209, 137, 80, 134, 200, 34, 232, 109, 17, 103, 39, 212, 4,
209, 137, 80, 134, 200, 34, 232, 109, 17, 112, 39, 212, 4, 209, 137, 80,
134, 200, 34, 232, 109, 17, 90, 39, 233, 217, 209, 137, 80, 134, 200, 34,
232, 109, 17, 103, 39, 233, 217, 209, 137, 80, 134, 200, 34, 232, 109,
17, 112, 39, 233, 217, 209, 137, 80, 134, 200, 34, 3, 197, 255, 222, 115,
3, 202, 159, 246, 234, 222, 115, 3, 246, 234, 222, 115, 3, 250, 168, 222,
115, 3, 196, 6, 222, 115, 3, 203, 113, 222, 115, 1, 64, 222, 115, 1, 252,
33, 222, 115, 1, 70, 222, 115, 1, 223, 224, 222, 115, 1, 68, 222, 115, 1,
196, 251, 222, 115, 1, 118, 150, 222, 115, 1, 118, 165, 222, 115, 1, 71,
222, 115, 1, 234, 171, 222, 115, 1, 251, 63, 222, 115, 1, 74, 222, 115,
1, 211, 194, 222, 115, 1, 250, 8, 222, 115, 1, 160, 222, 115, 1, 221,
250, 222, 115, 1, 231, 233, 222, 115, 1, 231, 84, 222, 115, 1, 214, 165,
222, 115, 1, 247, 19, 222, 115, 1, 246, 117, 222, 115, 1, 223, 62, 222,
115, 1, 223, 28, 222, 115, 1, 212, 201, 222, 115, 1, 198, 83, 222, 115,
1, 198, 71, 222, 115, 1, 237, 161, 222, 115, 1, 237, 145, 222, 115, 1,
213, 178, 222, 115, 1, 189, 222, 115, 1, 199, 240, 222, 115, 1, 238, 0,
222, 115, 1, 237, 40, 222, 115, 1, 181, 222, 115, 1, 166, 222, 115, 1,
210, 94, 222, 115, 1, 249, 3, 222, 115, 1, 248, 54, 222, 115, 1, 172,
222, 115, 1, 168, 222, 115, 1, 167, 222, 115, 1, 207, 3, 222, 115, 1,
177, 222, 115, 1, 219, 137, 222, 115, 1, 196, 157, 222, 115, 1, 204, 64,
222, 115, 1, 202, 92, 222, 115, 1, 188, 222, 115, 1, 144, 222, 115, 3,
212, 241, 222, 115, 3, 249, 246, 222, 115, 18, 3, 252, 33, 222, 115, 18,
3, 70, 222, 115, 18, 3, 223, 224, 222, 115, 18, 3, 68, 222, 115, 18, 3,
196, 251, 222, 115, 18, 3, 118, 150, 222, 115, 18, 3, 118, 207, 4, 222,
115, 18, 3, 71, 222, 115, 18, 3, 234, 171, 222, 115, 18, 3, 251, 63, 222,
115, 18, 3, 74, 222, 115, 18, 3, 211, 194, 222, 115, 18, 3, 250, 8, 222,
115, 3, 196, 11, 222, 115, 220, 2, 77, 222, 115, 251, 64, 220, 2, 77,
222, 115, 1, 233, 97, 222, 115, 1, 118, 207, 4, 222, 115, 1, 118, 219,
138, 222, 115, 18, 3, 118, 165, 222, 115, 18, 3, 118, 219, 138, 222, 115,
17, 192, 76, 222, 115, 17, 101, 222, 115, 17, 104, 222, 115, 17, 133,
222, 115, 17, 134, 222, 115, 17, 151, 222, 115, 17, 170, 222, 115, 17,
179, 222, 115, 17, 174, 222, 115, 17, 182, 222, 115, 3, 223, 13, 222,
115, 3, 197, 39, 135, 3, 38, 250, 169, 58, 135, 3, 246, 234, 135, 3, 250,
168, 135, 3, 196, 6, 135, 1, 196, 120, 250, 168, 135, 1, 64, 135, 1, 252,
33, 135, 1, 70, 135, 1, 223, 224, 135, 1, 68, 135, 1, 196, 251, 135, 1,
118, 150, 135, 1, 118, 165, 135, 1, 71, 135, 1, 234, 171, 135, 1, 251,
63, 135, 1, 74, 135, 1, 211, 194, 135, 1, 250, 8, 135, 1, 160, 135, 1,
221, 250, 135, 1, 231, 233, 135, 1, 231, 84, 135, 1, 214, 165, 135, 1,
247, 19, 135, 1, 246, 117, 135, 1, 223, 62, 135, 1, 223, 28, 135, 1, 212,
201, 135, 1, 198, 83, 135, 1, 198, 71, 135, 1, 237, 161, 135, 1, 237,
145, 135, 1, 213, 178, 135, 1, 189, 135, 1, 199, 240, 135, 1, 238, 0,
135, 1, 237, 40, 135, 1, 181, 135, 1, 213, 160, 135, 1, 166, 135, 1, 210,
94, 135, 1, 249, 3, 135, 1, 248, 54, 135, 1, 172, 135, 1, 168, 135, 1,
167, 135, 1, 207, 3, 135, 1, 177, 135, 1, 219, 137, 135, 1, 219, 126,
135, 1, 196, 157, 135, 1, 204, 64, 135, 1, 202, 92, 135, 1, 188, 135, 1,
144, 135, 1, 198, 52, 135, 3, 84, 248, 194, 196, 11, 135, 3, 242, 124,
196, 11, 135, 3, 249, 246, 135, 18, 3, 252, 33, 135, 18, 3, 70, 135, 18,
3, 223, 224, 135, 18, 3, 68, 135, 18, 3, 196, 251, 135, 18, 3, 118, 150,
135, 18, 3, 118, 207, 4, 135, 18, 3, 71, 135, 18, 3, 234, 171, 135, 18,
3, 251, 63, 135, 18, 3, 74, 135, 18, 3, 211, 194, 135, 18, 3, 250, 8,
135, 3, 196, 11, 135, 1, 78, 207, 195, 135, 3, 210, 246, 135, 1, 242,
204, 218, 236, 135, 1, 242, 204, 193, 148, 135, 1, 242, 204, 219, 127,
135, 250, 9, 220, 2, 77, 135, 232, 109, 90, 211, 207, 135, 232, 109, 90,
232, 129, 135, 232, 109, 112, 234, 139, 135, 232, 109, 90, 197, 242, 135,
232, 109, 90, 200, 21, 135, 232, 109, 112, 197, 241, 135, 232, 109, 90,
233, 6, 135, 1, 250, 112, 223, 224, 135, 1, 118, 207, 4, 135, 1, 118,
219, 138, 135, 18, 3, 118, 165, 135, 18, 3, 118, 219, 138, 135, 17, 192,
76, 135, 17, 101, 135, 17, 104, 135, 17, 133, 135, 17, 134, 135, 17, 151,
135, 17, 170, 135, 17, 179, 135, 17, 174, 135, 17, 182, 135, 31, 200, 30,
135, 31, 90, 228, 162, 135, 31, 90, 180, 135, 232, 109, 90, 208, 167,
135, 232, 109, 90, 230, 78, 135, 232, 109, 112, 208, 165, 135, 232, 109,
90, 203, 33, 135, 232, 109, 90, 234, 143, 135, 232, 109, 112, 203, 30,
135, 237, 179, 77, 135, 1, 242, 204, 213, 179, 135, 1, 242, 204, 215,
151, 135, 1, 242, 204, 207, 4, 135, 1, 242, 204, 165, 135, 1, 242, 204,
219, 138, 135, 1, 242, 204, 222, 184, 159, 3, 246, 234, 159, 3, 250, 167,
159, 3, 196, 5, 159, 1, 249, 234, 159, 1, 251, 242, 159, 1, 251, 88, 159,
1, 251, 103, 159, 1, 223, 72, 159, 1, 223, 223, 159, 1, 196, 242, 159, 1,
196, 245, 159, 1, 223, 98, 159, 1, 223, 99, 159, 1, 223, 209, 159, 1,
223, 211, 159, 1, 233, 184, 159, 1, 234, 166, 159, 1, 251, 46, 159, 1,
211, 97, 159, 1, 211, 187, 159, 1, 249, 249, 159, 1, 250, 255, 222, 62,
159, 1, 217, 187, 222, 62, 159, 1, 250, 255, 231, 178, 159, 1, 217, 187,
231, 178, 159, 1, 222, 114, 215, 81, 159, 1, 206, 30, 231, 178, 159, 1,
250, 255, 246, 184, 159, 1, 217, 187, 246, 184, 159, 1, 250, 255, 223,
44, 159, 1, 217, 187, 223, 44, 159, 1, 200, 171, 215, 81, 159, 1, 200,
171, 206, 29, 215, 82, 159, 1, 206, 30, 223, 44, 159, 1, 250, 255, 198,
79, 159, 1, 217, 187, 198, 79, 159, 1, 250, 255, 237, 152, 159, 1, 217,
187, 237, 152, 159, 1, 215, 180, 215, 34, 159, 1, 206, 30, 237, 152, 159,
1, 250, 255, 200, 87, 159, 1, 217, 187, 200, 87, 159, 1, 250, 255, 237,
172, 159, 1, 217, 187, 237, 172, 159, 1, 237, 204, 215, 34, 159, 1, 206,
30, 237, 172, 159, 1, 250, 255, 210, 189, 159, 1, 217, 187, 210, 189,
159, 1, 250, 255, 248, 161, 159, 1, 217, 187, 248, 161, 159, 1, 217, 90,
159, 1, 250, 235, 248, 161, 159, 1, 193, 74, 159, 1, 208, 14, 159, 1,
237, 204, 220, 51, 159, 1, 196, 125, 159, 1, 200, 171, 206, 0, 159, 1,
215, 180, 206, 0, 159, 1, 237, 204, 206, 0, 159, 1, 230, 5, 159, 1, 215,
180, 220, 51, 159, 1, 233, 49, 159, 3, 251, 34, 159, 18, 3, 251, 98, 159,
18, 3, 222, 19, 251, 105, 159, 18, 3, 236, 239, 251, 105, 159, 18, 3,
222, 19, 223, 95, 159, 18, 3, 236, 239, 223, 95, 159, 18, 3, 222, 19,
211, 76, 159, 18, 3, 236, 239, 211, 76, 159, 18, 3, 231, 222, 159, 18, 3,
221, 93, 159, 18, 3, 236, 239, 221, 93, 159, 18, 3, 221, 95, 237, 90,
159, 18, 3, 221, 94, 230, 100, 251, 98, 159, 18, 3, 221, 94, 230, 100,
236, 239, 251, 98, 159, 18, 3, 221, 94, 230, 100, 231, 177, 159, 18, 3,
231, 177, 159, 219, 150, 17, 192, 76, 159, 219, 150, 17, 101, 159, 219,
150, 17, 104, 159, 219, 150, 17, 133, 159, 219, 150, 17, 134, 159, 219,
150, 17, 151, 159, 219, 150, 17, 170, 159, 219, 150, 17, 179, 159, 219,
150, 17, 174, 159, 219, 150, 17, 182, 159, 18, 3, 236, 239, 231, 222,
159, 18, 3, 236, 239, 231, 177, 159, 209, 38, 221, 11, 199, 235, 246,
100, 221, 114, 222, 135, 199, 235, 246, 100, 221, 221, 221, 244, 199,
235, 246, 100, 221, 221, 221, 212, 199, 235, 246, 100, 221, 221, 221,
207, 199, 235, 246, 100, 221, 221, 221, 217, 199, 235, 246, 100, 221,
221, 208, 35, 199, 235, 246, 100, 214, 91, 214, 78, 199, 235, 246, 100,
242, 189, 246, 106, 199, 235, 246, 100, 242, 189, 242, 199, 199, 235,
246, 100, 242, 189, 246, 105, 199, 235, 246, 100, 202, 213, 202, 212,
199, 235, 246, 100, 242, 189, 242, 185, 199, 235, 246, 100, 193, 2, 193,
9, 199, 235, 246, 100, 236, 147, 246, 114, 199, 235, 246, 100, 115, 210,
204, 199, 235, 246, 100, 199, 177, 199, 229, 199, 235, 246, 100, 199,
177, 215, 57, 199, 235, 246, 100, 199, 177, 210, 54, 199, 235, 246, 100,
213, 143, 214, 196, 199, 235, 246, 100, 236, 147, 237, 91, 199, 235, 246,
100, 115, 200, 117, 199, 235, 246, 100, 199, 177, 199, 142, 199, 235,
246, 100, 199, 177, 199, 236, 199, 235, 246, 100, 199, 177, 199, 171,
199, 235, 246, 100, 213, 143, 213, 22, 199, 235, 246, 100, 247, 221, 248,
224, 199, 235, 246, 100, 209, 199, 209, 234, 199, 235, 246, 100, 210, 66,
210, 56, 199, 235, 246, 100, 232, 165, 233, 97, 199, 235, 246, 100, 210,
66, 210, 87, 199, 235, 246, 100, 232, 165, 233, 68, 199, 235, 246, 100,
210, 66, 206, 44, 199, 235, 246, 100, 216, 92, 172, 199, 235, 246, 100,
193, 2, 193, 105, 199, 235, 246, 100, 207, 56, 206, 211, 199, 235, 246,
100, 206, 218, 199, 235, 246, 100, 219, 108, 219, 168, 199, 235, 246,
100, 219, 36, 199, 235, 246, 100, 194, 37, 194, 159, 199, 235, 246, 100,
202, 213, 206, 61, 199, 235, 246, 100, 202, 213, 206, 182, 199, 235, 246,
100, 202, 213, 201, 175, 199, 235, 246, 100, 229, 44, 229, 142, 199, 235,
246, 100, 219, 108, 242, 167, 199, 235, 246, 100, 185, 250, 214, 199,
235, 246, 100, 229, 44, 213, 133, 199, 235, 246, 100, 211, 51, 199, 235,
246, 100, 206, 24, 64, 199, 235, 246, 100, 217, 181, 230, 64, 199, 235,
246, 100, 206, 24, 252, 33, 199, 235, 246, 100, 206, 24, 250, 241, 199,
235, 246, 100, 206, 24, 70, 199, 235, 246, 100, 206, 24, 223, 224, 199,
235, 246, 100, 206, 24, 197, 104, 199, 235, 246, 100, 206, 24, 197, 102,
199, 235, 246, 100, 206, 24, 68, 199, 235, 246, 100, 206, 24, 196, 251,
199, 235, 246, 100, 210, 68, 199, 235, 238, 137, 16, 248, 225, 199, 235,
246, 100, 206, 24, 71, 199, 235, 246, 100, 206, 24, 251, 108, 199, 235,
246, 100, 206, 24, 74, 199, 235, 246, 100, 206, 24, 251, 64, 217, 175,
199, 235, 246, 100, 206, 24, 251, 64, 217, 176, 199, 235, 246, 100, 220,
98, 199, 235, 246, 100, 217, 172, 199, 235, 246, 100, 217, 173, 199, 235,
246, 100, 217, 181, 234, 131, 199, 235, 246, 100, 217, 181, 199, 176,
199, 235, 246, 100, 217, 181, 198, 188, 199, 235, 246, 100, 217, 181,
242, 250, 199, 235, 246, 100, 199, 227, 199, 235, 246, 100, 214, 24, 199,
235, 246, 100, 193, 99, 199, 235, 246, 100, 232, 154, 199, 235, 17, 192,
76, 199, 235, 17, 101, 199, 235, 17, 104, 199, 235, 17, 133, 199, 235,
17, 134, 199, 235, 17, 151, 199, 235, 17, 170, 199, 235, 17, 179, 199,
235, 17, 174, 199, 235, 17, 182, 199, 235, 246, 100, 250, 209, 199, 235,
246, 100, 221, 218, 220, 77, 1, 221, 113, 220, 77, 1, 221, 221, 201, 120,
220, 77, 1, 221, 221, 200, 129, 220, 77, 1, 211, 44, 231, 84, 220, 77, 1,
214, 90, 220, 77, 1, 242, 63, 220, 77, 1, 211, 44, 246, 117, 220, 77, 1,
202, 213, 200, 129, 220, 77, 1, 211, 44, 223, 28, 220, 77, 1, 212, 165,
220, 77, 1, 211, 44, 212, 201, 220, 77, 1, 211, 44, 198, 83, 220, 77, 1,
211, 44, 198, 71, 220, 77, 1, 211, 44, 237, 161, 220, 77, 1, 211, 44,
237, 145, 220, 77, 1, 211, 44, 213, 178, 220, 77, 1, 236, 146, 220, 77,
1, 155, 220, 77, 1, 199, 177, 201, 120, 220, 77, 1, 199, 177, 200, 129,
220, 77, 1, 211, 44, 237, 40, 220, 77, 1, 213, 142, 220, 77, 1, 247, 220,
220, 77, 1, 209, 198, 220, 77, 1, 210, 66, 201, 120, 220, 77, 1, 232,
165, 200, 129, 220, 77, 1, 210, 66, 200, 129, 220, 77, 1, 232, 165, 201,
120, 220, 77, 1, 211, 44, 248, 54, 220, 77, 1, 216, 91, 220, 77, 1, 193,
1, 220, 77, 1, 219, 108, 219, 168, 220, 77, 1, 219, 108, 219, 67, 220,
77, 1, 194, 36, 220, 77, 1, 206, 32, 204, 64, 220, 77, 1, 206, 32, 202,
92, 220, 77, 1, 202, 213, 201, 120, 220, 77, 1, 229, 44, 201, 120, 220,
77, 1, 211, 44, 219, 137, 220, 77, 1, 74, 220, 77, 1, 229, 44, 200, 129,
220, 77, 234, 105, 220, 77, 18, 3, 64, 220, 77, 18, 3, 217, 181, 222,
121, 220, 77, 18, 3, 252, 33, 220, 77, 18, 3, 250, 241, 220, 77, 18, 3,
70, 220, 77, 18, 3, 223, 224, 220, 77, 18, 3, 193, 148, 220, 77, 18, 3,
192, 165, 220, 77, 18, 3, 68, 220, 77, 18, 3, 196, 251, 220, 77, 3, 211,
44, 196, 11, 220, 77, 18, 3, 217, 181, 221, 91, 220, 77, 204, 175, 3,
219, 107, 220, 77, 204, 175, 3, 212, 165, 220, 77, 18, 3, 71, 220, 77,
18, 3, 234, 150, 220, 77, 18, 3, 74, 220, 77, 18, 3, 249, 236, 220, 77,
18, 3, 251, 63, 220, 77, 221, 114, 177, 220, 77, 158, 217, 181, 234, 131,
220, 77, 158, 217, 181, 199, 176, 220, 77, 158, 217, 181, 199, 128, 220,
77, 158, 217, 181, 246, 192, 220, 77, 246, 240, 77, 220, 77, 214, 33,
220, 77, 17, 192, 76, 220, 77, 17, 101, 220, 77, 17, 104, 220, 77, 17,
133, 220, 77, 17, 134, 220, 77, 17, 151, 220, 77, 17, 170, 220, 77, 17,
179, 220, 77, 17, 174, 220, 77, 17, 182, 220, 77, 229, 44, 213, 142, 220,
77, 229, 44, 216, 91, 220, 77, 1, 221, 222, 230, 254, 220, 77, 1, 221,
222, 212, 165, 86, 5, 211, 219, 86, 122, 230, 188, 193, 14, 216, 193,
198, 124, 64, 86, 122, 230, 188, 193, 14, 216, 193, 255, 34, 207, 60,
248, 125, 172, 86, 122, 230, 188, 193, 14, 216, 193, 255, 34, 230, 188,
198, 104, 172, 86, 122, 88, 193, 14, 216, 193, 217, 50, 172, 86, 122,
242, 80, 193, 14, 216, 193, 204, 71, 172, 86, 122, 246, 212, 193, 14,
216, 193, 210, 55, 204, 57, 172, 86, 122, 193, 14, 216, 193, 198, 104,
204, 57, 172, 86, 122, 205, 254, 204, 56, 86, 122, 247, 127, 193, 14,
216, 192, 86, 122, 247, 250, 203, 205, 193, 14, 216, 192, 86, 122, 223,
126, 198, 103, 86, 122, 237, 83, 198, 104, 247, 126, 86, 122, 204, 56,
86, 122, 212, 170, 204, 56, 86, 122, 198, 104, 204, 56, 86, 122, 212,
170, 198, 104, 204, 56, 86, 122, 207, 84, 242, 231, 202, 109, 204, 56,
86, 122, 207, 160, 230, 222, 204, 56, 86, 122, 246, 212, 255, 38, 206,
223, 217, 49, 184, 246, 243, 86, 122, 230, 188, 198, 103, 86, 219, 91, 3,
246, 115, 206, 222, 86, 219, 91, 3, 219, 220, 206, 222, 86, 250, 32, 3,
204, 67, 231, 161, 255, 39, 206, 222, 86, 250, 32, 3, 255, 36, 166, 86,
250, 32, 3, 205, 224, 198, 98, 86, 3, 208, 9, 236, 161, 231, 160, 86, 3,
208, 9, 236, 161, 231, 0, 86, 3, 208, 9, 236, 161, 230, 189, 86, 3, 208,
9, 215, 77, 231, 160, 86, 3, 208, 9, 215, 77, 231, 0, 86, 3, 208, 9, 236,
161, 208, 9, 215, 76, 86, 17, 192, 76, 86, 17, 101, 86, 17, 104, 86, 17,
133, 86, 17, 134, 86, 17, 151, 86, 17, 170, 86, 17, 179, 86, 17, 174, 86,
17, 182, 86, 17, 138, 101, 86, 17, 138, 104, 86, 17, 138, 133, 86, 17,
138, 134, 86, 17, 138, 151, 86, 17, 138, 170, 86, 17, 138, 179, 86, 17,
138, 174, 86, 17, 138, 182, 86, 17, 138, 192, 76, 86, 122, 247, 129, 206,
222, 86, 122, 214, 156, 247, 54, 212, 182, 192, 10, 86, 122, 246, 212,
255, 38, 206, 223, 247, 55, 216, 138, 246, 243, 86, 122, 214, 156, 247,
54, 204, 68, 206, 222, 86, 122, 242, 246, 216, 192, 86, 122, 198, 119,
255, 35, 86, 122, 230, 171, 206, 223, 230, 127, 86, 122, 230, 171, 206,
223, 230, 133, 86, 122, 250, 215, 221, 239, 230, 127, 86, 122, 250, 215,
221, 239, 230, 133, 86, 3, 193, 91, 198, 102, 86, 3, 217, 136, 198, 102,
86, 1, 160, 86, 1, 221, 250, 86, 1, 231, 233, 86, 1, 231, 84, 86, 1, 214,
165, 86, 1, 247, 19, 86, 1, 246, 117, 86, 1, 223, 62, 86, 1, 212, 201,
86, 1, 198, 83, 86, 1, 198, 71, 86, 1, 237, 161, 86, 1, 237, 145, 86, 1,
213, 178, 86, 1, 189, 86, 1, 199, 240, 86, 1, 238, 0, 86, 1, 237, 40, 86,
1, 181, 86, 1, 166, 86, 1, 210, 94, 86, 1, 249, 3, 86, 1, 248, 54, 86, 1,
172, 86, 1, 198, 118, 86, 1, 198, 108, 86, 1, 235, 17, 86, 1, 235, 11,
86, 1, 194, 169, 86, 1, 192, 71, 86, 1, 192, 112, 86, 1, 255, 41, 86, 1,
168, 86, 1, 167, 86, 1, 177, 86, 1, 204, 64, 86, 1, 202, 92, 86, 1, 188,
86, 1, 144, 86, 1, 64, 86, 1, 221, 47, 86, 1, 232, 210, 167, 86, 1, 221,
139, 86, 1, 207, 3, 86, 18, 3, 252, 33, 86, 18, 3, 70, 86, 18, 3, 223,
224, 86, 18, 3, 68, 86, 18, 3, 196, 251, 86, 18, 3, 118, 150, 86, 18, 3,
118, 207, 4, 86, 18, 3, 118, 165, 86, 18, 3, 118, 219, 138, 86, 18, 3,
71, 86, 18, 3, 234, 171, 86, 18, 3, 74, 86, 18, 3, 211, 194, 86, 3, 207,
66, 201, 185, 214, 166, 207, 55, 86, 3, 207, 60, 248, 124, 86, 18, 3,
207, 168, 70, 86, 18, 3, 207, 168, 223, 224, 86, 3, 212, 182, 192, 11,
215, 85, 238, 0, 86, 3, 202, 227, 220, 44, 86, 122, 230, 80, 86, 122,
211, 36, 86, 3, 220, 47, 206, 222, 86, 3, 193, 96, 206, 222, 86, 3, 220,
48, 198, 119, 246, 243, 86, 3, 217, 52, 246, 243, 86, 3, 230, 192, 246,
244, 207, 158, 86, 3, 230, 192, 217, 38, 207, 158, 86, 3, 223, 121, 217,
52, 246, 243, 86, 201, 164, 3, 220, 48, 198, 119, 246, 243, 86, 201, 164,
3, 217, 52, 246, 243, 86, 201, 164, 3, 223, 121, 217, 52, 246, 243, 86,
201, 164, 1, 160, 86, 201, 164, 1, 221, 250, 86, 201, 164, 1, 231, 233,
86, 201, 164, 1, 231, 84, 86, 201, 164, 1, 214, 165, 86, 201, 164, 1,
247, 19, 86, 201, 164, 1, 246, 117, 86, 201, 164, 1, 223, 62, 86, 201,
164, 1, 212, 201, 86, 201, 164, 1, 198, 83, 86, 201, 164, 1, 198, 71, 86,
201, 164, 1, 237, 161, 86, 201, 164, 1, 237, 145, 86, 201, 164, 1, 213,
178, 86, 201, 164, 1, 189, 86, 201, 164, 1, 199, 240, 86, 201, 164, 1,
238, 0, 86, 201, 164, 1, 237, 40, 86, 201, 164, 1, 181, 86, 201, 164, 1,
166, 86, 201, 164, 1, 210, 94, 86, 201, 164, 1, 249, 3, 86, 201, 164, 1,
248, 54, 86, 201, 164, 1, 172, 86, 201, 164, 1, 198, 118, 86, 201, 164,
1, 198, 108, 86, 201, 164, 1, 235, 17, 86, 201, 164, 1, 235, 11, 86, 201,
164, 1, 194, 169, 86, 201, 164, 1, 192, 71, 86, 201, 164, 1, 192, 112,
86, 201, 164, 1, 255, 41, 86, 201, 164, 1, 168, 86, 201, 164, 1, 167, 86,
201, 164, 1, 177, 86, 201, 164, 1, 204, 64, 86, 201, 164, 1, 202, 92, 86,
201, 164, 1, 188, 86, 201, 164, 1, 144, 86, 201, 164, 1, 64, 86, 201,
164, 1, 221, 47, 86, 201, 164, 1, 232, 210, 194, 169, 86, 201, 164, 1,
232, 210, 168, 86, 201, 164, 1, 232, 210, 167, 86, 221, 34, 206, 219,
221, 250, 86, 221, 34, 206, 219, 221, 251, 247, 55, 216, 138, 246, 243,
86, 246, 227, 3, 87, 248, 114, 86, 246, 227, 3, 152, 248, 114, 86, 246,
227, 3, 246, 231, 200, 69, 86, 246, 227, 3, 205, 253, 255, 40, 86, 16,
235, 78, 247, 124, 86, 16, 208, 8, 207, 67, 86, 16, 211, 63, 231, 159,
86, 16, 208, 8, 207, 68, 207, 160, 230, 221, 86, 16, 210, 55, 166, 86,
16, 213, 120, 247, 124, 86, 16, 213, 120, 247, 125, 212, 170, 255, 37,
86, 16, 213, 120, 247, 125, 230, 190, 255, 37, 86, 16, 213, 120, 247,
125, 247, 55, 255, 37, 86, 3, 208, 9, 215, 77, 208, 9, 236, 160, 86, 3,
208, 9, 215, 77, 230, 189, 86, 122, 247, 128, 203, 205, 231, 47, 216,
193, 207, 159, 86, 122, 216, 93, 193, 14, 231, 47, 216, 193, 207, 159,
86, 122, 212, 170, 198, 103, 86, 122, 88, 247, 157, 207, 57, 193, 14,
216, 193, 217, 50, 172, 86, 122, 242, 80, 247, 157, 207, 57, 193, 14,
216, 193, 204, 71, 172, 207, 100, 201, 81, 57, 220, 27, 201, 81, 57, 207,
100, 201, 81, 3, 4, 236, 111, 220, 27, 201, 81, 3, 4, 236, 111, 86, 122,
220, 39, 217, 53, 206, 222, 86, 122, 198, 215, 217, 53, 206, 222, 79, 1,
160, 79, 1, 221, 250, 79, 1, 231, 233, 79, 1, 231, 84, 79, 1, 214, 165,
79, 1, 247, 19, 79, 1, 246, 117, 79, 1, 223, 62, 79, 1, 223, 28, 79, 1,
212, 201, 79, 1, 213, 144, 79, 1, 198, 83, 79, 1, 198, 71, 79, 1, 237,
161, 79, 1, 237, 145, 79, 1, 213, 178, 79, 1, 189, 79, 1, 199, 240, 79,
1, 238, 0, 79, 1, 237, 40, 79, 1, 181, 79, 1, 166, 79, 1, 210, 94, 79, 1,
249, 3, 79, 1, 248, 54, 79, 1, 172, 79, 1, 168, 79, 1, 167, 79, 1, 177,
79, 1, 194, 169, 79, 1, 188, 79, 1, 144, 79, 1, 219, 137, 79, 1, 64, 79,
1, 204, 38, 64, 79, 1, 70, 79, 1, 223, 224, 79, 1, 68, 79, 1, 196, 251,
79, 1, 71, 79, 1, 216, 56, 71, 79, 1, 74, 79, 1, 250, 8, 79, 18, 3, 200,
132, 252, 33, 79, 18, 3, 252, 33, 79, 18, 3, 70, 79, 18, 3, 223, 224, 79,
18, 3, 68, 79, 18, 3, 196, 251, 79, 18, 3, 71, 79, 18, 3, 251, 63, 79,
18, 3, 216, 56, 223, 224, 79, 18, 3, 216, 56, 74, 79, 18, 3, 234, 253,
58, 79, 3, 250, 168, 79, 3, 78, 63, 79, 3, 196, 6, 79, 3, 196, 11, 79, 3,
250, 58, 79, 116, 3, 217, 35, 168, 79, 116, 3, 217, 35, 167, 79, 116, 3,
217, 35, 194, 169, 79, 116, 3, 217, 35, 144, 79, 1, 230, 206, 188, 79,
17, 192, 76, 79, 17, 101, 79, 17, 104, 79, 17, 133, 79, 17, 134, 79, 17,
151, 79, 17, 170, 79, 17, 179, 79, 17, 174, 79, 17, 182, 79, 3, 219, 147,
205, 208, 79, 3, 205, 208, 79, 16, 219, 100, 79, 16, 242, 31, 79, 16,
251, 84, 79, 16, 231, 139, 79, 1, 204, 64, 79, 1, 202, 92, 79, 1, 118,
150, 79, 1, 118, 207, 4, 79, 1, 118, 165, 79, 1, 118, 219, 138, 79, 18,
3, 118, 150, 79, 18, 3, 118, 207, 4, 79, 18, 3, 118, 165, 79, 18, 3, 118,
219, 138, 79, 1, 216, 56, 214, 165, 79, 1, 216, 56, 223, 28, 79, 1, 216,
56, 248, 159, 79, 1, 216, 56, 248, 154, 79, 116, 3, 216, 56, 217, 35,
181, 79, 116, 3, 216, 56, 217, 35, 172, 79, 116, 3, 216, 56, 217, 35,
177, 79, 1, 204, 70, 222, 96, 204, 64, 79, 18, 3, 204, 70, 222, 96, 233,
230, 79, 158, 122, 204, 70, 222, 96, 230, 14, 79, 158, 122, 204, 70, 222,
96, 222, 58, 210, 65, 79, 1, 194, 88, 209, 3, 222, 96, 199, 240, 79, 1,
194, 88, 209, 3, 222, 96, 209, 9, 79, 18, 3, 194, 88, 209, 3, 222, 96,
233, 230, 79, 18, 3, 194, 88, 209, 3, 222, 96, 197, 104, 79, 3, 194, 88,
209, 3, 222, 96, 199, 17, 79, 3, 194, 88, 209, 3, 222, 96, 199, 16, 79,
3, 194, 88, 209, 3, 222, 96, 199, 15, 79, 3, 194, 88, 209, 3, 222, 96,
199, 14, 79, 3, 194, 88, 209, 3, 222, 96, 199, 13, 79, 1, 234, 184, 209,
3, 222, 96, 213, 178, 79, 1, 234, 184, 209, 3, 222, 96, 192, 172, 79, 1,
234, 184, 209, 3, 222, 96, 231, 49, 79, 18, 3, 231, 154, 222, 96, 70, 79,
18, 3, 222, 63, 212, 0, 79, 18, 3, 222, 63, 68, 79, 18, 3, 222, 63, 234,
171, 79, 1, 204, 38, 160, 79, 1, 204, 38, 221, 250, 79, 1, 204, 38, 231,
233, 79, 1, 204, 38, 247, 19, 79, 1, 204, 38, 192, 112, 79, 1, 204, 38,
212, 201, 79, 1, 204, 38, 238, 0, 79, 1, 204, 38, 181, 79, 1, 204, 38,
210, 94, 79, 1, 204, 38, 233, 97, 79, 1, 204, 38, 249, 3, 79, 1, 204, 38,
199, 240, 79, 1, 204, 38, 144, 79, 116, 3, 204, 38, 217, 35, 194, 169,
79, 18, 3, 204, 38, 252, 33, 79, 18, 3, 204, 38, 71, 79, 18, 3, 204, 38,
234, 253, 58, 79, 18, 3, 204, 38, 52, 193, 148, 79, 3, 204, 38, 199, 16,
79, 3, 204, 38, 199, 15, 79, 3, 204, 38, 199, 13, 79, 3, 204, 38, 199,
12, 79, 3, 204, 38, 238, 213, 199, 16, 79, 3, 204, 38, 238, 213, 199, 15,
79, 3, 204, 38, 238, 213, 234, 91, 199, 18, 79, 1, 206, 197, 211, 46,
233, 97, 79, 3, 206, 197, 211, 46, 199, 13, 79, 204, 38, 17, 192, 76, 79,
204, 38, 17, 101, 79, 204, 38, 17, 104, 79, 204, 38, 17, 133, 79, 204,
38, 17, 134, 79, 204, 38, 17, 151, 79, 204, 38, 17, 170, 79, 204, 38, 17,
179, 79, 204, 38, 17, 174, 79, 204, 38, 17, 182, 79, 3, 221, 242, 199,
17, 79, 3, 221, 242, 199, 15, 79, 18, 3, 251, 49, 64, 79, 18, 3, 251, 49,
251, 63, 79, 16, 204, 38, 101, 79, 16, 204, 38, 233, 203, 98, 6, 1, 250,
224, 98, 6, 1, 248, 207, 98, 6, 1, 231, 203, 98, 6, 1, 236, 123, 98, 6,
1, 234, 88, 98, 6, 1, 196, 20, 98, 6, 1, 192, 79, 98, 6, 1, 200, 125, 98,
6, 1, 223, 190, 98, 6, 1, 222, 121, 98, 6, 1, 220, 67, 98, 6, 1, 217,
160, 98, 6, 1, 215, 51, 98, 6, 1, 211, 211, 98, 6, 1, 210, 247, 98, 6, 1,
192, 67, 98, 6, 1, 208, 53, 98, 6, 1, 206, 40, 98, 6, 1, 200, 112, 98, 6,
1, 197, 77, 98, 6, 1, 210, 86, 98, 6, 1, 221, 237, 98, 6, 1, 231, 75, 98,
6, 1, 208, 224, 98, 6, 1, 203, 224, 98, 6, 1, 242, 201, 98, 6, 1, 246,
243, 98, 6, 1, 223, 10, 98, 6, 1, 242, 138, 98, 6, 1, 246, 101, 98, 6, 1,
193, 207, 98, 6, 1, 223, 25, 98, 6, 1, 230, 95, 98, 6, 1, 229, 255, 98,
6, 1, 229, 165, 98, 6, 1, 194, 111, 98, 6, 1, 230, 28, 98, 6, 1, 229, 31,
98, 6, 1, 193, 3, 98, 6, 1, 251, 97, 98, 1, 250, 224, 98, 1, 248, 207,
98, 1, 231, 203, 98, 1, 236, 123, 98, 1, 234, 88, 98, 1, 196, 20, 98, 1,
192, 79, 98, 1, 200, 125, 98, 1, 223, 190, 98, 1, 222, 121, 98, 1, 220,
67, 98, 1, 217, 160, 98, 1, 215, 51, 98, 1, 211, 211, 98, 1, 210, 247,
98, 1, 192, 67, 98, 1, 208, 53, 98, 1, 206, 40, 98, 1, 200, 112, 98, 1,
197, 77, 98, 1, 210, 86, 98, 1, 221, 237, 98, 1, 231, 75, 98, 1, 208,
224, 98, 1, 203, 224, 98, 1, 242, 201, 98, 1, 246, 243, 98, 1, 223, 10,
98, 1, 242, 138, 98, 1, 246, 101, 98, 1, 193, 207, 98, 1, 223, 25, 98, 1,
230, 95, 98, 1, 229, 255, 98, 1, 229, 165, 98, 1, 194, 111, 98, 1, 230,
28, 98, 1, 229, 31, 98, 1, 233, 11, 98, 1, 193, 3, 98, 1, 234, 107, 98,
1, 163, 231, 203, 98, 1, 251, 57, 98, 210, 244, 204, 165, 73, 1, 98, 215,
51, 98, 1, 251, 97, 98, 1, 230, 26, 57, 98, 1, 220, 175, 57, 30, 143,
221, 151, 30, 143, 202, 84, 30, 143, 214, 45, 30, 143, 199, 103, 30, 143,
202, 73, 30, 143, 207, 133, 30, 143, 216, 153, 30, 143, 210, 36, 30, 143,
202, 81, 30, 143, 203, 64, 30, 143, 202, 78, 30, 143, 223, 247, 30, 143,
242, 144, 30, 143, 202, 88, 30, 143, 242, 211, 30, 143, 221, 225, 30,
143, 199, 198, 30, 143, 210, 75, 30, 143, 229, 162, 30, 143, 214, 41, 30,
143, 202, 82, 30, 143, 214, 35, 30, 143, 214, 39, 30, 143, 199, 100, 30,
143, 207, 121, 30, 143, 202, 80, 30, 143, 207, 131, 30, 143, 222, 102,
30, 143, 216, 146, 30, 143, 222, 105, 30, 143, 210, 31, 30, 143, 210, 29,
30, 143, 210, 17, 30, 143, 210, 25, 30, 143, 210, 23, 30, 143, 210, 20,
30, 143, 210, 22, 30, 143, 210, 19, 30, 143, 210, 24, 30, 143, 210, 34,
30, 143, 210, 35, 30, 143, 210, 18, 30, 143, 210, 28, 30, 143, 222, 103,
30, 143, 222, 101, 30, 143, 203, 57, 30, 143, 203, 55, 30, 143, 203, 47,
30, 143, 203, 50, 30, 143, 203, 56, 30, 143, 203, 52, 30, 143, 203, 51,
30, 143, 203, 49, 30, 143, 203, 60, 30, 143, 203, 62, 30, 143, 203, 63,
30, 143, 203, 58, 30, 143, 203, 48, 30, 143, 203, 53, 30, 143, 203, 61,
30, 143, 242, 192, 30, 143, 242, 190, 30, 143, 246, 130, 30, 143, 246,
128, 30, 143, 211, 8, 30, 143, 223, 242, 30, 143, 223, 233, 30, 143, 223,
241, 30, 143, 223, 238, 30, 143, 223, 236, 30, 143, 223, 240, 30, 143,
202, 85, 30, 143, 223, 245, 30, 143, 223, 246, 30, 143, 223, 234, 30,
143, 223, 239, 30, 143, 193, 46, 30, 143, 242, 143, 30, 143, 242, 193,
30, 143, 242, 191, 30, 143, 246, 131, 30, 143, 246, 129, 30, 143, 242,
209, 30, 143, 242, 210, 30, 143, 242, 194, 30, 143, 246, 132, 30, 143,
210, 73, 30, 143, 222, 104, 30, 143, 202, 86, 30, 143, 193, 52, 30, 143,
221, 142, 30, 143, 214, 37, 30, 143, 214, 43, 30, 143, 214, 42, 30, 143,
199, 97, 30, 143, 232, 247, 30, 222, 206, 232, 247, 30, 222, 206, 64, 30,
222, 206, 251, 108, 30, 222, 206, 168, 30, 222, 206, 193, 118, 30, 222,
206, 234, 50, 30, 222, 206, 71, 30, 222, 206, 193, 56, 30, 222, 206, 193,
69, 30, 222, 206, 74, 30, 222, 206, 194, 169, 30, 222, 206, 194, 160, 30,
222, 206, 212, 0, 30, 222, 206, 193, 1, 30, 222, 206, 68, 30, 222, 206,
194, 93, 30, 222, 206, 194, 111, 30, 222, 206, 194, 72, 30, 222, 206,
192, 214, 30, 222, 206, 233, 230, 30, 222, 206, 193, 22, 30, 222, 206,
70, 30, 222, 206, 255, 29, 30, 222, 206, 255, 28, 30, 222, 206, 193, 132,
30, 222, 206, 193, 130, 30, 222, 206, 234, 48, 30, 222, 206, 234, 47, 30,
222, 206, 234, 49, 30, 222, 206, 193, 55, 30, 222, 206, 193, 54, 30, 222,
206, 212, 110, 30, 222, 206, 212, 111, 30, 222, 206, 212, 104, 30, 222,
206, 212, 109, 30, 222, 206, 212, 107, 30, 222, 206, 192, 245, 30, 222,
206, 192, 244, 30, 222, 206, 192, 243, 30, 222, 206, 192, 246, 30, 222,
206, 192, 247, 30, 222, 206, 197, 177, 30, 222, 206, 197, 176, 30, 222,
206, 197, 174, 30, 222, 206, 197, 170, 30, 222, 206, 197, 171, 30, 222,
206, 192, 209, 30, 222, 206, 192, 206, 30, 222, 206, 192, 207, 30, 222,
206, 192, 201, 30, 222, 206, 192, 202, 30, 222, 206, 192, 203, 30, 222,
206, 192, 205, 30, 222, 206, 233, 224, 30, 222, 206, 233, 226, 30, 222,
206, 193, 21, 30, 222, 206, 228, 92, 30, 222, 206, 228, 84, 30, 222, 206,
228, 87, 30, 222, 206, 228, 85, 30, 222, 206, 228, 89, 30, 222, 206, 228,
91, 30, 222, 206, 250, 123, 30, 222, 206, 250, 120, 30, 222, 206, 250,
118, 30, 222, 206, 250, 119, 30, 222, 206, 202, 89, 30, 222, 206, 255,
30, 30, 222, 206, 193, 131, 30, 222, 206, 193, 53, 30, 222, 206, 212,
106, 30, 222, 206, 212, 105, 30, 123, 221, 151, 30, 123, 202, 84, 30,
123, 221, 144, 30, 123, 214, 45, 30, 123, 214, 43, 30, 123, 214, 42, 30,
123, 199, 103, 30, 123, 207, 133, 30, 123, 207, 128, 30, 123, 207, 125,
30, 123, 207, 118, 30, 123, 207, 113, 30, 123, 207, 108, 30, 123, 207,
119, 30, 123, 207, 131, 30, 123, 216, 153, 30, 123, 210, 36, 30, 123,
210, 25, 30, 123, 203, 64, 30, 123, 202, 78, 30, 123, 223, 247, 30, 123,
242, 144, 30, 123, 242, 211, 30, 123, 221, 225, 30, 123, 199, 198, 30,
123, 210, 75, 30, 123, 229, 162, 30, 123, 221, 145, 30, 123, 221, 143,
30, 123, 214, 41, 30, 123, 214, 35, 30, 123, 214, 37, 30, 123, 214, 40,
30, 123, 214, 36, 30, 123, 199, 100, 30, 123, 199, 97, 30, 123, 207, 126,
30, 123, 207, 121, 30, 123, 207, 107, 30, 123, 207, 106, 30, 123, 202,
80, 30, 123, 207, 123, 30, 123, 207, 122, 30, 123, 207, 115, 30, 123,
207, 117, 30, 123, 207, 130, 30, 123, 207, 110, 30, 123, 207, 120, 30,
123, 207, 129, 30, 123, 207, 105, 30, 123, 216, 149, 30, 123, 216, 144,
30, 123, 216, 146, 30, 123, 216, 143, 30, 123, 216, 141, 30, 123, 216,
147, 30, 123, 216, 152, 30, 123, 216, 150, 30, 123, 222, 105, 30, 123,
210, 27, 30, 123, 210, 28, 30, 123, 210, 33, 30, 123, 222, 103, 30, 123,
203, 57, 30, 123, 203, 47, 30, 123, 203, 50, 30, 123, 203, 52, 30, 123,
211, 8, 30, 123, 223, 242, 30, 123, 223, 235, 30, 123, 202, 85, 30, 123,
223, 243, 30, 123, 193, 46, 30, 123, 193, 40, 30, 123, 193, 41, 30, 123,
210, 73, 30, 123, 222, 104, 30, 123, 229, 160, 30, 123, 229, 158, 30,
123, 229, 161, 30, 123, 229, 159, 30, 123, 193, 52, 30, 123, 221, 147,
30, 123, 221, 146, 30, 123, 221, 150, 30, 123, 221, 148, 30, 123, 221,
149, 30, 123, 202, 82, 36, 5, 144, 36, 5, 228, 181, 36, 5, 229, 178, 36,
5, 230, 99, 36, 5, 229, 225, 36, 5, 229, 255, 36, 5, 229, 43, 36, 5, 229,
34, 36, 5, 177, 36, 5, 219, 36, 36, 5, 219, 209, 36, 5, 220, 184, 36, 5,
220, 32, 36, 5, 220, 42, 36, 5, 219, 107, 36, 5, 219, 3, 36, 5, 229, 187,
36, 5, 229, 181, 36, 5, 229, 183, 36, 5, 229, 186, 36, 5, 229, 184, 36,
5, 229, 185, 36, 5, 229, 182, 36, 5, 229, 180, 36, 5, 172, 36, 5, 215,
241, 36, 5, 216, 175, 36, 5, 217, 219, 36, 5, 217, 29, 36, 5, 217, 48,
36, 5, 216, 91, 36, 5, 215, 168, 36, 5, 200, 239, 36, 5, 200, 233, 36, 5,
200, 235, 36, 5, 200, 238, 36, 5, 200, 236, 36, 5, 200, 237, 36, 5, 200,
234, 36, 5, 200, 232, 36, 5, 167, 36, 5, 206, 218, 36, 5, 207, 151, 36,
5, 208, 68, 36, 5, 207, 234, 36, 5, 208, 7, 36, 5, 207, 55, 36, 5, 206,
176, 36, 5, 188, 36, 5, 201, 184, 36, 5, 203, 125, 36, 5, 206, 91, 36, 5,
205, 205, 36, 5, 205, 223, 36, 5, 202, 212, 36, 5, 201, 79, 36, 5, 204,
64, 36, 5, 203, 164, 36, 5, 203, 236, 36, 5, 204, 59, 36, 5, 204, 10, 36,
5, 204, 12, 36, 5, 203, 211, 36, 5, 203, 143, 36, 5, 208, 239, 36, 5,
208, 177, 36, 5, 208, 201, 36, 5, 208, 238, 36, 5, 208, 218, 36, 5, 208,
219, 36, 5, 208, 189, 36, 5, 208, 188, 36, 5, 208, 130, 36, 5, 208, 126,
36, 5, 208, 129, 36, 5, 208, 127, 36, 5, 208, 128, 36, 5, 208, 215, 36,
5, 208, 207, 36, 5, 208, 210, 36, 5, 208, 214, 36, 5, 208, 211, 36, 5,
208, 212, 36, 5, 208, 209, 36, 5, 208, 206, 36, 5, 208, 202, 36, 5, 208,
205, 36, 5, 208, 203, 36, 5, 208, 204, 36, 5, 249, 3, 36, 5, 247, 124,
36, 5, 248, 41, 36, 5, 249, 1, 36, 5, 248, 108, 36, 5, 248, 123, 36, 5,
247, 220, 36, 5, 247, 69, 36, 5, 196, 157, 36, 5, 194, 223, 36, 5, 196,
39, 36, 5, 196, 156, 36, 5, 196, 118, 36, 5, 196, 123, 36, 5, 195, 252,
36, 5, 194, 212, 36, 5, 189, 36, 5, 198, 45, 36, 5, 199, 128, 36, 5, 200,
174, 36, 5, 200, 56, 36, 5, 200, 79, 36, 5, 155, 36, 5, 197, 250, 36, 5,
247, 19, 36, 5, 238, 162, 36, 5, 242, 149, 36, 5, 247, 18, 36, 5, 246,
150, 36, 5, 246, 158, 36, 5, 242, 63, 36, 5, 238, 118, 36, 5, 193, 209,
36, 5, 193, 177, 36, 5, 193, 196, 36, 5, 193, 208, 36, 5, 193, 202, 36,
5, 193, 203, 36, 5, 193, 185, 36, 5, 193, 184, 36, 5, 193, 170, 36, 5,
193, 166, 36, 5, 193, 169, 36, 5, 193, 167, 36, 5, 193, 168, 36, 5, 181,
36, 5, 213, 22, 36, 5, 214, 60, 36, 5, 215, 84, 36, 5, 214, 203, 36, 5,
214, 214, 36, 5, 213, 142, 36, 5, 212, 210, 36, 5, 212, 201, 36, 5, 212,
158, 36, 5, 212, 181, 36, 5, 212, 200, 36, 5, 212, 189, 36, 5, 212, 190,
36, 5, 212, 165, 36, 5, 212, 148, 36, 5, 231, 6, 64, 36, 5, 231, 6, 68,
36, 5, 231, 6, 70, 36, 5, 231, 6, 252, 33, 36, 5, 231, 6, 234, 171, 36,
5, 231, 6, 71, 36, 5, 231, 6, 74, 36, 5, 231, 6, 194, 169, 36, 5, 160,
36, 5, 221, 33, 36, 5, 221, 204, 36, 5, 222, 159, 36, 5, 222, 48, 36, 5,
222, 57, 36, 5, 221, 113, 36, 5, 221, 108, 36, 5, 220, 238, 36, 5, 220,
231, 36, 5, 220, 237, 36, 5, 220, 232, 36, 5, 220, 233, 36, 5, 220, 224,
36, 5, 220, 218, 36, 5, 220, 220, 36, 5, 220, 223, 36, 5, 220, 221, 36,
5, 220, 222, 36, 5, 220, 219, 36, 5, 220, 217, 36, 5, 220, 213, 36, 5,
220, 216, 36, 5, 220, 214, 36, 5, 220, 215, 36, 5, 194, 169, 36, 5, 193,
244, 36, 5, 194, 72, 36, 5, 194, 163, 36, 5, 194, 100, 36, 5, 194, 111,
36, 5, 194, 36, 36, 5, 194, 28, 36, 5, 210, 85, 64, 36, 5, 210, 85, 68,
36, 5, 210, 85, 70, 36, 5, 210, 85, 252, 33, 36, 5, 210, 85, 234, 171,
36, 5, 210, 85, 71, 36, 5, 210, 85, 74, 36, 5, 192, 112, 36, 5, 191, 252,
36, 5, 192, 30, 36, 5, 192, 110, 36, 5, 192, 82, 36, 5, 192, 85, 36, 5,
192, 8, 36, 5, 191, 239, 36, 5, 192, 71, 36, 5, 192, 48, 36, 5, 192, 57,
36, 5, 192, 70, 36, 5, 192, 61, 36, 5, 192, 62, 36, 5, 192, 54, 36, 5,
192, 39, 36, 5, 168, 36, 5, 192, 214, 36, 5, 193, 22, 36, 5, 193, 129,
36, 5, 193, 66, 36, 5, 193, 69, 36, 5, 193, 1, 36, 5, 192, 241, 36, 5,
238, 0, 36, 5, 235, 62, 36, 5, 237, 16, 36, 5, 237, 255, 36, 5, 237, 101,
36, 5, 237, 116, 36, 5, 236, 146, 36, 5, 235, 28, 36, 5, 237, 161, 36, 5,
237, 126, 36, 5, 237, 138, 36, 5, 237, 160, 36, 5, 237, 148, 36, 5, 237,
149, 36, 5, 237, 131, 36, 5, 237, 117, 36, 5, 223, 62, 36, 5, 222, 214,
36, 5, 223, 20, 36, 5, 223, 61, 36, 5, 223, 39, 36, 5, 223, 41, 36, 5,
222, 233, 36, 5, 222, 192, 36, 5, 231, 233, 36, 5, 230, 186, 36, 5, 231,
46, 36, 5, 231, 230, 36, 5, 231, 150, 36, 5, 231, 158, 36, 5, 230, 254,
36, 5, 230, 253, 36, 5, 230, 143, 36, 5, 230, 139, 36, 5, 230, 142, 36,
5, 230, 140, 36, 5, 230, 141, 36, 5, 231, 120, 36, 5, 231, 100, 36, 5,
231, 110, 36, 5, 231, 119, 36, 5, 231, 114, 36, 5, 231, 115, 36, 5, 231,
104, 36, 5, 231, 89, 36, 5, 199, 240, 36, 5, 199, 148, 36, 5, 199, 202,
36, 5, 199, 239, 36, 5, 199, 222, 36, 5, 199, 224, 36, 5, 199, 176, 36,
5, 199, 139, 36, 5, 246, 117, 36, 5, 242, 168, 36, 5, 242, 215, 36, 5,
246, 116, 36, 5, 242, 241, 36, 5, 242, 245, 36, 5, 242, 188, 36, 5, 242,
157, 36, 5, 210, 94, 36, 5, 210, 57, 36, 5, 210, 77, 36, 5, 210, 93, 36,
5, 210, 79, 36, 5, 210, 80, 36, 5, 210, 65, 36, 5, 210, 53, 36, 5, 198,
118, 36, 5, 198, 91, 36, 5, 198, 97, 36, 5, 198, 117, 36, 5, 198, 111,
36, 5, 198, 112, 36, 5, 198, 95, 36, 5, 198, 89, 36, 5, 197, 191, 36, 5,
197, 183, 36, 5, 197, 187, 36, 5, 197, 190, 36, 5, 197, 188, 36, 5, 197,
189, 36, 5, 197, 185, 36, 5, 197, 184, 36, 5, 233, 97, 36, 5, 232, 77,
36, 5, 233, 11, 36, 5, 233, 96, 36, 5, 233, 40, 36, 5, 233, 47, 36, 5,
232, 164, 36, 5, 232, 55, 36, 5, 166, 36, 5, 209, 51, 36, 5, 210, 51, 36,
5, 211, 77, 36, 5, 210, 168, 36, 5, 210, 181, 36, 5, 209, 198, 36, 5,
209, 9, 36, 5, 206, 166, 36, 5, 215, 157, 36, 5, 232, 49, 36, 38, 231,
146, 26, 18, 220, 2, 77, 36, 38, 18, 220, 2, 77, 36, 38, 231, 146, 77,
36, 205, 209, 77, 36, 194, 10, 36, 232, 71, 201, 238, 36, 242, 38, 36,
204, 180, 36, 242, 47, 36, 209, 112, 242, 47, 36, 208, 159, 77, 36, 210,
244, 204, 165, 36, 17, 101, 36, 17, 104, 36, 17, 133, 36, 17, 134, 36,
17, 151, 36, 17, 170, 36, 17, 179, 36, 17, 174, 36, 17, 182, 36, 31, 200,
30, 36, 31, 197, 239, 36, 31, 199, 184, 36, 31, 232, 126, 36, 31, 233, 3,
36, 31, 203, 25, 36, 31, 204, 140, 36, 31, 234, 137, 36, 31, 214, 11, 36,
31, 228, 162, 36, 31, 200, 31, 180, 36, 5, 205, 214, 215, 168, 36, 5,
215, 164, 36, 5, 215, 165, 36, 5, 215, 166, 36, 5, 205, 214, 247, 69, 36,
5, 247, 66, 36, 5, 247, 67, 36, 5, 247, 68, 36, 5, 205, 214, 232, 55, 36,
5, 232, 51, 36, 5, 232, 52, 36, 5, 232, 53, 36, 5, 205, 214, 209, 9, 36,
5, 209, 5, 36, 5, 209, 6, 36, 5, 209, 7, 36, 199, 19, 122, 193, 4, 36,
199, 19, 122, 237, 61, 36, 199, 19, 122, 207, 87, 36, 199, 19, 122, 203,
195, 207, 87, 36, 199, 19, 122, 236, 246, 36, 199, 19, 122, 222, 29, 36,
199, 19, 122, 242, 196, 36, 199, 19, 122, 229, 167, 36, 199, 19, 122,
237, 60, 36, 199, 19, 122, 220, 254, 99, 1, 64, 99, 1, 71, 99, 1, 70, 99,
1, 74, 99, 1, 68, 99, 1, 196, 236, 99, 1, 231, 233, 99, 1, 160, 99, 1,
231, 158, 99, 1, 231, 46, 99, 1, 230, 254, 99, 1, 230, 186, 99, 1, 230,
146, 99, 1, 144, 99, 1, 229, 255, 99, 1, 229, 178, 99, 1, 229, 43, 99, 1,
228, 181, 99, 1, 228, 148, 99, 1, 177, 99, 1, 220, 42, 99, 1, 219, 209,
99, 1, 219, 107, 99, 1, 219, 36, 99, 1, 219, 4, 99, 1, 172, 99, 1, 217,
48, 99, 1, 216, 175, 99, 1, 216, 91, 99, 1, 215, 241, 99, 1, 181, 99, 1,
229, 67, 99, 1, 215, 71, 99, 1, 214, 214, 99, 1, 214, 60, 99, 1, 213,
142, 99, 1, 213, 22, 99, 1, 212, 212, 99, 1, 208, 176, 99, 1, 208, 162,
99, 1, 208, 155, 99, 1, 208, 145, 99, 1, 208, 134, 99, 1, 208, 132, 99,
1, 188, 99, 1, 206, 158, 99, 1, 205, 223, 99, 1, 203, 125, 99, 1, 202,
212, 99, 1, 201, 184, 99, 1, 201, 84, 99, 1, 238, 0, 99, 1, 189, 99, 1,
237, 116, 99, 1, 200, 79, 99, 1, 237, 16, 99, 1, 199, 128, 99, 1, 236,
146, 99, 1, 235, 62, 99, 1, 235, 31, 99, 1, 236, 158, 99, 1, 199, 53, 99,
1, 199, 52, 99, 1, 199, 41, 99, 1, 199, 40, 99, 1, 199, 39, 99, 1, 199,
38, 99, 1, 198, 118, 99, 1, 198, 112, 99, 1, 198, 97, 99, 1, 198, 95, 99,
1, 198, 91, 99, 1, 198, 90, 99, 1, 194, 169, 99, 1, 194, 111, 99, 1, 194,
72, 99, 1, 194, 36, 99, 1, 193, 244, 99, 1, 193, 231, 99, 1, 168, 99, 1,
193, 69, 99, 1, 193, 22, 99, 1, 193, 1, 99, 1, 192, 214, 99, 1, 192, 173,
99, 1, 215, 175, 99, 2, 1, 193, 69, 99, 2, 1, 193, 22, 99, 2, 1, 193, 1,
99, 2, 1, 192, 214, 99, 2, 1, 192, 173, 99, 2, 1, 215, 175, 21, 22, 228,
111, 21, 22, 71, 21, 22, 251, 253, 21, 22, 70, 21, 22, 223, 224, 21, 22,
74, 21, 22, 211, 194, 21, 22, 193, 147, 211, 194, 21, 22, 96, 234, 171,
21, 22, 96, 70, 21, 22, 64, 21, 22, 252, 33, 21, 22, 194, 111, 21, 22,
194, 89, 194, 111, 21, 22, 194, 72, 21, 22, 194, 89, 194, 72, 21, 22,
194, 56, 21, 22, 194, 89, 194, 56, 21, 22, 194, 36, 21, 22, 194, 89, 194,
36, 21, 22, 194, 17, 21, 22, 194, 89, 194, 17, 21, 22, 215, 45, 194, 17,
21, 22, 194, 169, 21, 22, 194, 89, 194, 169, 21, 22, 194, 163, 21, 22,
194, 89, 194, 163, 21, 22, 215, 45, 194, 163, 21, 22, 251, 63, 21, 22,
193, 147, 194, 202, 21, 22, 231, 6, 201, 238, 21, 22, 52, 251, 129, 21,
22, 52, 230, 210, 21, 22, 52, 247, 188, 138, 207, 81, 21, 22, 52, 198,
249, 138, 207, 81, 21, 22, 52, 51, 138, 207, 81, 21, 22, 52, 207, 81, 21,
22, 52, 55, 251, 129, 21, 22, 52, 55, 203, 195, 84, 201, 195, 21, 22, 52,
85, 236, 114, 21, 22, 52, 203, 195, 229, 5, 111, 21, 22, 52, 209, 206,
21, 22, 52, 142, 200, 159, 21, 22, 234, 88, 21, 22, 223, 190, 21, 22,
211, 211, 21, 22, 250, 224, 21, 22, 210, 181, 21, 22, 211, 75, 21, 22,
210, 51, 21, 22, 210, 12, 21, 22, 209, 198, 21, 22, 209, 172, 21, 22,
193, 147, 209, 172, 21, 22, 96, 229, 225, 21, 22, 96, 229, 178, 21, 22,
166, 21, 22, 211, 77, 21, 22, 209, 7, 21, 22, 194, 89, 209, 7, 21, 22,
209, 5, 21, 22, 194, 89, 209, 5, 21, 22, 209, 4, 21, 22, 194, 89, 209, 4,
21, 22, 209, 2, 21, 22, 194, 89, 209, 2, 21, 22, 209, 1, 21, 22, 194, 89,
209, 1, 21, 22, 209, 9, 21, 22, 194, 89, 209, 9, 21, 22, 209, 8, 21, 22,
194, 89, 209, 8, 21, 22, 193, 147, 209, 8, 21, 22, 211, 93, 21, 22, 194,
89, 211, 93, 21, 22, 96, 230, 124, 21, 22, 200, 79, 21, 22, 200, 172, 21,
22, 199, 128, 21, 22, 199, 105, 21, 22, 155, 21, 22, 198, 254, 21, 22,
193, 147, 198, 254, 21, 22, 96, 237, 101, 21, 22, 96, 237, 16, 21, 22,
189, 21, 22, 200, 174, 21, 22, 197, 248, 21, 22, 194, 89, 197, 248, 21,
22, 197, 226, 21, 22, 194, 89, 197, 226, 21, 22, 197, 225, 21, 22, 194,
89, 197, 225, 21, 22, 104, 21, 22, 194, 89, 104, 21, 22, 197, 216, 21,
22, 194, 89, 197, 216, 21, 22, 197, 250, 21, 22, 194, 89, 197, 250, 21,
22, 197, 249, 21, 22, 194, 89, 197, 249, 21, 22, 215, 45, 197, 249, 21,
22, 200, 228, 21, 22, 198, 78, 21, 22, 198, 62, 21, 22, 198, 60, 21, 22,
198, 83, 21, 22, 222, 57, 21, 22, 222, 153, 21, 22, 221, 204, 21, 22,
221, 183, 21, 22, 221, 113, 21, 22, 221, 88, 21, 22, 193, 147, 221, 88,
21, 22, 160, 21, 22, 222, 159, 21, 22, 220, 233, 21, 22, 194, 89, 220,
233, 21, 22, 220, 231, 21, 22, 194, 89, 220, 231, 21, 22, 220, 230, 21,
22, 194, 89, 220, 230, 21, 22, 220, 228, 21, 22, 194, 89, 220, 228, 21,
22, 220, 227, 21, 22, 194, 89, 220, 227, 21, 22, 220, 238, 21, 22, 194,
89, 220, 238, 21, 22, 220, 237, 21, 22, 194, 89, 220, 237, 21, 22, 215,
45, 220, 237, 21, 22, 222, 184, 21, 22, 220, 239, 21, 22, 202, 170, 222,
41, 21, 22, 202, 170, 221, 184, 21, 22, 202, 170, 221, 103, 21, 22, 202,
170, 222, 137, 21, 22, 246, 158, 21, 22, 247, 17, 21, 22, 242, 149, 21,
22, 242, 139, 21, 22, 242, 63, 21, 22, 238, 239, 21, 22, 193, 147, 238,
239, 21, 22, 247, 19, 21, 22, 247, 18, 21, 22, 238, 116, 21, 22, 194, 89,
238, 116, 21, 22, 238, 114, 21, 22, 194, 89, 238, 114, 21, 22, 238, 113,
21, 22, 194, 89, 238, 113, 21, 22, 238, 112, 21, 22, 194, 89, 238, 112,
21, 22, 238, 111, 21, 22, 194, 89, 238, 111, 21, 22, 238, 118, 21, 22,
194, 89, 238, 118, 21, 22, 238, 117, 21, 22, 194, 89, 238, 117, 21, 22,
215, 45, 238, 117, 21, 22, 247, 52, 21, 22, 205, 255, 199, 242, 21, 22,
217, 48, 21, 22, 217, 218, 21, 22, 216, 175, 21, 22, 216, 137, 21, 22,
216, 91, 21, 22, 216, 35, 21, 22, 193, 147, 216, 35, 21, 22, 172, 21, 22,
217, 219, 21, 22, 215, 166, 21, 22, 194, 89, 215, 166, 21, 22, 215, 164,
21, 22, 194, 89, 215, 164, 21, 22, 215, 163, 21, 22, 194, 89, 215, 163,
21, 22, 215, 162, 21, 22, 194, 89, 215, 162, 21, 22, 215, 161, 21, 22,
194, 89, 215, 161, 21, 22, 215, 168, 21, 22, 194, 89, 215, 168, 21, 22,
215, 167, 21, 22, 194, 89, 215, 167, 21, 22, 215, 45, 215, 167, 21, 22,
218, 236, 21, 22, 194, 89, 218, 236, 21, 22, 216, 179, 21, 22, 250, 24,
218, 236, 21, 22, 205, 255, 218, 236, 21, 22, 214, 214, 21, 22, 215, 83,
21, 22, 214, 60, 21, 22, 214, 27, 21, 22, 213, 142, 21, 22, 213, 125, 21,
22, 193, 147, 213, 125, 21, 22, 181, 21, 22, 215, 84, 21, 22, 212, 208,
21, 22, 194, 89, 212, 208, 21, 22, 212, 210, 21, 22, 194, 89, 212, 210,
21, 22, 212, 209, 21, 22, 194, 89, 212, 209, 21, 22, 215, 45, 212, 209,
21, 22, 215, 151, 21, 22, 96, 214, 167, 21, 22, 214, 66, 21, 22, 220, 42,
21, 22, 220, 183, 21, 22, 219, 209, 21, 22, 219, 191, 21, 22, 219, 107,
21, 22, 219, 73, 21, 22, 193, 147, 219, 73, 21, 22, 177, 21, 22, 220,
184, 21, 22, 219, 1, 21, 22, 194, 89, 219, 1, 21, 22, 219, 0, 21, 22,
194, 89, 219, 0, 21, 22, 218, 255, 21, 22, 194, 89, 218, 255, 21, 22,
218, 254, 21, 22, 194, 89, 218, 254, 21, 22, 218, 253, 21, 22, 194, 89,
218, 253, 21, 22, 219, 3, 21, 22, 194, 89, 219, 3, 21, 22, 219, 2, 21,
22, 194, 89, 219, 2, 21, 22, 165, 21, 22, 194, 89, 165, 21, 22, 217, 35,
165, 21, 22, 205, 223, 21, 22, 206, 89, 21, 22, 203, 125, 21, 22, 203,
97, 21, 22, 202, 212, 21, 22, 202, 183, 21, 22, 193, 147, 202, 183, 21,
22, 188, 21, 22, 206, 91, 21, 22, 201, 74, 21, 22, 194, 89, 201, 74, 21,
22, 201, 68, 21, 22, 194, 89, 201, 68, 21, 22, 201, 67, 21, 22, 194, 89,
201, 67, 21, 22, 201, 62, 21, 22, 194, 89, 201, 62, 21, 22, 201, 61, 21,
22, 194, 89, 201, 61, 21, 22, 201, 79, 21, 22, 194, 89, 201, 79, 21, 22,
201, 78, 21, 22, 194, 89, 201, 78, 21, 22, 215, 45, 201, 78, 21, 22, 206,
158, 21, 22, 250, 24, 206, 158, 21, 22, 201, 80, 21, 22, 247, 245, 206,
158, 21, 22, 216, 28, 203, 19, 21, 22, 215, 45, 203, 8, 21, 22, 215, 45,
206, 156, 21, 22, 215, 45, 202, 108, 21, 22, 215, 45, 201, 187, 21, 22,
215, 45, 203, 7, 21, 22, 215, 45, 205, 226, 21, 22, 204, 12, 21, 22, 203,
236, 21, 22, 203, 231, 21, 22, 203, 211, 21, 22, 203, 203, 21, 22, 204,
64, 21, 22, 204, 59, 21, 22, 203, 140, 21, 22, 194, 89, 203, 140, 21, 22,
203, 139, 21, 22, 194, 89, 203, 139, 21, 22, 203, 138, 21, 22, 194, 89,
203, 138, 21, 22, 203, 137, 21, 22, 194, 89, 203, 137, 21, 22, 203, 136,
21, 22, 194, 89, 203, 136, 21, 22, 203, 143, 21, 22, 194, 89, 203, 143,
21, 22, 203, 142, 21, 22, 194, 89, 203, 142, 21, 22, 204, 66, 21, 22,
193, 69, 21, 22, 193, 127, 21, 22, 193, 22, 21, 22, 193, 12, 21, 22, 193,
1, 21, 22, 192, 235, 21, 22, 193, 147, 192, 235, 21, 22, 168, 21, 22,
193, 129, 21, 22, 192, 170, 21, 22, 194, 89, 192, 170, 21, 22, 192, 169,
21, 22, 194, 89, 192, 169, 21, 22, 192, 168, 21, 22, 194, 89, 192, 168,
21, 22, 192, 167, 21, 22, 194, 89, 192, 167, 21, 22, 192, 166, 21, 22,
194, 89, 192, 166, 21, 22, 192, 172, 21, 22, 194, 89, 192, 172, 21, 22,
192, 171, 21, 22, 194, 89, 192, 171, 21, 22, 215, 45, 192, 171, 21, 22,
193, 148, 21, 22, 248, 39, 193, 148, 21, 22, 194, 89, 193, 148, 21, 22,
205, 255, 193, 22, 21, 22, 208, 7, 21, 22, 208, 111, 208, 7, 21, 22, 194,
89, 220, 42, 21, 22, 208, 67, 21, 22, 207, 151, 21, 22, 207, 88, 21, 22,
207, 55, 21, 22, 207, 28, 21, 22, 194, 89, 219, 107, 21, 22, 167, 21, 22,
208, 68, 21, 22, 194, 89, 177, 21, 22, 206, 175, 21, 22, 194, 89, 206,
175, 21, 22, 150, 21, 22, 194, 89, 150, 21, 22, 217, 35, 150, 21, 22,
233, 47, 21, 22, 233, 94, 21, 22, 233, 11, 21, 22, 232, 252, 21, 22, 232,
164, 21, 22, 232, 152, 21, 22, 233, 97, 21, 22, 233, 96, 21, 22, 232, 54,
21, 22, 194, 89, 232, 54, 21, 22, 233, 163, 21, 22, 199, 224, 21, 22,
215, 149, 199, 224, 21, 22, 199, 202, 21, 22, 215, 149, 199, 202, 21, 22,
199, 196, 21, 22, 215, 149, 199, 196, 21, 22, 199, 176, 21, 22, 199, 170,
21, 22, 199, 240, 21, 22, 199, 239, 21, 22, 199, 138, 21, 22, 194, 89,
199, 138, 21, 22, 199, 242, 21, 22, 198, 69, 21, 22, 198, 67, 21, 22,
198, 66, 21, 22, 198, 71, 21, 22, 198, 72, 21, 22, 197, 209, 21, 22, 197,
208, 21, 22, 197, 207, 21, 22, 197, 211, 21, 22, 212, 229, 229, 255, 21,
22, 212, 229, 229, 178, 21, 22, 212, 229, 229, 150, 21, 22, 212, 229,
229, 43, 21, 22, 212, 229, 229, 16, 21, 22, 212, 229, 144, 21, 22, 212,
229, 230, 99, 21, 22, 212, 229, 230, 124, 21, 22, 212, 228, 230, 124, 21,
22, 229, 133, 21, 22, 208, 235, 21, 22, 208, 201, 21, 22, 208, 195, 21,
22, 208, 189, 21, 22, 208, 184, 21, 22, 208, 239, 21, 22, 208, 238, 21,
22, 208, 247, 21, 22, 199, 49, 21, 22, 199, 47, 21, 22, 199, 46, 21, 22,
199, 50, 21, 22, 194, 89, 208, 7, 21, 22, 194, 89, 207, 151, 21, 22, 194,
89, 207, 55, 21, 22, 194, 89, 167, 21, 22, 214, 163, 21, 22, 214, 113,
21, 22, 214, 109, 21, 22, 214, 90, 21, 22, 214, 85, 21, 22, 214, 165, 21,
22, 214, 164, 21, 22, 214, 167, 21, 22, 213, 171, 21, 22, 205, 255, 204,
12, 21, 22, 205, 255, 203, 236, 21, 22, 205, 255, 203, 211, 21, 22, 205,
255, 204, 64, 21, 22, 194, 15, 199, 224, 21, 22, 194, 15, 199, 202, 21,
22, 194, 15, 199, 176, 21, 22, 194, 15, 199, 240, 21, 22, 194, 15, 199,
242, 21, 22, 219, 216, 21, 22, 219, 215, 21, 22, 219, 214, 21, 22, 219,
213, 21, 22, 219, 222, 21, 22, 219, 221, 21, 22, 219, 223, 21, 22, 199,
241, 199, 224, 21, 22, 199, 241, 199, 202, 21, 22, 199, 241, 199, 196,
21, 22, 199, 241, 199, 176, 21, 22, 199, 241, 199, 170, 21, 22, 199, 241,
199, 240, 21, 22, 199, 241, 199, 239, 21, 22, 199, 241, 199, 242, 21, 22,
251, 47, 249, 226, 21, 22, 247, 245, 71, 21, 22, 247, 245, 70, 21, 22,
247, 245, 74, 21, 22, 247, 245, 64, 21, 22, 247, 245, 194, 111, 21, 22,
247, 245, 194, 72, 21, 22, 247, 245, 194, 36, 21, 22, 247, 245, 194, 169,
21, 22, 247, 245, 214, 214, 21, 22, 247, 245, 214, 60, 21, 22, 247, 245,
213, 142, 21, 22, 247, 245, 181, 21, 22, 247, 245, 222, 57, 21, 22, 247,
245, 221, 204, 21, 22, 247, 245, 221, 113, 21, 22, 247, 245, 160, 21, 22,
205, 255, 229, 255, 21, 22, 205, 255, 229, 178, 21, 22, 205, 255, 229,
43, 21, 22, 205, 255, 144, 21, 22, 96, 231, 52, 21, 22, 96, 231, 56, 21,
22, 96, 231, 70, 21, 22, 96, 231, 69, 21, 22, 96, 231, 58, 21, 22, 96,
231, 84, 21, 22, 96, 206, 218, 21, 22, 96, 207, 55, 21, 22, 96, 208, 7,
21, 22, 96, 207, 234, 21, 22, 96, 207, 151, 21, 22, 96, 167, 21, 22, 96,
193, 244, 21, 22, 96, 194, 36, 21, 22, 96, 194, 111, 21, 22, 96, 194,
100, 21, 22, 96, 194, 72, 21, 22, 96, 194, 169, 21, 22, 96, 228, 140, 21,
22, 96, 228, 141, 21, 22, 96, 228, 144, 21, 22, 96, 228, 143, 21, 22, 96,
228, 142, 21, 22, 96, 228, 147, 21, 22, 96, 199, 148, 21, 22, 96, 199,
176, 21, 22, 96, 199, 224, 21, 22, 96, 199, 222, 21, 22, 96, 199, 202,
21, 22, 96, 199, 240, 21, 22, 96, 198, 50, 21, 22, 96, 198, 60, 21, 22,
96, 198, 78, 21, 22, 96, 198, 77, 21, 22, 96, 198, 62, 21, 22, 96, 198,
83, 21, 22, 96, 209, 51, 21, 22, 96, 209, 198, 21, 22, 96, 210, 181, 21,
22, 96, 210, 168, 21, 22, 96, 210, 51, 21, 22, 96, 166, 21, 22, 96, 211,
93, 21, 22, 96, 230, 186, 21, 22, 96, 230, 254, 21, 22, 96, 231, 158, 21,
22, 96, 231, 150, 21, 22, 96, 231, 46, 21, 22, 96, 231, 233, 21, 22, 96,
221, 213, 21, 22, 96, 221, 220, 21, 22, 96, 221, 234, 21, 22, 96, 221,
233, 21, 22, 96, 221, 227, 21, 22, 96, 221, 250, 21, 22, 96, 221, 134,
21, 22, 96, 221, 135, 21, 22, 96, 221, 138, 21, 22, 96, 221, 137, 21, 22,
96, 221, 136, 21, 22, 96, 221, 139, 21, 22, 96, 221, 140, 21, 22, 96,
213, 22, 21, 22, 96, 213, 142, 21, 22, 96, 214, 214, 21, 22, 96, 214,
203, 21, 22, 96, 214, 60, 21, 22, 96, 181, 21, 22, 96, 215, 241, 21, 22,
96, 216, 91, 21, 22, 96, 217, 48, 21, 22, 96, 217, 29, 21, 22, 96, 216,
175, 21, 22, 96, 172, 21, 22, 96, 192, 214, 21, 22, 96, 193, 1, 21, 22,
96, 193, 69, 21, 22, 96, 193, 66, 21, 22, 96, 193, 22, 21, 22, 96, 168,
21, 22, 96, 222, 214, 21, 22, 205, 255, 222, 214, 21, 22, 96, 222, 233,
21, 22, 96, 223, 41, 21, 22, 96, 223, 39, 21, 22, 96, 223, 20, 21, 22,
205, 255, 223, 20, 21, 22, 96, 223, 62, 21, 22, 96, 222, 247, 21, 22, 96,
222, 251, 21, 22, 96, 223, 5, 21, 22, 96, 223, 4, 21, 22, 96, 223, 3, 21,
22, 96, 223, 6, 21, 22, 96, 219, 36, 21, 22, 96, 219, 107, 21, 22, 96,
220, 42, 21, 22, 96, 220, 32, 21, 22, 96, 219, 209, 21, 22, 96, 177, 21,
22, 96, 236, 151, 21, 22, 96, 236, 152, 21, 22, 96, 236, 157, 21, 22, 96,
236, 156, 21, 22, 96, 236, 153, 21, 22, 96, 236, 158, 21, 22, 96, 219,
212, 21, 22, 96, 219, 214, 21, 22, 96, 219, 218, 21, 22, 96, 219, 217,
21, 22, 96, 219, 216, 21, 22, 96, 219, 222, 21, 22, 96, 199, 44, 21, 22,
96, 199, 46, 21, 22, 96, 199, 49, 21, 22, 96, 199, 48, 21, 22, 96, 199,
47, 21, 22, 96, 199, 50, 21, 22, 96, 199, 39, 21, 22, 96, 199, 40, 21,
22, 96, 199, 52, 21, 22, 96, 199, 51, 21, 22, 96, 199, 41, 21, 22, 96,
199, 53, 21, 22, 96, 191, 252, 21, 22, 96, 192, 8, 21, 22, 96, 192, 85,
21, 22, 96, 192, 82, 21, 22, 96, 192, 30, 21, 22, 96, 192, 112, 21, 22,
96, 192, 155, 21, 22, 96, 88, 192, 155, 21, 22, 96, 235, 4, 21, 22, 96,
235, 5, 21, 22, 96, 235, 14, 21, 22, 96, 235, 13, 21, 22, 96, 235, 8, 21,
22, 96, 235, 17, 21, 22, 96, 201, 184, 21, 22, 96, 202, 212, 21, 22, 96,
205, 223, 21, 22, 96, 205, 205, 21, 22, 96, 203, 125, 21, 22, 96, 188,
21, 22, 96, 203, 164, 21, 22, 96, 203, 211, 21, 22, 96, 204, 12, 21, 22,
96, 204, 10, 21, 22, 96, 203, 236, 21, 22, 96, 204, 64, 21, 22, 96, 204,
66, 21, 22, 96, 198, 91, 21, 22, 96, 198, 95, 21, 22, 96, 198, 112, 21,
22, 96, 198, 111, 21, 22, 96, 198, 97, 21, 22, 96, 198, 118, 21, 22, 96,
242, 168, 21, 22, 96, 242, 188, 21, 22, 96, 242, 245, 21, 22, 96, 242,
241, 21, 22, 96, 242, 215, 21, 22, 96, 246, 117, 21, 22, 96, 198, 53, 21,
22, 96, 198, 54, 21, 22, 96, 198, 57, 21, 22, 96, 198, 56, 21, 22, 96,
198, 55, 21, 22, 96, 198, 58, 21, 22, 242, 216, 57, 21, 22, 232, 71, 201,
238, 21, 22, 208, 231, 21, 22, 214, 161, 21, 22, 213, 168, 21, 22, 213,
167, 21, 22, 213, 166, 21, 22, 213, 165, 21, 22, 213, 170, 21, 22, 213,
169, 21, 22, 194, 15, 199, 136, 21, 22, 194, 15, 199, 135, 21, 22, 194,
15, 199, 134, 21, 22, 194, 15, 199, 133, 21, 22, 194, 15, 199, 132, 21,
22, 194, 15, 199, 139, 21, 22, 194, 15, 199, 138, 21, 22, 194, 15, 52,
199, 242, 21, 22, 247, 245, 194, 202, 211, 245, 202, 161, 77, 211, 245,
1, 248, 90, 211, 245, 1, 219, 22, 211, 245, 1, 233, 44, 211, 245, 1, 206,
73, 211, 245, 1, 214, 8, 211, 245, 1, 197, 116, 211, 245, 1, 237, 229,
211, 245, 1, 199, 77, 211, 245, 1, 242, 50, 211, 245, 1, 246, 145, 211,
245, 1, 215, 224, 211, 245, 1, 230, 233, 211, 245, 1, 214, 151, 211, 245,
1, 201, 231, 211, 245, 1, 206, 205, 211, 245, 1, 251, 59, 211, 245, 1,
211, 198, 211, 245, 1, 197, 27, 211, 245, 1, 234, 197, 211, 245, 1, 223,
115, 211, 245, 1, 234, 198, 211, 245, 1, 211, 163, 211, 245, 1, 197, 93,
211, 245, 1, 223, 230, 211, 245, 1, 234, 195, 211, 245, 1, 210, 158, 211,
245, 233, 43, 77, 211, 245, 207, 168, 233, 43, 77, 206, 194, 1, 233, 33,
233, 24, 233, 48, 233, 163, 206, 194, 1, 196, 236, 206, 194, 1, 197, 12,
197, 28, 68, 206, 194, 1, 192, 217, 206, 194, 1, 193, 148, 206, 194, 1,
194, 202, 206, 194, 1, 199, 141, 199, 140, 199, 168, 206, 194, 1, 233,
235, 206, 194, 1, 250, 187, 64, 206, 194, 1, 211, 145, 74, 206, 194, 1,
251, 147, 64, 206, 194, 1, 251, 92, 206, 194, 1, 219, 80, 74, 206, 194,
1, 203, 188, 74, 206, 194, 1, 74, 206, 194, 1, 212, 0, 206, 194, 1, 211,
211, 206, 194, 1, 208, 46, 208, 59, 207, 219, 150, 206, 194, 1, 222, 73,
206, 194, 1, 246, 141, 206, 194, 1, 222, 74, 222, 184, 206, 194, 1, 232,
44, 206, 194, 1, 234, 73, 206, 194, 1, 231, 153, 230, 130, 232, 44, 206,
194, 1, 231, 193, 206, 194, 1, 193, 236, 193, 227, 194, 202, 206, 194, 1,
230, 90, 230, 124, 206, 194, 1, 230, 94, 230, 124, 206, 194, 1, 219, 82,
230, 124, 206, 194, 1, 203, 191, 230, 124, 206, 194, 1, 215, 40, 212,
191, 215, 41, 215, 151, 206, 194, 1, 203, 189, 215, 151, 206, 194, 1,
235, 108, 206, 194, 1, 223, 93, 223, 97, 223, 84, 70, 206, 194, 1, 71,
206, 194, 1, 223, 31, 223, 65, 206, 194, 1, 231, 134, 206, 194, 1, 219,
83, 251, 108, 206, 194, 1, 203, 193, 64, 206, 194, 1, 223, 76, 234, 46,
206, 194, 1, 210, 113, 210, 138, 211, 93, 206, 194, 1, 251, 19, 234, 44,
206, 194, 1, 202, 167, 206, 158, 206, 194, 1, 203, 101, 219, 79, 206,
158, 206, 194, 1, 203, 187, 206, 158, 206, 194, 1, 247, 52, 206, 194, 1,
192, 155, 206, 194, 1, 199, 58, 199, 70, 197, 193, 200, 228, 206, 194, 1,
203, 186, 200, 228, 206, 194, 1, 238, 95, 206, 194, 1, 248, 68, 248, 71,
247, 251, 249, 226, 206, 194, 1, 203, 192, 249, 226, 206, 194, 1, 235,
107, 206, 194, 1, 211, 177, 206, 194, 1, 234, 151, 234, 158, 71, 206,
194, 1, 217, 149, 217, 161, 218, 236, 206, 194, 1, 219, 81, 218, 236,
206, 194, 1, 203, 190, 218, 236, 206, 194, 1, 220, 57, 220, 160, 219, 90,
165, 206, 194, 1, 235, 109, 206, 194, 1, 223, 163, 206, 194, 1, 223, 164,
206, 194, 1, 237, 243, 237, 249, 238, 95, 206, 194, 1, 211, 138, 233,
234, 74, 206, 194, 1, 234, 193, 206, 194, 1, 223, 113, 206, 194, 1, 238,
115, 206, 194, 1, 247, 2, 206, 194, 1, 246, 157, 206, 194, 1, 202, 25,
206, 194, 1, 219, 78, 206, 194, 1, 203, 185, 206, 194, 1, 228, 48, 206,
194, 1, 208, 247, 206, 194, 1, 193, 223, 206, 194, 203, 74, 209, 37, 206,
194, 215, 216, 209, 37, 206, 194, 238, 184, 209, 37, 206, 194, 250, 94,
109, 206, 194, 197, 252, 109, 206, 194, 248, 88, 109, 206, 194, 1, 222,
184, 206, 194, 1, 204, 66, 206, 194, 1, 211, 194, 206, 194, 1, 232, 101,
246, 196, 211, 144, 206, 194, 1, 232, 101, 246, 196, 223, 96, 206, 194,
1, 232, 101, 246, 196, 234, 157, 206, 194, 1, 232, 101, 246, 196, 251,
146, 206, 194, 1, 232, 101, 246, 196, 251, 92, 200, 154, 1, 64, 200, 154,
1, 70, 200, 154, 1, 68, 200, 154, 1, 160, 200, 154, 1, 231, 233, 200,
154, 1, 214, 165, 200, 154, 1, 189, 200, 154, 1, 238, 0, 200, 154, 1,
181, 200, 154, 1, 166, 200, 154, 1, 249, 3, 200, 154, 1, 172, 200, 154,
1, 168, 200, 154, 1, 177, 200, 154, 1, 194, 169, 200, 154, 1, 188, 200,
154, 1, 144, 200, 154, 18, 3, 70, 200, 154, 18, 3, 68, 200, 154, 3, 196,
11, 230, 32, 1, 64, 230, 32, 1, 70, 230, 32, 1, 68, 230, 32, 1, 160, 230,
32, 1, 231, 233, 230, 32, 1, 214, 165, 230, 32, 1, 189, 230, 32, 1, 238,
0, 230, 32, 1, 181, 230, 32, 1, 166, 230, 32, 1, 249, 3, 230, 32, 1, 172,
230, 32, 1, 168, 230, 32, 1, 167, 230, 32, 1, 177, 230, 32, 1, 194, 169,
230, 32, 1, 188, 230, 32, 1, 144, 230, 32, 18, 3, 70, 230, 32, 18, 3, 68,
230, 32, 3, 211, 28, 210, 70, 203, 74, 209, 37, 210, 70, 55, 209, 37,
247, 114, 1, 64, 247, 114, 1, 70, 247, 114, 1, 68, 247, 114, 1, 160, 247,
114, 1, 231, 233, 247, 114, 1, 214, 165, 247, 114, 1, 189, 247, 114, 1,
238, 0, 247, 114, 1, 181, 247, 114, 1, 166, 247, 114, 1, 249, 3, 247,
114, 1, 172, 247, 114, 1, 168, 247, 114, 1, 167, 247, 114, 1, 177, 247,
114, 1, 194, 169, 247, 114, 1, 188, 247, 114, 1, 144, 247, 114, 18, 3,
70, 247, 114, 18, 3, 68, 200, 153, 1, 64, 200, 153, 1, 70, 200, 153, 1,
68, 200, 153, 1, 160, 200, 153, 1, 231, 233, 200, 153, 1, 214, 165, 200,
153, 1, 189, 200, 153, 1, 238, 0, 200, 153, 1, 181, 200, 153, 1, 166,
200, 153, 1, 249, 3, 200, 153, 1, 172, 200, 153, 1, 168, 200, 153, 1,
177, 200, 153, 1, 194, 169, 200, 153, 1, 188, 200, 153, 18, 3, 70, 200,
153, 18, 3, 68, 93, 1, 160, 93, 1, 221, 250, 93, 1, 221, 113, 93, 1, 221,
220, 93, 1, 214, 90, 93, 1, 247, 19, 93, 1, 246, 117, 93, 1, 242, 63, 93,
1, 242, 188, 93, 1, 212, 165, 93, 1, 238, 0, 93, 1, 198, 71, 93, 1, 236,
146, 93, 1, 198, 66, 93, 1, 213, 148, 93, 1, 189, 93, 1, 199, 240, 93, 1,
155, 93, 1, 199, 176, 93, 1, 213, 142, 93, 1, 249, 3, 93, 1, 210, 94, 93,
1, 209, 198, 93, 1, 210, 65, 93, 1, 216, 91, 93, 1, 193, 1, 93, 1, 207,
55, 93, 1, 219, 107, 93, 1, 195, 252, 93, 1, 204, 64, 93, 1, 202, 51, 93,
1, 188, 93, 1, 144, 93, 1, 177, 93, 1, 208, 239, 93, 223, 177, 18, 208,
225, 93, 223, 177, 18, 208, 238, 93, 223, 177, 18, 208, 201, 93, 223,
177, 18, 208, 195, 93, 223, 177, 18, 208, 177, 93, 223, 177, 18, 208,
146, 93, 223, 177, 18, 208, 134, 93, 223, 177, 18, 208, 133, 93, 223,
177, 18, 206, 167, 93, 223, 177, 18, 206, 160, 93, 223, 177, 18, 218,
251, 93, 223, 177, 18, 218, 239, 93, 223, 177, 18, 208, 219, 93, 223,
177, 18, 208, 231, 93, 223, 177, 18, 208, 185, 197, 206, 101, 93, 223,
177, 18, 208, 185, 197, 206, 104, 93, 223, 177, 18, 208, 221, 93, 18,
223, 161, 250, 135, 93, 18, 223, 161, 252, 33, 93, 18, 3, 252, 33, 93,
18, 3, 70, 93, 18, 3, 223, 224, 93, 18, 3, 193, 148, 93, 18, 3, 192, 165,
93, 18, 3, 68, 93, 18, 3, 196, 251, 93, 18, 3, 197, 119, 93, 18, 3, 212,
0, 93, 18, 3, 168, 93, 18, 3, 223, 251, 93, 18, 3, 71, 93, 18, 3, 251,
108, 93, 18, 3, 251, 63, 93, 18, 3, 211, 194, 93, 18, 3, 250, 8, 93, 3,
214, 25, 93, 3, 208, 0, 93, 3, 192, 176, 93, 3, 215, 179, 93, 3, 198,
173, 93, 3, 248, 196, 93, 3, 207, 44, 93, 3, 199, 28, 93, 3, 222, 128,
93, 3, 251, 65, 93, 3, 206, 41, 206, 33, 93, 3, 196, 8, 93, 3, 242, 54,
93, 3, 248, 166, 93, 3, 221, 241, 93, 3, 248, 191, 93, 3, 246, 246, 210,
13, 220, 245, 93, 3, 220, 9, 198, 254, 93, 3, 248, 56, 93, 3, 210, 67,
215, 234, 93, 3, 221, 86, 93, 238, 137, 16, 207, 135, 93, 3, 249, 245,
93, 3, 250, 11, 93, 17, 192, 76, 93, 17, 101, 93, 17, 104, 93, 17, 133,
93, 17, 134, 93, 17, 151, 93, 17, 170, 93, 17, 179, 93, 17, 174, 93, 17,
182, 93, 16, 220, 9, 250, 13, 202, 186, 93, 16, 220, 9, 250, 13, 215,
200, 93, 16, 220, 9, 250, 13, 210, 12, 93, 16, 220, 9, 250, 13, 248, 91,
93, 16, 220, 9, 250, 13, 247, 94, 93, 16, 220, 9, 250, 13, 209, 129, 93,
16, 220, 9, 250, 13, 209, 123, 93, 16, 220, 9, 250, 13, 209, 121, 93, 16,
220, 9, 250, 13, 209, 127, 93, 16, 220, 9, 250, 13, 209, 125, 100, 248,
11, 100, 234, 105, 100, 242, 38, 100, 232, 71, 201, 238, 100, 242, 47,
100, 232, 119, 236, 111, 100, 199, 27, 202, 198, 228, 111, 100, 203, 117,
5, 247, 184, 217, 122, 100, 217, 157, 242, 38, 100, 217, 157, 232, 71,
201, 238, 100, 214, 6, 100, 232, 100, 65, 205, 190, 101, 100, 232, 100,
65, 205, 190, 104, 100, 232, 100, 65, 205, 190, 133, 100, 18, 204, 165,
100, 17, 192, 76, 100, 17, 101, 100, 17, 104, 100, 17, 133, 100, 17, 134,
100, 17, 151, 100, 17, 170, 100, 17, 179, 100, 17, 174, 100, 17, 182,
100, 1, 64, 100, 1, 71, 100, 1, 70, 100, 1, 74, 100, 1, 68, 100, 1, 212,
0, 100, 1, 197, 104, 100, 1, 234, 171, 100, 1, 181, 100, 1, 250, 214,
100, 1, 249, 3, 100, 1, 166, 100, 1, 208, 239, 100, 1, 231, 233, 100, 1,
172, 100, 1, 177, 100, 1, 188, 100, 1, 204, 64, 100, 1, 189, 100, 1, 238,
0, 100, 1, 246, 117, 100, 1, 223, 62, 100, 1, 168, 100, 1, 167, 100, 1,
194, 169, 100, 1, 233, 97, 100, 1, 160, 100, 1, 221, 250, 100, 1, 198,
118, 100, 1, 192, 112, 100, 1, 230, 99, 100, 1, 192, 0, 100, 1, 219, 222,
100, 1, 192, 57, 100, 1, 242, 215, 100, 1, 199, 27, 184, 18, 57, 100, 1,
199, 27, 71, 100, 1, 199, 27, 70, 100, 1, 199, 27, 74, 100, 1, 199, 27,
68, 100, 1, 199, 27, 212, 0, 100, 1, 199, 27, 197, 104, 100, 1, 199, 27,
250, 214, 100, 1, 199, 27, 249, 3, 100, 1, 199, 27, 166, 100, 1, 199, 27,
208, 239, 100, 1, 199, 27, 231, 233, 100, 1, 199, 27, 172, 100, 1, 199,
27, 189, 100, 1, 199, 27, 238, 0, 100, 1, 199, 27, 246, 117, 100, 1, 199,
27, 223, 62, 100, 1, 199, 27, 198, 118, 100, 1, 199, 27, 168, 100, 1,
199, 27, 194, 169, 100, 1, 199, 27, 160, 100, 1, 199, 27, 231, 230, 100,
1, 199, 27, 230, 99, 100, 1, 199, 27, 223, 19, 100, 1, 199, 27, 214, 50,
100, 1, 199, 27, 235, 17, 100, 1, 203, 117, 71, 100, 1, 203, 117, 70,
100, 1, 203, 117, 223, 73, 100, 1, 203, 117, 197, 104, 100, 1, 203, 117,
68, 100, 1, 203, 117, 250, 214, 100, 1, 203, 117, 160, 100, 1, 203, 117,
231, 233, 100, 1, 203, 117, 144, 100, 1, 203, 117, 166, 100, 1, 203, 117,
204, 64, 100, 1, 203, 117, 189, 100, 1, 203, 117, 238, 0, 100, 1, 203,
117, 223, 62, 100, 1, 203, 117, 233, 97, 100, 1, 203, 117, 231, 230, 100,
1, 203, 117, 230, 99, 100, 1, 203, 117, 198, 118, 100, 1, 203, 117, 192,
112, 100, 1, 203, 117, 208, 68, 100, 1, 203, 117, 246, 117, 100, 1, 203,
117, 192, 71, 100, 1, 217, 157, 70, 100, 1, 217, 157, 160, 100, 1, 217,
157, 167, 100, 1, 217, 157, 233, 97, 100, 1, 217, 157, 192, 71, 100, 1,
246, 118, 4, 103, 236, 111, 100, 1, 251, 18, 231, 213, 250, 169, 101,
100, 1, 251, 18, 231, 213, 196, 7, 101, 100, 1, 251, 18, 231, 213, 237,
217, 100, 1, 251, 18, 231, 213, 197, 114, 100, 1, 251, 18, 231, 213, 223,
121, 197, 114, 100, 1, 251, 18, 231, 213, 248, 210, 100, 1, 251, 18, 231,
213, 112, 248, 210, 100, 1, 251, 18, 231, 213, 64, 100, 1, 251, 18, 231,
213, 70, 100, 1, 251, 18, 231, 213, 160, 100, 1, 251, 18, 231, 213, 214,
165, 100, 1, 251, 18, 231, 213, 247, 19, 100, 1, 251, 18, 231, 213, 198,
83, 100, 1, 251, 18, 231, 213, 198, 71, 100, 1, 251, 18, 231, 213, 237,
161, 100, 1, 251, 18, 231, 213, 213, 178, 100, 1, 251, 18, 231, 213, 189,
100, 1, 251, 18, 231, 213, 238, 0, 100, 1, 251, 18, 231, 213, 166, 100,
1, 251, 18, 231, 213, 210, 94, 100, 1, 251, 18, 231, 213, 202, 92, 100,
1, 251, 18, 231, 213, 192, 71, 100, 1, 251, 18, 231, 213, 192, 112, 100,
1, 251, 18, 231, 213, 251, 72, 100, 1, 199, 27, 251, 18, 231, 213, 189,
100, 1, 199, 27, 251, 18, 231, 213, 192, 71, 100, 1, 217, 157, 251, 18,
231, 213, 231, 84, 100, 1, 217, 157, 251, 18, 231, 213, 214, 165, 100, 1,
217, 157, 251, 18, 231, 213, 247, 19, 100, 1, 217, 157, 251, 18, 231,
213, 223, 28, 100, 1, 217, 157, 251, 18, 231, 213, 198, 83, 100, 1, 217,
157, 251, 18, 231, 213, 237, 145, 100, 1, 217, 157, 251, 18, 231, 213,
189, 100, 1, 217, 157, 251, 18, 231, 213, 237, 40, 100, 1, 217, 157, 251,
18, 231, 213, 202, 92, 100, 1, 217, 157, 251, 18, 231, 213, 238, 109,
100, 1, 217, 157, 251, 18, 231, 213, 192, 71, 100, 1, 217, 157, 251, 18,
231, 213, 192, 112, 100, 1, 251, 18, 231, 213, 138, 68, 100, 1, 251, 18,
231, 213, 138, 168, 100, 1, 217, 157, 251, 18, 231, 213, 248, 54, 100, 1,
251, 18, 231, 213, 237, 244, 100, 1, 217, 157, 251, 18, 231, 213, 219,
222, 21, 22, 211, 98, 21, 22, 249, 236, 21, 22, 251, 243, 21, 22, 194,
114, 21, 22, 209, 135, 21, 22, 210, 190, 21, 22, 209, 0, 21, 22, 200, 88,
21, 22, 222, 64, 21, 22, 220, 235, 21, 22, 217, 92, 21, 22, 213, 93, 21,
22, 215, 35, 21, 22, 220, 52, 21, 22, 202, 165, 21, 22, 206, 1, 21, 22,
203, 173, 21, 22, 204, 16, 21, 22, 203, 135, 21, 22, 192, 223, 21, 22,
193, 75, 21, 22, 208, 15, 21, 22, 212, 207, 21, 22, 211, 233, 212, 207,
21, 22, 212, 206, 21, 22, 211, 233, 212, 206, 21, 22, 212, 205, 21, 22,
211, 233, 212, 205, 21, 22, 212, 204, 21, 22, 211, 233, 212, 204, 21, 22,
206, 172, 21, 22, 206, 171, 21, 22, 206, 170, 21, 22, 206, 169, 21, 22,
206, 168, 21, 22, 206, 176, 21, 22, 211, 233, 211, 93, 21, 22, 211, 233,
200, 228, 21, 22, 211, 233, 222, 184, 21, 22, 211, 233, 247, 52, 21, 22,
211, 233, 218, 236, 21, 22, 211, 233, 215, 151, 21, 22, 211, 233, 206,
158, 21, 22, 211, 233, 204, 66, 21, 22, 234, 184, 194, 202, 21, 22, 194,
88, 194, 202, 21, 22, 52, 2, 207, 81, 21, 22, 52, 208, 39, 236, 114, 21,
22, 208, 111, 206, 173, 21, 22, 194, 89, 219, 73, 21, 22, 194, 89, 220,
184, 21, 22, 199, 137, 21, 22, 199, 139, 21, 22, 198, 63, 21, 22, 198,
65, 21, 22, 198, 70, 21, 22, 199, 43, 21, 22, 199, 45, 21, 22, 205, 255,
203, 140, 21, 22, 205, 255, 203, 203, 21, 22, 205, 255, 229, 16, 21, 22,
96, 230, 138, 21, 22, 96, 237, 74, 231, 150, 21, 22, 96, 231, 230, 21,
22, 96, 230, 143, 21, 22, 205, 255, 222, 194, 21, 22, 96, 222, 192, 21,
22, 248, 112, 237, 74, 165, 21, 22, 248, 112, 237, 74, 150, 21, 22, 96,
237, 69, 206, 158, 219, 185, 195, 229, 219, 235, 219, 185, 1, 160, 219,
185, 1, 221, 250, 219, 185, 1, 231, 233, 219, 185, 1, 231, 84, 219, 185,
1, 214, 165, 219, 185, 1, 247, 19, 219, 185, 1, 246, 117, 219, 185, 1,
223, 62, 219, 185, 1, 223, 28, 219, 185, 1, 193, 97, 219, 185, 1, 189,
219, 185, 1, 199, 240, 219, 185, 1, 238, 0, 219, 185, 1, 237, 40, 219,
185, 1, 181, 219, 185, 1, 166, 219, 185, 1, 210, 94, 219, 185, 1, 249, 3,
219, 185, 1, 248, 54, 219, 185, 1, 172, 219, 185, 1, 168, 219, 185, 1,
167, 219, 185, 1, 177, 219, 185, 1, 194, 169, 219, 185, 1, 204, 64, 219,
185, 1, 202, 92, 219, 185, 1, 188, 219, 185, 1, 144, 219, 185, 1, 230,
134, 219, 185, 1, 198, 223, 219, 185, 18, 3, 64, 219, 185, 18, 3, 70,
219, 185, 18, 3, 68, 219, 185, 18, 3, 234, 171, 219, 185, 18, 3, 251, 63,
219, 185, 18, 3, 211, 194, 219, 185, 18, 3, 250, 8, 219, 185, 18, 3, 71,
219, 185, 18, 3, 74, 219, 185, 201, 164, 1, 168, 219, 185, 201, 164, 1,
167, 219, 185, 201, 164, 1, 194, 169, 219, 185, 2, 1, 160, 219, 185, 2,
1, 214, 165, 219, 185, 2, 1, 250, 168, 219, 185, 2, 1, 189, 219, 185, 2,
1, 181, 219, 185, 2, 1, 166, 219, 185, 2, 1, 172, 219, 185, 2, 1, 167,
219, 185, 2, 1, 177, 219, 185, 3, 215, 221, 219, 185, 3, 222, 36, 219,
185, 3, 206, 92, 219, 185, 3, 219, 73, 219, 185, 233, 204, 77, 219, 185,
208, 159, 77, 219, 185, 17, 192, 76, 219, 185, 17, 101, 219, 185, 17,
104, 219, 185, 17, 133, 219, 185, 17, 134, 219, 185, 17, 151, 219, 185,
17, 170, 219, 185, 17, 179, 219, 185, 17, 174, 219, 185, 17, 182, 53,
220, 43, 1, 160, 53, 220, 43, 1, 193, 209, 53, 220, 43, 1, 214, 165, 53,
220, 43, 1, 198, 118, 53, 220, 43, 1, 188, 53, 220, 43, 1, 168, 53, 220,
43, 1, 189, 53, 220, 43, 1, 199, 240, 53, 220, 43, 1, 177, 53, 220, 43,
1, 166, 53, 220, 43, 1, 210, 94, 53, 220, 43, 1, 172, 53, 220, 43, 1,
233, 97, 53, 220, 43, 1, 196, 157, 53, 220, 43, 1, 144, 53, 220, 43, 1,
208, 239, 53, 220, 43, 1, 221, 250, 53, 220, 43, 1, 198, 108, 53, 220,
43, 1, 181, 53, 220, 43, 1, 64, 53, 220, 43, 1, 70, 53, 220, 43, 1, 234,
171, 53, 220, 43, 1, 234, 157, 53, 220, 43, 1, 68, 53, 220, 43, 1, 211,
194, 53, 220, 43, 1, 74, 53, 220, 43, 1, 197, 104, 53, 220, 43, 1, 71,
53, 220, 43, 1, 250, 6, 53, 220, 43, 1, 251, 63, 53, 220, 43, 1, 199, 16,
53, 220, 43, 1, 199, 15, 53, 220, 43, 1, 199, 14, 53, 220, 43, 1, 199,
13, 53, 220, 43, 1, 199, 12, 214, 177, 53, 219, 30, 1, 139, 208, 239,
214, 177, 53, 219, 30, 1, 132, 208, 239, 214, 177, 53, 219, 30, 1, 139,
160, 214, 177, 53, 219, 30, 1, 139, 193, 209, 214, 177, 53, 219, 30, 1,
139, 214, 165, 214, 177, 53, 219, 30, 1, 132, 160, 214, 177, 53, 219, 30,
1, 132, 193, 209, 214, 177, 53, 219, 30, 1, 132, 214, 165, 214, 177, 53,
219, 30, 1, 139, 198, 118, 214, 177, 53, 219, 30, 1, 139, 188, 214, 177,
53, 219, 30, 1, 139, 168, 214, 177, 53, 219, 30, 1, 132, 198, 118, 214,
177, 53, 219, 30, 1, 132, 188, 214, 177, 53, 219, 30, 1, 132, 168, 214,
177, 53, 219, 30, 1, 139, 189, 214, 177, 53, 219, 30, 1, 139, 199, 240,
214, 177, 53, 219, 30, 1, 139, 181, 214, 177, 53, 219, 30, 1, 132, 189,
214, 177, 53, 219, 30, 1, 132, 199, 240, 214, 177, 53, 219, 30, 1, 132,
181, 214, 177, 53, 219, 30, 1, 139, 166, 214, 177, 53, 219, 30, 1, 139,
210, 94, 214, 177, 53, 219, 30, 1, 139, 172, 214, 177, 53, 219, 30, 1,
132, 166, 214, 177, 53, 219, 30, 1, 132, 210, 94, 214, 177, 53, 219, 30,
1, 132, 172, 214, 177, 53, 219, 30, 1, 139, 233, 97, 214, 177, 53, 219,
30, 1, 139, 196, 157, 214, 177, 53, 219, 30, 1, 139, 177, 214, 177, 53,
219, 30, 1, 132, 233, 97, 214, 177, 53, 219, 30, 1, 132, 196, 157, 214,
177, 53, 219, 30, 1, 132, 177, 214, 177, 53, 219, 30, 1, 139, 144, 214,
177, 53, 219, 30, 1, 139, 238, 0, 214, 177, 53, 219, 30, 1, 139, 249, 3,
214, 177, 53, 219, 30, 1, 132, 144, 214, 177, 53, 219, 30, 1, 132, 238,
0, 214, 177, 53, 219, 30, 1, 132, 249, 3, 214, 177, 53, 219, 30, 1, 139,
220, 240, 214, 177, 53, 219, 30, 1, 139, 193, 174, 214, 177, 53, 219, 30,
1, 132, 220, 240, 214, 177, 53, 219, 30, 1, 132, 193, 174, 214, 177, 53,
219, 30, 1, 139, 201, 175, 214, 177, 53, 219, 30, 1, 132, 201, 175, 214,
177, 53, 219, 30, 18, 3, 18, 203, 183, 214, 177, 53, 219, 30, 18, 3, 252,
33, 214, 177, 53, 219, 30, 18, 3, 223, 224, 214, 177, 53, 219, 30, 18, 3,
68, 214, 177, 53, 219, 30, 18, 3, 196, 251, 214, 177, 53, 219, 30, 18, 3,
71, 214, 177, 53, 219, 30, 18, 3, 251, 108, 214, 177, 53, 219, 30, 18, 3,
74, 214, 177, 53, 219, 30, 18, 3, 212, 26, 214, 177, 53, 219, 30, 18, 3,
197, 104, 214, 177, 53, 219, 30, 18, 3, 249, 236, 214, 177, 53, 219, 30,
18, 3, 251, 243, 214, 177, 53, 219, 30, 18, 3, 196, 243, 214, 177, 53,
219, 30, 18, 3, 211, 98, 214, 177, 53, 219, 30, 18, 3, 212, 23, 214, 177,
53, 219, 30, 18, 3, 197, 99, 214, 177, 53, 219, 30, 18, 3, 223, 73, 214,
177, 53, 219, 30, 1, 52, 196, 236, 214, 177, 53, 219, 30, 1, 52, 214,
167, 214, 177, 53, 219, 30, 1, 52, 215, 151, 214, 177, 53, 219, 30, 1,
52, 218, 236, 214, 177, 53, 219, 30, 1, 52, 222, 184, 214, 177, 53, 219,
30, 1, 52, 238, 95, 214, 177, 53, 219, 30, 1, 52, 249, 226, 214, 177, 53,
219, 30, 158, 217, 126, 214, 177, 53, 219, 30, 158, 217, 125, 214, 177,
53, 219, 30, 17, 192, 76, 214, 177, 53, 219, 30, 17, 101, 214, 177, 53,
219, 30, 17, 104, 214, 177, 53, 219, 30, 17, 133, 214, 177, 53, 219, 30,
17, 134, 214, 177, 53, 219, 30, 17, 151, 214, 177, 53, 219, 30, 17, 170,
214, 177, 53, 219, 30, 17, 179, 214, 177, 53, 219, 30, 17, 174, 214, 177,
53, 219, 30, 17, 182, 214, 177, 53, 219, 30, 126, 17, 101, 214, 177, 53,
219, 30, 3, 220, 166, 214, 177, 53, 219, 30, 3, 220, 165, 93, 16, 210,
201, 93, 16, 215, 201, 221, 105, 93, 16, 210, 13, 221, 105, 93, 16, 248,
92, 221, 105, 93, 16, 247, 95, 221, 105, 93, 16, 209, 130, 221, 105, 93,
16, 209, 124, 221, 105, 93, 16, 209, 122, 221, 105, 93, 16, 209, 128,
221, 105, 93, 16, 209, 126, 221, 105, 93, 16, 237, 202, 221, 105, 93, 16,
237, 198, 221, 105, 93, 16, 237, 197, 221, 105, 93, 16, 237, 200, 221,
105, 93, 16, 237, 199, 221, 105, 93, 16, 237, 196, 221, 105, 93, 16, 198,
2, 93, 16, 215, 201, 207, 42, 93, 16, 210, 13, 207, 42, 93, 16, 248, 92,
207, 42, 93, 16, 247, 95, 207, 42, 93, 16, 209, 130, 207, 42, 93, 16,
209, 124, 207, 42, 93, 16, 209, 122, 207, 42, 93, 16, 209, 128, 207, 42,
93, 16, 209, 126, 207, 42, 93, 16, 237, 202, 207, 42, 93, 16, 237, 198,
207, 42, 93, 16, 237, 197, 207, 42, 93, 16, 237, 200, 207, 42, 93, 16,
237, 199, 207, 42, 93, 16, 237, 196, 207, 42, 247, 115, 1, 160, 247, 115,
1, 231, 233, 247, 115, 1, 214, 165, 247, 115, 1, 214, 108, 247, 115, 1,
166, 247, 115, 1, 249, 3, 247, 115, 1, 172, 247, 115, 1, 215, 247, 247,
115, 1, 189, 247, 115, 1, 238, 0, 247, 115, 1, 181, 247, 115, 1, 213, 88,
247, 115, 1, 247, 19, 247, 115, 1, 223, 62, 247, 115, 1, 212, 201, 247,
115, 1, 212, 192, 247, 115, 1, 168, 247, 115, 1, 167, 247, 115, 1, 177,
247, 115, 1, 196, 157, 247, 115, 1, 188, 247, 115, 1, 64, 247, 115, 1,
144, 247, 115, 18, 3, 70, 247, 115, 18, 3, 68, 247, 115, 18, 3, 71, 247,
115, 18, 3, 74, 247, 115, 18, 3, 251, 108, 247, 115, 211, 42, 247, 115,
234, 80, 80, 205, 208, 53, 126, 1, 139, 160, 53, 126, 1, 139, 221, 250,
53, 126, 1, 139, 220, 224, 53, 126, 1, 132, 160, 53, 126, 1, 132, 220,
224, 53, 126, 1, 132, 221, 250, 53, 126, 1, 214, 165, 53, 126, 1, 139,
247, 19, 53, 126, 1, 139, 246, 117, 53, 126, 1, 132, 247, 19, 53, 126, 1,
132, 188, 53, 126, 1, 132, 246, 117, 53, 126, 1, 212, 201, 53, 126, 1,
208, 21, 53, 126, 1, 139, 208, 19, 53, 126, 1, 238, 0, 53, 126, 1, 132,
208, 19, 53, 126, 1, 208, 30, 53, 126, 1, 139, 189, 53, 126, 1, 139, 199,
240, 53, 126, 1, 132, 189, 53, 126, 1, 132, 199, 240, 53, 126, 1, 181,
53, 126, 1, 249, 3, 53, 126, 1, 139, 166, 53, 126, 1, 139, 210, 94, 53,
126, 1, 139, 233, 97, 53, 126, 1, 132, 166, 53, 126, 1, 132, 233, 97, 53,
126, 1, 132, 210, 94, 53, 126, 1, 172, 53, 126, 1, 132, 168, 53, 126, 1,
139, 168, 53, 126, 1, 167, 53, 126, 1, 206, 207, 53, 126, 1, 177, 53,
126, 1, 219, 29, 53, 126, 1, 194, 169, 53, 126, 1, 139, 204, 64, 53, 126,
1, 139, 202, 92, 53, 126, 1, 139, 188, 53, 126, 1, 139, 144, 53, 126, 1,
219, 137, 53, 126, 1, 64, 53, 126, 1, 132, 144, 53, 126, 1, 70, 53, 126,
1, 223, 224, 53, 126, 1, 68, 53, 126, 1, 196, 251, 53, 126, 1, 234, 171,
53, 126, 1, 211, 194, 53, 126, 1, 220, 166, 53, 126, 1, 230, 206, 188,
53, 126, 116, 3, 217, 35, 167, 53, 126, 116, 3, 217, 35, 177, 53, 126,
116, 3, 220, 185, 200, 122, 220, 155, 53, 126, 3, 217, 181, 222, 118,
220, 155, 53, 126, 116, 3, 52, 214, 165, 53, 126, 116, 3, 132, 166, 53,
126, 116, 3, 139, 208, 20, 211, 164, 132, 166, 53, 126, 116, 3, 172, 53,
126, 116, 3, 249, 3, 53, 126, 116, 3, 188, 53, 126, 3, 206, 66, 53, 126,
18, 3, 64, 53, 126, 18, 3, 217, 181, 206, 20, 53, 126, 18, 3, 252, 33,
53, 126, 18, 3, 200, 132, 252, 33, 53, 126, 18, 3, 70, 53, 126, 18, 3,
223, 224, 53, 126, 18, 3, 197, 104, 53, 126, 18, 3, 196, 250, 53, 126,
18, 3, 68, 53, 126, 18, 3, 196, 251, 53, 126, 18, 3, 74, 53, 126, 18, 3,
212, 27, 63, 53, 126, 18, 3, 211, 98, 53, 126, 18, 3, 71, 53, 126, 18, 3,
251, 108, 53, 126, 18, 3, 211, 194, 53, 126, 18, 3, 251, 63, 53, 126, 18,
3, 126, 251, 63, 53, 126, 18, 3, 212, 27, 58, 53, 126, 3, 217, 181, 222,
117, 53, 126, 3, 199, 17, 53, 126, 3, 199, 16, 53, 126, 3, 221, 209, 199,
15, 53, 126, 3, 221, 209, 199, 14, 53, 126, 3, 221, 209, 199, 13, 53,
126, 3, 208, 76, 230, 98, 53, 126, 3, 217, 181, 206, 50, 53, 126, 3, 221,
208, 222, 98, 53, 126, 38, 238, 165, 236, 114, 53, 126, 229, 7, 17, 192,
76, 53, 126, 229, 7, 17, 101, 53, 126, 229, 7, 17, 104, 53, 126, 229, 7,
17, 133, 53, 126, 229, 7, 17, 134, 53, 126, 229, 7, 17, 151, 53, 126,
229, 7, 17, 170, 53, 126, 229, 7, 17, 179, 53, 126, 229, 7, 17, 174, 53,
126, 229, 7, 17, 182, 53, 126, 126, 17, 192, 76, 53, 126, 126, 17, 101,
53, 126, 126, 17, 104, 53, 126, 126, 17, 133, 53, 126, 126, 17, 134, 53,
126, 126, 17, 151, 53, 126, 126, 17, 170, 53, 126, 126, 17, 179, 53, 126,
126, 17, 174, 53, 126, 126, 17, 182, 53, 126, 3, 194, 66, 53, 126, 3,
194, 65, 53, 126, 3, 206, 5, 53, 126, 3, 222, 25, 53, 126, 3, 228, 191,
53, 126, 3, 236, 129, 53, 126, 3, 207, 168, 207, 16, 208, 30, 53, 126, 3,
217, 181, 193, 98, 53, 126, 3, 222, 152, 53, 126, 3, 222, 151, 53, 126,
3, 206, 15, 53, 126, 3, 206, 14, 53, 126, 3, 230, 35, 53, 126, 3, 247,
16, 38, 235, 101, 242, 122, 251, 143, 38, 237, 13, 38, 223, 167, 38, 235,
92, 54, 38, 198, 170, 236, 114, 38, 193, 222, 63, 38, 194, 58, 219, 176,
63, 38, 211, 184, 122, 63, 38, 55, 211, 184, 122, 63, 38, 152, 246, 139,
201, 208, 63, 38, 201, 194, 246, 139, 201, 208, 63, 38, 210, 232, 58, 38,
55, 210, 232, 58, 38, 210, 232, 63, 38, 210, 232, 211, 110, 38, 8, 2, 1,
194, 203, 63, 38, 8, 2, 1, 163, 194, 203, 63, 148, 3, 197, 87, 207, 138,
148, 3, 197, 87, 246, 236, 148, 3, 246, 154, 148, 3, 201, 98, 148, 3,
248, 8, 148, 1, 251, 42, 148, 1, 251, 43, 200, 58, 148, 1, 223, 220, 148,
1, 223, 221, 200, 58, 148, 1, 197, 90, 148, 1, 197, 91, 200, 58, 148, 1,
208, 76, 207, 201, 148, 1, 208, 76, 207, 202, 200, 58, 148, 1, 220, 185,
220, 3, 148, 1, 220, 185, 220, 4, 200, 58, 148, 1, 234, 129, 148, 1, 251,
60, 148, 1, 211, 229, 148, 1, 211, 230, 200, 58, 148, 1, 160, 148, 1,
222, 174, 217, 184, 148, 1, 231, 233, 148, 1, 231, 234, 230, 239, 148, 1,
214, 165, 148, 1, 247, 19, 148, 1, 247, 20, 220, 171, 148, 1, 223, 62,
148, 1, 223, 63, 223, 32, 148, 1, 212, 201, 148, 1, 200, 181, 220, 62,
148, 1, 200, 181, 215, 196, 217, 184, 148, 1, 238, 1, 215, 196, 250, 254,
148, 1, 238, 1, 215, 196, 217, 184, 148, 1, 215, 97, 208, 33, 148, 1,
189, 148, 1, 200, 181, 200, 92, 148, 1, 238, 0, 148, 1, 238, 1, 217, 206,
148, 1, 181, 148, 1, 166, 148, 1, 211, 78, 222, 110, 148, 1, 249, 3, 148,
1, 249, 4, 222, 37, 148, 1, 172, 148, 1, 168, 148, 1, 167, 148, 1, 177,
148, 1, 194, 169, 148, 1, 206, 101, 206, 78, 148, 1, 206, 101, 206, 27,
148, 1, 188, 148, 1, 144, 148, 3, 207, 191, 148, 18, 3, 200, 58, 148, 18,
3, 197, 86, 148, 18, 3, 197, 87, 206, 23, 148, 18, 3, 201, 133, 148, 18,
3, 201, 134, 223, 212, 148, 18, 3, 208, 76, 207, 201, 148, 18, 3, 208,
76, 207, 202, 200, 58, 148, 18, 3, 220, 185, 220, 3, 148, 18, 3, 220,
185, 220, 4, 200, 58, 148, 18, 3, 200, 133, 148, 18, 3, 200, 134, 207,
201, 148, 18, 3, 200, 134, 200, 58, 148, 18, 3, 200, 134, 207, 202, 200,
58, 148, 18, 3, 210, 136, 148, 18, 3, 210, 137, 200, 58, 148, 251, 120,
251, 119, 148, 1, 222, 140, 206, 22, 148, 1, 221, 215, 206, 22, 148, 1,
197, 186, 206, 22, 148, 1, 234, 165, 206, 22, 148, 1, 196, 124, 206, 22,
148, 1, 192, 102, 206, 22, 148, 1, 250, 29, 206, 22, 148, 17, 192, 76,
148, 17, 101, 148, 17, 104, 148, 17, 133, 148, 17, 134, 148, 17, 151,
148, 17, 170, 148, 17, 179, 148, 17, 174, 148, 17, 182, 148, 211, 5, 148,
211, 34, 148, 194, 50, 148, 246, 209, 211, 27, 148, 246, 209, 203, 94,
148, 246, 209, 210, 229, 148, 211, 33, 148, 35, 16, 236, 121, 148, 35,
16, 237, 73, 148, 35, 16, 235, 45, 148, 35, 16, 237, 206, 148, 35, 16,
237, 207, 201, 98, 148, 35, 16, 236, 214, 148, 35, 16, 237, 248, 148, 35,
16, 237, 49, 148, 35, 16, 237, 230, 148, 35, 16, 237, 207, 231, 152, 148,
35, 16, 38, 200, 51, 148, 35, 16, 38, 234, 77, 148, 35, 16, 38, 222, 32,
148, 35, 16, 38, 222, 34, 148, 35, 16, 38, 223, 36, 148, 35, 16, 38, 222,
33, 4, 223, 36, 148, 35, 16, 38, 222, 35, 4, 223, 36, 148, 35, 16, 38,
248, 77, 148, 35, 16, 38, 230, 243, 148, 35, 16, 207, 99, 211, 184, 235,
56, 148, 35, 16, 207, 99, 211, 184, 237, 246, 148, 35, 16, 207, 99, 242,
84, 198, 31, 148, 35, 16, 207, 99, 242, 84, 200, 143, 148, 35, 16, 220,
26, 211, 184, 211, 19, 148, 35, 16, 220, 26, 211, 184, 209, 35, 148, 35,
16, 220, 26, 242, 84, 209, 228, 148, 35, 16, 220, 26, 242, 84, 209, 211,
148, 35, 16, 220, 26, 211, 184, 209, 255, 201, 122, 3, 211, 2, 201, 122,
3, 211, 15, 201, 122, 3, 211, 11, 201, 122, 1, 64, 201, 122, 1, 70, 201,
122, 1, 68, 201, 122, 1, 251, 108, 201, 122, 1, 74, 201, 122, 1, 71, 201,
122, 1, 233, 230, 201, 122, 1, 160, 201, 122, 1, 208, 239, 201, 122, 1,
231, 233, 201, 122, 1, 214, 165, 201, 122, 1, 247, 19, 201, 122, 1, 223,
62, 201, 122, 1, 192, 112, 201, 122, 1, 212, 201, 201, 122, 1, 189, 201,
122, 1, 238, 0, 201, 122, 1, 181, 201, 122, 1, 166, 201, 122, 1, 233, 97,
201, 122, 1, 196, 157, 201, 122, 1, 249, 3, 201, 122, 1, 172, 201, 122,
1, 168, 201, 122, 1, 167, 201, 122, 1, 177, 201, 122, 1, 194, 169, 201,
122, 1, 188, 201, 122, 1, 193, 209, 201, 122, 1, 144, 201, 122, 116, 3,
211, 31, 201, 122, 116, 3, 211, 4, 201, 122, 116, 3, 211, 1, 201, 122,
18, 3, 211, 18, 201, 122, 18, 3, 211, 0, 201, 122, 18, 3, 211, 24, 201,
122, 18, 3, 211, 10, 201, 122, 18, 3, 211, 32, 201, 122, 18, 3, 211, 20,
201, 122, 3, 211, 35, 201, 122, 3, 196, 11, 201, 122, 116, 3, 210, 217,
172, 201, 122, 116, 3, 210, 217, 194, 169, 201, 122, 1, 221, 250, 201,
122, 1, 201, 55, 201, 122, 17, 192, 76, 201, 122, 17, 101, 201, 122, 17,
104, 201, 122, 17, 133, 201, 122, 17, 134, 201, 122, 17, 151, 201, 122,
17, 170, 201, 122, 17, 179, 201, 122, 17, 174, 201, 122, 17, 182, 201,
122, 249, 246, 201, 122, 1, 207, 171, 201, 122, 1, 219, 232, 201, 122, 1,
248, 54, 201, 122, 1, 52, 222, 184, 201, 122, 1, 52, 218, 236, 248, 169,
1, 64, 248, 169, 1, 203, 86, 64, 248, 169, 1, 144, 248, 169, 1, 203, 86,
144, 248, 169, 1, 217, 155, 144, 248, 169, 1, 249, 3, 248, 169, 1, 222,
95, 249, 3, 248, 169, 1, 166, 248, 169, 1, 203, 86, 166, 248, 169, 1,
181, 248, 169, 1, 217, 155, 181, 248, 169, 1, 194, 169, 248, 169, 1, 203,
86, 194, 169, 248, 169, 1, 211, 50, 194, 169, 248, 169, 1, 231, 233, 248,
169, 1, 203, 86, 231, 233, 248, 169, 1, 223, 62, 248, 169, 1, 238, 0,
248, 169, 1, 167, 248, 169, 1, 203, 86, 167, 248, 169, 1, 172, 248, 169,
1, 203, 86, 172, 248, 169, 1, 202, 169, 189, 248, 169, 1, 213, 115, 189,
248, 169, 1, 188, 248, 169, 1, 203, 86, 188, 248, 169, 1, 217, 155, 188,
248, 169, 1, 168, 248, 169, 1, 203, 86, 168, 248, 169, 1, 214, 165, 248,
169, 1, 177, 248, 169, 1, 203, 86, 177, 248, 169, 1, 212, 201, 248, 169,
1, 247, 19, 248, 169, 1, 214, 255, 248, 169, 1, 217, 82, 248, 169, 1, 70,
248, 169, 1, 68, 248, 169, 3, 199, 21, 248, 169, 18, 3, 71, 248, 169, 18,
3, 211, 50, 71, 248, 169, 18, 3, 234, 171, 248, 169, 18, 3, 70, 248, 169,
18, 3, 222, 95, 70, 248, 169, 18, 3, 74, 248, 169, 18, 3, 222, 95, 74,
248, 169, 18, 3, 68, 248, 169, 18, 3, 124, 39, 203, 86, 188, 248, 169,
116, 3, 214, 167, 248, 169, 116, 3, 230, 124, 248, 169, 211, 13, 248,
169, 211, 9, 248, 169, 16, 248, 18, 215, 97, 216, 238, 248, 169, 16, 248,
18, 210, 5, 248, 169, 16, 248, 18, 222, 211, 248, 169, 16, 248, 18, 211,
13, 219, 243, 1, 160, 219, 243, 1, 221, 132, 219, 243, 1, 221, 250, 219,
243, 1, 231, 233, 219, 243, 1, 231, 14, 219, 243, 1, 214, 165, 219, 243,
1, 247, 19, 219, 243, 1, 246, 117, 219, 243, 1, 223, 62, 219, 243, 1,
212, 201, 219, 243, 1, 189, 219, 243, 1, 199, 240, 219, 243, 1, 238, 0,
219, 243, 1, 181, 219, 243, 1, 166, 219, 243, 1, 209, 234, 219, 243, 1,
210, 94, 219, 243, 1, 233, 97, 219, 243, 1, 232, 208, 219, 243, 1, 249,
3, 219, 243, 1, 247, 249, 219, 243, 1, 172, 219, 243, 1, 216, 98, 219,
243, 1, 198, 118, 219, 243, 1, 198, 108, 219, 243, 1, 235, 17, 219, 243,
1, 168, 219, 243, 1, 167, 219, 243, 1, 177, 219, 243, 1, 144, 219, 243,
1, 229, 131, 219, 243, 1, 196, 157, 219, 243, 1, 188, 219, 243, 1, 204,
64, 219, 243, 1, 194, 169, 219, 243, 1, 64, 219, 243, 201, 164, 1, 168,
219, 243, 201, 164, 1, 167, 219, 243, 18, 3, 252, 33, 219, 243, 18, 3,
70, 219, 243, 18, 3, 74, 219, 243, 18, 3, 211, 194, 219, 243, 18, 3, 68,
219, 243, 18, 3, 196, 251, 219, 243, 18, 3, 71, 219, 243, 116, 3, 222,
184, 219, 243, 116, 3, 218, 236, 219, 243, 116, 3, 165, 219, 243, 116, 3,
215, 151, 219, 243, 116, 3, 211, 93, 219, 243, 116, 3, 150, 219, 243,
116, 3, 200, 228, 219, 243, 116, 3, 212, 173, 219, 243, 116, 3, 222, 117,
219, 243, 3, 208, 31, 219, 243, 3, 212, 241, 219, 243, 209, 38, 200, 176,
219, 243, 209, 38, 212, 185, 199, 131, 200, 176, 219, 243, 209, 38, 246,
126, 219, 243, 209, 38, 198, 100, 246, 126, 219, 243, 209, 38, 198, 99,
219, 243, 17, 192, 76, 219, 243, 17, 101, 219, 243, 17, 104, 219, 243,
17, 133, 219, 243, 17, 134, 219, 243, 17, 151, 219, 243, 17, 170, 219,
243, 17, 179, 219, 243, 17, 174, 219, 243, 17, 182, 219, 243, 1, 198, 83,
219, 243, 1, 198, 71, 219, 243, 1, 237, 161, 211, 227, 242, 208, 17, 192,
76, 211, 227, 242, 208, 17, 101, 211, 227, 242, 208, 17, 104, 211, 227,
242, 208, 17, 133, 211, 227, 242, 208, 17, 134, 211, 227, 242, 208, 17,
151, 211, 227, 242, 208, 17, 170, 211, 227, 242, 208, 17, 179, 211, 227,
242, 208, 17, 174, 211, 227, 242, 208, 17, 182, 211, 227, 242, 208, 1,
177, 211, 227, 242, 208, 1, 250, 26, 211, 227, 242, 208, 1, 251, 80, 211,
227, 242, 208, 1, 250, 214, 211, 227, 242, 208, 1, 251, 35, 211, 227,
242, 208, 1, 220, 184, 211, 227, 242, 208, 1, 251, 251, 211, 227, 242,
208, 1, 251, 252, 211, 227, 242, 208, 1, 251, 250, 211, 227, 242, 208, 1,
251, 244, 211, 227, 242, 208, 1, 219, 209, 211, 227, 242, 208, 1, 223,
96, 211, 227, 242, 208, 1, 223, 225, 211, 227, 242, 208, 1, 223, 118,
211, 227, 242, 208, 1, 223, 105, 211, 227, 242, 208, 1, 219, 36, 211,
227, 242, 208, 1, 197, 111, 211, 227, 242, 208, 1, 197, 109, 211, 227,
242, 208, 1, 197, 47, 211, 227, 242, 208, 1, 196, 243, 211, 227, 242,
208, 1, 220, 42, 211, 227, 242, 208, 1, 234, 41, 211, 227, 242, 208, 1,
234, 174, 211, 227, 242, 208, 1, 234, 88, 211, 227, 242, 208, 1, 234, 13,
211, 227, 242, 208, 1, 219, 107, 211, 227, 242, 208, 1, 211, 135, 211,
227, 242, 208, 1, 212, 22, 211, 227, 242, 208, 1, 211, 120, 211, 227,
242, 208, 1, 211, 241, 211, 227, 242, 208, 215, 242, 198, 48, 211, 227,
242, 208, 231, 228, 198, 49, 211, 227, 242, 208, 215, 236, 198, 49, 211,
227, 242, 208, 207, 216, 211, 227, 242, 208, 210, 92, 211, 227, 242, 208,
251, 71, 211, 227, 242, 208, 209, 38, 215, 232, 211, 227, 242, 208, 209,
38, 55, 215, 232, 42, 2, 1, 207, 7, 196, 123, 42, 2, 1, 219, 77, 237,
116, 42, 2, 1, 215, 50, 74, 42, 2, 1, 194, 64, 234, 9, 42, 2, 1, 200,
132, 200, 79, 42, 2, 1, 199, 156, 200, 79, 42, 2, 1, 200, 132, 230, 26,
57, 42, 2, 1, 200, 132, 193, 84, 42, 2, 1, 197, 72, 197, 92, 98, 215,
243, 6, 1, 250, 224, 98, 215, 243, 6, 1, 248, 207, 98, 215, 243, 6, 1,
231, 203, 98, 215, 243, 6, 1, 236, 123, 98, 215, 243, 6, 1, 234, 88, 98,
215, 243, 6, 1, 196, 20, 98, 215, 243, 6, 1, 192, 79, 98, 215, 243, 6, 1,
200, 125, 98, 215, 243, 6, 1, 223, 190, 98, 215, 243, 6, 1, 222, 121, 98,
215, 243, 6, 1, 220, 67, 98, 215, 243, 6, 1, 217, 160, 98, 215, 243, 6,
1, 215, 51, 98, 215, 243, 6, 1, 211, 211, 98, 215, 243, 6, 1, 210, 247,
98, 215, 243, 6, 1, 192, 67, 98, 215, 243, 6, 1, 208, 53, 98, 215, 243,
6, 1, 206, 40, 98, 215, 243, 6, 1, 200, 112, 98, 215, 243, 6, 1, 197, 77,
98, 215, 243, 6, 1, 210, 86, 98, 215, 243, 6, 1, 221, 237, 98, 215, 243,
6, 1, 231, 75, 98, 215, 243, 6, 1, 208, 224, 98, 215, 243, 6, 1, 203,
224, 98, 215, 243, 6, 1, 242, 201, 98, 215, 243, 6, 1, 246, 243, 98, 215,
243, 6, 1, 223, 10, 98, 215, 243, 6, 1, 242, 138, 98, 215, 243, 6, 1,
246, 101, 98, 215, 243, 6, 1, 193, 207, 98, 215, 243, 6, 1, 223, 25, 98,
215, 243, 6, 1, 230, 95, 98, 215, 243, 6, 1, 229, 255, 98, 215, 243, 6,
1, 229, 165, 98, 215, 243, 6, 1, 194, 111, 98, 215, 243, 6, 1, 230, 28,
98, 215, 243, 6, 1, 229, 31, 98, 215, 243, 6, 1, 233, 11, 98, 215, 243,
6, 1, 193, 3, 98, 215, 243, 6, 1, 234, 107, 98, 215, 243, 6, 1, 163, 231,
203, 98, 215, 243, 6, 1, 251, 57, 98, 215, 243, 6, 1, 251, 97, 98, 215,
243, 6, 1, 230, 26, 57, 98, 215, 243, 6, 1, 220, 175, 57, 201, 122, 209,
38, 248, 18, 201, 91, 201, 122, 209, 38, 248, 18, 211, 14, 201, 122, 209,
38, 248, 18, 209, 25, 201, 122, 209, 38, 248, 18, 247, 4, 201, 122, 209,
38, 248, 18, 219, 233, 206, 19, 201, 122, 209, 38, 248, 18, 222, 174,
206, 19, 201, 122, 209, 38, 248, 18, 238, 1, 206, 19, 201, 122, 209, 38,
248, 18, 249, 4, 206, 19, 196, 120, 158, 222, 91, 196, 120, 158, 204, 29,
196, 120, 158, 209, 109, 196, 120, 3, 214, 28, 196, 120, 3, 193, 106,
216, 158, 201, 82, 196, 120, 158, 193, 106, 251, 76, 223, 177, 201, 82,
196, 120, 158, 193, 106, 223, 177, 201, 82, 196, 120, 158, 193, 106, 222,
79, 223, 177, 201, 82, 196, 120, 158, 246, 237, 63, 196, 120, 158, 193,
106, 222, 79, 223, 177, 201, 83, 205, 242, 196, 120, 158, 55, 201, 82,
196, 120, 158, 198, 170, 201, 82, 196, 120, 158, 222, 79, 250, 170, 196,
120, 158, 78, 63, 196, 120, 158, 103, 236, 112, 63, 196, 120, 158, 112,
236, 112, 63, 196, 120, 158, 207, 89, 222, 90, 223, 177, 201, 82, 196,
120, 158, 250, 23, 223, 177, 201, 82, 196, 120, 3, 196, 7, 201, 82, 196,
120, 3, 196, 7, 197, 106, 196, 120, 3, 207, 168, 196, 7, 197, 106, 196,
120, 3, 196, 7, 250, 170, 196, 120, 3, 207, 168, 196, 7, 250, 170, 196,
120, 3, 196, 7, 197, 107, 4, 200, 147, 196, 120, 3, 196, 7, 250, 171, 4,
200, 147, 196, 120, 3, 250, 169, 250, 185, 196, 120, 3, 250, 169, 248,
226, 196, 120, 3, 250, 169, 196, 147, 196, 120, 3, 250, 169, 196, 148, 4,
200, 147, 196, 120, 3, 199, 64, 196, 120, 3, 229, 190, 184, 250, 168,
196, 120, 3, 184, 250, 168, 196, 120, 3, 206, 220, 184, 250, 168, 196,
120, 3, 250, 169, 197, 113, 215, 223, 196, 120, 3, 250, 108, 196, 120, 3,
207, 16, 250, 108, 196, 120, 158, 246, 237, 58, 196, 120, 3, 223, 13,
196, 120, 3, 197, 39, 196, 120, 3, 250, 21, 196, 120, 158, 207, 82, 58,
196, 120, 158, 55, 207, 82, 58, 196, 120, 3, 55, 250, 169, 250, 185, 8,
1, 2, 6, 64, 8, 1, 2, 6, 251, 108, 8, 2, 1, 163, 251, 108, 8, 1, 2, 6,
248, 188, 249, 226, 8, 1, 2, 6, 247, 52, 8, 1, 2, 6, 238, 95, 8, 1, 2, 6,
233, 235, 8, 1, 2, 6, 71, 8, 2, 1, 163, 211, 184, 71, 8, 2, 1, 163, 70,
8, 1, 2, 6, 223, 65, 8, 1, 2, 6, 222, 184, 8, 1, 2, 6, 220, 202, 4, 111,
8, 1, 2, 6, 218, 236, 8, 1, 2, 6, 207, 168, 215, 151, 8, 1, 2, 6, 74, 8,
1, 2, 6, 211, 184, 74, 8, 2, 1, 203, 109, 74, 8, 2, 1, 203, 109, 211,
184, 74, 8, 2, 1, 203, 109, 185, 4, 111, 8, 2, 1, 163, 212, 0, 8, 1, 2,
6, 211, 130, 8, 2, 1, 198, 249, 138, 74, 8, 2, 1, 247, 188, 138, 74, 8,
1, 2, 6, 211, 93, 8, 1, 2, 6, 207, 168, 150, 8, 1, 2, 6, 163, 150, 8, 1,
2, 6, 200, 228, 8, 1, 2, 6, 68, 8, 2, 1, 203, 109, 68, 8, 2, 1, 203, 109,
237, 12, 68, 8, 2, 1, 203, 109, 163, 218, 236, 8, 1, 2, 6, 196, 236, 8,
1, 2, 6, 194, 202, 8, 1, 2, 6, 192, 155, 8, 1, 2, 6, 233, 166, 8, 1, 195,
248, 220, 68, 202, 131, 8, 1, 251, 57, 33, 1, 2, 6, 231, 204, 33, 1, 2,
6, 220, 90, 33, 1, 2, 6, 210, 51, 33, 1, 2, 6, 207, 153, 33, 1, 2, 6,
209, 62, 42, 1, 2, 6, 234, 124, 73, 1, 6, 64, 73, 1, 6, 251, 108, 73, 1,
6, 249, 226, 73, 1, 6, 248, 188, 249, 226, 73, 1, 6, 238, 95, 73, 1, 6,
71, 73, 1, 6, 207, 168, 71, 73, 1, 6, 232, 44, 73, 1, 6, 230, 124, 73, 1,
6, 70, 73, 1, 6, 223, 65, 73, 1, 6, 222, 184, 73, 1, 6, 165, 73, 1, 6,
218, 236, 73, 1, 6, 215, 151, 73, 1, 6, 207, 168, 215, 151, 73, 1, 6, 74,
73, 1, 6, 211, 130, 73, 1, 6, 211, 93, 73, 1, 6, 150, 73, 1, 6, 200, 228,
73, 1, 6, 68, 73, 1, 6, 194, 202, 73, 1, 2, 64, 73, 1, 2, 163, 64, 73, 1,
2, 250, 252, 73, 1, 2, 163, 251, 108, 73, 1, 2, 249, 226, 73, 1, 2, 238,
95, 73, 1, 2, 71, 73, 1, 2, 205, 240, 73, 1, 2, 211, 184, 71, 73, 1, 2,
163, 211, 184, 71, 73, 1, 2, 232, 44, 73, 1, 2, 163, 70, 73, 1, 2, 222,
184, 73, 1, 2, 218, 236, 73, 1, 2, 234, 73, 73, 1, 2, 74, 73, 1, 2, 211,
184, 74, 73, 1, 2, 198, 249, 138, 74, 73, 1, 2, 247, 188, 138, 74, 73, 1,
2, 211, 93, 73, 1, 2, 200, 228, 73, 1, 2, 68, 73, 1, 2, 203, 109, 68, 73,
1, 2, 163, 218, 236, 73, 1, 2, 196, 236, 73, 1, 2, 251, 57, 73, 1, 2,
248, 63, 73, 1, 2, 33, 231, 204, 73, 1, 2, 237, 76, 73, 1, 2, 33, 210,
77, 73, 1, 2, 242, 215, 8, 201, 155, 2, 1, 70, 8, 201, 155, 2, 1, 150, 8,
201, 155, 2, 1, 68, 8, 201, 155, 2, 1, 196, 236, 33, 201, 155, 2, 1, 248,
63, 33, 201, 155, 2, 1, 231, 204, 33, 201, 155, 2, 1, 207, 153, 33, 201,
155, 2, 1, 210, 77, 33, 201, 155, 2, 1, 242, 215, 8, 2, 1, 197, 104, 8,
2, 1, 76, 4, 85, 199, 90, 8, 2, 1, 238, 96, 4, 85, 199, 90, 8, 2, 1, 233,
164, 4, 85, 199, 90, 8, 2, 1, 218, 237, 4, 85, 199, 90, 8, 2, 1, 215,
152, 4, 85, 199, 90, 8, 2, 1, 211, 94, 4, 85, 199, 90, 8, 2, 1, 208, 112,
4, 85, 199, 90, 8, 2, 1, 208, 112, 4, 232, 222, 26, 85, 199, 90, 8, 2, 1,
206, 159, 4, 85, 199, 90, 8, 2, 1, 200, 229, 4, 85, 199, 90, 8, 2, 1,
192, 156, 4, 85, 199, 90, 8, 2, 1, 163, 232, 44, 73, 1, 42, 234, 88, 8,
2, 1, 223, 143, 232, 44, 8, 2, 1, 199, 243, 4, 201, 212, 8, 2, 6, 1, 228,
97, 4, 111, 8, 2, 1, 223, 112, 4, 111, 8, 2, 1, 211, 94, 4, 111, 8, 2, 6,
1, 124, 4, 111, 8, 2, 1, 197, 35, 4, 111, 8, 2, 1, 76, 4, 211, 49, 128,
8, 2, 1, 238, 96, 4, 211, 49, 128, 8, 2, 1, 233, 164, 4, 211, 49, 128, 8,
2, 1, 232, 45, 4, 211, 49, 128, 8, 2, 1, 222, 185, 4, 211, 49, 128, 8, 2,
1, 220, 202, 4, 211, 49, 128, 8, 2, 1, 218, 237, 4, 211, 49, 128, 8, 2,
1, 215, 152, 4, 211, 49, 128, 8, 2, 1, 211, 94, 4, 211, 49, 128, 8, 2, 1,
208, 112, 4, 211, 49, 128, 8, 2, 1, 206, 159, 4, 211, 49, 128, 8, 2, 1,
234, 0, 4, 211, 49, 128, 8, 2, 1, 196, 237, 4, 211, 49, 128, 8, 2, 1,
193, 224, 4, 211, 49, 128, 8, 2, 1, 192, 156, 4, 211, 49, 128, 8, 2, 1,
41, 4, 207, 174, 128, 8, 2, 1, 250, 253, 4, 207, 174, 128, 8, 2, 1, 238,
96, 4, 229, 15, 26, 200, 147, 8, 2, 1, 234, 253, 4, 207, 174, 128, 8, 2,
1, 211, 184, 234, 253, 4, 207, 174, 128, 8, 2, 1, 207, 168, 211, 184,
234, 253, 4, 207, 174, 128, 8, 2, 1, 205, 241, 4, 207, 174, 128, 8, 2, 1,
228, 97, 4, 207, 174, 128, 8, 2, 1, 211, 184, 185, 4, 207, 174, 128, 8,
2, 1, 234, 0, 4, 207, 174, 128, 8, 2, 1, 124, 4, 207, 174, 128, 8, 2, 1,
233, 167, 4, 207, 174, 128, 73, 1, 2, 163, 250, 252, 73, 1, 2, 247, 52,
73, 1, 2, 247, 53, 4, 238, 142, 73, 1, 2, 233, 235, 73, 1, 2, 207, 168,
211, 184, 71, 73, 1, 2, 233, 163, 73, 1, 2, 236, 113, 223, 66, 4, 111,
73, 1, 2, 27, 232, 44, 73, 1, 2, 163, 230, 124, 73, 1, 2, 228, 97, 4,
111, 73, 1, 2, 223, 111, 73, 1, 2, 6, 70, 73, 1, 2, 6, 228, 97, 4, 111,
73, 1, 2, 223, 66, 4, 238, 178, 73, 1, 2, 220, 202, 4, 207, 174, 128, 73,
1, 2, 220, 202, 4, 211, 49, 128, 73, 1, 2, 6, 165, 73, 1, 2, 218, 237, 4,
128, 73, 1, 2, 163, 218, 237, 4, 184, 220, 16, 73, 1, 2, 215, 152, 4, 46,
128, 73, 1, 2, 215, 152, 4, 207, 174, 128, 73, 1, 2, 6, 215, 151, 73, 1,
2, 248, 188, 74, 73, 1, 2, 210, 77, 73, 1, 2, 206, 159, 4, 128, 73, 1, 2,
233, 255, 73, 1, 2, 200, 229, 4, 211, 49, 128, 73, 1, 2, 124, 161, 73, 1,
2, 197, 34, 73, 1, 2, 6, 68, 73, 1, 2, 196, 237, 4, 128, 73, 1, 2, 163,
196, 236, 73, 1, 2, 192, 155, 73, 1, 2, 192, 156, 4, 207, 174, 128, 73,
1, 2, 192, 156, 4, 238, 142, 73, 1, 2, 233, 166, 73, 1, 2, 199, 206, 38,
235, 111, 230, 211, 251, 143, 38, 235, 111, 251, 130, 251, 143, 38, 202,
225, 63, 38, 201, 89, 77, 38, 217, 213, 38, 230, 208, 38, 217, 211, 38,
251, 127, 38, 230, 209, 38, 251, 128, 38, 8, 2, 1, 208, 112, 63, 38, 247,
149, 38, 217, 212, 38, 55, 242, 122, 58, 38, 211, 244, 58, 38, 192, 21,
63, 38, 223, 97, 63, 38, 197, 28, 58, 38, 197, 11, 58, 38, 8, 2, 1, 232,
192, 211, 184, 41, 58, 38, 8, 2, 1, 251, 108, 38, 8, 2, 1, 250, 166, 38,
8, 2, 1, 249, 247, 38, 8, 2, 1, 247, 53, 246, 151, 38, 8, 2, 1, 223, 143,
238, 95, 38, 8, 2, 1, 233, 235, 38, 8, 2, 1, 232, 44, 38, 8, 1, 2, 6,
232, 44, 38, 8, 2, 1, 222, 184, 38, 8, 2, 1, 165, 38, 8, 1, 2, 6, 165,
38, 8, 1, 2, 6, 218, 236, 38, 8, 2, 1, 215, 151, 38, 8, 1, 2, 6, 215,
151, 38, 8, 1, 2, 6, 150, 38, 8, 2, 1, 208, 112, 207, 10, 38, 8, 2, 1,
206, 158, 38, 8, 2, 1, 184, 206, 158, 38, 8, 2, 1, 192, 155, 38, 8, 2, 1,
250, 252, 38, 8, 2, 1, 249, 226, 38, 8, 2, 1, 248, 63, 38, 8, 2, 1, 205,
240, 38, 8, 2, 1, 233, 163, 38, 8, 2, 1, 220, 202, 4, 55, 85, 199, 90,
38, 8, 2, 1, 185, 4, 152, 246, 139, 111, 38, 8, 2, 1, 211, 93, 38, 8, 2,
1, 233, 255, 38, 8, 2, 1, 124, 4, 152, 246, 139, 111, 38, 8, 2, 1, 194,
202, 38, 8, 2, 1, 41, 4, 237, 14, 38, 8, 2, 1, 185, 4, 237, 14, 38, 8, 2,
1, 124, 4, 237, 14, 38, 130, 200, 160, 58, 38, 222, 70, 95, 207, 101, 38,
222, 70, 95, 220, 28, 38, 78, 95, 220, 28, 38, 194, 64, 223, 121, 247,
143, 63, 38, 237, 85, 77, 38, 55, 223, 121, 247, 151, 63, 38, 251, 1,
187, 115, 63, 38, 46, 250, 78, 58, 38, 51, 250, 78, 26, 142, 250, 78, 63,
8, 6, 1, 41, 4, 207, 82, 63, 8, 2, 1, 41, 4, 207, 82, 63, 8, 6, 1, 76, 4,
78, 58, 8, 2, 1, 76, 4, 78, 58, 8, 6, 1, 76, 4, 78, 63, 8, 2, 1, 76, 4,
78, 63, 8, 6, 1, 76, 4, 219, 176, 63, 8, 2, 1, 76, 4, 219, 176, 63, 8, 6,
1, 247, 53, 4, 246, 152, 26, 251, 129, 8, 2, 1, 247, 53, 4, 246, 152, 26,
251, 129, 8, 6, 1, 238, 96, 4, 78, 58, 8, 2, 1, 238, 96, 4, 78, 58, 8, 6,
1, 238, 96, 4, 78, 63, 8, 2, 1, 238, 96, 4, 78, 63, 8, 6, 1, 238, 96, 4,
219, 176, 63, 8, 2, 1, 238, 96, 4, 219, 176, 63, 8, 6, 1, 238, 96, 4,
246, 151, 8, 2, 1, 238, 96, 4, 246, 151, 8, 6, 1, 238, 96, 4, 242, 122,
63, 8, 2, 1, 238, 96, 4, 242, 122, 63, 8, 6, 1, 234, 253, 4, 217, 215,
26, 230, 210, 8, 2, 1, 234, 253, 4, 217, 215, 26, 230, 210, 8, 6, 1, 234,
253, 4, 217, 215, 26, 251, 129, 8, 2, 1, 234, 253, 4, 217, 215, 26, 251,
129, 8, 6, 1, 234, 253, 4, 242, 122, 63, 8, 2, 1, 234, 253, 4, 242, 122,
63, 8, 6, 1, 234, 253, 4, 199, 91, 63, 8, 2, 1, 234, 253, 4, 199, 91, 63,
8, 6, 1, 234, 253, 4, 246, 152, 26, 247, 150, 8, 2, 1, 234, 253, 4, 246,
152, 26, 247, 150, 8, 6, 1, 233, 164, 4, 78, 58, 8, 2, 1, 233, 164, 4,
78, 58, 8, 6, 1, 232, 45, 4, 217, 214, 8, 2, 1, 232, 45, 4, 217, 214, 8,
6, 1, 230, 125, 4, 78, 58, 8, 2, 1, 230, 125, 4, 78, 58, 8, 6, 1, 230,
125, 4, 78, 63, 8, 2, 1, 230, 125, 4, 78, 63, 8, 6, 1, 230, 125, 4, 237,
14, 8, 2, 1, 230, 125, 4, 237, 14, 8, 6, 1, 230, 125, 4, 246, 151, 8, 2,
1, 230, 125, 4, 246, 151, 8, 6, 1, 230, 125, 4, 247, 151, 63, 8, 2, 1,
230, 125, 4, 247, 151, 63, 8, 6, 1, 228, 97, 4, 199, 91, 63, 8, 2, 1,
228, 97, 4, 199, 91, 63, 8, 6, 1, 228, 97, 4, 237, 15, 26, 251, 129, 8,
2, 1, 228, 97, 4, 237, 15, 26, 251, 129, 8, 6, 1, 222, 185, 4, 251, 129,
8, 2, 1, 222, 185, 4, 251, 129, 8, 6, 1, 222, 185, 4, 78, 63, 8, 2, 1,
222, 185, 4, 78, 63, 8, 6, 1, 222, 185, 4, 219, 176, 63, 8, 2, 1, 222,
185, 4, 219, 176, 63, 8, 6, 1, 220, 202, 4, 78, 63, 8, 2, 1, 220, 202, 4,
78, 63, 8, 6, 1, 220, 202, 4, 78, 248, 84, 26, 217, 214, 8, 2, 1, 220,
202, 4, 78, 248, 84, 26, 217, 214, 8, 6, 1, 220, 202, 4, 219, 176, 63, 8,
2, 1, 220, 202, 4, 219, 176, 63, 8, 6, 1, 220, 202, 4, 242, 122, 63, 8,
2, 1, 220, 202, 4, 242, 122, 63, 8, 6, 1, 218, 237, 4, 251, 129, 8, 2, 1,
218, 237, 4, 251, 129, 8, 6, 1, 218, 237, 4, 78, 58, 8, 2, 1, 218, 237,
4, 78, 58, 8, 6, 1, 218, 237, 4, 78, 63, 8, 2, 1, 218, 237, 4, 78, 63, 8,
6, 1, 215, 152, 4, 78, 58, 8, 2, 1, 215, 152, 4, 78, 58, 8, 6, 1, 215,
152, 4, 78, 63, 8, 2, 1, 215, 152, 4, 78, 63, 8, 6, 1, 215, 152, 4, 219,
176, 63, 8, 2, 1, 215, 152, 4, 219, 176, 63, 8, 6, 1, 215, 152, 4, 242,
122, 63, 8, 2, 1, 215, 152, 4, 242, 122, 63, 8, 6, 1, 185, 4, 199, 91,
26, 251, 129, 8, 2, 1, 185, 4, 199, 91, 26, 251, 129, 8, 6, 1, 185, 4,
199, 91, 26, 237, 14, 8, 2, 1, 185, 4, 199, 91, 26, 237, 14, 8, 6, 1,
185, 4, 217, 215, 26, 230, 210, 8, 2, 1, 185, 4, 217, 215, 26, 230, 210,
8, 6, 1, 185, 4, 217, 215, 26, 251, 129, 8, 2, 1, 185, 4, 217, 215, 26,
251, 129, 8, 6, 1, 211, 94, 4, 251, 129, 8, 2, 1, 211, 94, 4, 251, 129,
8, 6, 1, 211, 94, 4, 78, 58, 8, 2, 1, 211, 94, 4, 78, 58, 8, 6, 1, 208,
112, 4, 78, 58, 8, 2, 1, 208, 112, 4, 78, 58, 8, 6, 1, 208, 112, 4, 78,
63, 8, 2, 1, 208, 112, 4, 78, 63, 8, 6, 1, 208, 112, 4, 78, 248, 84, 26,
217, 214, 8, 2, 1, 208, 112, 4, 78, 248, 84, 26, 217, 214, 8, 6, 1, 208,
112, 4, 219, 176, 63, 8, 2, 1, 208, 112, 4, 219, 176, 63, 8, 6, 1, 206,
159, 4, 78, 58, 8, 2, 1, 206, 159, 4, 78, 58, 8, 6, 1, 206, 159, 4, 78,
63, 8, 2, 1, 206, 159, 4, 78, 63, 8, 6, 1, 206, 159, 4, 251, 130, 26, 78,
58, 8, 2, 1, 206, 159, 4, 251, 130, 26, 78, 58, 8, 6, 1, 206, 159, 4,
246, 208, 26, 78, 58, 8, 2, 1, 206, 159, 4, 246, 208, 26, 78, 58, 8, 6,
1, 206, 159, 4, 78, 248, 84, 26, 78, 58, 8, 2, 1, 206, 159, 4, 78, 248,
84, 26, 78, 58, 8, 6, 1, 200, 229, 4, 78, 58, 8, 2, 1, 200, 229, 4, 78,
58, 8, 6, 1, 200, 229, 4, 78, 63, 8, 2, 1, 200, 229, 4, 78, 63, 8, 6, 1,
200, 229, 4, 219, 176, 63, 8, 2, 1, 200, 229, 4, 219, 176, 63, 8, 6, 1,
200, 229, 4, 242, 122, 63, 8, 2, 1, 200, 229, 4, 242, 122, 63, 8, 6, 1,
124, 4, 237, 15, 63, 8, 2, 1, 124, 4, 237, 15, 63, 8, 6, 1, 124, 4, 199,
91, 63, 8, 2, 1, 124, 4, 199, 91, 63, 8, 6, 1, 124, 4, 242, 122, 63, 8,
2, 1, 124, 4, 242, 122, 63, 8, 6, 1, 124, 4, 199, 91, 26, 251, 129, 8, 2,
1, 124, 4, 199, 91, 26, 251, 129, 8, 6, 1, 124, 4, 217, 215, 26, 237, 14,
8, 2, 1, 124, 4, 217, 215, 26, 237, 14, 8, 6, 1, 196, 237, 4, 199, 90, 8,
2, 1, 196, 237, 4, 199, 90, 8, 6, 1, 196, 237, 4, 78, 63, 8, 2, 1, 196,
237, 4, 78, 63, 8, 6, 1, 194, 203, 4, 230, 210, 8, 2, 1, 194, 203, 4,
230, 210, 8, 6, 1, 194, 203, 4, 251, 129, 8, 2, 1, 194, 203, 4, 251, 129,
8, 6, 1, 194, 203, 4, 237, 14, 8, 2, 1, 194, 203, 4, 237, 14, 8, 6, 1,
194, 203, 4, 78, 58, 8, 2, 1, 194, 203, 4, 78, 58, 8, 6, 1, 194, 203, 4,
78, 63, 8, 2, 1, 194, 203, 4, 78, 63, 8, 6, 1, 193, 224, 4, 78, 58, 8, 2,
1, 193, 224, 4, 78, 58, 8, 6, 1, 193, 224, 4, 237, 14, 8, 2, 1, 193, 224,
4, 237, 14, 8, 6, 1, 193, 149, 4, 78, 58, 8, 2, 1, 193, 149, 4, 78, 58,
8, 6, 1, 192, 156, 4, 242, 121, 8, 2, 1, 192, 156, 4, 242, 121, 8, 6, 1,
192, 156, 4, 78, 63, 8, 2, 1, 192, 156, 4, 78, 63, 8, 6, 1, 192, 156, 4,
219, 176, 63, 8, 2, 1, 192, 156, 4, 219, 176, 63, 8, 2, 1, 230, 125, 4,
219, 176, 63, 8, 2, 1, 200, 229, 4, 237, 14, 8, 2, 1, 194, 203, 4, 207,
82, 58, 8, 2, 1, 193, 149, 4, 207, 82, 58, 8, 2, 1, 41, 4, 51, 138, 207,
81, 8, 2, 1, 184, 206, 159, 4, 78, 58, 8, 2, 1, 184, 206, 159, 4, 237,
11, 111, 8, 2, 1, 184, 206, 159, 4, 139, 111, 8, 6, 1, 204, 26, 206, 158,
8, 2, 1, 237, 76, 8, 6, 1, 41, 4, 78, 63, 8, 2, 1, 41, 4, 78, 63, 8, 6,
1, 41, 4, 229, 15, 58, 8, 2, 1, 41, 4, 229, 15, 58, 8, 6, 1, 41, 4, 242,
122, 26, 251, 129, 8, 2, 1, 41, 4, 242, 122, 26, 251, 129, 8, 6, 1, 41,
4, 242, 122, 26, 230, 210, 8, 2, 1, 41, 4, 242, 122, 26, 230, 210, 8, 6,
1, 41, 4, 242, 122, 26, 229, 15, 58, 8, 2, 1, 41, 4, 242, 122, 26, 229,
15, 58, 8, 6, 1, 41, 4, 242, 122, 26, 199, 90, 8, 2, 1, 41, 4, 242, 122,
26, 199, 90, 8, 6, 1, 41, 4, 242, 122, 26, 78, 63, 8, 2, 1, 41, 4, 242,
122, 26, 78, 63, 8, 6, 1, 41, 4, 247, 151, 26, 251, 129, 8, 2, 1, 41, 4,
247, 151, 26, 251, 129, 8, 6, 1, 41, 4, 247, 151, 26, 230, 210, 8, 2, 1,
41, 4, 247, 151, 26, 230, 210, 8, 6, 1, 41, 4, 247, 151, 26, 229, 15, 58,
8, 2, 1, 41, 4, 247, 151, 26, 229, 15, 58, 8, 6, 1, 41, 4, 247, 151, 26,
199, 90, 8, 2, 1, 41, 4, 247, 151, 26, 199, 90, 8, 6, 1, 41, 4, 247, 151,
26, 78, 63, 8, 2, 1, 41, 4, 247, 151, 26, 78, 63, 8, 6, 1, 234, 253, 4,
78, 63, 8, 2, 1, 234, 253, 4, 78, 63, 8, 6, 1, 234, 253, 4, 229, 15, 58,
8, 2, 1, 234, 253, 4, 229, 15, 58, 8, 6, 1, 234, 253, 4, 199, 90, 8, 2,
1, 234, 253, 4, 199, 90, 8, 6, 1, 234, 253, 4, 242, 122, 26, 251, 129, 8,
2, 1, 234, 253, 4, 242, 122, 26, 251, 129, 8, 6, 1, 234, 253, 4, 242,
122, 26, 230, 210, 8, 2, 1, 234, 253, 4, 242, 122, 26, 230, 210, 8, 6, 1,
234, 253, 4, 242, 122, 26, 229, 15, 58, 8, 2, 1, 234, 253, 4, 242, 122,
26, 229, 15, 58, 8, 6, 1, 234, 253, 4, 242, 122, 26, 199, 90, 8, 2, 1,
234, 253, 4, 242, 122, 26, 199, 90, 8, 6, 1, 234, 253, 4, 242, 122, 26,
78, 63, 8, 2, 1, 234, 253, 4, 242, 122, 26, 78, 63, 8, 6, 1, 228, 97, 4,
229, 15, 58, 8, 2, 1, 228, 97, 4, 229, 15, 58, 8, 6, 1, 228, 97, 4, 78,
63, 8, 2, 1, 228, 97, 4, 78, 63, 8, 6, 1, 185, 4, 78, 63, 8, 2, 1, 185,
4, 78, 63, 8, 6, 1, 185, 4, 229, 15, 58, 8, 2, 1, 185, 4, 229, 15, 58, 8,
6, 1, 185, 4, 242, 122, 26, 251, 129, 8, 2, 1, 185, 4, 242, 122, 26, 251,
129, 8, 6, 1, 185, 4, 242, 122, 26, 230, 210, 8, 2, 1, 185, 4, 242, 122,
26, 230, 210, 8, 6, 1, 185, 4, 242, 122, 26, 229, 15, 58, 8, 2, 1, 185,
4, 242, 122, 26, 229, 15, 58, 8, 6, 1, 185, 4, 242, 122, 26, 199, 90, 8,
2, 1, 185, 4, 242, 122, 26, 199, 90, 8, 6, 1, 185, 4, 242, 122, 26, 78,
63, 8, 2, 1, 185, 4, 242, 122, 26, 78, 63, 8, 6, 1, 185, 4, 228, 209, 26,
251, 129, 8, 2, 1, 185, 4, 228, 209, 26, 251, 129, 8, 6, 1, 185, 4, 228,
209, 26, 230, 210, 8, 2, 1, 185, 4, 228, 209, 26, 230, 210, 8, 6, 1, 185,
4, 228, 209, 26, 229, 15, 58, 8, 2, 1, 185, 4, 228, 209, 26, 229, 15, 58,
8, 6, 1, 185, 4, 228, 209, 26, 199, 90, 8, 2, 1, 185, 4, 228, 209, 26,
199, 90, 8, 6, 1, 185, 4, 228, 209, 26, 78, 63, 8, 2, 1, 185, 4, 228,
209, 26, 78, 63, 8, 6, 1, 124, 4, 78, 63, 8, 2, 1, 124, 4, 78, 63, 8, 6,
1, 124, 4, 229, 15, 58, 8, 2, 1, 124, 4, 229, 15, 58, 8, 6, 1, 124, 4,
228, 209, 26, 251, 129, 8, 2, 1, 124, 4, 228, 209, 26, 251, 129, 8, 6, 1,
124, 4, 228, 209, 26, 230, 210, 8, 2, 1, 124, 4, 228, 209, 26, 230, 210,
8, 6, 1, 124, 4, 228, 209, 26, 229, 15, 58, 8, 2, 1, 124, 4, 228, 209,
26, 229, 15, 58, 8, 6, 1, 124, 4, 228, 209, 26, 199, 90, 8, 2, 1, 124, 4,
228, 209, 26, 199, 90, 8, 6, 1, 124, 4, 228, 209, 26, 78, 63, 8, 2, 1,
124, 4, 228, 209, 26, 78, 63, 8, 6, 1, 193, 149, 4, 230, 210, 8, 2, 1,
193, 149, 4, 230, 210, 8, 6, 1, 193, 149, 4, 78, 63, 8, 2, 1, 193, 149,
4, 78, 63, 8, 6, 1, 193, 149, 4, 229, 15, 58, 8, 2, 1, 193, 149, 4, 229,
15, 58, 8, 6, 1, 193, 149, 4, 199, 90, 8, 2, 1, 193, 149, 4, 199, 90, 8,
6, 1, 216, 159, 219, 138, 8, 2, 1, 216, 159, 219, 138, 8, 6, 1, 216, 159,
196, 236, 8, 2, 1, 216, 159, 196, 236, 8, 6, 1, 193, 149, 4, 219, 69, 8,
2, 1, 193, 149, 4, 219, 69, 33, 2, 1, 250, 253, 4, 209, 55, 33, 2, 1,
250, 253, 4, 237, 182, 33, 2, 1, 250, 253, 4, 209, 56, 26, 196, 138, 33,
2, 1, 250, 253, 4, 237, 183, 26, 196, 138, 33, 2, 1, 250, 253, 4, 209,
56, 26, 211, 99, 33, 2, 1, 250, 253, 4, 237, 183, 26, 211, 99, 33, 2, 1,
250, 253, 4, 209, 56, 26, 210, 126, 33, 2, 1, 250, 253, 4, 237, 183, 26,
210, 126, 33, 6, 1, 250, 253, 4, 209, 55, 33, 6, 1, 250, 253, 4, 237,
182, 33, 6, 1, 250, 253, 4, 209, 56, 26, 196, 138, 33, 6, 1, 250, 253, 4,
237, 183, 26, 196, 138, 33, 6, 1, 250, 253, 4, 209, 56, 26, 211, 99, 33,
6, 1, 250, 253, 4, 237, 183, 26, 211, 99, 33, 6, 1, 250, 253, 4, 209, 56,
26, 210, 126, 33, 6, 1, 250, 253, 4, 237, 183, 26, 210, 126, 33, 2, 1,
234, 33, 4, 209, 55, 33, 2, 1, 234, 33, 4, 237, 182, 33, 2, 1, 234, 33,
4, 209, 56, 26, 196, 138, 33, 2, 1, 234, 33, 4, 237, 183, 26, 196, 138,
33, 2, 1, 234, 33, 4, 209, 56, 26, 211, 99, 33, 2, 1, 234, 33, 4, 237,
183, 26, 211, 99, 33, 6, 1, 234, 33, 4, 209, 55, 33, 6, 1, 234, 33, 4,
237, 182, 33, 6, 1, 234, 33, 4, 209, 56, 26, 196, 138, 33, 6, 1, 234, 33,
4, 237, 183, 26, 196, 138, 33, 6, 1, 234, 33, 4, 209, 56, 26, 211, 99,
33, 6, 1, 234, 33, 4, 237, 183, 26, 211, 99, 33, 2, 1, 233, 241, 4, 209,
55, 33, 2, 1, 233, 241, 4, 237, 182, 33, 2, 1, 233, 241, 4, 209, 56, 26,
196, 138, 33, 2, 1, 233, 241, 4, 237, 183, 26, 196, 138, 33, 2, 1, 233,
241, 4, 209, 56, 26, 211, 99, 33, 2, 1, 233, 241, 4, 237, 183, 26, 211,
99, 33, 2, 1, 233, 241, 4, 209, 56, 26, 210, 126, 33, 2, 1, 233, 241, 4,
237, 183, 26, 210, 126, 33, 6, 1, 233, 241, 4, 209, 55, 33, 6, 1, 233,
241, 4, 237, 182, 33, 6, 1, 233, 241, 4, 209, 56, 26, 196, 138, 33, 6, 1,
233, 241, 4, 237, 183, 26, 196, 138, 33, 6, 1, 233, 241, 4, 209, 56, 26,
211, 99, 33, 6, 1, 233, 241, 4, 237, 183, 26, 211, 99, 33, 6, 1, 233,
241, 4, 209, 56, 26, 210, 126, 33, 6, 1, 233, 241, 4, 237, 183, 26, 210,
126, 33, 2, 1, 223, 112, 4, 209, 55, 33, 2, 1, 223, 112, 4, 237, 182, 33,
2, 1, 223, 112, 4, 209, 56, 26, 196, 138, 33, 2, 1, 223, 112, 4, 237,
183, 26, 196, 138, 33, 2, 1, 223, 112, 4, 209, 56, 26, 211, 99, 33, 2, 1,
223, 112, 4, 237, 183, 26, 211, 99, 33, 2, 1, 223, 112, 4, 209, 56, 26,
210, 126, 33, 2, 1, 223, 112, 4, 237, 183, 26, 210, 126, 33, 6, 1, 223,
112, 4, 209, 55, 33, 6, 1, 223, 112, 4, 237, 182, 33, 6, 1, 223, 112, 4,
209, 56, 26, 196, 138, 33, 6, 1, 223, 112, 4, 237, 183, 26, 196, 138, 33,
6, 1, 223, 112, 4, 209, 56, 26, 211, 99, 33, 6, 1, 223, 112, 4, 237, 183,
26, 211, 99, 33, 6, 1, 223, 112, 4, 209, 56, 26, 210, 126, 33, 6, 1, 223,
112, 4, 237, 183, 26, 210, 126, 33, 2, 1, 211, 215, 4, 209, 55, 33, 2, 1,
211, 215, 4, 237, 182, 33, 2, 1, 211, 215, 4, 209, 56, 26, 196, 138, 33,
2, 1, 211, 215, 4, 237, 183, 26, 196, 138, 33, 2, 1, 211, 215, 4, 209,
56, 26, 211, 99, 33, 2, 1, 211, 215, 4, 237, 183, 26, 211, 99, 33, 6, 1,
211, 215, 4, 209, 55, 33, 6, 1, 211, 215, 4, 237, 182, 33, 6, 1, 211,
215, 4, 209, 56, 26, 196, 138, 33, 6, 1, 211, 215, 4, 237, 183, 26, 196,
138, 33, 6, 1, 211, 215, 4, 209, 56, 26, 211, 99, 33, 6, 1, 211, 215, 4,
237, 183, 26, 211, 99, 33, 2, 1, 197, 35, 4, 209, 55, 33, 2, 1, 197, 35,
4, 237, 182, 33, 2, 1, 197, 35, 4, 209, 56, 26, 196, 138, 33, 2, 1, 197,
35, 4, 237, 183, 26, 196, 138, 33, 2, 1, 197, 35, 4, 209, 56, 26, 211,
99, 33, 2, 1, 197, 35, 4, 237, 183, 26, 211, 99, 33, 2, 1, 197, 35, 4,
209, 56, 26, 210, 126, 33, 2, 1, 197, 35, 4, 237, 183, 26, 210, 126, 33,
6, 1, 197, 35, 4, 237, 182, 33, 6, 1, 197, 35, 4, 237, 183, 26, 196, 138,
33, 6, 1, 197, 35, 4, 237, 183, 26, 211, 99, 33, 6, 1, 197, 35, 4, 237,
183, 26, 210, 126, 33, 2, 1, 211, 217, 4, 209, 55, 33, 2, 1, 211, 217, 4,
237, 182, 33, 2, 1, 211, 217, 4, 209, 56, 26, 196, 138, 33, 2, 1, 211,
217, 4, 237, 183, 26, 196, 138, 33, 2, 1, 211, 217, 4, 209, 56, 26, 211,
99, 33, 2, 1, 211, 217, 4, 237, 183, 26, 211, 99, 33, 2, 1, 211, 217, 4,
209, 56, 26, 210, 126, 33, 2, 1, 211, 217, 4, 237, 183, 26, 210, 126, 33,
6, 1, 211, 217, 4, 209, 55, 33, 6, 1, 211, 217, 4, 237, 182, 33, 6, 1,
211, 217, 4, 209, 56, 26, 196, 138, 33, 6, 1, 211, 217, 4, 237, 183, 26,
196, 138, 33, 6, 1, 211, 217, 4, 209, 56, 26, 211, 99, 33, 6, 1, 211,
217, 4, 237, 183, 26, 211, 99, 33, 6, 1, 211, 217, 4, 209, 56, 26, 210,
126, 33, 6, 1, 211, 217, 4, 237, 183, 26, 210, 126, 33, 2, 1, 250, 253,
4, 196, 138, 33, 2, 1, 250, 253, 4, 211, 99, 33, 2, 1, 234, 33, 4, 196,
138, 33, 2, 1, 234, 33, 4, 211, 99, 33, 2, 1, 233, 241, 4, 196, 138, 33,
2, 1, 233, 241, 4, 211, 99, 33, 2, 1, 223, 112, 4, 196, 138, 33, 2, 1,
223, 112, 4, 211, 99, 33, 2, 1, 211, 215, 4, 196, 138, 33, 2, 1, 211,
215, 4, 211, 99, 33, 2, 1, 197, 35, 4, 196, 138, 33, 2, 1, 197, 35, 4,
211, 99, 33, 2, 1, 211, 217, 4, 196, 138, 33, 2, 1, 211, 217, 4, 211, 99,
33, 2, 1, 250, 253, 4, 209, 56, 26, 192, 222, 33, 2, 1, 250, 253, 4, 237,
183, 26, 192, 222, 33, 2, 1, 250, 253, 4, 209, 56, 26, 196, 139, 26, 192,
222, 33, 2, 1, 250, 253, 4, 237, 183, 26, 196, 139, 26, 192, 222, 33, 2,
1, 250, 253, 4, 209, 56, 26, 211, 100, 26, 192, 222, 33, 2, 1, 250, 253,
4, 237, 183, 26, 211, 100, 26, 192, 222, 33, 2, 1, 250, 253, 4, 209, 56,
26, 210, 127, 26, 192, 222, 33, 2, 1, 250, 253, 4, 237, 183, 26, 210,
127, 26, 192, 222, 33, 6, 1, 250, 253, 4, 209, 56, 26, 209, 69, 33, 6, 1,
250, 253, 4, 237, 183, 26, 209, 69, 33, 6, 1, 250, 253, 4, 209, 56, 26,
196, 139, 26, 209, 69, 33, 6, 1, 250, 253, 4, 237, 183, 26, 196, 139, 26,
209, 69, 33, 6, 1, 250, 253, 4, 209, 56, 26, 211, 100, 26, 209, 69, 33,
6, 1, 250, 253, 4, 237, 183, 26, 211, 100, 26, 209, 69, 33, 6, 1, 250,
253, 4, 209, 56, 26, 210, 127, 26, 209, 69, 33, 6, 1, 250, 253, 4, 237,
183, 26, 210, 127, 26, 209, 69, 33, 2, 1, 233, 241, 4, 209, 56, 26, 192,
222, 33, 2, 1, 233, 241, 4, 237, 183, 26, 192, 222, 33, 2, 1, 233, 241,
4, 209, 56, 26, 196, 139, 26, 192, 222, 33, 2, 1, 233, 241, 4, 237, 183,
26, 196, 139, 26, 192, 222, 33, 2, 1, 233, 241, 4, 209, 56, 26, 211, 100,
26, 192, 222, 33, 2, 1, 233, 241, 4, 237, 183, 26, 211, 100, 26, 192,
222, 33, 2, 1, 233, 241, 4, 209, 56, 26, 210, 127, 26, 192, 222, 33, 2,
1, 233, 241, 4, 237, 183, 26, 210, 127, 26, 192, 222, 33, 6, 1, 233, 241,
4, 209, 56, 26, 209, 69, 33, 6, 1, 233, 241, 4, 237, 183, 26, 209, 69,
33, 6, 1, 233, 241, 4, 209, 56, 26, 196, 139, 26, 209, 69, 33, 6, 1, 233,
241, 4, 237, 183, 26, 196, 139, 26, 209, 69, 33, 6, 1, 233, 241, 4, 209,
56, 26, 211, 100, 26, 209, 69, 33, 6, 1, 233, 241, 4, 237, 183, 26, 211,
100, 26, 209, 69, 33, 6, 1, 233, 241, 4, 209, 56, 26, 210, 127, 26, 209,
69, 33, 6, 1, 233, 241, 4, 237, 183, 26, 210, 127, 26, 209, 69, 33, 2, 1,
211, 217, 4, 209, 56, 26, 192, 222, 33, 2, 1, 211, 217, 4, 237, 183, 26,
192, 222, 33, 2, 1, 211, 217, 4, 209, 56, 26, 196, 139, 26, 192, 222, 33,
2, 1, 211, 217, 4, 237, 183, 26, 196, 139, 26, 192, 222, 33, 2, 1, 211,
217, 4, 209, 56, 26, 211, 100, 26, 192, 222, 33, 2, 1, 211, 217, 4, 237,
183, 26, 211, 100, 26, 192, 222, 33, 2, 1, 211, 217, 4, 209, 56, 26, 210,
127, 26, 192, 222, 33, 2, 1, 211, 217, 4, 237, 183, 26, 210, 127, 26,
192, 222, 33, 6, 1, 211, 217, 4, 209, 56, 26, 209, 69, 33, 6, 1, 211,
217, 4, 237, 183, 26, 209, 69, 33, 6, 1, 211, 217, 4, 209, 56, 26, 196,
139, 26, 209, 69, 33, 6, 1, 211, 217, 4, 237, 183, 26, 196, 139, 26, 209,
69, 33, 6, 1, 211, 217, 4, 209, 56, 26, 211, 100, 26, 209, 69, 33, 6, 1,
211, 217, 4, 237, 183, 26, 211, 100, 26, 209, 69, 33, 6, 1, 211, 217, 4,
209, 56, 26, 210, 127, 26, 209, 69, 33, 6, 1, 211, 217, 4, 237, 183, 26,
210, 127, 26, 209, 69, 33, 2, 1, 250, 253, 4, 195, 227, 33, 2, 1, 250,
253, 4, 217, 214, 33, 2, 1, 250, 253, 4, 196, 139, 26, 192, 222, 33, 2,
1, 250, 253, 4, 192, 222, 33, 2, 1, 250, 253, 4, 211, 100, 26, 192, 222,
33, 2, 1, 250, 253, 4, 210, 126, 33, 2, 1, 250, 253, 4, 210, 127, 26,
192, 222, 33, 6, 1, 250, 253, 4, 195, 227, 33, 6, 1, 250, 253, 4, 217,
214, 33, 6, 1, 250, 253, 4, 196, 138, 33, 6, 1, 250, 253, 4, 211, 99, 33,
6, 1, 250, 253, 4, 209, 69, 33, 221, 78, 33, 209, 69, 33, 209, 55, 33,
210, 126, 33, 237, 8, 26, 210, 126, 33, 2, 1, 233, 241, 4, 196, 139, 26,
192, 222, 33, 2, 1, 233, 241, 4, 192, 222, 33, 2, 1, 233, 241, 4, 211,
100, 26, 192, 222, 33, 2, 1, 233, 241, 4, 210, 126, 33, 2, 1, 233, 241,
4, 210, 127, 26, 192, 222, 33, 6, 1, 234, 33, 4, 196, 138, 33, 6, 1, 234,
33, 4, 211, 99, 33, 6, 1, 233, 241, 4, 196, 138, 33, 6, 1, 233, 241, 4,
211, 99, 33, 6, 1, 233, 241, 4, 209, 69, 33, 209, 56, 26, 196, 138, 33,
209, 56, 26, 211, 99, 33, 209, 56, 26, 210, 126, 33, 2, 1, 223, 112, 4,
195, 227, 33, 2, 1, 223, 112, 4, 217, 214, 33, 2, 1, 223, 112, 4, 237, 8,
26, 196, 138, 33, 2, 1, 223, 112, 4, 237, 8, 26, 211, 99, 33, 2, 1, 223,
112, 4, 210, 126, 33, 2, 1, 223, 112, 4, 237, 8, 26, 210, 126, 33, 6, 1,
223, 112, 4, 195, 227, 33, 6, 1, 223, 112, 4, 217, 214, 33, 6, 1, 223,
112, 4, 196, 138, 33, 6, 1, 223, 112, 4, 211, 99, 33, 237, 183, 26, 196,
138, 33, 237, 183, 26, 211, 99, 33, 237, 183, 26, 210, 126, 33, 2, 1,
197, 35, 4, 195, 227, 33, 2, 1, 197, 35, 4, 217, 214, 33, 2, 1, 197, 35,
4, 237, 8, 26, 196, 138, 33, 2, 1, 197, 35, 4, 237, 8, 26, 211, 99, 33,
2, 1, 207, 154, 4, 209, 55, 33, 2, 1, 207, 154, 4, 237, 182, 33, 2, 1,
197, 35, 4, 210, 126, 33, 2, 1, 197, 35, 4, 237, 8, 26, 210, 126, 33, 6,
1, 197, 35, 4, 195, 227, 33, 6, 1, 197, 35, 4, 217, 214, 33, 6, 1, 197,
35, 4, 196, 138, 33, 6, 1, 197, 35, 4, 211, 99, 33, 6, 1, 207, 154, 4,
237, 182, 33, 237, 8, 26, 196, 138, 33, 237, 8, 26, 211, 99, 33, 196,
138, 33, 2, 1, 211, 217, 4, 196, 139, 26, 192, 222, 33, 2, 1, 211, 217,
4, 192, 222, 33, 2, 1, 211, 217, 4, 211, 100, 26, 192, 222, 33, 2, 1,
211, 217, 4, 210, 126, 33, 2, 1, 211, 217, 4, 210, 127, 26, 192, 222, 33,
6, 1, 211, 215, 4, 196, 138, 33, 6, 1, 211, 215, 4, 211, 99, 33, 6, 1,
211, 217, 4, 196, 138, 33, 6, 1, 211, 217, 4, 211, 99, 33, 6, 1, 211,
217, 4, 209, 69, 33, 211, 99, 33, 237, 182, 234, 89, 208, 174, 234, 100,
208, 174, 234, 89, 202, 160, 234, 100, 202, 160, 199, 154, 202, 160, 232,
117, 202, 160, 203, 39, 202, 160, 233, 1, 202, 160, 209, 38, 202, 160,
199, 195, 202, 160, 230, 87, 202, 160, 192, 77, 194, 61, 202, 160, 192,
77, 194, 61, 213, 128, 192, 77, 194, 61, 222, 228, 220, 19, 77, 207, 92,
77, 228, 111, 213, 129, 228, 111, 233, 1, 237, 185, 234, 89, 237, 185,
234, 100, 237, 185, 229, 5, 161, 55, 84, 219, 175, 55, 132, 219, 175, 46,
203, 74, 208, 142, 77, 51, 203, 74, 208, 142, 77, 203, 74, 219, 51, 208,
142, 77, 203, 74, 229, 152, 208, 142, 77, 46, 55, 208, 142, 77, 51, 55,
208, 142, 77, 55, 219, 51, 208, 142, 77, 55, 229, 152, 208, 142, 77, 237,
238, 55, 237, 238, 247, 106, 198, 182, 247, 106, 90, 78, 220, 40, 103,
78, 220, 40, 229, 5, 234, 105, 228, 109, 209, 191, 219, 176, 204, 165,
210, 244, 204, 165, 220, 19, 234, 98, 207, 92, 234, 98, 209, 169, 236,
204, 232, 134, 220, 19, 211, 107, 207, 92, 211, 107, 215, 50, 213, 136,
202, 160, 210, 134, 216, 126, 57, 210, 134, 200, 31, 199, 165, 57, 209,
99, 55, 209, 99, 198, 170, 209, 99, 207, 168, 209, 99, 207, 168, 55, 209,
99, 207, 168, 198, 170, 209, 99, 246, 211, 203, 74, 220, 23, 250, 208,
208, 142, 77, 203, 74, 207, 96, 250, 208, 208, 142, 77, 207, 233, 77, 55,
233, 204, 77, 223, 130, 211, 109, 197, 64, 246, 100, 199, 113, 246, 212,
223, 147, 209, 191, 250, 35, 228, 112, 247, 106, 232, 109, 203, 4, 46,
50, 247, 165, 4, 208, 153, 51, 50, 247, 165, 4, 208, 153, 55, 208, 159,
77, 208, 159, 233, 204, 77, 233, 204, 208, 159, 77, 199, 66, 3, 233, 242,
207, 168, 210, 9, 57, 60, 114, 247, 106, 60, 94, 247, 106, 132, 250, 37,
207, 168, 204, 180, 242, 85, 197, 41, 103, 250, 36, 251, 12, 196, 54,
242, 36, 216, 113, 57, 201, 58, 237, 185, 223, 121, 197, 64, 232, 176,
209, 38, 77, 112, 78, 209, 37, 208, 170, 209, 99, 232, 119, 78, 209, 37,
232, 214, 78, 209, 37, 103, 78, 209, 37, 232, 119, 78, 77, 235, 111, 238,
183, 198, 181, 84, 232, 119, 236, 111, 217, 31, 13, 202, 160, 194, 11,
222, 228, 232, 69, 250, 142, 223, 119, 199, 82, 223, 119, 204, 165, 223,
119, 209, 206, 220, 19, 223, 88, 207, 92, 223, 88, 232, 226, 201, 194,
223, 88, 209, 169, 236, 204, 223, 88, 223, 160, 201, 4, 201, 76, 251,
132, 201, 4, 201, 76, 223, 160, 9, 232, 136, 204, 32, 251, 132, 9, 232,
136, 204, 32, 215, 44, 17, 204, 33, 213, 132, 17, 204, 33, 201, 107, 192,
76, 201, 107, 8, 2, 1, 70, 201, 107, 134, 201, 107, 151, 201, 107, 170,
201, 107, 179, 201, 107, 174, 201, 107, 182, 201, 107, 102, 57, 201, 107,
216, 112, 201, 107, 234, 30, 57, 201, 107, 46, 210, 230, 201, 107, 51,
210, 230, 201, 107, 8, 2, 1, 215, 151, 201, 155, 192, 76, 201, 155, 101,
201, 155, 104, 201, 155, 133, 201, 155, 134, 201, 155, 151, 201, 155,
170, 201, 155, 179, 201, 155, 174, 201, 155, 182, 201, 155, 102, 57, 201,
155, 216, 112, 201, 155, 234, 30, 57, 201, 155, 46, 210, 230, 201, 155,
51, 210, 230, 8, 201, 155, 2, 1, 64, 8, 201, 155, 2, 1, 71, 8, 201, 155,
2, 1, 74, 8, 201, 155, 2, 1, 193, 223, 8, 201, 155, 2, 1, 205, 240, 8,
201, 155, 2, 1, 230, 124, 8, 201, 155, 2, 1, 222, 184, 8, 201, 155, 2, 1,
165, 8, 201, 155, 2, 1, 218, 236, 8, 201, 155, 2, 1, 215, 151, 8, 201,
155, 2, 1, 211, 93, 8, 201, 155, 2, 1, 206, 158, 8, 201, 155, 2, 1, 200,
228, 233, 221, 57, 242, 48, 57, 238, 167, 57, 232, 97, 232, 102, 57, 219,
155, 57, 216, 127, 57, 215, 68, 57, 210, 111, 57, 206, 186, 57, 194, 19,
57, 214, 177, 203, 254, 57, 236, 122, 57, 233, 222, 57, 221, 173, 57,
198, 32, 57, 235, 89, 57, 231, 131, 210, 147, 57, 210, 108, 57, 230, 181,
57, 249, 254, 57, 228, 187, 57, 246, 153, 57, 219, 145, 198, 229, 57,
202, 140, 57, 200, 28, 57, 223, 175, 206, 186, 57, 198, 11, 219, 155, 57,
213, 118, 122, 57, 217, 158, 57, 206, 209, 57, 220, 69, 57, 248, 0, 57,
38, 46, 230, 22, 58, 38, 51, 230, 22, 58, 38, 184, 84, 219, 176, 211,
110, 38, 203, 195, 84, 219, 176, 211, 110, 38, 250, 182, 61, 58, 38, 242,
86, 61, 58, 38, 46, 61, 58, 38, 51, 61, 58, 38, 207, 82, 211, 110, 38,
242, 86, 207, 82, 211, 110, 38, 250, 182, 207, 82, 211, 110, 38, 112,
236, 112, 58, 38, 232, 119, 236, 112, 58, 38, 234, 84, 242, 130, 38, 234,
84, 202, 106, 38, 234, 84, 237, 4, 38, 234, 84, 242, 131, 248, 247, 38,
46, 51, 61, 58, 38, 234, 84, 205, 231, 38, 234, 84, 221, 253, 38, 234,
84, 197, 32, 209, 188, 198, 185, 38, 207, 169, 202, 190, 211, 110, 38,
55, 84, 201, 208, 211, 110, 38, 250, 192, 109, 38, 198, 170, 197, 66, 38,
194, 64, 247, 143, 58, 38, 114, 61, 211, 110, 38, 184, 55, 202, 190, 211,
110, 38, 94, 230, 22, 4, 173, 235, 91, 38, 114, 230, 22, 4, 173, 235, 91,
38, 46, 61, 63, 38, 51, 61, 63, 38, 250, 38, 58, 251, 138, 211, 251, 251,
121, 115, 199, 225, 201, 165, 235, 102, 6, 247, 52, 237, 95, 246, 143,
246, 138, 219, 176, 109, 246, 213, 211, 251, 247, 11, 197, 76, 233, 223,
239, 3, 205, 227, 237, 95, 233, 79, 27, 2, 232, 44, 27, 6, 230, 124, 247,
246, 6, 230, 124, 235, 102, 6, 230, 124, 209, 227, 239, 3, 209, 227, 239,
4, 136, 103, 210, 51, 27, 6, 70, 247, 246, 6, 70, 27, 6, 165, 27, 2, 165,
220, 202, 76, 248, 194, 109, 235, 102, 6, 215, 151, 212, 232, 57, 202,
174, 207, 245, 238, 226, 27, 6, 211, 93, 235, 102, 6, 211, 93, 235, 102,
6, 208, 247, 27, 6, 150, 247, 246, 6, 150, 235, 102, 6, 150, 209, 107,
200, 140, 207, 181, 204, 156, 77, 200, 42, 57, 198, 219, 122, 57, 196,
106, 235, 102, 6, 192, 155, 211, 129, 57, 211, 240, 57, 223, 121, 211,
240, 57, 247, 246, 6, 192, 155, 163, 33, 2, 1, 223, 111, 222, 38, 57,
250, 202, 57, 27, 6, 249, 226, 247, 246, 6, 247, 52, 233, 247, 109, 27,
2, 71, 27, 6, 71, 27, 6, 233, 163, 163, 6, 233, 163, 27, 6, 218, 236, 27,
2, 74, 157, 109, 248, 66, 109, 231, 32, 109, 237, 222, 109, 223, 165,
202, 172, 207, 16, 6, 208, 247, 233, 82, 57, 235, 102, 2, 210, 51, 235,
102, 2, 231, 204, 235, 102, 6, 231, 204, 235, 102, 6, 210, 51, 235, 102,
215, 150, 201, 126, 163, 49, 6, 232, 44, 163, 49, 6, 165, 207, 168, 49,
6, 165, 163, 49, 6, 193, 148, 235, 102, 43, 6, 238, 95, 235, 102, 43, 2,
238, 95, 235, 102, 43, 2, 71, 235, 102, 43, 2, 70, 235, 102, 43, 2, 223,
65, 209, 73, 219, 175, 163, 250, 229, 210, 134, 57, 251, 38, 163, 2, 233,
163, 16, 39, 206, 49, 202, 172, 194, 220, 232, 109, 90, 204, 142, 194,
220, 232, 109, 90, 214, 9, 194, 220, 232, 109, 90, 200, 21, 194, 220,
232, 109, 90, 199, 191, 194, 220, 232, 109, 103, 199, 188, 194, 220, 232,
109, 90, 233, 6, 194, 220, 232, 109, 103, 233, 5, 194, 220, 232, 109,
112, 233, 5, 194, 220, 232, 109, 232, 119, 233, 5, 194, 220, 232, 109,
90, 203, 29, 194, 220, 232, 109, 232, 214, 203, 27, 194, 220, 232, 109,
90, 234, 143, 194, 220, 232, 109, 112, 234, 141, 194, 220, 232, 109, 232,
214, 234, 141, 194, 220, 232, 109, 204, 146, 234, 141, 232, 109, 212,
233, 101, 207, 30, 212, 234, 101, 207, 30, 212, 234, 104, 207, 30, 212,
234, 133, 207, 30, 212, 234, 134, 207, 30, 212, 234, 151, 207, 30, 212,
234, 170, 207, 30, 212, 234, 179, 207, 30, 212, 234, 174, 207, 30, 212,
234, 182, 207, 30, 212, 234, 200, 30, 207, 30, 212, 234, 234, 111, 207,
30, 212, 234, 197, 244, 207, 30, 212, 234, 233, 3, 207, 30, 212, 234, 90,
228, 162, 207, 30, 212, 234, 232, 214, 228, 162, 207, 30, 212, 234, 90,
180, 2, 207, 30, 212, 234, 101, 2, 207, 30, 212, 234, 104, 2, 207, 30,
212, 234, 133, 2, 207, 30, 212, 234, 134, 2, 207, 30, 212, 234, 151, 2,
207, 30, 212, 234, 170, 2, 207, 30, 212, 234, 179, 2, 207, 30, 212, 234,
174, 2, 207, 30, 212, 234, 182, 2, 207, 30, 212, 234, 200, 30, 2, 207,
30, 212, 234, 234, 111, 2, 207, 30, 212, 234, 197, 244, 2, 207, 30, 212,
234, 233, 3, 2, 207, 30, 212, 234, 90, 228, 162, 2, 207, 30, 212, 234,
232, 214, 228, 162, 2, 207, 30, 212, 234, 90, 180, 207, 30, 212, 234, 90,
199, 165, 247, 53, 238, 95, 207, 30, 212, 234, 232, 214, 180, 207, 30,
212, 234, 200, 31, 180, 207, 30, 212, 234, 207, 168, 90, 228, 162, 8, 2,
1, 207, 168, 247, 52, 207, 30, 212, 234, 203, 41, 220, 64, 20, 207, 30,
212, 234, 233, 4, 234, 192, 20, 207, 30, 212, 234, 233, 4, 180, 207, 30,
212, 234, 90, 228, 163, 180, 194, 220, 232, 109, 192, 77, 199, 188, 163,
17, 104, 163, 17, 133, 114, 54, 197, 30, 54, 94, 54, 235, 92, 54, 46, 51,
54, 130, 142, 54, 178, 194, 91, 54, 178, 234, 186, 54, 202, 171, 234,
186, 54, 202, 171, 194, 91, 54, 114, 61, 4, 111, 94, 61, 4, 111, 114,
194, 125, 54, 94, 194, 125, 54, 114, 103, 229, 243, 54, 197, 30, 103,
229, 243, 54, 94, 103, 229, 243, 54, 235, 92, 103, 229, 243, 54, 114, 61,
4, 200, 147, 94, 61, 4, 200, 147, 114, 61, 232, 89, 161, 197, 30, 61,
232, 89, 161, 94, 61, 232, 89, 161, 235, 92, 61, 232, 89, 161, 130, 142,
61, 4, 248, 180, 114, 61, 4, 128, 94, 61, 4, 128, 114, 61, 4, 219, 69,
94, 61, 4, 219, 69, 46, 51, 194, 125, 54, 46, 51, 61, 4, 111, 235, 92,
192, 21, 54, 197, 30, 61, 4, 199, 74, 220, 18, 197, 30, 61, 4, 199, 74,
207, 90, 235, 92, 61, 4, 199, 74, 220, 18, 235, 92, 61, 4, 199, 74, 207,
90, 94, 61, 4, 238, 224, 235, 91, 235, 92, 61, 4, 238, 224, 220, 18, 250,
182, 198, 249, 204, 183, 54, 242, 86, 198, 249, 204, 183, 54, 178, 194,
91, 61, 115, 184, 161, 114, 61, 115, 248, 194, 136, 94, 61, 115, 161,
250, 182, 211, 184, 242, 131, 54, 242, 86, 211, 184, 242, 131, 54, 114,
230, 22, 4, 173, 197, 29, 114, 230, 22, 4, 173, 235, 91, 197, 30, 230,
22, 4, 173, 207, 90, 197, 30, 230, 22, 4, 173, 220, 18, 94, 230, 22, 4,
173, 197, 29, 94, 230, 22, 4, 173, 235, 91, 235, 92, 230, 22, 4, 173,
207, 90, 235, 92, 230, 22, 4, 173, 220, 18, 94, 61, 136, 114, 54, 197,
30, 61, 114, 80, 235, 92, 54, 114, 61, 136, 94, 54, 114, 211, 53, 250,
73, 197, 30, 211, 53, 250, 73, 94, 211, 53, 250, 73, 235, 92, 211, 53,
250, 73, 114, 230, 22, 136, 94, 230, 21, 94, 230, 22, 136, 114, 230, 21,
114, 55, 61, 4, 111, 46, 51, 55, 61, 4, 111, 94, 55, 61, 4, 111, 114, 55,
54, 197, 30, 55, 54, 94, 55, 54, 235, 92, 55, 54, 46, 51, 55, 54, 130,
142, 55, 54, 178, 194, 91, 55, 54, 178, 234, 186, 55, 54, 202, 171, 234,
186, 55, 54, 202, 171, 194, 91, 55, 54, 114, 198, 170, 54, 94, 198, 170,
54, 114, 202, 99, 54, 94, 202, 99, 54, 197, 30, 61, 4, 55, 111, 235, 92,
61, 4, 55, 111, 114, 237, 184, 54, 197, 30, 237, 184, 54, 94, 237, 184,
54, 235, 92, 237, 184, 54, 114, 61, 115, 161, 94, 61, 115, 161, 114, 62,
54, 197, 30, 62, 54, 94, 62, 54, 235, 92, 62, 54, 197, 30, 62, 61, 232,
89, 161, 197, 30, 62, 61, 211, 212, 210, 171, 197, 30, 62, 61, 211, 212,
210, 172, 4, 229, 5, 161, 197, 30, 62, 61, 211, 212, 210, 172, 4, 84,
161, 197, 30, 62, 55, 54, 197, 30, 62, 55, 61, 211, 212, 210, 171, 94,
62, 61, 232, 89, 194, 151, 178, 194, 91, 61, 115, 238, 223, 202, 171,
234, 186, 61, 115, 238, 223, 130, 142, 62, 54, 51, 61, 4, 2, 242, 130,
235, 92, 61, 114, 80, 197, 30, 54, 112, 94, 250, 73, 114, 61, 4, 84, 111,
94, 61, 4, 84, 111, 46, 51, 61, 4, 84, 111, 114, 61, 4, 55, 84, 111, 94,
61, 4, 55, 84, 111, 46, 51, 61, 4, 55, 84, 111, 114, 211, 181, 54, 94,
211, 181, 54, 46, 51, 211, 181, 54, 39, 251, 8, 242, 32, 210, 222, 236,
244, 199, 215, 233, 199, 199, 215, 236, 136, 213, 111, 233, 200, 234, 90,
204, 151, 223, 179, 215, 79, 234, 116, 211, 251, 213, 111, 250, 225, 234,
116, 211, 251, 2, 234, 116, 211, 251, 238, 253, 250, 62, 217, 9, 236,
136, 213, 111, 238, 255, 250, 62, 217, 9, 2, 238, 253, 250, 62, 217, 9,
234, 80, 80, 209, 75, 215, 150, 209, 85, 215, 150, 238, 230, 215, 150,
201, 126, 216, 113, 57, 216, 111, 57, 78, 209, 206, 236, 172, 203, 4,
204, 152, 216, 112, 250, 38, 211, 173, 207, 82, 211, 173, 247, 107, 211,
173, 50, 207, 22, 238, 158, 207, 22, 232, 112, 207, 22, 209, 71, 155,
223, 167, 51, 250, 207, 250, 207, 217, 42, 250, 207, 202, 139, 250, 207,
236, 175, 236, 136, 213, 111, 236, 179, 210, 236, 155, 213, 111, 210,
236, 155, 219, 93, 250, 217, 219, 93, 211, 163, 223, 127, 197, 56, 223,
141, 55, 223, 141, 198, 170, 223, 141, 238, 247, 223, 141, 201, 96, 223,
141, 195, 239, 223, 141, 242, 86, 223, 141, 242, 86, 238, 247, 223, 141,
250, 182, 238, 247, 223, 141, 199, 214, 248, 110, 208, 18, 209, 72, 78,
216, 112, 233, 207, 231, 137, 209, 72, 229, 20, 199, 91, 211, 173, 207,
168, 199, 90, 223, 121, 220, 49, 206, 158, 203, 76, 194, 124, 193, 254,
209, 85, 213, 111, 199, 90, 216, 113, 199, 90, 250, 30, 187, 155, 213,
111, 250, 30, 187, 155, 250, 138, 187, 155, 250, 138, 247, 77, 213, 111,
251, 131, 187, 155, 214, 198, 250, 138, 213, 120, 251, 131, 187, 155,
251, 1, 187, 155, 213, 111, 251, 1, 187, 155, 251, 1, 187, 211, 164, 187,
155, 198, 170, 199, 90, 251, 9, 187, 155, 234, 23, 155, 231, 136, 234,
23, 155, 236, 245, 248, 60, 250, 140, 199, 225, 219, 183, 231, 136, 187,
155, 250, 138, 187, 115, 211, 164, 199, 225, 223, 206, 211, 251, 223,
206, 80, 211, 164, 250, 138, 187, 155, 242, 48, 234, 29, 234, 30, 242,
47, 207, 82, 223, 191, 187, 155, 207, 82, 187, 155, 238, 216, 155, 233,
246, 234, 28, 155, 202, 20, 234, 29, 237, 77, 187, 155, 187, 115, 247,
64, 237, 96, 217, 42, 247, 63, 208, 157, 187, 155, 213, 111, 187, 155,
228, 41, 155, 213, 111, 228, 41, 155, 201, 215, 234, 23, 155, 219, 240,
211, 164, 187, 155, 230, 204, 211, 164, 187, 155, 219, 240, 136, 187,
155, 230, 204, 136, 187, 155, 219, 240, 247, 77, 213, 111, 187, 155, 230,
204, 247, 77, 213, 111, 187, 155, 215, 231, 219, 239, 215, 231, 230, 203,
248, 60, 213, 111, 234, 23, 155, 213, 111, 219, 239, 213, 111, 230, 203,
214, 198, 219, 240, 213, 120, 187, 155, 214, 198, 230, 204, 213, 120,
187, 155, 219, 240, 211, 164, 234, 23, 155, 230, 204, 211, 164, 234, 23,
155, 214, 198, 219, 240, 213, 120, 234, 23, 155, 214, 198, 230, 204, 213,
120, 234, 23, 155, 219, 240, 211, 164, 230, 203, 230, 204, 211, 164, 219,
239, 214, 198, 219, 240, 213, 120, 230, 203, 214, 198, 230, 204, 213,
120, 219, 239, 209, 115, 201, 145, 209, 116, 211, 164, 187, 155, 201,
146, 211, 164, 187, 155, 209, 116, 211, 164, 234, 23, 155, 201, 146, 211,
164, 234, 23, 155, 236, 136, 213, 111, 209, 118, 236, 136, 213, 111, 201,
147, 201, 154, 211, 251, 201, 106, 211, 251, 213, 111, 41, 201, 154, 211,
251, 213, 111, 41, 201, 106, 211, 251, 201, 154, 80, 211, 164, 187, 155,
201, 106, 80, 211, 164, 187, 155, 214, 198, 41, 201, 154, 80, 213, 120,
187, 155, 214, 198, 41, 201, 106, 80, 213, 120, 187, 155, 201, 154, 80,
4, 213, 111, 187, 155, 201, 106, 80, 4, 213, 111, 187, 155, 215, 211,
215, 212, 215, 213, 215, 212, 197, 56, 50, 223, 206, 211, 251, 50, 211,
154, 211, 251, 50, 223, 206, 80, 211, 164, 187, 155, 50, 211, 154, 80,
211, 164, 187, 155, 50, 246, 226, 50, 238, 148, 47, 209, 206, 47, 216,
112, 47, 199, 82, 47, 236, 172, 203, 4, 47, 78, 211, 173, 47, 207, 82,
211, 173, 47, 250, 38, 211, 173, 47, 234, 29, 47, 237, 185, 108, 209,
206, 108, 216, 112, 108, 199, 82, 108, 78, 211, 173, 51, 200, 159, 46,
200, 159, 142, 200, 159, 130, 200, 159, 250, 41, 216, 80, 198, 147, 232,
142, 198, 170, 84, 248, 194, 51, 198, 8, 55, 84, 248, 194, 55, 51, 198,
8, 236, 136, 213, 111, 209, 65, 213, 111, 198, 147, 236, 136, 213, 111,
232, 143, 214, 201, 55, 84, 248, 194, 55, 51, 198, 8, 209, 116, 197, 69,
207, 215, 201, 146, 197, 69, 207, 215, 213, 117, 201, 168, 211, 251, 238,
253, 250, 62, 213, 117, 201, 167, 213, 117, 201, 168, 80, 211, 164, 187,
155, 238, 253, 250, 62, 213, 117, 201, 168, 211, 164, 187, 155, 211, 154,
211, 251, 223, 206, 211, 251, 215, 218, 229, 199, 239, 8, 217, 98, 223,
138, 193, 181, 215, 59, 213, 119, 51, 250, 208, 4, 250, 114, 51, 198,
185, 215, 150, 219, 93, 250, 217, 215, 150, 219, 93, 211, 163, 215, 150,
223, 127, 215, 150, 197, 56, 237, 5, 211, 173, 78, 211, 173, 202, 20,
211, 173, 236, 172, 199, 82, 247, 174, 46, 213, 117, 233, 81, 204, 179,
209, 85, 51, 213, 117, 233, 81, 204, 179, 209, 85, 46, 204, 179, 209, 85,
51, 204, 179, 209, 85, 207, 168, 199, 91, 234, 29, 238, 138, 219, 93,
211, 163, 238, 138, 219, 93, 250, 217, 55, 201, 153, 55, 201, 105, 55,
223, 127, 55, 197, 56, 209, 239, 187, 26, 210, 236, 155, 219, 240, 4,
236, 114, 230, 204, 4, 236, 114, 196, 53, 215, 231, 219, 239, 196, 53,
215, 231, 230, 203, 219, 240, 187, 115, 211, 164, 230, 203, 230, 204,
187, 115, 211, 164, 219, 239, 187, 115, 211, 164, 219, 239, 187, 115,
211, 164, 230, 203, 187, 115, 211, 164, 209, 115, 187, 115, 211, 164,
201, 145, 236, 136, 213, 111, 209, 119, 211, 164, 234, 31, 236, 136, 213,
111, 201, 148, 211, 164, 234, 31, 213, 111, 50, 223, 206, 80, 211, 164,
187, 155, 213, 111, 50, 211, 154, 80, 211, 164, 187, 155, 50, 223, 206,
80, 211, 164, 213, 111, 187, 155, 50, 211, 154, 80, 211, 164, 213, 111,
187, 155, 219, 240, 247, 77, 213, 111, 234, 23, 155, 230, 204, 247, 77,
213, 111, 234, 23, 155, 209, 116, 247, 77, 213, 111, 234, 23, 155, 201,
146, 247, 77, 213, 111, 234, 23, 155, 213, 111, 213, 117, 201, 168, 211,
251, 236, 136, 213, 111, 238, 255, 250, 62, 213, 117, 201, 167, 213, 111,
213, 117, 201, 168, 80, 211, 164, 187, 155, 236, 136, 213, 111, 238, 255,
250, 62, 213, 117, 201, 168, 211, 164, 234, 31, 84, 234, 105, 216, 158,
229, 5, 234, 105, 130, 51, 237, 11, 234, 105, 142, 51, 237, 11, 234, 105,
234, 116, 80, 4, 184, 229, 5, 111, 234, 116, 80, 4, 84, 248, 194, 250,
27, 234, 80, 80, 229, 5, 111, 2, 234, 116, 80, 4, 84, 248, 194, 250, 27,
234, 80, 80, 229, 5, 111, 234, 116, 80, 4, 78, 58, 234, 116, 80, 4, 211,
117, 2, 234, 116, 80, 4, 211, 117, 234, 116, 80, 4, 197, 67, 234, 116,
80, 4, 103, 229, 5, 201, 195, 238, 253, 4, 184, 229, 5, 111, 238, 253, 4,
84, 248, 194, 250, 27, 234, 80, 80, 229, 5, 111, 2, 238, 253, 4, 84, 248,
194, 250, 27, 234, 80, 80, 229, 5, 111, 238, 253, 4, 211, 117, 2, 238,
253, 4, 211, 117, 192, 156, 213, 109, 248, 237, 217, 8, 237, 6, 57, 234,
119, 54, 228, 193, 130, 250, 77, 142, 250, 77, 209, 79, 210, 114, 194,
121, 219, 175, 46, 246, 146, 51, 246, 146, 46, 232, 182, 51, 232, 182,
247, 188, 51, 238, 185, 247, 188, 46, 238, 185, 198, 249, 51, 238, 185,
198, 249, 46, 238, 185, 207, 168, 213, 111, 57, 50, 219, 43, 250, 114,
205, 198, 205, 207, 200, 42, 207, 246, 209, 160, 223, 172, 196, 26, 202,
106, 209, 232, 80, 223, 137, 57, 163, 213, 111, 57, 194, 131, 228, 195,
198, 249, 46, 238, 223, 198, 249, 51, 238, 223, 247, 188, 46, 238, 223,
247, 188, 51, 238, 223, 198, 249, 138, 223, 141, 247, 188, 138, 223, 141,
232, 84, 202, 231, 130, 250, 78, 248, 61, 103, 229, 5, 248, 182, 211,
166, 222, 1, 234, 19, 115, 199, 225, 207, 101, 193, 224, 223, 191, 41,
207, 243, 247, 173, 221, 255, 220, 23, 250, 208, 186, 207, 96, 250, 208,
186, 234, 19, 115, 199, 225, 220, 28, 248, 72, 207, 81, 238, 105, 251, 9,
250, 86, 201, 3, 198, 234, 206, 191, 236, 224, 211, 155, 239, 12, 200,
114, 202, 245, 238, 212, 238, 211, 250, 157, 232, 67, 16, 228, 90, 250,
157, 232, 67, 16, 202, 97, 208, 174, 250, 157, 232, 67, 16, 208, 175,
234, 31, 250, 157, 232, 67, 16, 208, 175, 236, 179, 250, 157, 232, 67,
16, 208, 175, 237, 4, 250, 157, 232, 67, 16, 208, 175, 222, 220, 250,
157, 232, 67, 16, 208, 175, 242, 130, 250, 157, 232, 67, 16, 242, 131,
201, 246, 250, 157, 232, 67, 16, 242, 131, 222, 220, 250, 157, 232, 67,
16, 203, 5, 161, 250, 157, 232, 67, 16, 248, 248, 161, 250, 157, 232, 67,
16, 208, 175, 203, 4, 250, 157, 232, 67, 16, 208, 175, 248, 247, 250,
157, 232, 67, 16, 208, 175, 219, 239, 250, 157, 232, 67, 16, 208, 175,
230, 203, 250, 157, 232, 67, 16, 114, 196, 145, 250, 157, 232, 67, 16,
94, 196, 145, 250, 157, 232, 67, 16, 208, 175, 114, 54, 250, 157, 232,
67, 16, 208, 175, 94, 54, 250, 157, 232, 67, 16, 242, 131, 248, 247, 250,
157, 232, 67, 16, 142, 200, 160, 197, 67, 250, 157, 232, 67, 16, 237, 77,
201, 246, 250, 157, 232, 67, 16, 208, 175, 142, 246, 211, 250, 157, 232,
67, 16, 208, 175, 237, 76, 250, 157, 232, 67, 16, 142, 200, 160, 222,
220, 250, 157, 232, 67, 16, 197, 30, 196, 145, 250, 157, 232, 67, 16,
208, 175, 197, 30, 54, 250, 157, 232, 67, 16, 130, 200, 160, 211, 117,
250, 157, 232, 67, 16, 237, 89, 201, 246, 250, 157, 232, 67, 16, 208,
175, 130, 246, 211, 250, 157, 232, 67, 16, 208, 175, 237, 88, 250, 157,
232, 67, 16, 130, 200, 160, 222, 220, 250, 157, 232, 67, 16, 235, 92,
196, 145, 250, 157, 232, 67, 16, 208, 175, 235, 92, 54, 250, 157, 232,
67, 16, 208, 141, 197, 67, 250, 157, 232, 67, 16, 237, 77, 197, 67, 250,
157, 232, 67, 16, 237, 5, 197, 67, 250, 157, 232, 67, 16, 222, 221, 197,
67, 250, 157, 232, 67, 16, 242, 131, 197, 67, 250, 157, 232, 67, 16, 130,
203, 208, 222, 220, 250, 157, 232, 67, 16, 208, 141, 208, 174, 250, 157,
232, 67, 16, 242, 131, 202, 19, 250, 157, 232, 67, 16, 208, 175, 242, 47,
250, 157, 232, 67, 16, 130, 200, 160, 237, 14, 250, 157, 232, 67, 16,
237, 89, 237, 14, 250, 157, 232, 67, 16, 202, 20, 237, 14, 250, 157, 232,
67, 16, 222, 221, 237, 14, 250, 157, 232, 67, 16, 242, 131, 237, 14, 250,
157, 232, 67, 16, 142, 203, 208, 201, 246, 250, 157, 232, 67, 16, 46,
203, 208, 201, 246, 250, 157, 232, 67, 16, 199, 91, 237, 14, 250, 157,
232, 67, 16, 230, 204, 237, 14, 250, 157, 232, 67, 16, 242, 39, 161, 250,
157, 232, 67, 16, 237, 89, 199, 90, 250, 157, 232, 67, 16, 192, 20, 250,
157, 232, 67, 16, 201, 247, 199, 90, 250, 157, 232, 67, 16, 204, 181,
197, 67, 250, 157, 232, 67, 16, 208, 175, 213, 111, 234, 31, 250, 157,
232, 67, 16, 208, 175, 208, 158, 250, 157, 232, 67, 16, 142, 246, 212,
199, 90, 250, 157, 232, 67, 16, 130, 246, 212, 199, 90, 250, 157, 232,
67, 16, 223, 111, 250, 157, 232, 67, 16, 207, 153, 250, 157, 232, 67, 16,
211, 216, 250, 157, 232, 67, 16, 250, 253, 197, 67, 250, 157, 232, 67,
16, 234, 33, 197, 67, 250, 157, 232, 67, 16, 223, 112, 197, 67, 250, 157,
232, 67, 16, 211, 217, 197, 67, 250, 157, 232, 67, 16, 250, 252, 213,
111, 242, 244, 77, 51, 250, 208, 4, 235, 92, 192, 21, 54, 203, 176, 211,
184, 247, 173, 248, 87, 109, 84, 219, 176, 4, 85, 236, 114, 223, 147,
109, 238, 248, 197, 65, 109, 236, 197, 197, 65, 109, 234, 92, 109, 239,
27, 109, 62, 50, 4, 246, 138, 84, 219, 175, 234, 63, 109, 250, 244, 222,
2, 109, 229, 212, 109, 47, 229, 5, 248, 194, 4, 213, 108, 47, 198, 186,
235, 96, 247, 136, 242, 131, 4, 213, 114, 54, 197, 63, 109, 216, 40, 109,
228, 107, 109, 211, 182, 230, 123, 109, 211, 182, 220, 200, 109, 210,
210, 109, 210, 209, 109, 236, 206, 238, 136, 16, 232, 136, 104, 202, 195,
109, 250, 157, 232, 67, 16, 208, 174, 237, 108, 204, 166, 222, 2, 109,
209, 101, 211, 61, 214, 170, 211, 61, 209, 96, 205, 232, 109, 242, 102,
205, 232, 109, 46, 210, 231, 113, 128, 46, 210, 231, 233, 191, 46, 210,
231, 106, 128, 51, 210, 231, 113, 128, 51, 210, 231, 233, 191, 51, 210,
231, 106, 128, 46, 50, 247, 165, 113, 238, 223, 46, 50, 247, 165, 233,
191, 46, 50, 247, 165, 106, 238, 223, 51, 50, 247, 165, 113, 238, 223,
51, 50, 247, 165, 233, 191, 51, 50, 247, 165, 106, 238, 223, 46, 238,
138, 247, 165, 113, 128, 46, 238, 138, 247, 165, 85, 210, 42, 46, 238,
138, 247, 165, 106, 128, 238, 138, 247, 165, 233, 191, 51, 238, 138, 247,
165, 113, 128, 51, 238, 138, 247, 165, 85, 210, 42, 51, 238, 138, 247,
165, 106, 128, 223, 142, 233, 191, 229, 5, 219, 176, 233, 191, 113, 46,
211, 164, 106, 51, 238, 138, 247, 165, 205, 208, 113, 51, 211, 164, 106,
46, 238, 138, 247, 165, 205, 208, 201, 127, 198, 248, 201, 127, 247, 187,
198, 249, 50, 186, 247, 188, 50, 186, 247, 188, 50, 247, 165, 136, 198,
249, 50, 186, 48, 16, 247, 187, 46, 84, 105, 219, 175, 51, 84, 105, 219,
175, 229, 5, 205, 251, 219, 174, 229, 5, 205, 251, 219, 173, 229, 5, 205,
251, 219, 172, 229, 5, 205, 251, 219, 171, 237, 68, 16, 152, 84, 26, 198,
249, 207, 101, 237, 68, 16, 152, 84, 26, 247, 188, 207, 101, 237, 68, 16,
152, 84, 4, 242, 130, 237, 68, 16, 152, 142, 26, 229, 5, 4, 242, 130,
237, 68, 16, 152, 130, 26, 229, 5, 4, 242, 130, 237, 68, 16, 152, 84, 4,
198, 185, 237, 68, 16, 152, 142, 26, 229, 5, 4, 198, 185, 237, 68, 16,
152, 130, 26, 229, 5, 4, 198, 185, 237, 68, 16, 152, 84, 26, 194, 124,
237, 68, 16, 152, 142, 26, 229, 5, 4, 194, 124, 237, 68, 16, 152, 130,
26, 229, 5, 4, 194, 124, 237, 68, 16, 152, 142, 26, 229, 4, 237, 68, 16,
152, 130, 26, 229, 4, 237, 68, 16, 152, 84, 26, 198, 249, 220, 28, 237,
68, 16, 152, 84, 26, 247, 188, 220, 28, 50, 232, 149, 207, 173, 109, 234,
133, 109, 84, 219, 176, 233, 191, 216, 234, 247, 150, 216, 234, 184, 136,
203, 194, 216, 234, 203, 195, 136, 219, 84, 216, 234, 184, 136, 103, 203,
180, 216, 234, 103, 203, 181, 136, 219, 84, 216, 234, 103, 203, 181, 222,
229, 216, 234, 198, 166, 216, 234, 200, 0, 216, 234, 210, 142, 234, 190,
230, 195, 232, 61, 198, 249, 210, 230, 247, 188, 210, 230, 198, 249, 238,
138, 186, 247, 188, 238, 138, 186, 198, 249, 198, 237, 204, 2, 186, 247,
188, 198, 237, 204, 2, 186, 62, 198, 202, 248, 72, 207, 82, 4, 242, 130,
201, 228, 232, 193, 251, 147, 238, 135, 234, 118, 223, 127, 237, 108,
233, 195, 109, 60, 207, 96, 55, 198, 185, 60, 220, 23, 55, 198, 185, 60,
197, 40, 55, 198, 185, 60, 235, 95, 55, 198, 185, 60, 207, 96, 55, 198,
186, 4, 84, 161, 60, 220, 23, 55, 198, 186, 4, 84, 161, 60, 207, 96, 198,
186, 4, 55, 84, 161, 251, 30, 242, 87, 201, 235, 199, 83, 242, 87, 228,
196, 4, 232, 173, 206, 38, 60, 217, 31, 220, 23, 198, 185, 60, 217, 31,
207, 96, 198, 185, 60, 217, 31, 197, 40, 198, 185, 60, 217, 31, 235, 95,
198, 185, 55, 84, 161, 60, 50, 39, 201, 238, 60, 242, 131, 39, 207, 247,
209, 139, 109, 209, 139, 211, 210, 109, 209, 139, 211, 212, 109, 209,
139, 203, 0, 109, 212, 14, 233, 182, 109, 16, 39, 212, 238, 16, 39, 202,
15, 80, 229, 242, 16, 39, 202, 15, 80, 199, 244, 16, 39, 234, 80, 80,
199, 244, 16, 39, 234, 80, 80, 198, 208, 16, 39, 234, 66, 16, 39, 251,
134, 16, 39, 248, 86, 16, 39, 248, 246, 16, 39, 229, 5, 200, 161, 16, 39,
219, 176, 233, 38, 16, 39, 84, 200, 161, 16, 39, 232, 136, 233, 38, 16,
39, 246, 203, 207, 172, 16, 39, 203, 232, 211, 125, 16, 39, 203, 232,
223, 190, 16, 39, 237, 180, 219, 166, 234, 1, 16, 39, 237, 47, 238, 243,
101, 16, 39, 237, 47, 238, 243, 104, 16, 39, 237, 47, 238, 243, 133, 16,
39, 237, 47, 238, 243, 134, 16, 39, 214, 199, 251, 134, 16, 39, 200, 254,
223, 253, 16, 39, 234, 80, 80, 198, 209, 247, 238, 16, 39, 246, 241, 16,
39, 234, 80, 80, 217, 30, 16, 39, 201, 151, 16, 39, 234, 1, 16, 39, 232,
251, 204, 165, 16, 39, 230, 194, 204, 165, 16, 39, 207, 248, 204, 165,
16, 39, 197, 55, 204, 165, 16, 39, 202, 160, 16, 39, 237, 86, 247, 242,
109, 211, 184, 247, 173, 16, 39, 214, 173, 16, 39, 237, 87, 232, 136,
104, 16, 39, 201, 152, 232, 136, 104, 212, 10, 128, 212, 10, 246, 112,
212, 10, 232, 139, 212, 10, 223, 121, 232, 139, 212, 10, 248, 83, 247,
119, 212, 10, 247, 181, 199, 113, 212, 10, 247, 161, 248, 199, 228, 40,
212, 10, 250, 231, 80, 242, 243, 212, 10, 237, 185, 212, 10, 238, 124,
251, 138, 212, 236, 212, 10, 55, 248, 247, 47, 17, 101, 47, 17, 104, 47,
17, 133, 47, 17, 134, 47, 17, 151, 47, 17, 170, 47, 17, 179, 47, 17, 174,
47, 17, 182, 47, 31, 200, 30, 47, 31, 234, 111, 47, 31, 197, 244, 47, 31,
199, 186, 47, 31, 232, 113, 47, 31, 233, 7, 47, 31, 203, 35, 47, 31, 204,
143, 47, 31, 234, 145, 47, 31, 214, 13, 47, 31, 197, 239, 125, 17, 101,
125, 17, 104, 125, 17, 133, 125, 17, 134, 125, 17, 151, 125, 17, 170,
125, 17, 179, 125, 17, 174, 125, 17, 182, 125, 31, 200, 30, 125, 31, 234,
111, 125, 31, 197, 244, 125, 31, 199, 186, 125, 31, 232, 113, 125, 31,
233, 7, 125, 31, 203, 35, 125, 31, 204, 143, 125, 31, 234, 145, 125, 31,
214, 13, 125, 31, 197, 239, 17, 90, 232, 71, 201, 238, 17, 103, 232, 71,
201, 238, 17, 112, 232, 71, 201, 238, 17, 232, 119, 232, 71, 201, 238,
17, 232, 214, 232, 71, 201, 238, 17, 203, 41, 232, 71, 201, 238, 17, 204,
146, 232, 71, 201, 238, 17, 234, 148, 232, 71, 201, 238, 17, 214, 16,
232, 71, 201, 238, 31, 200, 31, 232, 71, 201, 238, 31, 234, 112, 232, 71,
201, 238, 31, 197, 245, 232, 71, 201, 238, 31, 199, 187, 232, 71, 201,
238, 31, 232, 114, 232, 71, 201, 238, 31, 233, 8, 232, 71, 201, 238, 31,
203, 36, 232, 71, 201, 238, 31, 204, 144, 232, 71, 201, 238, 31, 234,
146, 232, 71, 201, 238, 31, 214, 14, 232, 71, 201, 238, 31, 197, 240,
232, 71, 201, 238, 125, 8, 2, 1, 64, 125, 8, 2, 1, 249, 226, 125, 8, 2,
1, 247, 52, 125, 8, 2, 1, 238, 95, 125, 8, 2, 1, 71, 125, 8, 2, 1, 233,
163, 125, 8, 2, 1, 232, 44, 125, 8, 2, 1, 230, 124, 125, 8, 2, 1, 70,
125, 8, 2, 1, 223, 65, 125, 8, 2, 1, 222, 184, 125, 8, 2, 1, 165, 125, 8,
2, 1, 218, 236, 125, 8, 2, 1, 215, 151, 125, 8, 2, 1, 74, 125, 8, 2, 1,
211, 93, 125, 8, 2, 1, 208, 247, 125, 8, 2, 1, 150, 125, 8, 2, 1, 206,
158, 125, 8, 2, 1, 200, 228, 125, 8, 2, 1, 68, 125, 8, 2, 1, 196, 236,
125, 8, 2, 1, 194, 202, 125, 8, 2, 1, 193, 223, 125, 8, 2, 1, 193, 148,
125, 8, 2, 1, 192, 155, 47, 8, 6, 1, 64, 47, 8, 6, 1, 249, 226, 47, 8, 6,
1, 247, 52, 47, 8, 6, 1, 238, 95, 47, 8, 6, 1, 71, 47, 8, 6, 1, 233, 163,
47, 8, 6, 1, 232, 44, 47, 8, 6, 1, 230, 124, 47, 8, 6, 1, 70, 47, 8, 6,
1, 223, 65, 47, 8, 6, 1, 222, 184, 47, 8, 6, 1, 165, 47, 8, 6, 1, 218,
236, 47, 8, 6, 1, 215, 151, 47, 8, 6, 1, 74, 47, 8, 6, 1, 211, 93, 47, 8,
6, 1, 208, 247, 47, 8, 6, 1, 150, 47, 8, 6, 1, 206, 158, 47, 8, 6, 1,
200, 228, 47, 8, 6, 1, 68, 47, 8, 6, 1, 196, 236, 47, 8, 6, 1, 194, 202,
47, 8, 6, 1, 193, 223, 47, 8, 6, 1, 193, 148, 47, 8, 6, 1, 192, 155, 47,
8, 2, 1, 64, 47, 8, 2, 1, 249, 226, 47, 8, 2, 1, 247, 52, 47, 8, 2, 1,
238, 95, 47, 8, 2, 1, 71, 47, 8, 2, 1, 233, 163, 47, 8, 2, 1, 232, 44,
47, 8, 2, 1, 230, 124, 47, 8, 2, 1, 70, 47, 8, 2, 1, 223, 65, 47, 8, 2,
1, 222, 184, 47, 8, 2, 1, 165, 47, 8, 2, 1, 218, 236, 47, 8, 2, 1, 215,
151, 47, 8, 2, 1, 74, 47, 8, 2, 1, 211, 93, 47, 8, 2, 1, 208, 247, 47, 8,
2, 1, 150, 47, 8, 2, 1, 206, 158, 47, 8, 2, 1, 200, 228, 47, 8, 2, 1, 68,
47, 8, 2, 1, 196, 236, 47, 8, 2, 1, 194, 202, 47, 8, 2, 1, 193, 223, 47,
8, 2, 1, 193, 148, 47, 8, 2, 1, 192, 155, 47, 17, 192, 76, 214, 199, 47,
31, 234, 111, 214, 199, 47, 31, 197, 244, 214, 199, 47, 31, 199, 186,
214, 199, 47, 31, 232, 113, 214, 199, 47, 31, 233, 7, 214, 199, 47, 31,
203, 35, 214, 199, 47, 31, 204, 143, 214, 199, 47, 31, 234, 145, 214,
199, 47, 31, 214, 13, 214, 199, 47, 31, 197, 239, 55, 47, 17, 101, 55,
47, 17, 104, 55, 47, 17, 133, 55, 47, 17, 134, 55, 47, 17, 151, 55, 47,
17, 170, 55, 47, 17, 179, 55, 47, 17, 174, 55, 47, 17, 182, 55, 47, 31,
200, 30, 214, 199, 47, 17, 192, 76, 105, 119, 152, 229, 4, 105, 119, 87,
229, 4, 105, 119, 152, 196, 105, 105, 119, 87, 196, 105, 105, 119, 152,
198, 170, 237, 186, 229, 4, 105, 119, 87, 198, 170, 237, 186, 229, 4,
105, 119, 152, 198, 170, 237, 186, 196, 105, 105, 119, 87, 198, 170, 237,
186, 196, 105, 105, 119, 152, 208, 170, 237, 186, 229, 4, 105, 119, 87,
208, 170, 237, 186, 229, 4, 105, 119, 152, 208, 170, 237, 186, 196, 105,
105, 119, 87, 208, 170, 237, 186, 196, 105, 105, 119, 152, 142, 26, 207,
101, 105, 119, 142, 152, 26, 51, 229, 227, 105, 119, 142, 87, 26, 51,
219, 195, 105, 119, 87, 142, 26, 207, 101, 105, 119, 152, 142, 26, 220,
28, 105, 119, 142, 152, 26, 46, 229, 227, 105, 119, 142, 87, 26, 46, 219,
195, 105, 119, 87, 142, 26, 220, 28, 105, 119, 152, 130, 26, 207, 101,
105, 119, 130, 152, 26, 51, 229, 227, 105, 119, 130, 87, 26, 51, 219,
195, 105, 119, 87, 130, 26, 207, 101, 105, 119, 152, 130, 26, 220, 28,
105, 119, 130, 152, 26, 46, 229, 227, 105, 119, 130, 87, 26, 46, 219,
195, 105, 119, 87, 130, 26, 220, 28, 105, 119, 152, 84, 26, 207, 101,
105, 119, 84, 152, 26, 51, 229, 227, 105, 119, 130, 87, 26, 51, 142, 219,
195, 105, 119, 142, 87, 26, 51, 130, 219, 195, 105, 119, 84, 87, 26, 51,
219, 195, 105, 119, 142, 152, 26, 51, 130, 229, 227, 105, 119, 130, 152,
26, 51, 142, 229, 227, 105, 119, 87, 84, 26, 207, 101, 105, 119, 152, 84,
26, 220, 28, 105, 119, 84, 152, 26, 46, 229, 227, 105, 119, 130, 87, 26,
46, 142, 219, 195, 105, 119, 142, 87, 26, 46, 130, 219, 195, 105, 119,
84, 87, 26, 46, 219, 195, 105, 119, 142, 152, 26, 46, 130, 229, 227, 105,
119, 130, 152, 26, 46, 142, 229, 227, 105, 119, 87, 84, 26, 220, 28, 105,
119, 152, 142, 26, 229, 4, 105, 119, 46, 87, 26, 51, 142, 219, 195, 105,
119, 51, 87, 26, 46, 142, 219, 195, 105, 119, 142, 152, 26, 229, 5, 229,
227, 105, 119, 142, 87, 26, 229, 5, 219, 195, 105, 119, 51, 152, 26, 46,
142, 229, 227, 105, 119, 46, 152, 26, 51, 142, 229, 227, 105, 119, 87,
142, 26, 229, 4, 105, 119, 152, 130, 26, 229, 4, 105, 119, 46, 87, 26,
51, 130, 219, 195, 105, 119, 51, 87, 26, 46, 130, 219, 195, 105, 119,
130, 152, 26, 229, 5, 229, 227, 105, 119, 130, 87, 26, 229, 5, 219, 195,
105, 119, 51, 152, 26, 46, 130, 229, 227, 105, 119, 46, 152, 26, 51, 130,
229, 227, 105, 119, 87, 130, 26, 229, 4, 105, 119, 152, 84, 26, 229, 4,
105, 119, 46, 87, 26, 51, 84, 219, 195, 105, 119, 51, 87, 26, 46, 84,
219, 195, 105, 119, 84, 152, 26, 229, 5, 229, 227, 105, 119, 130, 87, 26,
142, 229, 5, 219, 195, 105, 119, 142, 87, 26, 130, 229, 5, 219, 195, 105,
119, 84, 87, 26, 229, 5, 219, 195, 105, 119, 46, 130, 87, 26, 51, 142,
219, 195, 105, 119, 51, 130, 87, 26, 46, 142, 219, 195, 105, 119, 46,
142, 87, 26, 51, 130, 219, 195, 105, 119, 51, 142, 87, 26, 46, 130, 219,
195, 105, 119, 142, 152, 26, 130, 229, 5, 229, 227, 105, 119, 130, 152,
26, 142, 229, 5, 229, 227, 105, 119, 51, 152, 26, 46, 84, 229, 227, 105,
119, 46, 152, 26, 51, 84, 229, 227, 105, 119, 87, 84, 26, 229, 4, 105,
119, 152, 55, 237, 186, 229, 4, 105, 119, 87, 55, 237, 186, 229, 4, 105,
119, 152, 55, 237, 186, 196, 105, 105, 119, 87, 55, 237, 186, 196, 105,
105, 119, 55, 229, 4, 105, 119, 55, 196, 105, 105, 119, 142, 203, 74, 26,
51, 235, 106, 105, 119, 142, 55, 26, 51, 203, 73, 105, 119, 55, 142, 26,
207, 101, 105, 119, 142, 203, 74, 26, 46, 235, 106, 105, 119, 142, 55,
26, 46, 203, 73, 105, 119, 55, 142, 26, 220, 28, 105, 119, 130, 203, 74,
26, 51, 235, 106, 105, 119, 130, 55, 26, 51, 203, 73, 105, 119, 55, 130,
26, 207, 101, 105, 119, 130, 203, 74, 26, 46, 235, 106, 105, 119, 130,
55, 26, 46, 203, 73, 105, 119, 55, 130, 26, 220, 28, 105, 119, 84, 203,
74, 26, 51, 235, 106, 105, 119, 84, 55, 26, 51, 203, 73, 105, 119, 55,
84, 26, 207, 101, 105, 119, 84, 203, 74, 26, 46, 235, 106, 105, 119, 84,
55, 26, 46, 203, 73, 105, 119, 55, 84, 26, 220, 28, 105, 119, 142, 203,
74, 26, 229, 5, 235, 106, 105, 119, 142, 55, 26, 229, 5, 203, 73, 105,
119, 55, 142, 26, 229, 4, 105, 119, 130, 203, 74, 26, 229, 5, 235, 106,
105, 119, 130, 55, 26, 229, 5, 203, 73, 105, 119, 55, 130, 26, 229, 4,
105, 119, 84, 203, 74, 26, 229, 5, 235, 106, 105, 119, 84, 55, 26, 229,
5, 203, 73, 105, 119, 55, 84, 26, 229, 4, 105, 119, 152, 250, 115, 142,
26, 207, 101, 105, 119, 152, 250, 115, 142, 26, 220, 28, 105, 119, 152,
250, 115, 130, 26, 220, 28, 105, 119, 152, 250, 115, 130, 26, 207, 101,
105, 119, 152, 237, 11, 113, 51, 115, 106, 220, 28, 105, 119, 152, 237,
11, 113, 46, 115, 106, 207, 101, 105, 119, 152, 237, 11, 238, 183, 105,
119, 152, 220, 28, 105, 119, 152, 197, 41, 105, 119, 152, 207, 101, 105,
119, 152, 235, 96, 105, 119, 87, 220, 28, 105, 119, 87, 197, 41, 105,
119, 87, 207, 101, 105, 119, 87, 235, 96, 105, 119, 152, 46, 26, 87, 207,
101, 105, 119, 152, 130, 26, 87, 235, 96, 105, 119, 87, 46, 26, 152, 207,
101, 105, 119, 87, 130, 26, 152, 235, 96, 113, 138, 247, 238, 106, 90,
234, 144, 247, 238, 106, 90, 208, 168, 247, 238, 106, 112, 234, 142, 247,
238, 106, 138, 247, 238, 106, 232, 214, 234, 142, 247, 238, 106, 112,
208, 166, 247, 238, 106, 204, 146, 234, 142, 247, 238, 232, 71, 247, 238,
46, 204, 146, 234, 142, 247, 238, 46, 112, 208, 166, 247, 238, 46, 232,
214, 234, 142, 247, 238, 46, 138, 247, 238, 46, 112, 234, 142, 247, 238,
46, 90, 208, 168, 247, 238, 46, 90, 234, 144, 247, 238, 51, 138, 247,
238, 152, 204, 52, 217, 31, 204, 52, 237, 191, 204, 52, 113, 90, 234,
144, 247, 238, 51, 90, 234, 144, 247, 238, 208, 172, 106, 220, 28, 208,
172, 106, 207, 101, 208, 172, 113, 220, 28, 208, 172, 113, 46, 26, 106,
46, 26, 106, 207, 101, 208, 172, 113, 46, 26, 106, 207, 101, 208, 172,
113, 46, 26, 113, 51, 26, 106, 220, 28, 208, 172, 113, 46, 26, 113, 51,
26, 106, 207, 101, 208, 172, 113, 207, 101, 208, 172, 113, 51, 26, 106,
220, 28, 208, 172, 113, 51, 26, 106, 46, 26, 106, 207, 101, 60, 202, 106,
62, 202, 106, 62, 50, 4, 207, 7, 238, 222, 62, 50, 238, 254, 60, 2, 202,
106, 50, 4, 229, 5, 232, 249, 50, 4, 84, 232, 249, 50, 4, 211, 146, 238,
177, 232, 249, 50, 4, 113, 46, 115, 106, 51, 232, 249, 50, 4, 113, 51,
115, 106, 46, 232, 249, 50, 4, 237, 11, 238, 177, 232, 249, 60, 2, 202,
106, 62, 2, 202, 106, 60, 207, 242, 62, 207, 242, 60, 84, 207, 242, 62,
84, 207, 242, 60, 210, 234, 62, 210, 234, 60, 197, 40, 198, 185, 62, 197,
40, 198, 185, 60, 197, 40, 2, 198, 185, 62, 197, 40, 2, 198, 185, 60,
207, 96, 198, 185, 62, 207, 96, 198, 185, 60, 207, 96, 2, 198, 185, 62,
207, 96, 2, 198, 185, 60, 207, 96, 209, 189, 62, 207, 96, 209, 189, 60,
235, 95, 198, 185, 62, 235, 95, 198, 185, 60, 235, 95, 2, 198, 185, 62,
235, 95, 2, 198, 185, 60, 220, 23, 198, 185, 62, 220, 23, 198, 185, 60,
220, 23, 2, 198, 185, 62, 220, 23, 2, 198, 185, 60, 220, 23, 209, 189,
62, 220, 23, 209, 189, 60, 237, 4, 62, 237, 4, 62, 237, 5, 238, 254, 60,
2, 237, 4, 232, 223, 219, 43, 62, 242, 130, 235, 111, 242, 130, 242, 131,
4, 84, 232, 249, 247, 102, 60, 242, 130, 242, 131, 4, 46, 138, 247, 248,
242, 131, 4, 51, 138, 247, 248, 242, 131, 4, 106, 138, 247, 248, 242,
131, 4, 113, 138, 247, 248, 242, 131, 4, 113, 51, 208, 172, 247, 248,
242, 131, 4, 251, 9, 247, 77, 113, 46, 208, 172, 247, 248, 46, 138, 60,
242, 130, 51, 138, 60, 242, 130, 223, 123, 247, 106, 223, 123, 62, 242,
130, 113, 138, 223, 123, 62, 242, 130, 106, 138, 223, 123, 62, 242, 130,
113, 46, 208, 172, 242, 124, 250, 114, 113, 51, 208, 172, 242, 124, 250,
114, 106, 51, 208, 172, 242, 124, 250, 114, 106, 46, 208, 172, 242, 124,
250, 114, 113, 138, 242, 130, 106, 138, 242, 130, 60, 106, 51, 198, 185,
60, 106, 46, 198, 185, 60, 113, 46, 198, 185, 60, 113, 51, 198, 185, 62,
247, 106, 50, 4, 46, 138, 247, 248, 50, 4, 51, 138, 247, 248, 50, 4, 113,
46, 237, 11, 138, 247, 248, 50, 4, 106, 51, 237, 11, 138, 247, 248, 62,
50, 4, 84, 248, 7, 219, 175, 62, 197, 40, 198, 186, 4, 236, 114, 197, 40,
198, 186, 4, 46, 138, 247, 248, 197, 40, 198, 186, 4, 51, 138, 247, 248,
220, 73, 242, 130, 62, 50, 4, 113, 46, 208, 171, 62, 50, 4, 106, 46, 208,
171, 62, 50, 4, 106, 51, 208, 171, 62, 50, 4, 113, 51, 208, 171, 62, 242,
131, 4, 113, 46, 208, 171, 62, 242, 131, 4, 106, 46, 208, 171, 62, 242,
131, 4, 106, 51, 208, 171, 62, 242, 131, 4, 113, 51, 208, 171, 113, 46,
198, 185, 113, 51, 198, 185, 106, 46, 198, 185, 62, 217, 31, 202, 106,
60, 217, 31, 202, 106, 62, 217, 31, 2, 202, 106, 60, 217, 31, 2, 202,
106, 106, 51, 198, 185, 60, 201, 124, 4, 208, 12, 242, 75, 197, 81, 202,
214, 242, 41, 60, 202, 19, 62, 202, 19, 219, 192, 199, 143, 201, 123,
250, 57, 213, 134, 237, 58, 213, 134, 239, 7, 211, 169, 60, 200, 41, 62,
200, 41, 248, 213, 247, 173, 248, 213, 105, 4, 242, 243, 248, 213, 105,
4, 193, 223, 206, 51, 197, 82, 4, 208, 42, 235, 69, 228, 202, 248, 58,
62, 203, 204, 210, 42, 60, 203, 204, 210, 42, 204, 39, 207, 168, 207, 16,
232, 179, 229, 234, 247, 106, 60, 46, 209, 188, 223, 176, 60, 51, 209,
188, 223, 176, 62, 46, 209, 188, 223, 176, 62, 130, 209, 188, 223, 176,
62, 51, 209, 188, 223, 176, 62, 142, 209, 188, 223, 176, 203, 11, 26,
238, 181, 246, 187, 57, 208, 54, 57, 248, 15, 57, 247, 10, 250, 196, 211,
147, 238, 183, 242, 216, 207, 153, 238, 184, 80, 219, 64, 238, 184, 80,
223, 30, 202, 20, 26, 238, 193, 233, 62, 109, 251, 117, 204, 42, 230, 70,
26, 203, 116, 210, 180, 109, 193, 11, 193, 95, 198, 175, 39, 229, 229,
198, 175, 39, 220, 102, 198, 175, 39, 232, 231, 198, 175, 39, 199, 144,
198, 175, 39, 194, 52, 198, 175, 39, 194, 129, 198, 175, 39, 216, 9, 198,
175, 39, 234, 189, 194, 80, 80, 237, 32, 62, 232, 83, 233, 91, 62, 202,
230, 233, 91, 60, 202, 230, 233, 91, 62, 201, 124, 4, 208, 12, 232, 226,
208, 168, 216, 29, 220, 66, 208, 168, 216, 29, 216, 255, 233, 30, 57,
234, 189, 217, 166, 57, 222, 199, 206, 13, 197, 22, 214, 189, 209, 202,
250, 100, 200, 98, 231, 145, 246, 239, 219, 246, 196, 9, 219, 206, 205,
234, 206, 77, 246, 221, 250, 132, 209, 244, 62, 242, 225, 221, 176, 62,
242, 225, 208, 160, 62, 242, 225, 207, 25, 62, 242, 225, 248, 5, 62, 242,
225, 221, 122, 62, 242, 225, 210, 192, 60, 242, 225, 221, 176, 60, 242,
225, 208, 160, 60, 242, 225, 207, 25, 60, 242, 225, 248, 5, 60, 242, 225,
221, 122, 60, 242, 225, 210, 192, 60, 202, 158, 201, 136, 62, 229, 234,
201, 136, 62, 237, 5, 201, 136, 60, 242, 72, 201, 136, 62, 202, 158, 201,
136, 60, 229, 234, 201, 136, 60, 237, 5, 201, 136, 62, 242, 72, 201, 136,
228, 202, 202, 111, 208, 168, 213, 105, 234, 144, 213, 105, 248, 119,
234, 144, 213, 100, 248, 119, 203, 34, 213, 100, 215, 185, 232, 196, 57,
215, 185, 215, 43, 57, 215, 185, 204, 26, 57, 194, 91, 200, 248, 238,
183, 234, 186, 200, 248, 238, 183, 197, 51, 207, 238, 109, 207, 238, 16,
39, 197, 205, 209, 222, 207, 238, 16, 39, 197, 203, 209, 222, 207, 238,
16, 39, 197, 202, 209, 222, 207, 238, 16, 39, 197, 200, 209, 222, 207,
238, 16, 39, 197, 198, 209, 222, 207, 238, 16, 39, 197, 196, 209, 222,
207, 238, 16, 39, 197, 194, 209, 222, 207, 238, 16, 39, 231, 142, 217,
99, 60, 197, 51, 207, 238, 109, 207, 239, 210, 252, 109, 210, 221, 210,
252, 109, 210, 125, 210, 252, 57, 194, 78, 109, 236, 253, 233, 90, 236,
253, 233, 89, 236, 253, 233, 88, 236, 253, 233, 87, 236, 253, 233, 86,
236, 253, 233, 85, 62, 242, 131, 4, 78, 207, 101, 62, 242, 131, 4, 103,
236, 111, 60, 242, 131, 4, 62, 78, 207, 101, 60, 242, 131, 4, 103, 62,
236, 111, 216, 45, 39, 193, 95, 216, 45, 39, 193, 10, 236, 234, 39, 230,
205, 193, 95, 236, 234, 39, 219, 238, 193, 10, 236, 234, 39, 219, 238,
193, 95, 236, 234, 39, 230, 205, 193, 10, 62, 232, 206, 60, 232, 206,
230, 70, 26, 210, 47, 250, 219, 238, 180, 201, 59, 202, 29, 80, 251, 91,
205, 252, 251, 25, 232, 175, 231, 155, 202, 29, 80, 229, 201, 250, 16,
109, 232, 191, 211, 121, 62, 202, 19, 112, 219, 170, 238, 240, 207, 101,
112, 219, 170, 238, 240, 220, 28, 194, 140, 57, 139, 195, 240, 57, 235,
101, 233, 30, 57, 235, 101, 217, 166, 57, 223, 133, 233, 30, 26, 217,
166, 57, 217, 166, 26, 233, 30, 57, 217, 166, 4, 201, 208, 57, 217, 166,
4, 201, 208, 26, 217, 166, 26, 233, 30, 57, 84, 217, 166, 4, 201, 208,
57, 229, 5, 217, 166, 4, 201, 208, 57, 217, 31, 62, 242, 130, 217, 31,
60, 242, 130, 217, 31, 2, 62, 242, 130, 217, 119, 109, 236, 170, 109,
197, 48, 210, 220, 109, 242, 53, 232, 66, 197, 18, 214, 180, 246, 123,
211, 43, 222, 205, 196, 50, 242, 195, 60, 216, 30, 219, 189, 204, 75,
204, 177, 208, 150, 204, 154, 202, 202, 248, 217, 248, 179, 108, 222, 1,
62, 235, 81, 217, 160, 62, 235, 81, 221, 176, 60, 235, 81, 217, 160, 60,
235, 81, 221, 176, 202, 215, 194, 39, 202, 218, 201, 124, 248, 93, 242,
75, 208, 41, 60, 202, 214, 199, 145, 242, 76, 26, 208, 41, 163, 62, 203,
204, 210, 42, 163, 60, 203, 204, 210, 42, 62, 237, 5, 223, 191, 202, 106,
238, 176, 220, 80, 236, 201, 246, 217, 211, 172, 210, 47, 246, 218, 202,
249, 229, 211, 4, 62, 238, 183, 47, 238, 176, 220, 80, 246, 113, 213,
143, 234, 57, 250, 249, 211, 203, 46, 194, 115, 198, 216, 60, 197, 217,
46, 194, 115, 198, 216, 62, 197, 217, 46, 194, 115, 198, 216, 60, 46,
220, 81, 216, 254, 62, 46, 220, 81, 216, 254, 235, 76, 202, 240, 57, 87,
62, 235, 95, 198, 185, 46, 242, 84, 234, 57, 108, 206, 51, 233, 71, 237,
11, 223, 191, 62, 242, 131, 223, 191, 60, 202, 106, 60, 198, 149, 207,
179, 46, 234, 56, 207, 179, 46, 234, 55, 250, 31, 16, 39, 197, 22, 87,
242, 131, 4, 201, 208, 26, 103, 236, 112, 58, 210, 143, 207, 98, 223,
135, 210, 143, 220, 25, 223, 135, 210, 143, 223, 121, 210, 143, 60, 238,
184, 211, 212, 203, 233, 203, 221, 203, 169, 242, 160, 246, 195, 229,
138, 203, 42, 231, 156, 194, 39, 228, 175, 231, 156, 4, 230, 39, 217,
142, 16, 39, 219, 194, 216, 9, 197, 82, 211, 212, 230, 195, 232, 120,
232, 207, 223, 191, 229, 25, 233, 20, 206, 72, 50, 232, 119, 238, 222,
203, 14, 228, 50, 203, 18, 210, 117, 4, 248, 217, 200, 22, 223, 50, 248,
199, 109, 229, 239, 230, 207, 109, 232, 74, 209, 39, 238, 149, 211, 212,
60, 202, 106, 62, 232, 207, 4, 229, 5, 85, 60, 201, 209, 60, 206, 82,
205, 238, 113, 247, 243, 205, 238, 60, 205, 238, 106, 247, 243, 205, 238,
62, 205, 238, 62, 87, 242, 244, 77, 200, 42, 219, 104, 57, 200, 115, 235,
75, 251, 50, 234, 52, 208, 39, 232, 219, 208, 39, 230, 62, 196, 37, 230,
62, 193, 247, 230, 62, 106, 51, 210, 153, 210, 153, 113, 51, 210, 153,
62, 214, 49, 60, 214, 49, 242, 244, 77, 87, 242, 244, 77, 215, 214, 193,
223, 87, 215, 214, 193, 223, 248, 213, 193, 223, 87, 248, 213, 193, 223,
211, 121, 33, 238, 183, 87, 33, 238, 183, 211, 184, 246, 138, 238, 183,
87, 211, 184, 246, 138, 238, 183, 8, 238, 183, 204, 50, 62, 8, 238, 183,
211, 121, 8, 238, 183, 217, 163, 238, 183, 202, 20, 80, 237, 178, 232,
119, 200, 61, 250, 37, 232, 119, 248, 214, 250, 37, 87, 232, 119, 248,
214, 250, 37, 232, 119, 242, 70, 250, 37, 60, 232, 119, 209, 190, 202,
19, 62, 232, 119, 209, 190, 202, 19, 202, 153, 201, 218, 211, 121, 62,
202, 19, 47, 62, 202, 19, 211, 184, 246, 138, 60, 202, 19, 60, 246, 138,
62, 202, 19, 211, 121, 60, 202, 19, 87, 211, 121, 60, 202, 19, 209, 254,
202, 19, 204, 50, 62, 202, 19, 87, 250, 37, 211, 184, 246, 138, 250, 37,
234, 148, 202, 122, 250, 37, 234, 148, 209, 190, 60, 202, 19, 234, 148,
209, 190, 209, 254, 202, 19, 203, 41, 209, 190, 60, 202, 19, 234, 148,
209, 190, 207, 240, 60, 202, 19, 87, 234, 148, 209, 190, 207, 240, 60,
202, 19, 197, 245, 209, 190, 60, 202, 19, 203, 36, 209, 190, 250, 37,
200, 61, 250, 37, 211, 184, 246, 138, 200, 61, 250, 37, 87, 200, 61, 250,
37, 203, 41, 210, 105, 60, 26, 62, 232, 178, 60, 232, 178, 62, 232, 178,
234, 148, 210, 105, 211, 121, 60, 232, 178, 47, 211, 184, 246, 138, 234,
148, 209, 190, 202, 19, 87, 200, 61, 209, 254, 250, 37, 202, 216, 199,
107, 198, 178, 202, 216, 87, 242, 221, 202, 216, 202, 155, 87, 202, 155,
248, 214, 250, 37, 234, 148, 200, 61, 209, 74, 250, 37, 87, 234, 148,
200, 61, 209, 74, 250, 37, 238, 184, 77, 204, 50, 62, 242, 130, 214, 199,
108, 238, 184, 77, 106, 51, 235, 71, 62, 202, 106, 113, 51, 235, 71, 62,
202, 106, 106, 51, 204, 50, 62, 202, 106, 113, 51, 204, 50, 62, 202, 106,
60, 208, 159, 122, 211, 150, 62, 208, 159, 122, 211, 150, 62, 233, 204,
122, 211, 150, 60, 237, 5, 216, 113, 62, 193, 223, 87, 233, 204, 122,
109, 152, 84, 161, 217, 31, 84, 161, 87, 84, 161, 87, 203, 74, 163, 242,
39, 208, 142, 122, 211, 150, 87, 203, 74, 242, 39, 208, 142, 122, 211,
150, 87, 55, 163, 242, 39, 208, 142, 122, 211, 150, 87, 55, 242, 39, 208,
142, 122, 211, 150, 87, 132, 203, 74, 242, 39, 208, 142, 122, 211, 150,
87, 132, 55, 242, 39, 208, 142, 122, 211, 150, 238, 130, 202, 0, 210,
244, 3, 211, 150, 87, 233, 204, 122, 211, 150, 87, 229, 234, 233, 204,
122, 211, 150, 87, 60, 229, 233, 207, 16, 87, 60, 229, 234, 247, 106,
232, 179, 229, 233, 207, 16, 232, 179, 229, 234, 247, 106, 217, 31, 46,
210, 231, 211, 150, 217, 31, 51, 210, 231, 211, 150, 217, 31, 232, 192,
46, 210, 231, 211, 150, 217, 31, 232, 192, 51, 210, 231, 211, 150, 217,
31, 220, 23, 250, 208, 247, 165, 211, 150, 217, 31, 207, 96, 250, 208,
247, 165, 211, 150, 87, 220, 23, 250, 208, 208, 142, 122, 211, 150, 87,
207, 96, 250, 208, 208, 142, 122, 211, 150, 87, 220, 23, 250, 208, 247,
165, 211, 150, 87, 207, 96, 250, 208, 247, 165, 211, 150, 152, 46, 198,
237, 204, 2, 247, 165, 211, 150, 152, 51, 198, 237, 204, 2, 247, 165,
211, 150, 217, 31, 46, 238, 138, 247, 165, 211, 150, 217, 31, 51, 238,
138, 247, 165, 211, 150, 236, 213, 214, 199, 47, 17, 101, 236, 213, 214,
199, 47, 17, 104, 236, 213, 214, 199, 47, 17, 133, 236, 213, 214, 199,
47, 17, 134, 236, 213, 214, 199, 47, 17, 151, 236, 213, 214, 199, 47, 17,
170, 236, 213, 214, 199, 47, 17, 179, 236, 213, 214, 199, 47, 17, 174,
236, 213, 214, 199, 47, 17, 182, 236, 213, 214, 199, 47, 31, 200, 30,
236, 213, 47, 49, 17, 101, 236, 213, 47, 49, 17, 104, 236, 213, 47, 49,
17, 133, 236, 213, 47, 49, 17, 134, 236, 213, 47, 49, 17, 151, 236, 213,
47, 49, 17, 170, 236, 213, 47, 49, 17, 179, 236, 213, 47, 49, 17, 174,
236, 213, 47, 49, 17, 182, 236, 213, 47, 49, 31, 200, 30, 236, 213, 214,
199, 47, 49, 17, 101, 236, 213, 214, 199, 47, 49, 17, 104, 236, 213, 214,
199, 47, 49, 17, 133, 236, 213, 214, 199, 47, 49, 17, 134, 236, 213, 214,
199, 47, 49, 17, 151, 236, 213, 214, 199, 47, 49, 17, 170, 236, 213, 214,
199, 47, 49, 17, 179, 236, 213, 214, 199, 47, 49, 17, 174, 236, 213, 214,
199, 47, 49, 17, 182, 236, 213, 214, 199, 47, 49, 31, 200, 30, 87, 194,
63, 94, 54, 87, 102, 57, 87, 216, 113, 57, 87, 236, 172, 57, 87, 202,
171, 234, 186, 54, 87, 94, 54, 87, 178, 234, 186, 54, 235, 86, 209, 192,
94, 54, 87, 207, 8, 94, 54, 198, 184, 94, 54, 87, 198, 184, 94, 54, 237,
184, 198, 184, 94, 54, 87, 237, 184, 198, 184, 94, 54, 60, 94, 54, 199,
160, 198, 247, 94, 250, 77, 199, 160, 247, 186, 94, 250, 77, 60, 94, 250,
77, 87, 60, 238, 130, 235, 92, 26, 94, 54, 87, 60, 238, 130, 197, 30, 26,
94, 54, 202, 103, 60, 94, 54, 87, 239, 20, 60, 94, 54, 207, 95, 62, 94,
54, 220, 22, 62, 94, 54, 248, 251, 204, 50, 62, 94, 54, 232, 86, 204, 50,
62, 94, 54, 87, 106, 207, 94, 62, 94, 54, 87, 113, 207, 94, 62, 94, 54,
213, 107, 106, 207, 94, 62, 94, 54, 238, 138, 219, 69, 213, 107, 113,
207, 94, 62, 94, 54, 47, 87, 62, 94, 54, 194, 74, 94, 54, 247, 247, 202,
171, 234, 186, 54, 247, 247, 94, 54, 247, 247, 178, 234, 186, 54, 87,
247, 247, 202, 171, 234, 186, 54, 87, 247, 247, 94, 54, 87, 247, 247,
178, 234, 186, 54, 200, 63, 94, 54, 87, 200, 62, 94, 54, 194, 101, 94,
54, 87, 194, 101, 94, 54, 211, 178, 94, 54, 55, 238, 138, 219, 69, 112,
236, 223, 250, 207, 62, 198, 186, 238, 254, 2, 62, 198, 185, 210, 120,
211, 184, 201, 153, 211, 184, 201, 105, 46, 206, 157, 248, 237, 237, 82,
51, 206, 157, 248, 237, 237, 82, 211, 164, 4, 78, 223, 145, 207, 169,
202, 190, 209, 114, 201, 153, 201, 106, 209, 114, 202, 189, 84, 248, 194,
4, 229, 5, 111, 13, 207, 73, 237, 10, 184, 236, 171, 13, 233, 71, 237,
10, 108, 219, 93, 250, 217, 108, 219, 93, 211, 163, 62, 237, 5, 4, 246,
136, 236, 114, 26, 4, 236, 114, 234, 116, 80, 211, 176, 197, 29, 106, 51,
238, 224, 4, 236, 114, 113, 46, 238, 224, 4, 236, 114, 46, 211, 123, 222,
231, 51, 211, 123, 222, 231, 232, 71, 211, 123, 222, 231, 220, 73, 130,
200, 159, 220, 73, 142, 200, 159, 46, 26, 51, 55, 198, 8, 46, 26, 51,
200, 159, 46, 215, 218, 184, 51, 200, 159, 184, 46, 200, 159, 130, 200,
160, 4, 242, 131, 58, 219, 44, 236, 178, 247, 64, 229, 5, 206, 202, 62,
239, 19, 237, 4, 62, 239, 19, 237, 5, 4, 114, 199, 117, 62, 239, 19, 237,
5, 4, 94, 199, 117, 62, 50, 4, 114, 199, 117, 62, 50, 4, 94, 199, 117,
13, 46, 62, 50, 186, 13, 51, 62, 50, 186, 13, 46, 250, 208, 186, 13, 51,
250, 208, 186, 13, 46, 55, 250, 208, 186, 13, 51, 55, 250, 208, 186, 13,
46, 62, 198, 237, 204, 2, 186, 13, 51, 62, 198, 237, 204, 2, 186, 13, 46,
232, 192, 210, 230, 13, 51, 232, 192, 210, 230, 197, 30, 208, 170, 54,
235, 92, 208, 170, 54, 250, 182, 231, 195, 242, 131, 54, 242, 86, 231,
195, 242, 131, 54, 51, 61, 4, 47, 209, 206, 184, 114, 54, 184, 94, 54,
184, 46, 51, 54, 184, 114, 55, 54, 184, 94, 55, 54, 184, 46, 51, 55, 54,
184, 114, 61, 232, 89, 161, 184, 94, 61, 232, 89, 161, 184, 114, 55, 61,
232, 89, 161, 184, 94, 55, 61, 232, 89, 161, 184, 94, 202, 99, 54, 66,
67, 247, 241, 66, 67, 236, 110, 66, 67, 235, 238, 66, 67, 236, 109, 66,
67, 235, 174, 66, 67, 236, 45, 66, 67, 235, 237, 66, 67, 236, 108, 66,
67, 235, 142, 66, 67, 236, 13, 66, 67, 235, 205, 66, 67, 236, 76, 66, 67,
235, 173, 66, 67, 236, 44, 66, 67, 235, 236, 66, 67, 236, 107, 66, 67,
235, 126, 66, 67, 235, 253, 66, 67, 235, 189, 66, 67, 236, 60, 66, 67,
235, 157, 66, 67, 236, 28, 66, 67, 235, 220, 66, 67, 236, 91, 66, 67,
235, 141, 66, 67, 236, 12, 66, 67, 235, 204, 66, 67, 236, 75, 66, 67,
235, 172, 66, 67, 236, 43, 66, 67, 235, 235, 66, 67, 236, 106, 66, 67,
235, 118, 66, 67, 235, 245, 66, 67, 235, 181, 66, 67, 236, 52, 66, 67,
235, 149, 66, 67, 236, 20, 66, 67, 235, 212, 66, 67, 236, 83, 66, 67,
235, 133, 66, 67, 236, 4, 66, 67, 235, 196, 66, 67, 236, 67, 66, 67, 235,
164, 66, 67, 236, 35, 66, 67, 235, 227, 66, 67, 236, 98, 66, 67, 235,
125, 66, 67, 235, 252, 66, 67, 235, 188, 66, 67, 236, 59, 66, 67, 235,
156, 66, 67, 236, 27, 66, 67, 235, 219, 66, 67, 236, 90, 66, 67, 235,
140, 66, 67, 236, 11, 66, 67, 235, 203, 66, 67, 236, 74, 66, 67, 235,
171, 66, 67, 236, 42, 66, 67, 235, 234, 66, 67, 236, 105, 66, 67, 235,
114, 66, 67, 235, 241, 66, 67, 235, 177, 66, 67, 236, 48, 66, 67, 235,
145, 66, 67, 236, 16, 66, 67, 235, 208, 66, 67, 236, 79, 66, 67, 235,
129, 66, 67, 236, 0, 66, 67, 235, 192, 66, 67, 236, 63, 66, 67, 235, 160,
66, 67, 236, 31, 66, 67, 235, 223, 66, 67, 236, 94, 66, 67, 235, 121, 66,
67, 235, 248, 66, 67, 235, 184, 66, 67, 236, 55, 66, 67, 235, 152, 66,
67, 236, 23, 66, 67, 235, 215, 66, 67, 236, 86, 66, 67, 235, 136, 66, 67,
236, 7, 66, 67, 235, 199, 66, 67, 236, 70, 66, 67, 235, 167, 66, 67, 236,
38, 66, 67, 235, 230, 66, 67, 236, 101, 66, 67, 235, 117, 66, 67, 235,
244, 66, 67, 235, 180, 66, 67, 236, 51, 66, 67, 235, 148, 66, 67, 236,
19, 66, 67, 235, 211, 66, 67, 236, 82, 66, 67, 235, 132, 66, 67, 236, 3,
66, 67, 235, 195, 66, 67, 236, 66, 66, 67, 235, 163, 66, 67, 236, 34, 66,
67, 235, 226, 66, 67, 236, 97, 66, 67, 235, 124, 66, 67, 235, 251, 66,
67, 235, 187, 66, 67, 236, 58, 66, 67, 235, 155, 66, 67, 236, 26, 66, 67,
235, 218, 66, 67, 236, 89, 66, 67, 235, 139, 66, 67, 236, 10, 66, 67,
235, 202, 66, 67, 236, 73, 66, 67, 235, 170, 66, 67, 236, 41, 66, 67,
235, 233, 66, 67, 236, 104, 66, 67, 235, 112, 66, 67, 235, 239, 66, 67,
235, 175, 66, 67, 236, 46, 66, 67, 235, 143, 66, 67, 236, 14, 66, 67,
235, 206, 66, 67, 236, 77, 66, 67, 235, 127, 66, 67, 235, 254, 66, 67,
235, 190, 66, 67, 236, 61, 66, 67, 235, 158, 66, 67, 236, 29, 66, 67,
235, 221, 66, 67, 236, 92, 66, 67, 235, 119, 66, 67, 235, 246, 66, 67,
235, 182, 66, 67, 236, 53, 66, 67, 235, 150, 66, 67, 236, 21, 66, 67,
235, 213, 66, 67, 236, 84, 66, 67, 235, 134, 66, 67, 236, 5, 66, 67, 235,
197, 66, 67, 236, 68, 66, 67, 235, 165, 66, 67, 236, 36, 66, 67, 235,
228, 66, 67, 236, 99, 66, 67, 235, 115, 66, 67, 235, 242, 66, 67, 235,
178, 66, 67, 236, 49, 66, 67, 235, 146, 66, 67, 236, 17, 66, 67, 235,
209, 66, 67, 236, 80, 66, 67, 235, 130, 66, 67, 236, 1, 66, 67, 235, 193,
66, 67, 236, 64, 66, 67, 235, 161, 66, 67, 236, 32, 66, 67, 235, 224, 66,
67, 236, 95, 66, 67, 235, 122, 66, 67, 235, 249, 66, 67, 235, 185, 66,
67, 236, 56, 66, 67, 235, 153, 66, 67, 236, 24, 66, 67, 235, 216, 66, 67,
236, 87, 66, 67, 235, 137, 66, 67, 236, 8, 66, 67, 235, 200, 66, 67, 236,
71, 66, 67, 235, 168, 66, 67, 236, 39, 66, 67, 235, 231, 66, 67, 236,
102, 66, 67, 235, 113, 66, 67, 235, 240, 66, 67, 235, 176, 66, 67, 236,
47, 66, 67, 235, 144, 66, 67, 236, 15, 66, 67, 235, 207, 66, 67, 236, 78,
66, 67, 235, 128, 66, 67, 235, 255, 66, 67, 235, 191, 66, 67, 236, 62,
66, 67, 235, 159, 66, 67, 236, 30, 66, 67, 235, 222, 66, 67, 236, 93, 66,
67, 235, 120, 66, 67, 235, 247, 66, 67, 235, 183, 66, 67, 236, 54, 66,
67, 235, 151, 66, 67, 236, 22, 66, 67, 235, 214, 66, 67, 236, 85, 66, 67,
235, 135, 66, 67, 236, 6, 66, 67, 235, 198, 66, 67, 236, 69, 66, 67, 235,
166, 66, 67, 236, 37, 66, 67, 235, 229, 66, 67, 236, 100, 66, 67, 235,
116, 66, 67, 235, 243, 66, 67, 235, 179, 66, 67, 236, 50, 66, 67, 235,
147, 66, 67, 236, 18, 66, 67, 235, 210, 66, 67, 236, 81, 66, 67, 235,
131, 66, 67, 236, 2, 66, 67, 235, 194, 66, 67, 236, 65, 66, 67, 235, 162,
66, 67, 236, 33, 66, 67, 235, 225, 66, 67, 236, 96, 66, 67, 235, 123, 66,
67, 235, 250, 66, 67, 235, 186, 66, 67, 236, 57, 66, 67, 235, 154, 66,
67, 236, 25, 66, 67, 235, 217, 66, 67, 236, 88, 66, 67, 235, 138, 66, 67,
236, 9, 66, 67, 235, 201, 66, 67, 236, 72, 66, 67, 235, 169, 66, 67, 236,
40, 66, 67, 235, 232, 66, 67, 236, 103, 94, 197, 220, 61, 4, 84, 111, 94,
197, 220, 61, 4, 55, 84, 111, 114, 55, 61, 4, 84, 111, 94, 55, 61, 4, 84,
111, 46, 51, 55, 61, 4, 84, 111, 94, 197, 220, 61, 232, 89, 161, 114, 55,
61, 232, 89, 161, 94, 55, 61, 232, 89, 161, 235, 92, 61, 4, 229, 5, 111,
197, 30, 61, 4, 229, 5, 111, 197, 30, 198, 170, 54, 235, 92, 198, 170,
54, 114, 55, 237, 186, 54, 94, 55, 237, 186, 54, 114, 198, 170, 237, 186,
54, 94, 198, 170, 237, 186, 54, 94, 197, 220, 198, 170, 237, 186, 54, 94,
61, 4, 235, 111, 201, 255, 197, 30, 61, 115, 161, 235, 92, 61, 115, 161,
94, 61, 4, 200, 148, 4, 84, 111, 94, 61, 4, 200, 148, 4, 55, 84, 111, 94,
197, 220, 61, 4, 200, 147, 94, 197, 220, 61, 4, 200, 148, 4, 84, 111, 94,
197, 220, 61, 4, 200, 148, 4, 55, 84, 111, 114, 250, 79, 94, 250, 79,
114, 55, 250, 79, 94, 55, 250, 79, 114, 61, 115, 60, 237, 4, 94, 61, 115,
60, 237, 4, 114, 61, 232, 89, 248, 194, 115, 60, 237, 4, 94, 61, 232, 89,
248, 194, 115, 60, 237, 4, 178, 194, 91, 26, 202, 171, 234, 186, 54, 178,
234, 186, 26, 202, 171, 194, 91, 54, 178, 194, 91, 61, 4, 128, 178, 234,
186, 61, 4, 128, 202, 171, 234, 186, 61, 4, 128, 202, 171, 194, 91, 61,
4, 128, 178, 194, 91, 61, 26, 178, 234, 186, 54, 178, 234, 186, 61, 26,
202, 171, 234, 186, 54, 202, 171, 234, 186, 61, 26, 202, 171, 194, 91,
54, 202, 171, 194, 91, 61, 26, 178, 194, 91, 54, 207, 73, 237, 11, 238,
176, 233, 71, 237, 10, 233, 71, 237, 11, 238, 176, 207, 73, 237, 10, 202,
171, 234, 186, 61, 238, 176, 178, 234, 186, 54, 178, 234, 186, 61, 238,
176, 202, 171, 234, 186, 54, 233, 71, 237, 11, 238, 176, 178, 234, 186,
54, 207, 73, 237, 11, 238, 176, 202, 171, 234, 186, 54, 178, 234, 186,
61, 238, 176, 178, 194, 91, 54, 178, 194, 91, 61, 238, 176, 178, 234,
186, 54, 194, 125, 61, 209, 188, 236, 203, 207, 101, 61, 209, 188, 94,
199, 216, 238, 128, 197, 29, 61, 209, 188, 94, 199, 216, 238, 128, 235,
91, 61, 209, 188, 235, 92, 199, 216, 238, 128, 220, 18, 61, 209, 188,
235, 92, 199, 216, 238, 128, 207, 90, 207, 93, 250, 115, 242, 86, 54,
220, 21, 250, 115, 250, 182, 54, 198, 249, 250, 115, 250, 182, 54, 247,
188, 250, 115, 250, 182, 54, 198, 249, 250, 115, 242, 86, 61, 4, 216,
112, 198, 249, 250, 115, 250, 182, 61, 4, 209, 206, 106, 51, 204, 182,
242, 86, 54, 106, 46, 204, 182, 250, 182, 54, 250, 182, 242, 84, 242,
131, 54, 242, 86, 242, 84, 242, 131, 54, 94, 61, 95, 203, 195, 114, 54,
114, 61, 95, 203, 195, 94, 54, 203, 195, 94, 61, 95, 114, 54, 94, 61, 4,
102, 63, 114, 61, 4, 102, 63, 94, 61, 199, 151, 193, 223, 46, 51, 61,
199, 151, 2, 242, 130, 197, 30, 197, 220, 61, 232, 89, 2, 242, 130, 46,
173, 130, 51, 173, 142, 230, 21, 46, 173, 142, 51, 173, 130, 230, 21,
130, 173, 51, 142, 173, 46, 230, 21, 130, 173, 46, 142, 173, 51, 230, 21,
46, 173, 130, 51, 173, 130, 230, 21, 130, 173, 51, 142, 173, 51, 230, 21,
46, 173, 142, 51, 173, 142, 230, 21, 130, 173, 46, 142, 173, 46, 230, 21,
114, 230, 22, 4, 173, 130, 115, 161, 94, 230, 22, 4, 173, 130, 115, 161,
197, 30, 230, 22, 4, 173, 51, 115, 161, 235, 92, 230, 22, 4, 173, 51,
115, 161, 114, 230, 22, 4, 173, 142, 115, 161, 94, 230, 22, 4, 173, 142,
115, 161, 197, 30, 230, 22, 4, 173, 46, 115, 161, 235, 92, 230, 22, 4,
173, 46, 115, 161, 114, 230, 22, 4, 173, 130, 232, 89, 161, 94, 230, 22,
4, 173, 130, 232, 89, 161, 197, 30, 230, 22, 4, 173, 51, 232, 89, 161,
235, 92, 230, 22, 4, 173, 51, 232, 89, 161, 114, 230, 22, 4, 173, 142,
232, 89, 161, 94, 230, 22, 4, 173, 142, 232, 89, 161, 197, 30, 230, 22,
4, 173, 46, 232, 89, 161, 235, 92, 230, 22, 4, 173, 46, 232, 89, 161,
114, 230, 22, 4, 173, 130, 95, 114, 230, 22, 4, 173, 235, 96, 197, 30,
230, 22, 4, 173, 46, 248, 67, 197, 30, 230, 22, 4, 173, 207, 101, 94,
230, 22, 4, 173, 130, 95, 94, 230, 22, 4, 173, 235, 96, 235, 92, 230, 22,
4, 173, 46, 248, 67, 235, 92, 230, 22, 4, 173, 207, 101, 114, 230, 22, 4,
173, 130, 95, 94, 230, 22, 4, 173, 197, 41, 114, 230, 22, 4, 173, 142,
95, 94, 230, 22, 4, 173, 235, 96, 94, 230, 22, 4, 173, 130, 95, 114, 230,
22, 4, 173, 197, 41, 94, 230, 22, 4, 173, 142, 95, 114, 230, 22, 4, 173,
235, 96, 114, 230, 22, 4, 173, 130, 95, 184, 237, 185, 114, 230, 22, 4,
173, 142, 248, 84, 184, 237, 185, 94, 230, 22, 4, 173, 130, 95, 184, 237,
185, 94, 230, 22, 4, 173, 142, 248, 84, 184, 237, 185, 197, 30, 230, 22,
4, 173, 46, 248, 67, 235, 92, 230, 22, 4, 173, 207, 101, 235, 92, 230,
22, 4, 173, 46, 248, 67, 197, 30, 230, 22, 4, 173, 207, 101, 51, 55, 61,
4, 207, 7, 229, 245, 234, 30, 3, 95, 94, 54, 199, 91, 211, 174, 95, 94,
54, 114, 61, 95, 199, 91, 211, 173, 94, 61, 95, 199, 91, 211, 173, 94,
61, 95, 251, 1, 187, 155, 219, 240, 95, 114, 54, 114, 61, 199, 151, 219,
239, 230, 204, 95, 94, 54, 201, 154, 95, 94, 54, 114, 61, 199, 151, 201,
153, 201, 106, 95, 114, 54, 46, 232, 225, 200, 147, 51, 232, 225, 200,
147, 130, 232, 225, 200, 147, 142, 232, 225, 200, 147, 198, 170, 84, 248,
194, 237, 82, 192, 156, 213, 109, 202, 117, 192, 156, 213, 109, 197, 206,
242, 47, 46, 62, 238, 138, 186, 51, 62, 238, 138, 186, 46, 62, 210, 230,
51, 62, 210, 230, 192, 156, 213, 109, 46, 223, 206, 186, 192, 156, 213,
109, 51, 223, 206, 186, 192, 156, 213, 109, 46, 248, 19, 186, 192, 156,
213, 109, 51, 248, 19, 186, 46, 50, 247, 165, 4, 197, 67, 51, 50, 247,
165, 4, 197, 67, 46, 50, 247, 165, 4, 199, 118, 223, 191, 198, 249, 238,
223, 51, 50, 247, 165, 4, 199, 118, 223, 191, 247, 188, 238, 223, 46, 50,
247, 165, 4, 199, 118, 223, 191, 247, 188, 238, 223, 51, 50, 247, 165, 4,
199, 118, 223, 191, 198, 249, 238, 223, 46, 250, 208, 247, 165, 4, 236,
114, 51, 250, 208, 247, 165, 4, 236, 114, 46, 250, 115, 219, 240, 186,
51, 250, 115, 230, 204, 186, 55, 46, 250, 115, 230, 204, 186, 55, 51,
250, 115, 219, 240, 186, 46, 60, 198, 237, 204, 2, 186, 51, 60, 198, 237,
204, 2, 186, 235, 111, 233, 27, 84, 192, 21, 219, 175, 217, 42, 250, 208,
211, 176, 220, 28, 51, 250, 208, 196, 137, 4, 202, 106, 217, 42, 51, 250,
208, 4, 236, 114, 250, 208, 4, 206, 159, 223, 145, 251, 130, 250, 207,
202, 139, 250, 208, 211, 176, 220, 28, 202, 139, 250, 208, 211, 176, 197,
41, 163, 250, 207, 207, 168, 250, 207, 250, 208, 4, 197, 67, 207, 168,
250, 208, 4, 197, 67, 212, 18, 250, 208, 211, 176, 197, 41, 212, 18, 250,
208, 211, 176, 235, 96, 217, 42, 250, 208, 4, 211, 184, 250, 93, 234, 76,
223, 191, 61, 209, 188, 130, 26, 207, 101, 217, 42, 250, 208, 4, 211,
184, 250, 93, 234, 76, 223, 191, 61, 209, 188, 130, 26, 220, 28, 217, 42,
250, 208, 4, 211, 184, 250, 93, 234, 76, 223, 191, 61, 209, 188, 142, 26,
207, 101, 217, 42, 250, 208, 4, 211, 184, 250, 93, 234, 76, 223, 191, 61,
209, 188, 142, 26, 220, 28, 217, 42, 250, 208, 4, 211, 184, 250, 93, 234,
76, 223, 191, 61, 209, 188, 51, 26, 197, 41, 217, 42, 250, 208, 4, 211,
184, 250, 93, 234, 76, 223, 191, 61, 209, 188, 46, 26, 197, 41, 217, 42,
250, 208, 4, 211, 184, 250, 93, 234, 76, 223, 191, 61, 209, 188, 51, 26,
235, 96, 217, 42, 250, 208, 4, 211, 184, 250, 93, 234, 76, 223, 191, 61,
209, 188, 46, 26, 235, 96, 207, 168, 234, 90, 204, 151, 234, 90, 204,
152, 4, 211, 117, 234, 90, 204, 152, 4, 2, 242, 131, 58, 234, 90, 204,
152, 4, 51, 61, 58, 234, 90, 204, 152, 4, 46, 61, 58, 242, 131, 4, 229,
5, 161, 47, 84, 161, 47, 210, 235, 47, 207, 169, 202, 189, 47, 210, 120,
242, 131, 236, 178, 247, 64, 229, 5, 248, 194, 26, 198, 249, 138, 236,
178, 247, 64, 84, 161, 242, 131, 4, 201, 108, 193, 223, 47, 250, 180,
236, 172, 57, 130, 61, 199, 151, 242, 130, 47, 62, 247, 106, 47, 247,
106, 47, 219, 239, 47, 230, 203, 242, 131, 4, 2, 242, 131, 115, 199, 225,
207, 101, 242, 131, 4, 103, 229, 5, 201, 196, 115, 199, 225, 207, 101,
108, 207, 73, 237, 11, 203, 4, 108, 233, 71, 237, 11, 203, 4, 108, 250,
37, 108, 2, 242, 130, 108, 202, 106, 103, 222, 230, 202, 104, 198, 186,
4, 78, 58, 198, 186, 4, 197, 67, 206, 159, 223, 191, 198, 185, 198, 186,
4, 204, 159, 250, 27, 247, 187, 51, 198, 186, 95, 46, 198, 185, 46, 198,
186, 248, 67, 84, 161, 84, 248, 194, 248, 67, 51, 198, 185, 247, 175, 4,
46, 138, 247, 248, 247, 175, 4, 51, 138, 247, 248, 60, 247, 174, 24, 4,
46, 138, 247, 248, 24, 4, 51, 138, 247, 248, 62, 228, 195, 60, 228, 195,
46, 194, 58, 233, 27, 51, 194, 58, 233, 27, 46, 55, 194, 58, 233, 27, 51,
55, 194, 58, 233, 27, 223, 183, 223, 167, 199, 114, 136, 223, 167, 223,
168, 214, 201, 4, 84, 161, 235, 105, 215, 218, 50, 4, 238, 246, 211, 122,
223, 180, 250, 61, 203, 157, 209, 85, 234, 30, 3, 26, 203, 6, 210, 235,
234, 30, 3, 26, 203, 6, 210, 236, 4, 199, 91, 58, 228, 41, 115, 26, 203,
6, 210, 235, 231, 9, 202, 18, 199, 213, 235, 95, 198, 186, 4, 46, 138,
247, 248, 235, 95, 198, 186, 4, 51, 138, 247, 248, 60, 237, 5, 4, 142,
54, 60, 219, 43, 62, 242, 131, 4, 142, 54, 60, 242, 131, 4, 142, 54, 234,
12, 62, 202, 106, 234, 12, 60, 202, 106, 234, 12, 62, 237, 4, 234, 12,
60, 237, 4, 234, 12, 62, 242, 130, 234, 12, 60, 242, 130, 206, 201, 207,
169, 202, 190, 211, 173, 202, 190, 4, 211, 117, 207, 169, 202, 190, 4,
229, 5, 111, 248, 28, 202, 189, 248, 28, 207, 169, 202, 189, 55, 209,
206, 198, 170, 209, 206, 220, 23, 238, 130, 250, 208, 186, 207, 96, 238,
130, 250, 208, 186, 199, 75, 216, 110, 215, 150, 47, 78, 211, 173, 215,
150, 47, 102, 211, 173, 215, 150, 47, 24, 211, 173, 215, 150, 197, 57,
211, 174, 4, 236, 114, 215, 150, 197, 57, 211, 174, 4, 209, 206, 215,
150, 50, 223, 128, 211, 173, 215, 150, 50, 197, 57, 211, 173, 103, 219,
93, 26, 211, 173, 103, 219, 93, 211, 164, 211, 173, 215, 150, 24, 211,
173, 216, 59, 103, 201, 129, 201, 127, 4, 223, 141, 208, 170, 223, 142,
211, 173, 232, 234, 210, 224, 223, 141, 223, 142, 4, 55, 111, 223, 142,
249, 244, 4, 203, 4, 242, 123, 232, 68, 250, 182, 223, 139, 219, 176,
223, 140, 4, 207, 241, 210, 203, 250, 87, 209, 182, 219, 176, 223, 140,
4, 204, 182, 210, 203, 250, 87, 209, 182, 219, 176, 223, 140, 213, 111,
223, 185, 199, 225, 209, 182, 223, 142, 250, 87, 41, 209, 192, 211, 173,
208, 164, 223, 142, 211, 173, 223, 142, 4, 114, 61, 4, 128, 223, 142, 4,
24, 57, 223, 142, 4, 223, 127, 223, 142, 4, 197, 56, 223, 142, 4, 211,
117, 223, 142, 4, 197, 67, 222, 231, 220, 73, 46, 198, 186, 211, 173,
192, 156, 213, 109, 205, 246, 239, 26, 192, 156, 213, 109, 205, 246, 209,
250, 192, 156, 213, 109, 205, 246, 209, 80, 102, 3, 4, 2, 242, 131, 58,
102, 3, 4, 242, 122, 251, 144, 58, 102, 3, 4, 199, 91, 58, 102, 3, 4, 78,
63, 102, 3, 4, 199, 91, 63, 102, 3, 4, 201, 155, 104, 102, 3, 4, 60, 198,
185, 216, 113, 3, 4, 242, 39, 58, 216, 113, 3, 4, 78, 63, 216, 113, 3, 4,
233, 71, 236, 111, 216, 113, 3, 4, 207, 73, 236, 111, 102, 3, 223, 191,
46, 138, 242, 130, 102, 3, 223, 191, 51, 138, 242, 130, 196, 122, 211,
164, 238, 184, 209, 85, 215, 214, 3, 4, 78, 58, 215, 214, 3, 4, 197, 67,
204, 179, 209, 86, 4, 247, 188, 242, 83, 202, 234, 209, 85, 215, 214, 3,
223, 191, 46, 138, 242, 130, 215, 214, 3, 223, 191, 51, 138, 242, 130,
47, 215, 214, 3, 4, 242, 122, 251, 143, 215, 214, 3, 223, 191, 55, 242,
130, 47, 236, 172, 57, 102, 3, 223, 191, 198, 185, 216, 113, 3, 223, 191,
198, 185, 215, 214, 3, 223, 191, 198, 185, 223, 136, 209, 85, 207, 91,
223, 136, 209, 85, 192, 156, 213, 109, 207, 214, 239, 26, 250, 239, 211,
164, 238, 230, 223, 128, 4, 236, 114, 197, 57, 4, 216, 113, 57, 197, 57,
4, 211, 117, 223, 128, 4, 211, 117, 223, 128, 4, 219, 93, 250, 217, 197,
57, 4, 219, 93, 211, 163, 197, 57, 95, 223, 127, 223, 128, 95, 197, 56,
197, 57, 95, 248, 194, 95, 223, 127, 223, 128, 95, 248, 194, 95, 197, 56,
197, 57, 248, 67, 26, 222, 230, 4, 197, 56, 223, 128, 248, 67, 26, 222,
230, 4, 223, 127, 242, 84, 197, 57, 4, 204, 158, 242, 84, 223, 128, 4,
204, 158, 55, 50, 223, 127, 55, 50, 197, 56, 242, 84, 197, 57, 4, 204,
159, 26, 202, 234, 209, 85, 219, 93, 26, 4, 78, 58, 219, 93, 211, 164, 4,
78, 58, 55, 219, 93, 250, 217, 55, 219, 93, 211, 163, 103, 223, 129, 219,
93, 250, 217, 103, 223, 129, 219, 93, 211, 163, 202, 244, 220, 73, 211,
163, 202, 244, 220, 73, 250, 217, 219, 93, 211, 164, 211, 112, 219, 93,
250, 217, 219, 93, 26, 4, 85, 201, 255, 219, 93, 211, 164, 4, 85, 201,
255, 219, 93, 26, 4, 229, 5, 237, 185, 219, 93, 211, 164, 4, 229, 5, 237,
185, 219, 93, 26, 4, 55, 211, 117, 219, 93, 26, 4, 197, 67, 219, 93, 26,
4, 55, 197, 67, 2, 196, 119, 4, 197, 67, 219, 93, 211, 164, 4, 55, 211,
117, 219, 93, 211, 164, 4, 55, 197, 67, 192, 156, 213, 109, 236, 124,
250, 172, 192, 156, 213, 109, 208, 29, 250, 172, 234, 30, 3, 4, 78, 63,
228, 41, 4, 78, 58, 198, 170, 229, 5, 248, 194, 4, 55, 84, 111, 198, 170,
229, 5, 248, 194, 4, 198, 170, 84, 111, 199, 91, 211, 174, 4, 78, 58,
199, 91, 211, 174, 4, 207, 73, 236, 111, 203, 84, 216, 113, 203, 83, 239,
13, 4, 78, 58, 234, 30, 4, 250, 37, 251, 1, 187, 115, 4, 242, 122, 251,
143, 250, 138, 187, 211, 164, 187, 155, 234, 30, 3, 95, 102, 57, 102, 3,
95, 234, 30, 57, 234, 30, 3, 95, 199, 91, 211, 173, 55, 242, 48, 234, 31,
103, 239, 6, 234, 30, 203, 98, 112, 239, 6, 234, 30, 203, 98, 234, 30, 3,
4, 103, 236, 112, 95, 26, 103, 236, 112, 63, 234, 23, 4, 232, 119, 236,
112, 58, 219, 240, 4, 242, 131, 223, 145, 230, 204, 4, 242, 131, 223,
145, 219, 240, 4, 208, 159, 122, 58, 230, 204, 4, 208, 159, 122, 58, 219,
240, 211, 164, 203, 6, 187, 155, 230, 204, 211, 164, 203, 6, 187, 155,
219, 240, 211, 164, 203, 6, 187, 115, 4, 78, 223, 145, 230, 204, 211,
164, 203, 6, 187, 115, 4, 78, 223, 145, 219, 240, 211, 164, 203, 6, 187,
115, 4, 78, 58, 230, 204, 211, 164, 203, 6, 187, 115, 4, 78, 58, 219,
240, 211, 164, 203, 6, 187, 115, 4, 78, 95, 207, 101, 230, 204, 211, 164,
203, 6, 187, 115, 4, 78, 95, 220, 28, 219, 240, 211, 164, 250, 139, 230,
204, 211, 164, 250, 139, 219, 240, 26, 203, 72, 213, 111, 187, 155, 230,
204, 26, 203, 72, 213, 111, 187, 155, 219, 240, 26, 213, 111, 250, 139,
230, 204, 26, 213, 111, 250, 139, 219, 240, 95, 235, 104, 187, 95, 230,
203, 230, 204, 95, 235, 104, 187, 95, 219, 239, 219, 240, 95, 203, 84,
211, 164, 234, 31, 230, 204, 95, 203, 84, 211, 164, 234, 31, 219, 240,
95, 203, 84, 95, 230, 203, 230, 204, 95, 203, 84, 95, 219, 239, 219, 240,
95, 230, 204, 95, 235, 104, 234, 31, 230, 204, 95, 219, 240, 95, 235,
104, 234, 31, 219, 240, 95, 203, 6, 187, 95, 230, 204, 95, 203, 6, 234,
31, 230, 204, 95, 203, 6, 187, 95, 219, 240, 95, 203, 6, 234, 31, 203, 6,
187, 115, 211, 164, 219, 239, 203, 6, 187, 115, 211, 164, 230, 203, 203,
6, 187, 115, 211, 164, 219, 240, 4, 78, 223, 145, 203, 6, 187, 115, 211,
164, 230, 204, 4, 78, 223, 145, 235, 104, 187, 115, 211, 164, 219, 239,
235, 104, 187, 115, 211, 164, 230, 203, 235, 104, 203, 6, 187, 115, 211,
164, 219, 239, 235, 104, 203, 6, 187, 115, 211, 164, 230, 203, 203, 84,
211, 164, 219, 239, 203, 84, 211, 164, 230, 203, 203, 84, 95, 219, 240,
95, 234, 30, 57, 203, 84, 95, 230, 204, 95, 234, 30, 57, 55, 214, 185,
219, 239, 55, 214, 185, 230, 203, 55, 214, 185, 219, 240, 4, 197, 67,
230, 204, 211, 112, 219, 239, 230, 204, 248, 67, 219, 239, 219, 240, 242,
84, 247, 64, 238, 131, 230, 204, 242, 84, 247, 64, 238, 131, 219, 240,
242, 84, 247, 64, 238, 132, 95, 203, 6, 234, 31, 230, 204, 242, 84, 247,
64, 238, 132, 95, 203, 6, 234, 31, 202, 235, 199, 229, 220, 71, 199, 229,
202, 235, 199, 230, 211, 164, 187, 155, 220, 71, 199, 230, 211, 164, 187,
155, 234, 30, 3, 4, 247, 99, 58, 209, 116, 95, 203, 72, 234, 30, 57, 201,
146, 95, 203, 72, 234, 30, 57, 209, 116, 95, 203, 72, 213, 111, 187, 155,
201, 146, 95, 203, 72, 213, 111, 187, 155, 209, 116, 95, 234, 30, 57,
201, 146, 95, 234, 30, 57, 209, 116, 95, 213, 111, 187, 155, 201, 146,
95, 213, 111, 187, 155, 209, 116, 95, 251, 1, 187, 155, 201, 146, 95,
251, 1, 187, 155, 209, 116, 95, 213, 111, 251, 1, 187, 155, 201, 146, 95,
213, 111, 251, 1, 187, 155, 55, 209, 115, 55, 201, 145, 201, 154, 4, 236,
114, 201, 106, 4, 236, 114, 201, 154, 4, 102, 3, 63, 201, 106, 4, 102, 3,
63, 201, 154, 4, 215, 214, 3, 63, 201, 106, 4, 215, 214, 3, 63, 201, 154,
80, 211, 164, 187, 115, 4, 78, 58, 201, 106, 80, 211, 164, 187, 115, 4,
78, 58, 201, 154, 80, 95, 234, 30, 57, 201, 106, 80, 95, 234, 30, 57,
201, 154, 80, 95, 199, 91, 211, 173, 201, 106, 80, 95, 199, 91, 211, 173,
201, 154, 80, 95, 251, 1, 187, 155, 201, 106, 80, 95, 251, 1, 187, 155,
201, 154, 80, 95, 213, 111, 187, 155, 201, 106, 80, 95, 213, 111, 187,
155, 50, 46, 211, 184, 105, 211, 173, 50, 51, 211, 184, 105, 211, 173,
242, 84, 201, 153, 242, 84, 201, 105, 242, 84, 201, 154, 211, 164, 187,
155, 242, 84, 201, 106, 211, 164, 187, 155, 201, 154, 95, 201, 105, 201,
106, 95, 201, 153, 201, 154, 95, 201, 153, 201, 106, 95, 201, 105, 201,
106, 248, 67, 201, 153, 201, 106, 248, 67, 26, 222, 230, 247, 64, 237,
186, 4, 201, 153, 234, 116, 80, 211, 176, 235, 91, 209, 240, 4, 200, 57,
198, 248, 198, 204, 223, 127, 232, 137, 213, 126, 203, 195, 46, 200, 159,
203, 195, 142, 200, 159, 203, 195, 130, 200, 159, 210, 121, 4, 206, 158,
84, 248, 194, 198, 170, 51, 198, 8, 55, 84, 248, 194, 46, 198, 8, 84,
248, 194, 55, 46, 198, 8, 55, 84, 248, 194, 55, 46, 198, 8, 184, 237,
186, 232, 89, 46, 217, 10, 80, 55, 196, 105, 203, 195, 142, 200, 160, 4,
211, 117, 203, 195, 130, 200, 160, 4, 197, 67, 203, 195, 130, 200, 160,
95, 203, 195, 142, 200, 159, 55, 142, 200, 159, 55, 130, 200, 159, 55,
201, 208, 213, 111, 57, 207, 168, 55, 201, 208, 213, 111, 57, 236, 136,
213, 111, 236, 180, 4, 207, 168, 214, 200, 203, 4, 84, 219, 176, 4, 242,
131, 58, 84, 219, 176, 4, 242, 131, 63, 142, 200, 160, 4, 242, 131, 63,
210, 236, 4, 229, 5, 111, 210, 236, 4, 199, 91, 211, 173, 198, 170, 84,
248, 194, 248, 21, 207, 215, 198, 170, 84, 248, 194, 4, 229, 5, 111, 198,
170, 242, 48, 211, 173, 198, 170, 214, 185, 219, 239, 198, 170, 214, 185,
230, 203, 235, 104, 203, 6, 219, 240, 211, 164, 187, 155, 235, 104, 203,
6, 230, 204, 211, 164, 187, 155, 198, 170, 202, 190, 248, 21, 207, 215,
220, 73, 198, 170, 84, 248, 194, 211, 173, 55, 202, 190, 211, 173, 62,
84, 161, 215, 150, 62, 84, 161, 178, 234, 186, 62, 54, 178, 194, 91, 62,
54, 202, 171, 234, 186, 62, 54, 202, 171, 194, 91, 62, 54, 46, 51, 62,
54, 114, 60, 54, 197, 30, 60, 54, 235, 92, 60, 54, 178, 234, 186, 60, 54,
178, 194, 91, 60, 54, 202, 171, 234, 186, 60, 54, 202, 171, 194, 91, 60,
54, 46, 51, 60, 54, 130, 142, 60, 54, 94, 61, 4, 199, 74, 235, 91, 94,
61, 4, 199, 74, 197, 29, 114, 61, 4, 199, 74, 235, 91, 114, 61, 4, 199,
74, 197, 29, 50, 4, 198, 249, 138, 247, 248, 50, 4, 247, 188, 138, 247,
248, 50, 4, 113, 51, 237, 11, 138, 247, 248, 50, 4, 106, 46, 237, 11,
138, 247, 248, 237, 5, 4, 46, 138, 247, 248, 237, 5, 4, 51, 138, 247,
248, 237, 5, 4, 198, 249, 138, 247, 248, 237, 5, 4, 247, 188, 138, 247,
248, 235, 111, 202, 106, 60, 220, 73, 202, 106, 62, 220, 73, 202, 106,
60, 196, 53, 2, 202, 106, 62, 196, 53, 2, 202, 106, 60, 210, 144, 62,
210, 144, 62, 229, 192, 60, 229, 192, 229, 5, 60, 229, 192, 60, 220, 73,
242, 130, 60, 217, 31, 237, 4, 62, 217, 31, 237, 4, 60, 217, 31, 219, 43,
62, 217, 31, 219, 43, 60, 2, 237, 4, 60, 2, 219, 43, 62, 2, 219, 43, 60,
229, 5, 234, 106, 62, 229, 5, 234, 106, 60, 84, 234, 106, 62, 84, 234,
106, 46, 61, 4, 2, 242, 130, 112, 114, 250, 73, 46, 61, 4, 47, 209, 206,
184, 114, 202, 99, 54, 114, 197, 220, 61, 4, 84, 111, 114, 197, 220, 61,
4, 55, 84, 111, 114, 197, 220, 61, 232, 89, 161, 114, 197, 220, 198, 170,
237, 186, 54, 114, 61, 4, 235, 111, 201, 255, 114, 61, 4, 200, 148, 4,
84, 111, 114, 61, 4, 200, 148, 4, 55, 84, 111, 114, 197, 220, 61, 4, 200,
147, 114, 197, 220, 61, 4, 200, 148, 4, 84, 111, 114, 197, 220, 61, 4,
200, 148, 4, 55, 84, 111, 114, 61, 199, 151, 193, 223, 194, 125, 61, 209,
188, 236, 203, 220, 28, 234, 30, 3, 95, 114, 54, 207, 169, 199, 91, 211,
174, 95, 114, 54, 114, 61, 95, 207, 169, 251, 1, 187, 155, 94, 61, 199,
151, 230, 203, 94, 61, 199, 151, 201, 105, 114, 208, 170, 54, 94, 208,
170, 54, 207, 169, 199, 91, 211, 174, 95, 94, 54, 94, 61, 95, 207, 169,
251, 1, 187, 155, 199, 91, 211, 174, 95, 114, 54, 114, 61, 95, 251, 1,
187, 155, 114, 61, 95, 207, 169, 199, 91, 211, 173, 94, 61, 95, 207, 169,
199, 91, 211, 173, 235, 92, 198, 184, 192, 21, 54, 203, 195, 203, 6, 178,
54, 203, 195, 248, 249, 202, 171, 54, 62, 217, 31, 202, 19, 60, 2, 202,
19, 62, 2, 202, 19, 60, 207, 96, 210, 144, 62, 207, 96, 210, 144, 87,
220, 73, 242, 130, 87, 211, 119, 4, 211, 119, 223, 145, 87, 242, 131, 4,
242, 131, 223, 145, 87, 242, 130, 87, 47, 206, 51, 203, 6, 178, 61, 4,
229, 14, 229, 245, 248, 249, 202, 171, 61, 4, 229, 14, 200, 147, 203, 6,
178, 61, 4, 229, 5, 200, 147, 248, 249, 202, 171, 61, 4, 229, 5, 200,
147, 248, 75, 61, 209, 188, 235, 92, 199, 216, 178, 234, 185, 203, 195,
248, 75, 61, 209, 188, 235, 92, 199, 216, 178, 234, 185, 114, 198, 184,
54, 197, 30, 198, 184, 54, 94, 198, 184, 54, 235, 92, 198, 184, 54, 46,
51, 198, 184, 54, 130, 142, 198, 184, 54, 178, 194, 91, 198, 184, 54,
178, 234, 186, 198, 184, 54, 202, 171, 234, 186, 198, 184, 54, 202, 171,
194, 91, 198, 184, 54, 114, 198, 184, 237, 184, 54, 197, 30, 198, 184,
237, 184, 54, 94, 198, 184, 237, 184, 54, 235, 92, 198, 184, 237, 184,
54, 242, 86, 198, 184, 211, 184, 242, 131, 54, 250, 182, 198, 184, 211,
184, 242, 131, 54, 114, 198, 184, 61, 115, 161, 197, 30, 198, 184, 61,
115, 161, 94, 198, 184, 61, 115, 161, 235, 92, 198, 184, 61, 115, 161,
178, 194, 91, 198, 184, 61, 115, 161, 178, 234, 186, 198, 184, 61, 115,
161, 202, 171, 234, 186, 198, 184, 61, 115, 161, 202, 171, 194, 91, 198,
184, 61, 115, 161, 114, 198, 184, 61, 4, 55, 229, 5, 111, 197, 30, 198,
184, 61, 4, 55, 229, 5, 111, 94, 198, 184, 61, 4, 55, 229, 5, 111, 235,
92, 198, 184, 61, 4, 55, 229, 5, 111, 229, 5, 200, 167, 222, 1, 84, 200,
167, 222, 1, 114, 198, 184, 61, 136, 94, 198, 184, 54, 197, 30, 198, 184,
61, 114, 80, 235, 92, 198, 184, 54, 94, 198, 184, 61, 136, 114, 198, 184,
54, 235, 92, 198, 184, 61, 114, 80, 197, 30, 198, 184, 54, 114, 198, 184,
211, 53, 250, 73, 197, 30, 198, 184, 211, 53, 250, 73, 94, 198, 184, 211,
53, 250, 73, 235, 92, 198, 184, 211, 53, 250, 73, 114, 60, 47, 62, 54,
197, 30, 60, 47, 62, 54, 94, 60, 47, 62, 54, 235, 92, 60, 47, 62, 54,
250, 182, 198, 184, 51, 197, 172, 54, 250, 182, 198, 184, 247, 188, 197,
172, 54, 250, 182, 198, 184, 46, 197, 172, 54, 250, 182, 198, 184, 198,
249, 197, 172, 54, 207, 173, 220, 28, 207, 173, 207, 101, 214, 174, 220,
28, 214, 174, 207, 101, 232, 119, 238, 224, 250, 74, 242, 126, 250, 181,
94, 60, 54, 16, 39, 197, 206, 41, 234, 117, 199, 160, 198, 247, 114, 234,
24, 250, 77, 199, 160, 207, 97, 197, 30, 234, 24, 250, 77, 199, 160, 198,
247, 94, 234, 24, 250, 77, 199, 160, 220, 24, 235, 92, 234, 24, 250, 77,
60, 114, 234, 24, 250, 77, 60, 197, 30, 234, 24, 250, 77, 60, 94, 234,
24, 250, 77, 60, 235, 92, 234, 24, 250, 77, 235, 92, 198, 184, 61, 4,
184, 199, 74, 220, 18, 235, 92, 198, 184, 61, 4, 184, 199, 74, 207, 90,
197, 30, 198, 184, 61, 4, 184, 199, 74, 220, 18, 197, 30, 198, 184, 61,
4, 184, 199, 74, 207, 90, 114, 198, 184, 61, 4, 184, 199, 74, 197, 29,
94, 198, 184, 61, 4, 184, 199, 74, 197, 29, 114, 198, 184, 61, 4, 184,
199, 74, 235, 91, 94, 198, 184, 61, 4, 184, 199, 74, 235, 91, 60, 238,
130, 235, 92, 26, 114, 54, 60, 238, 130, 235, 92, 26, 94, 54, 60, 238,
130, 197, 30, 26, 114, 54, 60, 238, 130, 197, 30, 26, 94, 54, 60, 238,
130, 114, 26, 197, 30, 54, 60, 238, 130, 94, 26, 197, 30, 54, 60, 238,
130, 114, 26, 235, 92, 54, 60, 238, 130, 94, 26, 235, 92, 54, 207, 142,
61, 142, 220, 28, 207, 142, 61, 142, 207, 101, 207, 142, 61, 130, 220,
28, 207, 142, 61, 130, 207, 101, 207, 142, 61, 46, 197, 41, 207, 142, 61,
51, 197, 41, 207, 142, 61, 46, 235, 96, 207, 142, 61, 51, 235, 96, 197,
30, 62, 61, 232, 89, 248, 194, 4, 229, 5, 161, 130, 250, 78, 223, 191,
41, 207, 243, 247, 173, 211, 112, 62, 202, 104, 211, 112, 62, 26, 60,
202, 104, 211, 112, 60, 202, 104, 248, 213, 105, 4, 152, 193, 223, 47,
193, 223, 47, 28, 193, 223, 60, 50, 246, 135, 60, 237, 5, 246, 135, 163,
60, 210, 144, 229, 5, 60, 212, 9, 60, 212, 9, 60, 217, 31, 197, 40, 198,
186, 246, 135, 60, 217, 31, 235, 95, 198, 186, 246, 135, 60, 217, 31,
220, 23, 198, 186, 246, 135, 60, 217, 31, 207, 96, 198, 186, 246, 135,
214, 190, 232, 136, 104, 198, 249, 138, 60, 242, 130, 247, 188, 138, 60,
242, 130, 152, 232, 119, 209, 190, 60, 238, 126, 207, 16, 152, 232, 119,
209, 190, 60, 238, 126, 62, 232, 119, 209, 190, 238, 126, 207, 16, 62,
232, 119, 209, 190, 238, 126, 50, 209, 160, 223, 172, 197, 71, 57, 230,
194, 77, 209, 203, 232, 136, 104, 209, 203, 232, 136, 133, 209, 203, 232,
136, 134, 209, 203, 232, 136, 151, 198, 206, 209, 70, 250, 33, 228, 114,
210, 62, 214, 186, 62, 216, 30, 204, 188, 60, 237, 5, 211, 212, 238, 183,
198, 148, 152, 216, 30, 250, 69, 238, 146, 230, 96, 192, 74, 221, 50,
250, 151, 251, 115, 194, 221, 209, 161, 46, 138, 60, 202, 19, 51, 138,
60, 202, 19, 202, 20, 4, 46, 138, 247, 248, 202, 20, 4, 51, 138, 247,
248, 114, 197, 220, 61, 4, 198, 186, 250, 75, 197, 30, 197, 220, 61, 4,
198, 186, 250, 75, 94, 197, 220, 61, 4, 198, 186, 250, 75, 235, 92, 197,
220, 61, 4, 198, 186, 250, 75, 234, 14, 232, 136, 101, 234, 14, 232, 136,
104, 205, 206, 206, 181, 250, 32, 16, 196, 23, 206, 181, 250, 32, 16,
213, 97, 206, 181, 250, 32, 16, 208, 147, 206, 181, 250, 32, 16, 248, 16,
206, 181, 250, 32, 16, 204, 171, 206, 181, 250, 32, 16, 198, 197, 234,
30, 3, 4, 223, 168, 63, 197, 53, 109, 204, 167, 109, 235, 101, 109, 210,
213, 109, 207, 168, 51, 250, 207, 229, 213, 210, 196, 109, 131, 6, 1,
249, 227, 131, 6, 1, 247, 110, 131, 6, 1, 196, 121, 131, 6, 1, 231, 13,
131, 6, 1, 236, 141, 131, 6, 1, 193, 38, 131, 6, 1, 192, 55, 131, 6, 1,
235, 12, 131, 6, 1, 192, 81, 131, 6, 1, 223, 69, 131, 6, 1, 88, 223, 69,
131, 6, 1, 70, 131, 6, 1, 236, 162, 131, 6, 1, 222, 127, 131, 6, 1, 219,
139, 131, 6, 1, 215, 155, 131, 6, 1, 215, 46, 131, 6, 1, 211, 196, 131,
6, 1, 209, 185, 131, 6, 1, 207, 72, 131, 6, 1, 202, 241, 131, 6, 1, 197,
251, 131, 6, 1, 197, 88, 131, 6, 1, 232, 92, 131, 6, 1, 229, 198, 131, 6,
1, 211, 131, 131, 6, 1, 210, 181, 131, 6, 1, 203, 167, 131, 6, 1, 198,
97, 131, 6, 1, 242, 174, 131, 6, 1, 204, 64, 131, 6, 1, 193, 47, 131, 6,
1, 193, 49, 131, 6, 1, 193, 82, 131, 6, 1, 202, 135, 144, 131, 6, 1, 192,
214, 131, 6, 1, 2, 192, 179, 131, 6, 1, 2, 192, 180, 4, 200, 147, 131, 6,
1, 193, 1, 131, 6, 1, 223, 110, 2, 192, 179, 131, 6, 1, 248, 28, 192,
179, 131, 6, 1, 223, 110, 248, 28, 192, 179, 131, 6, 1, 232, 216, 131, 6,
1, 223, 67, 131, 6, 1, 203, 166, 131, 6, 1, 198, 160, 64, 131, 6, 1, 220,
61, 215, 155, 131, 2, 1, 249, 227, 131, 2, 1, 247, 110, 131, 2, 1, 196,
121, 131, 2, 1, 231, 13, 131, 2, 1, 236, 141, 131, 2, 1, 193, 38, 131, 2,
1, 192, 55, 131, 2, 1, 235, 12, 131, 2, 1, 192, 81, 131, 2, 1, 223, 69,
131, 2, 1, 88, 223, 69, 131, 2, 1, 70, 131, 2, 1, 236, 162, 131, 2, 1,
222, 127, 131, 2, 1, 219, 139, 131, 2, 1, 215, 155, 131, 2, 1, 215, 46,
131, 2, 1, 211, 196, 131, 2, 1, 209, 185, 131, 2, 1, 207, 72, 131, 2, 1,
202, 241, 131, 2, 1, 197, 251, 131, 2, 1, 197, 88, 131, 2, 1, 232, 92,
131, 2, 1, 229, 198, 131, 2, 1, 211, 131, 131, 2, 1, 210, 181, 131, 2, 1,
203, 167, 131, 2, 1, 198, 97, 131, 2, 1, 242, 174, 131, 2, 1, 204, 64,
131, 2, 1, 193, 47, 131, 2, 1, 193, 49, 131, 2, 1, 193, 82, 131, 2, 1,
202, 135, 144, 131, 2, 1, 192, 214, 131, 2, 1, 2, 192, 179, 131, 2, 1, 2,
192, 180, 4, 200, 147, 131, 2, 1, 193, 1, 131, 2, 1, 223, 110, 2, 192,
179, 131, 2, 1, 248, 28, 192, 179, 131, 2, 1, 223, 110, 248, 28, 192,
179, 131, 2, 1, 232, 216, 131, 2, 1, 223, 67, 131, 2, 1, 203, 166, 131,
2, 1, 198, 160, 64, 131, 2, 1, 220, 61, 215, 155, 8, 6, 1, 220, 202, 4,
55, 161, 8, 2, 1, 220, 202, 4, 55, 161, 8, 6, 1, 220, 202, 4, 85, 199,
90, 8, 6, 1, 211, 94, 4, 111, 8, 6, 1, 208, 112, 4, 200, 147, 8, 2, 1,
41, 4, 111, 8, 2, 1, 200, 229, 4, 237, 11, 111, 8, 6, 1, 230, 125, 4,
237, 59, 8, 2, 1, 230, 125, 4, 237, 59, 8, 6, 1, 222, 185, 4, 237, 59, 8,
2, 1, 222, 185, 4, 237, 59, 8, 6, 1, 192, 156, 4, 237, 59, 8, 2, 1, 192,
156, 4, 237, 59, 8, 6, 1, 250, 252, 8, 6, 1, 218, 237, 4, 128, 8, 6, 1,
163, 64, 8, 6, 1, 163, 250, 252, 8, 2, 1, 196, 237, 4, 51, 128, 8, 6, 1,
194, 203, 4, 128, 8, 2, 1, 194, 203, 4, 128, 8, 2, 1, 196, 237, 4, 238,
142, 8, 6, 1, 138, 230, 124, 8, 2, 1, 138, 230, 124, 8, 2, 1, 200, 145,
210, 77, 8, 2, 1, 234, 253, 4, 213, 108, 8, 2, 1, 163, 208, 112, 4, 200,
147, 8, 2, 1, 185, 4, 132, 207, 82, 223, 145, 8, 1, 2, 6, 163, 71, 8,
201, 155, 2, 1, 223, 65, 73, 1, 6, 196, 236, 8, 6, 1, 206, 159, 4, 201,
75, 200, 147, 8, 6, 1, 192, 156, 4, 201, 75, 200, 147, 92, 6, 1, 251, 20,
92, 2, 1, 251, 20, 92, 6, 1, 196, 36, 92, 2, 1, 196, 36, 92, 6, 1, 231,
204, 92, 2, 1, 231, 204, 92, 6, 1, 237, 223, 92, 2, 1, 237, 223, 92, 6,
1, 234, 149, 92, 2, 1, 234, 149, 92, 6, 1, 202, 176, 92, 2, 1, 202, 176,
92, 6, 1, 192, 93, 92, 2, 1, 192, 93, 92, 6, 1, 230, 15, 92, 2, 1, 230,
15, 92, 6, 1, 199, 204, 92, 2, 1, 199, 204, 92, 6, 1, 228, 55, 92, 2, 1,
228, 55, 92, 6, 1, 222, 111, 92, 2, 1, 222, 111, 92, 6, 1, 220, 56, 92,
2, 1, 220, 56, 92, 6, 1, 216, 175, 92, 2, 1, 216, 175, 92, 6, 1, 214, 60,
92, 2, 1, 214, 60, 92, 6, 1, 221, 49, 92, 2, 1, 221, 49, 92, 6, 1, 74,
92, 2, 1, 74, 92, 6, 1, 210, 51, 92, 2, 1, 210, 51, 92, 6, 1, 207, 55,
92, 2, 1, 207, 55, 92, 6, 1, 203, 87, 92, 2, 1, 203, 87, 92, 6, 1, 200,
100, 92, 2, 1, 200, 100, 92, 6, 1, 197, 119, 92, 2, 1, 197, 119, 92, 6,
1, 233, 11, 92, 2, 1, 233, 11, 92, 6, 1, 221, 227, 92, 2, 1, 221, 227,
92, 6, 1, 209, 62, 92, 2, 1, 209, 62, 92, 6, 1, 211, 188, 92, 2, 1, 211,
188, 92, 6, 1, 237, 9, 251, 26, 92, 2, 1, 237, 9, 251, 26, 92, 6, 1, 40,
92, 251, 57, 92, 2, 1, 40, 92, 251, 57, 92, 6, 1, 238, 165, 234, 149, 92,
2, 1, 238, 165, 234, 149, 92, 6, 1, 237, 9, 222, 111, 92, 2, 1, 237, 9,
222, 111, 92, 6, 1, 237, 9, 214, 60, 92, 2, 1, 237, 9, 214, 60, 92, 6, 1,
238, 165, 214, 60, 92, 2, 1, 238, 165, 214, 60, 92, 6, 1, 40, 92, 211,
188, 92, 2, 1, 40, 92, 211, 188, 92, 6, 1, 206, 43, 92, 2, 1, 206, 43,
92, 6, 1, 238, 180, 204, 4, 92, 2, 1, 238, 180, 204, 4, 92, 6, 1, 40, 92,
204, 4, 92, 2, 1, 40, 92, 204, 4, 92, 6, 1, 40, 92, 233, 255, 92, 2, 1,
40, 92, 233, 255, 92, 6, 1, 251, 40, 221, 232, 92, 2, 1, 251, 40, 221,
232, 92, 6, 1, 237, 9, 229, 6, 92, 2, 1, 237, 9, 229, 6, 92, 6, 1, 40,
92, 229, 6, 92, 2, 1, 40, 92, 229, 6, 92, 6, 1, 40, 92, 144, 92, 2, 1,
40, 92, 144, 92, 6, 1, 220, 201, 144, 92, 2, 1, 220, 201, 144, 92, 6, 1,
40, 92, 229, 219, 92, 2, 1, 40, 92, 229, 219, 92, 6, 1, 40, 92, 230, 18,
92, 2, 1, 40, 92, 230, 18, 92, 6, 1, 40, 92, 231, 199, 92, 2, 1, 40, 92,
231, 199, 92, 6, 1, 40, 92, 236, 165, 92, 2, 1, 40, 92, 236, 165, 92, 6,
1, 40, 92, 203, 226, 92, 2, 1, 40, 92, 203, 226, 92, 6, 1, 40, 212, 245,
203, 226, 92, 2, 1, 40, 212, 245, 203, 226, 92, 6, 1, 40, 212, 245, 214,
113, 92, 2, 1, 40, 212, 245, 214, 113, 92, 6, 1, 40, 212, 245, 212, 181,
92, 2, 1, 40, 212, 245, 212, 181, 92, 6, 1, 40, 212, 245, 194, 126, 92,
2, 1, 40, 212, 245, 194, 126, 92, 16, 222, 135, 92, 16, 216, 176, 207,
55, 92, 16, 210, 52, 207, 55, 92, 16, 202, 8, 92, 16, 200, 101, 207, 55,
92, 16, 221, 228, 207, 55, 92, 16, 203, 227, 203, 87, 92, 6, 1, 238, 165,
204, 4, 92, 2, 1, 238, 165, 204, 4, 92, 6, 1, 238, 165, 231, 199, 92, 2,
1, 238, 165, 231, 199, 92, 38, 214, 61, 58, 92, 38, 202, 128, 250, 45,
92, 38, 202, 128, 219, 248, 92, 6, 1, 247, 212, 221, 232, 92, 2, 1, 247,
212, 221, 232, 92, 40, 212, 245, 232, 71, 201, 238, 92, 40, 212, 245,
236, 206, 208, 159, 77, 92, 40, 212, 245, 223, 170, 208, 159, 77, 92, 40,
212, 245, 196, 107, 236, 177, 92, 232, 109, 90, 230, 78, 92, 232, 71,
201, 238, 92, 216, 25, 236, 177, 98, 2, 1, 250, 224, 98, 2, 1, 248, 207,
98, 2, 1, 231, 203, 98, 2, 1, 236, 123, 98, 2, 1, 234, 88, 98, 2, 1, 196,
20, 98, 2, 1, 192, 79, 98, 2, 1, 200, 125, 98, 2, 1, 223, 190, 98, 2, 1,
222, 121, 98, 2, 1, 220, 67, 98, 2, 1, 217, 160, 98, 2, 1, 215, 51, 98,
2, 1, 211, 211, 98, 2, 1, 210, 247, 98, 2, 1, 192, 67, 98, 2, 1, 208, 53,
98, 2, 1, 206, 40, 98, 2, 1, 200, 112, 98, 2, 1, 197, 77, 98, 2, 1, 210,
86, 98, 2, 1, 221, 237, 98, 2, 1, 231, 75, 98, 2, 1, 208, 224, 98, 2, 1,
203, 224, 98, 2, 1, 242, 201, 98, 2, 1, 246, 243, 98, 2, 1, 223, 10, 98,
2, 1, 242, 138, 98, 2, 1, 246, 101, 98, 2, 1, 193, 207, 98, 2, 1, 223,
25, 98, 2, 1, 230, 95, 98, 2, 1, 229, 255, 98, 2, 1, 229, 165, 98, 2, 1,
194, 111, 98, 2, 1, 230, 28, 98, 2, 1, 229, 31, 98, 2, 1, 193, 3, 98, 2,
1, 251, 97, 199, 110, 1, 168, 199, 110, 1, 193, 125, 199, 110, 1, 193,
124, 199, 110, 1, 193, 114, 199, 110, 1, 193, 112, 199, 110, 1, 248, 69,
251, 145, 193, 107, 199, 110, 1, 193, 107, 199, 110, 1, 193, 122, 199,
110, 1, 193, 119, 199, 110, 1, 193, 121, 199, 110, 1, 193, 120, 199, 110,
1, 193, 29, 199, 110, 1, 193, 116, 199, 110, 1, 193, 105, 199, 110, 1,
198, 37, 193, 105, 199, 110, 1, 193, 102, 199, 110, 1, 193, 110, 199,
110, 1, 248, 69, 251, 145, 193, 110, 199, 110, 1, 198, 37, 193, 110, 199,
110, 1, 193, 109, 199, 110, 1, 193, 129, 199, 110, 1, 193, 103, 199, 110,
1, 198, 37, 193, 103, 199, 110, 1, 193, 92, 199, 110, 1, 198, 37, 193,
92, 199, 110, 1, 193, 22, 199, 110, 1, 193, 71, 199, 110, 1, 251, 70,
193, 71, 199, 110, 1, 198, 37, 193, 71, 199, 110, 1, 193, 101, 199, 110,
1, 193, 100, 199, 110, 1, 193, 97, 199, 110, 1, 198, 37, 193, 111, 199,
110, 1, 198, 37, 193, 95, 199, 110, 1, 193, 93, 199, 110, 1, 192, 214,
199, 110, 1, 193, 90, 199, 110, 1, 193, 88, 199, 110, 1, 193, 113, 199,
110, 1, 198, 37, 193, 113, 199, 110, 1, 249, 232, 193, 113, 199, 110, 1,
193, 87, 199, 110, 1, 193, 85, 199, 110, 1, 193, 86, 199, 110, 1, 193,
84, 199, 110, 1, 193, 83, 199, 110, 1, 193, 123, 199, 110, 1, 193, 81,
199, 110, 1, 193, 79, 199, 110, 1, 193, 78, 199, 110, 1, 193, 75, 199,
110, 1, 193, 72, 199, 110, 1, 200, 91, 193, 72, 199, 110, 1, 193, 70,
199, 110, 1, 193, 69, 199, 110, 1, 193, 1, 199, 110, 73, 1, 220, 174, 77,
199, 110, 204, 166, 77, 199, 110, 116, 222, 228, 36, 5, 219, 106, 36, 5,
216, 84, 36, 5, 207, 47, 36, 5, 202, 204, 36, 5, 203, 210, 36, 5, 247,
219, 36, 5, 199, 29, 36, 5, 242, 62, 36, 5, 213, 135, 36, 5, 212, 164,
36, 5, 231, 6, 212, 26, 36, 5, 192, 7, 36, 5, 236, 144, 36, 5, 237, 130,
36, 5, 222, 232, 36, 5, 199, 175, 36, 5, 242, 187, 36, 5, 210, 64, 36, 5,
209, 197, 36, 5, 231, 90, 36, 5, 231, 86, 36, 5, 231, 87, 36, 5, 231, 88,
36, 5, 202, 92, 36, 5, 202, 46, 36, 5, 202, 59, 36, 5, 202, 91, 36, 5,
202, 64, 36, 5, 202, 65, 36, 5, 202, 51, 36, 5, 246, 181, 36, 5, 246,
160, 36, 5, 246, 162, 36, 5, 246, 180, 36, 5, 246, 178, 36, 5, 246, 179,
36, 5, 246, 161, 36, 5, 191, 225, 36, 5, 191, 203, 36, 5, 191, 216, 36,
5, 191, 224, 36, 5, 191, 219, 36, 5, 191, 220, 36, 5, 191, 208, 36, 5,
246, 176, 36, 5, 246, 163, 36, 5, 246, 165, 36, 5, 246, 175, 36, 5, 246,
173, 36, 5, 246, 174, 36, 5, 246, 164, 36, 5, 208, 124, 36, 5, 208, 114,
36, 5, 208, 120, 36, 5, 208, 123, 36, 5, 208, 121, 36, 5, 208, 122, 36,
5, 208, 119, 36, 5, 220, 212, 36, 5, 220, 204, 36, 5, 220, 207, 36, 5,
220, 211, 36, 5, 220, 208, 36, 5, 220, 209, 36, 5, 220, 205, 36, 5, 193,
164, 36, 5, 193, 151, 36, 5, 193, 159, 36, 5, 193, 163, 36, 5, 193, 161,
36, 5, 193, 162, 36, 5, 193, 158, 36, 5, 230, 136, 36, 5, 230, 126, 36,
5, 230, 129, 36, 5, 230, 135, 36, 5, 230, 131, 36, 5, 230, 132, 36, 5,
230, 128, 38, 42, 1, 248, 123, 38, 42, 1, 196, 123, 38, 42, 1, 231, 70,
38, 42, 1, 237, 116, 38, 42, 1, 192, 62, 38, 42, 1, 192, 85, 38, 42, 1,
160, 38, 42, 1, 234, 124, 38, 42, 1, 234, 99, 38, 42, 1, 234, 88, 38, 42,
1, 74, 38, 42, 1, 210, 181, 38, 42, 1, 234, 21, 38, 42, 1, 234, 9, 38,
42, 1, 200, 79, 38, 42, 1, 144, 38, 42, 1, 198, 112, 38, 42, 1, 242, 245,
38, 42, 1, 204, 64, 38, 42, 1, 204, 15, 38, 42, 1, 232, 216, 38, 42, 1,
234, 5, 38, 42, 1, 64, 38, 42, 1, 223, 251, 38, 42, 1, 236, 163, 38, 42,
1, 216, 43, 197, 92, 38, 42, 1, 193, 84, 38, 42, 1, 192, 214, 38, 42, 1,
223, 109, 64, 38, 42, 1, 219, 147, 192, 179, 38, 42, 1, 248, 28, 192,
179, 38, 42, 1, 223, 109, 248, 28, 192, 179, 51, 250, 208, 201, 150, 217,
122, 51, 250, 208, 235, 111, 201, 150, 217, 122, 46, 201, 150, 186, 51,
201, 150, 186, 46, 235, 111, 201, 150, 186, 51, 235, 111, 201, 150, 186,
208, 39, 223, 132, 217, 122, 208, 39, 235, 111, 223, 132, 217, 122, 235,
111, 198, 205, 217, 122, 46, 198, 205, 186, 51, 198, 205, 186, 208, 39,
202, 106, 46, 208, 39, 211, 213, 186, 51, 208, 39, 211, 213, 186, 234,
172, 238, 220, 210, 242, 232, 138, 210, 242, 207, 168, 232, 138, 210,
242, 228, 108, 235, 111, 212, 21, 235, 92, 250, 218, 197, 30, 250, 218,
235, 111, 207, 96, 250, 207, 55, 212, 18, 228, 111, 223, 121, 223, 130,
211, 41, 247, 160, 228, 112, 4, 237, 14, 199, 91, 4, 207, 82, 58, 46,
132, 210, 233, 186, 51, 132, 210, 233, 186, 199, 91, 4, 78, 58, 199, 91,
4, 78, 63, 46, 84, 248, 194, 4, 208, 153, 51, 84, 248, 194, 4, 208, 153,
198, 249, 46, 138, 186, 198, 249, 51, 138, 186, 247, 188, 46, 138, 186,
247, 188, 51, 138, 186, 46, 203, 109, 124, 186, 51, 203, 109, 124, 186,
46, 55, 210, 230, 51, 55, 210, 230, 103, 236, 112, 136, 90, 78, 209, 37,
90, 78, 136, 103, 236, 112, 209, 37, 108, 232, 119, 78, 209, 37, 232,
214, 78, 77, 207, 168, 208, 159, 77, 84, 199, 90, 207, 82, 209, 191, 194,
11, 204, 166, 85, 236, 114, 163, 242, 38, 208, 39, 236, 114, 208, 39,
242, 38, 163, 204, 180, 237, 239, 4, 46, 230, 180, 237, 239, 4, 51, 230,
180, 163, 237, 238, 198, 249, 138, 205, 209, 57, 197, 221, 237, 185, 199,
158, 237, 185, 201, 254, 232, 71, 201, 238, 84, 203, 41, 236, 111, 194,
58, 84, 219, 175, 246, 224, 55, 228, 111, 207, 168, 242, 38, 55, 219, 48,
208, 142, 77, 237, 186, 4, 46, 197, 33, 55, 201, 89, 77, 223, 121, 132,
222, 69, 223, 121, 132, 222, 70, 4, 222, 70, 58, 132, 222, 69, 132, 222,
70, 4, 236, 114, 55, 202, 31, 242, 38, 235, 111, 202, 189, 198, 170, 237,
238, 217, 32, 242, 38, 210, 241, 77, 209, 36, 234, 113, 77, 238, 221,
196, 107, 236, 177, 238, 184, 210, 199, 4, 51, 238, 182, 238, 184, 210,
199, 4, 46, 238, 182, 199, 66, 3, 6, 233, 242, 12, 48, 207, 198, 12, 48,
242, 95, 12, 48, 205, 212, 101, 12, 48, 205, 212, 104, 12, 48, 205, 212,
133, 12, 48, 210, 116, 12, 48, 247, 173, 12, 48, 200, 164, 12, 48, 221,
125, 101, 12, 48, 221, 125, 104, 12, 48, 236, 174, 12, 48, 205, 216, 12,
48, 2, 101, 12, 48, 2, 104, 12, 48, 220, 89, 101, 12, 48, 220, 89, 104,
12, 48, 220, 89, 133, 12, 48, 220, 89, 134, 12, 48, 202, 224, 12, 48,
199, 162, 12, 48, 202, 221, 101, 12, 48, 202, 221, 104, 12, 48, 229, 234,
101, 12, 48, 229, 234, 104, 12, 48, 230, 62, 12, 48, 208, 28, 12, 48,
242, 184, 12, 48, 201, 123, 12, 48, 216, 29, 12, 48, 237, 113, 12, 48,
216, 18, 12, 48, 242, 113, 12, 48, 194, 130, 101, 12, 48, 194, 130, 104,
12, 48, 232, 231, 12, 48, 210, 194, 101, 12, 48, 210, 194, 104, 12, 48,
203, 82, 138, 198, 196, 198, 123, 12, 48, 238, 205, 12, 48, 236, 134, 12,
48, 223, 57, 12, 48, 247, 211, 80, 242, 78, 12, 48, 233, 181, 12, 48,
202, 130, 101, 12, 48, 202, 130, 104, 12, 48, 248, 209, 12, 48, 203, 89,
12, 48, 247, 49, 203, 89, 12, 48, 214, 183, 101, 12, 48, 214, 183, 104,
12, 48, 214, 183, 133, 12, 48, 214, 183, 134, 12, 48, 216, 247, 12, 48,
204, 6, 12, 48, 208, 34, 12, 48, 233, 211, 12, 48, 211, 225, 12, 48, 247,
132, 101, 12, 48, 247, 132, 104, 12, 48, 217, 40, 12, 48, 216, 24, 12,
48, 230, 214, 101, 12, 48, 230, 214, 104, 12, 48, 230, 214, 133, 12, 48,
199, 108, 12, 48, 242, 77, 12, 48, 194, 91, 101, 12, 48, 194, 91, 104,
12, 48, 247, 49, 205, 205, 12, 48, 203, 82, 228, 208, 12, 48, 228, 208,
12, 48, 247, 49, 202, 143, 12, 48, 247, 49, 204, 1, 12, 48, 232, 149, 12,
48, 247, 49, 246, 200, 12, 48, 203, 82, 194, 153, 12, 48, 194, 154, 101,
12, 48, 194, 154, 104, 12, 48, 242, 116, 12, 48, 247, 49, 230, 245, 12,
48, 184, 101, 12, 48, 184, 104, 12, 48, 247, 49, 219, 84, 12, 48, 247,
49, 231, 184, 12, 48, 216, 13, 101, 12, 48, 216, 13, 104, 12, 48, 208,
41, 12, 48, 247, 223, 12, 48, 247, 49, 200, 118, 220, 34, 12, 48, 247,
49, 220, 37, 12, 48, 247, 49, 194, 52, 12, 48, 247, 49, 232, 168, 12, 48,
234, 183, 101, 12, 48, 234, 183, 104, 12, 48, 234, 183, 133, 12, 48, 247,
49, 234, 182, 12, 48, 229, 245, 12, 48, 247, 49, 228, 204, 12, 48, 247,
207, 12, 48, 231, 54, 12, 48, 247, 49, 232, 224, 12, 48, 247, 49, 248,
13, 12, 48, 247, 49, 206, 55, 12, 48, 203, 82, 194, 81, 12, 48, 203, 82,
193, 61, 12, 48, 247, 49, 232, 90, 12, 48, 223, 64, 233, 216, 12, 48,
247, 49, 233, 216, 12, 48, 223, 64, 198, 251, 12, 48, 247, 49, 198, 251,
12, 48, 223, 64, 235, 84, 12, 48, 247, 49, 235, 84, 12, 48, 198, 6, 12,
48, 223, 64, 198, 6, 12, 48, 247, 49, 198, 6, 81, 48, 101, 81, 48, 219,
175, 81, 48, 236, 114, 81, 48, 203, 4, 81, 48, 205, 211, 81, 48, 128, 81,
48, 104, 81, 48, 219, 204, 81, 48, 217, 160, 81, 48, 220, 13, 81, 48,
234, 62, 81, 48, 174, 81, 48, 142, 247, 173, 81, 48, 238, 208, 81, 48,
228, 49, 81, 48, 200, 164, 81, 48, 211, 184, 247, 173, 81, 48, 221, 124,
81, 48, 209, 138, 81, 48, 194, 0, 81, 48, 202, 119, 81, 48, 51, 211, 184,
247, 173, 81, 48, 229, 166, 234, 83, 81, 48, 200, 30, 81, 48, 236, 174,
81, 48, 205, 216, 81, 48, 242, 95, 81, 48, 209, 88, 81, 48, 251, 79, 81,
48, 216, 4, 81, 48, 234, 83, 81, 48, 234, 189, 81, 48, 205, 245, 81, 48,
230, 254, 81, 48, 230, 255, 202, 238, 81, 48, 233, 215, 81, 48, 248, 27,
81, 48, 194, 23, 81, 48, 242, 206, 81, 48, 207, 27, 81, 48, 223, 186, 81,
48, 202, 236, 81, 48, 220, 88, 81, 48, 238, 218, 81, 48, 202, 110, 81,
48, 216, 9, 81, 48, 207, 69, 81, 48, 194, 8, 81, 48, 211, 202, 81, 48,
198, 14, 81, 48, 235, 64, 81, 48, 203, 195, 199, 162, 81, 48, 235, 111,
242, 95, 81, 48, 184, 201, 214, 81, 48, 103, 230, 37, 81, 48, 203, 201,
81, 48, 247, 180, 81, 48, 202, 220, 81, 48, 247, 139, 81, 48, 201, 253,
81, 48, 229, 233, 81, 48, 230, 79, 81, 48, 236, 118, 81, 48, 230, 62, 81,
48, 247, 160, 81, 48, 208, 28, 81, 48, 205, 229, 81, 48, 236, 208, 81,
48, 249, 237, 81, 48, 202, 106, 81, 48, 213, 110, 81, 48, 201, 123, 81,
48, 206, 1, 81, 48, 216, 29, 81, 48, 198, 195, 81, 48, 220, 170, 81, 48,
201, 238, 81, 48, 237, 113, 81, 48, 194, 106, 81, 48, 236, 147, 213, 110,
81, 48, 242, 34, 81, 48, 232, 64, 81, 48, 242, 107, 81, 48, 202, 3, 81,
48, 194, 129, 81, 48, 232, 231, 81, 48, 242, 103, 81, 48, 233, 54, 81,
48, 55, 193, 223, 81, 48, 138, 198, 196, 198, 123, 81, 48, 202, 251, 81,
48, 233, 66, 81, 48, 238, 205, 81, 48, 236, 134, 81, 48, 209, 84, 81, 48,
223, 57, 81, 48, 217, 14, 81, 48, 199, 89, 81, 48, 201, 70, 81, 48, 219,
198, 81, 48, 197, 8, 81, 48, 233, 9, 81, 48, 247, 211, 80, 242, 78, 81,
48, 203, 115, 81, 48, 235, 111, 200, 22, 81, 48, 194, 75, 81, 48, 203,
13, 81, 48, 236, 194, 81, 48, 233, 181, 81, 48, 202, 146, 81, 48, 54, 81,
48, 201, 240, 81, 48, 202, 129, 81, 48, 198, 222, 81, 48, 230, 223, 81,
48, 246, 186, 81, 48, 202, 24, 81, 48, 248, 209, 81, 48, 207, 139, 81,
48, 203, 89, 81, 48, 223, 49, 81, 48, 214, 182, 81, 48, 204, 6, 81, 48,
233, 42, 81, 48, 211, 225, 81, 48, 250, 217, 81, 48, 209, 214, 81, 48,
234, 193, 81, 48, 247, 131, 81, 48, 217, 40, 81, 48, 216, 114, 81, 48,
204, 187, 81, 48, 250, 81, 81, 48, 216, 24, 81, 48, 199, 0, 81, 48, 211,
171, 81, 48, 247, 215, 81, 48, 201, 236, 81, 48, 242, 46, 81, 48, 230,
213, 81, 48, 199, 108, 81, 48, 223, 149, 81, 48, 247, 229, 81, 48, 194,
154, 234, 83, 81, 48, 242, 77, 81, 48, 194, 90, 81, 48, 205, 205, 81, 48,
228, 208, 81, 48, 202, 143, 81, 48, 196, 149, 81, 48, 248, 118, 81, 48,
210, 14, 81, 48, 248, 239, 81, 48, 204, 1, 81, 48, 207, 236, 81, 48, 206,
195, 81, 48, 232, 149, 81, 48, 247, 213, 81, 48, 246, 200, 81, 48, 247,
253, 81, 48, 216, 26, 81, 48, 194, 153, 81, 48, 242, 116, 81, 48, 194,
48, 81, 48, 236, 186, 81, 48, 196, 21, 81, 48, 230, 245, 81, 48, 219, 84,
81, 48, 231, 184, 81, 48, 216, 12, 81, 48, 203, 3, 81, 48, 203, 195, 200,
146, 248, 13, 81, 48, 208, 41, 81, 48, 247, 223, 81, 48, 193, 246, 81,
48, 233, 91, 81, 48, 220, 34, 81, 48, 200, 118, 220, 34, 81, 48, 220, 30,
81, 48, 202, 173, 81, 48, 220, 37, 81, 48, 194, 52, 81, 48, 232, 168, 81,
48, 234, 182, 81, 48, 229, 245, 81, 48, 232, 107, 81, 48, 228, 204, 81,
48, 247, 207, 81, 48, 200, 131, 81, 48, 230, 86, 81, 48, 233, 2, 81, 48,
206, 88, 194, 48, 81, 48, 246, 188, 81, 48, 231, 54, 81, 48, 232, 224,
81, 48, 248, 13, 81, 48, 206, 55, 81, 48, 237, 98, 81, 48, 194, 81, 81,
48, 229, 209, 81, 48, 193, 61, 81, 48, 216, 125, 81, 48, 247, 248, 81,
48, 234, 95, 81, 48, 232, 90, 81, 48, 198, 167, 81, 48, 235, 67, 81, 48,
208, 22, 81, 48, 213, 112, 81, 48, 233, 216, 81, 48, 198, 251, 81, 48,
235, 84, 81, 48, 198, 6, 81, 48, 232, 171, 149, 237, 57, 246, 100, 46,
115, 207, 101, 149, 237, 57, 246, 100, 95, 115, 63, 149, 237, 57, 246,
100, 46, 115, 85, 26, 207, 101, 149, 237, 57, 246, 100, 95, 115, 85, 26,
63, 149, 237, 57, 246, 100, 232, 71, 201, 93, 149, 237, 57, 246, 100,
201, 94, 232, 89, 58, 149, 237, 57, 246, 100, 201, 94, 232, 89, 63, 149,
237, 57, 246, 100, 201, 94, 232, 89, 220, 28, 149, 237, 57, 246, 100,
201, 94, 232, 89, 113, 220, 28, 149, 237, 57, 246, 100, 201, 94, 232, 89,
113, 207, 101, 149, 237, 57, 246, 100, 201, 94, 232, 89, 106, 220, 28,
149, 237, 57, 246, 100, 211, 114, 149, 202, 160, 149, 242, 38, 149, 232,
71, 201, 238, 236, 183, 77, 223, 50, 223, 169, 202, 23, 109, 149, 223,
80, 77, 149, 242, 80, 77, 149, 31, 192, 76, 46, 250, 208, 186, 51, 250,
208, 186, 46, 55, 250, 208, 186, 51, 55, 250, 208, 186, 46, 238, 224,
186, 51, 238, 224, 186, 46, 62, 238, 224, 186, 51, 62, 238, 224, 186, 46,
60, 219, 247, 186, 51, 60, 219, 247, 186, 209, 153, 77, 231, 123, 77, 46,
198, 237, 204, 2, 186, 51, 198, 237, 204, 2, 186, 46, 62, 219, 247, 186,
51, 62, 219, 247, 186, 46, 62, 198, 237, 204, 2, 186, 51, 62, 198, 237,
204, 2, 186, 46, 62, 50, 186, 51, 62, 50, 186, 194, 125, 237, 185, 207,
168, 55, 209, 100, 208, 142, 77, 55, 209, 100, 208, 142, 77, 132, 55,
209, 100, 208, 142, 77, 209, 153, 122, 233, 91, 230, 34, 212, 234, 101,
230, 34, 212, 234, 104, 230, 34, 212, 234, 133, 230, 34, 212, 234, 134,
230, 34, 212, 234, 151, 230, 34, 212, 234, 170, 230, 34, 212, 234, 179,
230, 34, 212, 234, 174, 230, 34, 212, 234, 182, 149, 219, 228, 158, 77,
149, 207, 73, 158, 77, 149, 237, 66, 158, 77, 149, 234, 61, 158, 77, 30,
203, 74, 78, 158, 77, 30, 55, 78, 158, 77, 194, 121, 237, 185, 84, 222,
120, 207, 199, 77, 84, 222, 120, 207, 199, 4, 195, 248, 202, 174, 77, 84,
222, 120, 207, 199, 122, 113, 230, 78, 84, 222, 120, 207, 199, 4, 195,
248, 202, 174, 122, 113, 230, 78, 84, 222, 120, 207, 199, 122, 106, 230,
78, 47, 209, 153, 77, 149, 200, 44, 219, 176, 233, 39, 204, 166, 109,
230, 34, 212, 234, 200, 30, 230, 34, 212, 234, 197, 239, 230, 34, 212,
234, 199, 184, 84, 149, 223, 80, 77, 217, 102, 77, 210, 224, 250, 245,
77, 149, 65, 223, 172, 149, 138, 232, 250, 202, 160, 229, 140, 1, 2, 64,
229, 140, 1, 64, 229, 140, 1, 2, 70, 229, 140, 1, 70, 229, 140, 1, 2, 68,
229, 140, 1, 68, 229, 140, 1, 2, 71, 229, 140, 1, 71, 229, 140, 1, 2, 74,
229, 140, 1, 74, 229, 140, 1, 160, 229, 140, 1, 231, 233, 229, 140, 1,
221, 204, 229, 140, 1, 231, 46, 229, 140, 1, 221, 33, 229, 140, 1, 230,
186, 229, 140, 1, 222, 57, 229, 140, 1, 231, 158, 229, 140, 1, 221, 113,
229, 140, 1, 230, 254, 229, 140, 1, 188, 229, 140, 1, 192, 112, 229, 140,
1, 203, 125, 229, 140, 1, 192, 30, 229, 140, 1, 201, 184, 229, 140, 1,
191, 252, 229, 140, 1, 205, 223, 229, 140, 1, 192, 85, 229, 140, 1, 202,
212, 229, 140, 1, 192, 8, 229, 140, 1, 189, 229, 140, 1, 238, 0, 229,
140, 1, 199, 128, 229, 140, 1, 237, 16, 229, 140, 1, 2, 198, 45, 229,
140, 1, 198, 45, 229, 140, 1, 235, 62, 229, 140, 1, 200, 79, 229, 140, 1,
237, 116, 229, 140, 1, 155, 229, 140, 1, 236, 146, 229, 140, 1, 181, 229,
140, 1, 214, 60, 229, 140, 1, 213, 22, 229, 140, 1, 214, 214, 229, 140,
1, 213, 142, 229, 140, 1, 144, 229, 140, 1, 249, 3, 229, 140, 1, 166,
229, 140, 1, 229, 178, 229, 140, 1, 248, 41, 229, 140, 1, 210, 51, 229,
140, 1, 228, 181, 229, 140, 1, 247, 124, 229, 140, 1, 209, 51, 229, 140,
1, 229, 255, 229, 140, 1, 248, 123, 229, 140, 1, 210, 181, 229, 140, 1,
229, 43, 229, 140, 1, 247, 220, 229, 140, 1, 209, 198, 229, 140, 1, 172,
229, 140, 1, 216, 175, 229, 140, 1, 215, 241, 229, 140, 1, 217, 48, 229,
140, 1, 216, 91, 229, 140, 1, 2, 168, 229, 140, 1, 168, 229, 140, 1, 2,
192, 214, 229, 140, 1, 192, 214, 229, 140, 1, 2, 193, 1, 229, 140, 1,
193, 1, 229, 140, 1, 167, 229, 140, 1, 207, 151, 229, 140, 1, 206, 218,
229, 140, 1, 208, 7, 229, 140, 1, 207, 55, 229, 140, 1, 2, 194, 169, 229,
140, 1, 194, 169, 229, 140, 1, 194, 72, 229, 140, 1, 194, 111, 229, 140,
1, 194, 36, 229, 140, 1, 215, 151, 229, 140, 1, 194, 223, 229, 140, 1, 2,
160, 229, 140, 1, 2, 222, 57, 38, 222, 82, 195, 248, 202, 174, 77, 38,
222, 82, 204, 185, 202, 174, 77, 222, 82, 195, 248, 202, 174, 77, 222,
82, 204, 185, 202, 174, 77, 229, 140, 223, 80, 77, 229, 140, 195, 248,
223, 80, 77, 229, 140, 236, 231, 192, 231, 222, 82, 55, 228, 111, 75, 1,
2, 64, 75, 1, 64, 75, 1, 2, 70, 75, 1, 70, 75, 1, 2, 68, 75, 1, 68, 75,
1, 2, 71, 75, 1, 71, 75, 1, 2, 74, 75, 1, 74, 75, 1, 160, 75, 1, 231,
233, 75, 1, 221, 204, 75, 1, 231, 46, 75, 1, 221, 33, 75, 1, 230, 186,
75, 1, 222, 57, 75, 1, 231, 158, 75, 1, 221, 113, 75, 1, 230, 254, 75, 1,
188, 75, 1, 192, 112, 75, 1, 203, 125, 75, 1, 192, 30, 75, 1, 201, 184,
75, 1, 191, 252, 75, 1, 205, 223, 75, 1, 192, 85, 75, 1, 202, 212, 75, 1,
192, 8, 75, 1, 189, 75, 1, 238, 0, 75, 1, 199, 128, 75, 1, 237, 16, 75,
1, 2, 198, 45, 75, 1, 198, 45, 75, 1, 235, 62, 75, 1, 200, 79, 75, 1,
237, 116, 75, 1, 155, 75, 1, 236, 146, 75, 1, 181, 75, 1, 214, 60, 75, 1,
213, 22, 75, 1, 214, 214, 75, 1, 213, 142, 75, 1, 144, 75, 1, 249, 3, 75,
1, 166, 75, 1, 229, 178, 75, 1, 248, 41, 75, 1, 210, 51, 75, 1, 228, 181,
75, 1, 247, 124, 75, 1, 209, 51, 75, 1, 229, 255, 75, 1, 248, 123, 75, 1,
210, 181, 75, 1, 229, 43, 75, 1, 247, 220, 75, 1, 209, 198, 75, 1, 172,
75, 1, 216, 175, 75, 1, 215, 241, 75, 1, 217, 48, 75, 1, 216, 91, 75, 1,
2, 168, 75, 1, 168, 75, 1, 2, 192, 214, 75, 1, 192, 214, 75, 1, 2, 193,
1, 75, 1, 193, 1, 75, 1, 167, 75, 1, 207, 151, 75, 1, 206, 218, 75, 1,
208, 7, 75, 1, 207, 55, 75, 1, 2, 194, 169, 75, 1, 194, 169, 75, 1, 194,
72, 75, 1, 194, 111, 75, 1, 194, 36, 75, 1, 215, 151, 75, 1, 194, 223,
75, 1, 2, 160, 75, 1, 2, 222, 57, 75, 1, 196, 157, 75, 1, 196, 39, 75, 1,
196, 123, 75, 1, 195, 252, 75, 85, 236, 114, 222, 82, 209, 76, 202, 174,
77, 75, 223, 80, 77, 75, 195, 248, 223, 80, 77, 75, 236, 231, 221, 75,
247, 197, 1, 249, 226, 247, 197, 1, 211, 93, 247, 197, 1, 218, 236, 247,
197, 1, 233, 163, 247, 197, 1, 238, 95, 247, 197, 1, 200, 228, 247, 197,
1, 215, 151, 247, 197, 1, 165, 247, 197, 1, 232, 44, 247, 197, 1, 222,
184, 247, 197, 1, 230, 124, 247, 197, 1, 223, 65, 247, 197, 1, 208, 247,
247, 197, 1, 193, 223, 247, 197, 1, 192, 72, 247, 197, 1, 246, 119, 247,
197, 1, 204, 66, 247, 197, 1, 150, 247, 197, 1, 192, 155, 247, 197, 1,
247, 52, 247, 197, 1, 206, 158, 247, 197, 1, 64, 247, 197, 1, 74, 247,
197, 1, 71, 247, 197, 1, 234, 157, 247, 197, 1, 251, 63, 247, 197, 1,
234, 150, 247, 197, 1, 250, 8, 247, 197, 1, 211, 130, 247, 197, 1, 250,
224, 247, 197, 1, 234, 88, 247, 197, 1, 250, 214, 247, 197, 1, 234, 73,
247, 197, 1, 234, 21, 247, 197, 1, 70, 247, 197, 1, 68, 247, 197, 1, 223,
78, 247, 197, 1, 196, 236, 247, 197, 1, 214, 167, 247, 197, 1, 231, 2,
247, 197, 1, 223, 225, 247, 197, 1, 185, 4, 78, 58, 247, 197, 1, 213,
179, 30, 1, 221, 151, 30, 1, 202, 84, 30, 1, 221, 144, 30, 1, 214, 45,
30, 1, 214, 43, 30, 1, 214, 42, 30, 1, 199, 103, 30, 1, 202, 73, 30, 1,
207, 133, 30, 1, 207, 128, 30, 1, 207, 125, 30, 1, 207, 118, 30, 1, 207,
113, 30, 1, 207, 108, 30, 1, 207, 119, 30, 1, 207, 131, 30, 1, 216, 153,
30, 1, 210, 36, 30, 1, 202, 81, 30, 1, 210, 25, 30, 1, 203, 64, 30, 1,
202, 78, 30, 1, 223, 247, 30, 1, 242, 144, 30, 1, 202, 88, 30, 1, 242,
211, 30, 1, 221, 225, 30, 1, 199, 198, 30, 1, 210, 75, 30, 1, 229, 162,
30, 1, 64, 30, 1, 251, 108, 30, 1, 168, 30, 1, 193, 118, 30, 1, 234, 50,
30, 1, 71, 30, 1, 193, 56, 30, 1, 193, 69, 30, 1, 74, 30, 1, 194, 169,
30, 1, 194, 160, 30, 1, 212, 0, 30, 1, 193, 1, 30, 1, 68, 30, 1, 194, 93,
30, 1, 194, 111, 30, 1, 194, 72, 30, 1, 192, 214, 30, 1, 233, 230, 30, 1,
193, 22, 30, 1, 70, 30, 232, 247, 30, 1, 202, 82, 30, 1, 214, 35, 30, 1,
214, 37, 30, 1, 214, 40, 30, 1, 207, 126, 30, 1, 207, 107, 30, 1, 207,
115, 30, 1, 207, 120, 30, 1, 207, 105, 30, 1, 216, 146, 30, 1, 216, 143,
30, 1, 216, 147, 30, 1, 222, 105, 30, 1, 210, 31, 30, 1, 210, 17, 30, 1,
210, 23, 30, 1, 210, 20, 30, 1, 210, 34, 30, 1, 210, 18, 30, 1, 222, 103,
30, 1, 222, 101, 30, 1, 203, 57, 30, 1, 203, 55, 30, 1, 203, 47, 30, 1,
203, 52, 30, 1, 203, 62, 30, 1, 211, 8, 30, 1, 202, 85, 30, 1, 193, 46,
30, 1, 193, 40, 30, 1, 193, 41, 30, 1, 222, 104, 30, 1, 202, 86, 30, 1,
193, 52, 30, 1, 192, 245, 30, 1, 192, 244, 30, 1, 192, 247, 30, 1, 192,
201, 30, 1, 192, 202, 30, 1, 192, 205, 30, 1, 250, 123, 30, 1, 250, 117,
149, 250, 193, 219, 164, 77, 149, 250, 193, 207, 169, 77, 149, 250, 193,
90, 77, 149, 250, 193, 103, 77, 149, 250, 193, 112, 77, 149, 250, 193,
232, 119, 77, 149, 250, 193, 198, 249, 77, 149, 250, 193, 85, 77, 149,
250, 193, 247, 188, 77, 149, 250, 193, 232, 226, 77, 149, 250, 193, 205,
212, 77, 149, 250, 193, 199, 192, 77, 149, 250, 193, 232, 112, 77, 149,
250, 193, 229, 230, 77, 149, 250, 193, 234, 190, 77, 149, 250, 193, 217,
161, 77, 247, 197, 1, 247, 124, 247, 197, 1, 192, 30, 247, 197, 1, 223,
20, 247, 197, 1, 230, 186, 247, 197, 1, 234, 171, 247, 197, 1, 234, 70,
247, 197, 1, 211, 194, 247, 197, 1, 211, 198, 247, 197, 1, 223, 105, 247,
197, 1, 250, 195, 247, 197, 1, 223, 156, 247, 197, 1, 197, 47, 247, 197,
1, 223, 207, 247, 197, 1, 214, 145, 247, 197, 1, 251, 56, 247, 197, 1,
250, 3, 247, 197, 1, 250, 241, 247, 197, 1, 211, 219, 247, 197, 1, 211,
201, 247, 197, 1, 223, 153, 247, 197, 52, 1, 211, 93, 247, 197, 52, 1,
200, 228, 247, 197, 52, 1, 222, 184, 247, 197, 52, 1, 230, 124, 247, 197,
1, 231, 85, 247, 197, 1, 219, 223, 247, 197, 1, 191, 232, 247, 197, 52,
1, 232, 44, 247, 197, 1, 230, 144, 247, 197, 1, 220, 239, 247, 197, 1,
212, 0, 247, 197, 1, 251, 72, 12, 201, 208, 200, 228, 12, 201, 208, 194,
84, 12, 201, 208, 193, 198, 12, 201, 208, 247, 65, 12, 201, 208, 201, 80,
12, 201, 208, 228, 101, 12, 201, 208, 228, 105, 12, 201, 208, 228, 190,
12, 201, 208, 228, 102, 12, 201, 208, 200, 231, 12, 201, 208, 228, 104,
12, 201, 208, 228, 100, 12, 201, 208, 228, 188, 12, 201, 208, 228, 103,
12, 201, 208, 228, 99, 12, 201, 208, 215, 151, 12, 201, 208, 230, 124,
12, 201, 208, 206, 158, 12, 201, 208, 211, 93, 12, 201, 208, 202, 163,
12, 201, 208, 238, 95, 12, 201, 208, 228, 106, 12, 201, 208, 229, 188,
12, 201, 208, 200, 240, 12, 201, 208, 201, 57, 12, 201, 208, 202, 35, 12,
201, 208, 204, 72, 12, 201, 208, 210, 185, 12, 201, 208, 208, 249, 12,
201, 208, 199, 37, 12, 201, 208, 200, 230, 12, 201, 208, 201, 69, 12,
201, 208, 228, 116, 12, 201, 208, 228, 98, 12, 201, 208, 210, 96, 12,
201, 208, 208, 247, 75, 1, 2, 221, 33, 75, 1, 2, 203, 125, 75, 1, 2, 201,
184, 75, 1, 2, 155, 75, 1, 2, 213, 22, 75, 1, 2, 144, 75, 1, 2, 229, 178,
75, 1, 2, 228, 181, 75, 1, 2, 229, 255, 75, 1, 2, 229, 43, 75, 1, 2, 215,
241, 75, 1, 2, 167, 75, 1, 2, 207, 151, 75, 1, 2, 206, 218, 75, 1, 2,
208, 7, 75, 1, 2, 207, 55, 125, 30, 221, 151, 125, 30, 214, 45, 125, 30,
199, 103, 125, 30, 207, 133, 125, 30, 216, 153, 125, 30, 210, 36, 125,
30, 203, 64, 125, 30, 223, 247, 125, 30, 242, 144, 125, 30, 242, 211,
125, 30, 221, 225, 125, 30, 199, 198, 125, 30, 210, 75, 125, 30, 229,
162, 125, 30, 221, 152, 64, 125, 30, 214, 46, 64, 125, 30, 199, 104, 64,
125, 30, 207, 134, 64, 125, 30, 216, 154, 64, 125, 30, 210, 37, 64, 125,
30, 203, 65, 64, 125, 30, 223, 248, 64, 125, 30, 242, 145, 64, 125, 30,
242, 212, 64, 125, 30, 221, 226, 64, 125, 30, 199, 199, 64, 125, 30, 210,
76, 64, 125, 30, 229, 163, 64, 125, 30, 242, 145, 68, 125, 221, 79, 246,
100, 211, 234, 125, 221, 79, 246, 100, 185, 228, 181, 125, 228, 39, 101,
125, 228, 39, 104, 125, 228, 39, 133, 125, 228, 39, 134, 125, 228, 39,
151, 125, 228, 39, 170, 125, 228, 39, 179, 125, 228, 39, 174, 125, 228,
39, 182, 125, 228, 39, 200, 30, 125, 228, 39, 216, 29, 125, 228, 39, 232,
231, 125, 228, 39, 194, 129, 125, 228, 39, 194, 16, 125, 228, 39, 216,
240, 125, 228, 39, 234, 189, 125, 228, 39, 201, 123, 125, 228, 39, 201,
241, 125, 228, 39, 230, 9, 125, 228, 39, 202, 201, 125, 228, 39, 215, 62,
125, 228, 39, 202, 145, 125, 228, 39, 232, 242, 125, 228, 39, 239, 14,
125, 228, 39, 220, 173, 125, 228, 39, 207, 192, 125, 228, 39, 246, 253,
125, 228, 39, 201, 190, 125, 228, 39, 201, 103, 125, 228, 39, 234, 60,
125, 228, 39, 207, 182, 125, 228, 39, 251, 4, 125, 228, 39, 233, 19, 125,
228, 39, 207, 180, 125, 228, 39, 204, 187, 125, 228, 39, 208, 2, 47, 228,
39, 208, 158, 47, 228, 39, 221, 178, 47, 228, 39, 205, 243, 47, 228, 39,
221, 75, 47, 31, 200, 31, 211, 212, 60, 202, 106, 47, 31, 197, 240, 211,
212, 60, 202, 106, 47, 31, 199, 185, 211, 212, 60, 202, 106, 47, 31, 232,
127, 211, 212, 60, 202, 106, 47, 31, 233, 4, 211, 212, 60, 202, 106, 47,
31, 203, 26, 211, 212, 60, 202, 106, 47, 31, 204, 141, 211, 212, 60, 202,
106, 47, 31, 234, 138, 211, 212, 60, 202, 106, 210, 220, 57, 47, 31, 197,
240, 101, 47, 31, 197, 240, 104, 47, 31, 197, 240, 133, 47, 31, 197, 240,
134, 47, 31, 197, 240, 151, 47, 31, 197, 240, 170, 47, 31, 197, 240, 179,
47, 31, 197, 240, 174, 47, 31, 197, 240, 182, 47, 31, 199, 184, 47, 31,
199, 185, 101, 47, 31, 199, 185, 104, 47, 31, 199, 185, 133, 47, 31, 199,
185, 134, 47, 31, 199, 185, 151, 47, 30, 221, 151, 47, 30, 214, 45, 47,
30, 199, 103, 47, 30, 207, 133, 47, 30, 216, 153, 47, 30, 210, 36, 47,
30, 203, 64, 47, 30, 223, 247, 47, 30, 242, 144, 47, 30, 242, 211, 47,
30, 221, 225, 47, 30, 199, 198, 47, 30, 210, 75, 47, 30, 229, 162, 47,
30, 221, 152, 64, 47, 30, 214, 46, 64, 47, 30, 199, 104, 64, 47, 30, 207,
134, 64, 47, 30, 216, 154, 64, 47, 30, 210, 37, 64, 47, 30, 203, 65, 64,
47, 30, 223, 248, 64, 47, 30, 242, 145, 64, 47, 30, 242, 212, 64, 47, 30,
221, 226, 64, 47, 30, 199, 199, 64, 47, 30, 210, 76, 64, 47, 30, 229,
163, 64, 47, 221, 79, 246, 100, 246, 107, 47, 221, 79, 246, 100, 222,
210, 47, 30, 223, 248, 68, 221, 79, 202, 23, 109, 47, 228, 39, 101, 47,
228, 39, 104, 47, 228, 39, 133, 47, 228, 39, 134, 47, 228, 39, 151, 47,
228, 39, 170, 47, 228, 39, 179, 47, 228, 39, 174, 47, 228, 39, 182, 47,
228, 39, 200, 30, 47, 228, 39, 216, 29, 47, 228, 39, 232, 231, 47, 228,
39, 194, 129, 47, 228, 39, 194, 16, 47, 228, 39, 216, 240, 47, 228, 39,
234, 189, 47, 228, 39, 201, 123, 47, 228, 39, 201, 241, 47, 228, 39, 230,
9, 47, 228, 39, 202, 201, 47, 228, 39, 215, 62, 47, 228, 39, 202, 145,
47, 228, 39, 232, 242, 47, 228, 39, 239, 14, 47, 228, 39, 220, 173, 47,
228, 39, 205, 210, 47, 228, 39, 217, 165, 47, 228, 39, 233, 29, 47, 228,
39, 201, 135, 47, 228, 39, 233, 208, 47, 228, 39, 209, 95, 47, 228, 39,
250, 12, 47, 228, 39, 223, 81, 47, 228, 39, 207, 180, 47, 228, 39, 238,
229, 47, 228, 39, 238, 217, 47, 228, 39, 229, 155, 47, 228, 39, 246, 137,
47, 228, 39, 219, 52, 47, 228, 39, 220, 28, 47, 228, 39, 207, 101, 47,
228, 39, 217, 33, 47, 228, 39, 207, 210, 47, 228, 39, 201, 190, 47, 228,
39, 201, 103, 47, 228, 39, 234, 60, 47, 228, 39, 207, 182, 47, 228, 39,
251, 4, 47, 228, 39, 214, 31, 47, 31, 199, 185, 170, 47, 31, 199, 185,
179, 47, 31, 199, 185, 174, 47, 31, 199, 185, 182, 47, 31, 232, 126, 47,
31, 232, 127, 101, 47, 31, 232, 127, 104, 47, 31, 232, 127, 133, 47, 31,
232, 127, 134, 47, 31, 232, 127, 151, 47, 31, 232, 127, 170, 47, 31, 232,
127, 179, 47, 31, 232, 127, 174, 47, 31, 232, 127, 182, 47, 31, 233, 3,
149, 200, 44, 16, 39, 223, 52, 149, 200, 44, 16, 39, 233, 41, 149, 200,
44, 16, 39, 217, 129, 149, 200, 44, 16, 39, 250, 137, 149, 200, 44, 16,
39, 217, 92, 149, 200, 44, 16, 39, 222, 207, 149, 200, 44, 16, 39, 222,
208, 149, 200, 44, 16, 39, 250, 4, 149, 200, 44, 16, 39, 204, 164, 149,
200, 44, 16, 39, 212, 6, 149, 200, 44, 16, 39, 213, 98, 149, 200, 44, 16,
39, 237, 110, 50, 229, 188, 50, 234, 17, 50, 233, 218, 219, 181, 219,
208, 57, 47, 75, 64, 47, 75, 70, 47, 75, 68, 47, 75, 71, 47, 75, 74, 47,
75, 160, 47, 75, 221, 204, 47, 75, 221, 33, 47, 75, 222, 57, 47, 75, 221,
113, 47, 75, 188, 47, 75, 203, 125, 47, 75, 201, 184, 47, 75, 205, 223,
47, 75, 202, 212, 47, 75, 189, 47, 75, 199, 128, 47, 75, 198, 45, 47, 75,
200, 79, 47, 75, 155, 47, 75, 181, 47, 75, 214, 60, 47, 75, 213, 22, 47,
75, 214, 214, 47, 75, 213, 142, 47, 75, 144, 47, 75, 229, 178, 47, 75,
228, 181, 47, 75, 229, 255, 47, 75, 229, 43, 47, 75, 172, 47, 75, 216,
175, 47, 75, 215, 241, 47, 75, 217, 48, 47, 75, 216, 91, 47, 75, 168, 47,
75, 192, 214, 47, 75, 193, 1, 47, 75, 167, 47, 75, 207, 151, 47, 75, 206,
218, 47, 75, 208, 7, 47, 75, 207, 55, 47, 75, 194, 169, 47, 75, 194, 72,
47, 75, 194, 111, 47, 75, 194, 36, 50, 234, 20, 215, 63, 207, 218, 50,
250, 162, 50, 250, 63, 50, 250, 189, 50, 251, 246, 50, 223, 158, 50, 223,
125, 50, 197, 44, 50, 233, 245, 50, 234, 168, 50, 211, 197, 50, 211, 190,
50, 222, 133, 50, 222, 97, 50, 222, 92, 50, 231, 188, 50, 231, 198, 50,
231, 34, 50, 231, 30, 50, 220, 203, 50, 231, 21, 50, 221, 169, 50, 221,
168, 50, 221, 167, 50, 221, 166, 50, 230, 154, 50, 230, 153, 50, 220,
252, 50, 220, 255, 50, 222, 44, 50, 221, 77, 50, 221, 85, 50, 206, 74,
50, 206, 31, 50, 203, 45, 50, 204, 170, 50, 204, 169, 50, 237, 252, 50,
237, 53, 50, 236, 115, 50, 199, 20, 50, 215, 56, 50, 213, 99, 50, 230,
83, 50, 211, 71, 50, 211, 70, 50, 249, 0, 50, 210, 48, 50, 210, 10, 50,
210, 11, 50, 248, 9, 50, 228, 176, 50, 228, 170, 50, 247, 80, 50, 228,
154, 50, 229, 216, 50, 210, 107, 50, 210, 149, 50, 229, 197, 50, 210,
145, 50, 210, 163, 50, 248, 103, 50, 209, 187, 50, 247, 193, 50, 229, 19,
50, 209, 173, 50, 229, 10, 50, 229, 12, 50, 217, 178, 50, 217, 174, 50,
217, 183, 50, 217, 115, 50, 217, 146, 50, 216, 132, 50, 216, 107, 50,
216, 106, 50, 217, 21, 50, 217, 18, 50, 217, 22, 50, 193, 128, 50, 193,
126, 50, 192, 199, 50, 207, 71, 50, 207, 75, 50, 206, 185, 50, 206, 178,
50, 207, 207, 50, 207, 204, 50, 194, 127, 149, 200, 44, 16, 39, 228, 198,
192, 76, 149, 200, 44, 16, 39, 228, 198, 101, 149, 200, 44, 16, 39, 228,
198, 104, 149, 200, 44, 16, 39, 228, 198, 133, 149, 200, 44, 16, 39, 228,
198, 134, 149, 200, 44, 16, 39, 228, 198, 151, 149, 200, 44, 16, 39, 228,
198, 170, 149, 200, 44, 16, 39, 228, 198, 179, 149, 200, 44, 16, 39, 228,
198, 174, 149, 200, 44, 16, 39, 228, 198, 182, 149, 200, 44, 16, 39, 228,
198, 200, 30, 149, 200, 44, 16, 39, 228, 198, 234, 111, 149, 200, 44, 16,
39, 228, 198, 197, 244, 149, 200, 44, 16, 39, 228, 198, 199, 186, 149,
200, 44, 16, 39, 228, 198, 232, 113, 149, 200, 44, 16, 39, 228, 198, 233,
7, 149, 200, 44, 16, 39, 228, 198, 203, 35, 149, 200, 44, 16, 39, 228,
198, 204, 143, 149, 200, 44, 16, 39, 228, 198, 234, 145, 149, 200, 44,
16, 39, 228, 198, 214, 13, 149, 200, 44, 16, 39, 228, 198, 197, 239, 149,
200, 44, 16, 39, 228, 198, 197, 232, 149, 200, 44, 16, 39, 228, 198, 197,
227, 149, 200, 44, 16, 39, 228, 198, 197, 229, 149, 200, 44, 16, 39, 228,
198, 197, 234, 50, 228, 189, 50, 238, 0, 50, 250, 8, 50, 161, 50, 211,
120, 50, 210, 186, 50, 236, 149, 50, 236, 150, 202, 105, 50, 236, 150,
238, 156, 50, 223, 78, 50, 234, 20, 215, 63, 229, 217, 50, 234, 20, 215,
63, 200, 251, 50, 234, 20, 215, 63, 200, 144, 50, 234, 20, 215, 63, 217,
17, 50, 238, 219, 50, 211, 78, 250, 227, 50, 181, 50, 215, 242, 64, 50,
172, 50, 160, 50, 222, 60, 50, 217, 87, 50, 231, 176, 50, 247, 3, 50,
222, 59, 50, 210, 97, 50, 214, 169, 50, 215, 242, 233, 163, 50, 215, 242,
232, 44, 50, 216, 216, 50, 221, 252, 50, 228, 106, 50, 221, 206, 50, 216,
177, 50, 231, 48, 50, 199, 130, 50, 215, 242, 165, 50, 216, 99, 50, 236,
159, 50, 221, 133, 50, 232, 166, 50, 213, 180, 50, 215, 242, 218, 236,
50, 216, 96, 50, 242, 64, 50, 221, 127, 50, 216, 97, 202, 105, 50, 242,
65, 202, 105, 50, 218, 237, 202, 105, 50, 221, 128, 202, 105, 50, 216,
97, 238, 156, 50, 242, 65, 238, 156, 50, 218, 237, 238, 156, 50, 221,
128, 238, 156, 50, 218, 237, 136, 206, 158, 50, 218, 237, 136, 206, 159,
202, 105, 50, 166, 50, 221, 69, 50, 215, 247, 50, 230, 228, 50, 208, 58,
50, 208, 59, 136, 206, 158, 50, 208, 59, 136, 206, 159, 202, 105, 50,
209, 64, 50, 213, 63, 50, 215, 242, 206, 158, 50, 215, 244, 50, 209, 11,
50, 212, 212, 50, 215, 242, 196, 236, 50, 215, 175, 50, 220, 241, 50,
215, 176, 217, 21, 50, 209, 10, 50, 212, 211, 50, 215, 242, 194, 202, 50,
215, 169, 50, 220, 239, 50, 215, 170, 217, 21, 50, 222, 185, 211, 239,
50, 218, 237, 211, 239, 50, 250, 241, 50, 247, 168, 50, 246, 182, 50,
246, 159, 50, 247, 53, 136, 221, 252, 50, 242, 63, 50, 237, 170, 50, 230,
137, 50, 144, 50, 228, 190, 50, 223, 190, 50, 221, 140, 50, 221, 128,
246, 225, 50, 221, 35, 50, 219, 110, 50, 219, 109, 50, 219, 94, 50, 218,
252, 50, 217, 88, 202, 236, 50, 216, 131, 50, 216, 57, 50, 210, 95, 50,
209, 201, 50, 209, 133, 50, 209, 131, 50, 202, 96, 50, 201, 84, 50, 194,
113, 50, 196, 237, 136, 218, 236, 50, 41, 136, 218, 236, 149, 200, 44,
16, 39, 237, 174, 101, 149, 200, 44, 16, 39, 237, 174, 104, 149, 200, 44,
16, 39, 237, 174, 133, 149, 200, 44, 16, 39, 237, 174, 134, 149, 200, 44,
16, 39, 237, 174, 151, 149, 200, 44, 16, 39, 237, 174, 170, 149, 200, 44,
16, 39, 237, 174, 179, 149, 200, 44, 16, 39, 237, 174, 174, 149, 200, 44,
16, 39, 237, 174, 182, 149, 200, 44, 16, 39, 237, 174, 200, 30, 149, 200,
44, 16, 39, 237, 174, 234, 111, 149, 200, 44, 16, 39, 237, 174, 197, 244,
149, 200, 44, 16, 39, 237, 174, 199, 186, 149, 200, 44, 16, 39, 237, 174,
232, 113, 149, 200, 44, 16, 39, 237, 174, 233, 7, 149, 200, 44, 16, 39,
237, 174, 203, 35, 149, 200, 44, 16, 39, 237, 174, 204, 143, 149, 200,
44, 16, 39, 237, 174, 234, 145, 149, 200, 44, 16, 39, 237, 174, 214, 13,
149, 200, 44, 16, 39, 237, 174, 197, 239, 149, 200, 44, 16, 39, 237, 174,
197, 232, 149, 200, 44, 16, 39, 237, 174, 197, 227, 149, 200, 44, 16, 39,
237, 174, 197, 229, 149, 200, 44, 16, 39, 237, 174, 197, 234, 149, 200,
44, 16, 39, 237, 174, 197, 235, 149, 200, 44, 16, 39, 237, 174, 197, 230,
149, 200, 44, 16, 39, 237, 174, 197, 231, 149, 200, 44, 16, 39, 237, 174,
197, 238, 149, 200, 44, 16, 39, 237, 174, 197, 233, 149, 200, 44, 16, 39,
237, 174, 199, 184, 149, 200, 44, 16, 39, 237, 174, 199, 182, 50, 231,
215, 229, 191, 39, 199, 225, 238, 197, 229, 229, 229, 191, 39, 199, 225,
207, 250, 234, 189, 229, 191, 39, 236, 242, 250, 27, 199, 225, 248, 98,
229, 191, 39, 192, 227, 232, 158, 229, 191, 39, 194, 155, 229, 191, 39,
239, 17, 229, 191, 39, 199, 225, 250, 88, 229, 191, 39, 229, 26, 199, 26,
229, 191, 39, 2, 200, 126, 229, 191, 39, 198, 198, 229, 191, 39, 210,
179, 229, 191, 39, 202, 21, 229, 191, 39, 233, 31, 229, 191, 39, 230,
206, 209, 156, 229, 191, 39, 216, 77, 229, 191, 39, 234, 59, 229, 191,
39, 232, 159, 229, 191, 39, 194, 9, 211, 212, 199, 225, 237, 111, 229,
191, 39, 250, 141, 229, 191, 39, 238, 252, 229, 191, 39, 247, 254, 199,
150, 229, 191, 39, 230, 226, 229, 191, 39, 202, 123, 250, 161, 229, 191,
39, 207, 172, 229, 191, 39, 223, 152, 229, 191, 39, 230, 206, 200, 126,
229, 191, 39, 216, 5, 238, 222, 229, 191, 39, 230, 206, 209, 108, 229,
191, 39, 199, 225, 251, 148, 194, 129, 229, 191, 39, 199, 225, 242, 92,
232, 231, 229, 191, 39, 223, 166, 229, 191, 39, 235, 38, 229, 191, 39,
207, 175, 229, 191, 39, 230, 206, 209, 138, 229, 191, 39, 209, 82, 229,
191, 39, 237, 190, 80, 199, 225, 219, 195, 229, 191, 39, 199, 225, 233,
69, 229, 191, 39, 211, 169, 229, 191, 39, 212, 13, 229, 191, 39, 237, 81,
229, 191, 39, 237, 103, 229, 191, 39, 223, 181, 229, 191, 39, 247, 154,
229, 191, 39, 242, 40, 115, 217, 24, 229, 191, 39, 231, 183, 199, 26,
229, 191, 39, 209, 21, 197, 31, 229, 191, 39, 211, 168, 229, 191, 39,
199, 225, 194, 95, 229, 191, 39, 207, 163, 229, 191, 39, 199, 225, 246,
188, 229, 191, 39, 199, 225, 250, 84, 199, 144, 229, 191, 39, 199, 225,
222, 45, 201, 245, 216, 9, 229, 191, 39, 237, 48, 229, 191, 39, 199, 225,
217, 118, 217, 179, 229, 191, 39, 251, 149, 229, 191, 39, 199, 225, 194,
146, 229, 191, 39, 199, 225, 231, 138, 194, 52, 229, 191, 39, 199, 225,
222, 216, 220, 102, 229, 191, 39, 236, 191, 229, 191, 39, 219, 182, 229,
191, 39, 223, 155, 198, 122, 229, 191, 39, 2, 209, 108, 229, 191, 39,
251, 81, 242, 30, 229, 191, 39, 248, 101, 242, 30, 11, 5, 223, 82, 11, 5,
223, 74, 11, 5, 70, 11, 5, 223, 108, 11, 5, 223, 249, 11, 5, 223, 232,
11, 5, 223, 251, 11, 5, 223, 250, 11, 5, 250, 26, 11, 5, 249, 238, 11, 5,
64, 11, 5, 250, 163, 11, 5, 197, 42, 11, 5, 197, 46, 11, 5, 197, 43, 11,
5, 211, 140, 11, 5, 211, 103, 11, 5, 74, 11, 5, 211, 185, 11, 5, 233,
209, 11, 5, 71, 11, 5, 193, 244, 11, 5, 248, 1, 11, 5, 247, 252, 11, 5,
248, 41, 11, 5, 248, 14, 11, 5, 248, 30, 11, 5, 248, 29, 11, 5, 248, 32,
11, 5, 248, 31, 11, 5, 248, 170, 11, 5, 248, 162, 11, 5, 249, 3, 11, 5,
248, 195, 11, 5, 247, 92, 11, 5, 247, 96, 11, 5, 247, 93, 11, 5, 247,
192, 11, 5, 247, 173, 11, 5, 247, 220, 11, 5, 247, 198, 11, 5, 248, 57,
11, 5, 248, 123, 11, 5, 248, 70, 11, 5, 247, 76, 11, 5, 247, 70, 11, 5,
247, 124, 11, 5, 247, 91, 11, 5, 247, 84, 11, 5, 247, 89, 11, 5, 247, 58,
11, 5, 247, 56, 11, 5, 247, 63, 11, 5, 247, 61, 11, 5, 247, 59, 11, 5,
247, 60, 11, 5, 209, 241, 11, 5, 209, 237, 11, 5, 210, 51, 11, 5, 209,
253, 11, 5, 210, 16, 11, 5, 210, 43, 11, 5, 210, 39, 11, 5, 210, 206, 11,
5, 210, 191, 11, 5, 166, 11, 5, 210, 253, 11, 5, 209, 31, 11, 5, 209, 33,
11, 5, 209, 32, 11, 5, 209, 149, 11, 5, 209, 136, 11, 5, 209, 198, 11, 5,
209, 168, 11, 5, 209, 17, 11, 5, 209, 13, 11, 5, 209, 51, 11, 5, 209, 30,
11, 5, 209, 22, 11, 5, 209, 28, 11, 5, 208, 251, 11, 5, 208, 250, 11, 5,
208, 255, 11, 5, 208, 254, 11, 5, 208, 252, 11, 5, 208, 253, 11, 5, 248,
144, 11, 5, 248, 143, 11, 5, 248, 150, 11, 5, 248, 145, 11, 5, 248, 147,
11, 5, 248, 146, 11, 5, 248, 149, 11, 5, 248, 148, 11, 5, 248, 156, 11,
5, 248, 155, 11, 5, 248, 159, 11, 5, 248, 157, 11, 5, 248, 135, 11, 5,
248, 137, 11, 5, 248, 136, 11, 5, 248, 140, 11, 5, 248, 139, 11, 5, 248,
142, 11, 5, 248, 141, 11, 5, 248, 151, 11, 5, 248, 154, 11, 5, 248, 152,
11, 5, 248, 131, 11, 5, 248, 130, 11, 5, 248, 138, 11, 5, 248, 134, 11,
5, 248, 132, 11, 5, 248, 133, 11, 5, 248, 127, 11, 5, 248, 126, 11, 5,
248, 129, 11, 5, 248, 128, 11, 5, 215, 22, 11, 5, 215, 21, 11, 5, 215,
27, 11, 5, 215, 23, 11, 5, 215, 24, 11, 5, 215, 26, 11, 5, 215, 25, 11,
5, 215, 30, 11, 5, 215, 29, 11, 5, 215, 32, 11, 5, 215, 31, 11, 5, 215,
18, 11, 5, 215, 17, 11, 5, 215, 20, 11, 5, 215, 19, 11, 5, 215, 11, 11,
5, 215, 10, 11, 5, 215, 15, 11, 5, 215, 14, 11, 5, 215, 12, 11, 5, 215,
13, 11, 5, 215, 5, 11, 5, 215, 4, 11, 5, 215, 9, 11, 5, 215, 8, 11, 5,
215, 6, 11, 5, 215, 7, 11, 5, 229, 87, 11, 5, 229, 86, 11, 5, 229, 92,
11, 5, 229, 88, 11, 5, 229, 89, 11, 5, 229, 91, 11, 5, 229, 90, 11, 5,
229, 95, 11, 5, 229, 94, 11, 5, 229, 97, 11, 5, 229, 96, 11, 5, 229, 78,
11, 5, 229, 80, 11, 5, 229, 79, 11, 5, 229, 83, 11, 5, 229, 82, 11, 5,
229, 85, 11, 5, 229, 84, 11, 5, 229, 74, 11, 5, 229, 73, 11, 5, 229, 81,
11, 5, 229, 77, 11, 5, 229, 75, 11, 5, 229, 76, 11, 5, 229, 68, 11, 5,
229, 72, 11, 5, 229, 71, 11, 5, 229, 69, 11, 5, 229, 70, 11, 5, 216, 102,
11, 5, 216, 101, 11, 5, 216, 175, 11, 5, 216, 109, 11, 5, 216, 139, 11,
5, 216, 157, 11, 5, 216, 155, 11, 5, 217, 101, 11, 5, 217, 95, 11, 5,
172, 11, 5, 217, 141, 11, 5, 215, 203, 11, 5, 215, 202, 11, 5, 215, 206,
11, 5, 215, 204, 11, 5, 216, 20, 11, 5, 215, 249, 11, 5, 216, 91, 11, 5,
216, 27, 11, 5, 216, 227, 11, 5, 217, 48, 11, 5, 215, 183, 11, 5, 215,
177, 11, 5, 215, 241, 11, 5, 215, 199, 11, 5, 215, 192, 11, 5, 215, 197,
11, 5, 215, 154, 11, 5, 215, 153, 11, 5, 215, 159, 11, 5, 215, 156, 11,
5, 232, 217, 11, 5, 232, 211, 11, 5, 233, 11, 11, 5, 232, 233, 11, 5,
233, 60, 11, 5, 233, 51, 11, 5, 233, 97, 11, 5, 233, 65, 11, 5, 232, 110,
11, 5, 232, 164, 11, 5, 232, 144, 11, 5, 232, 60, 11, 5, 232, 59, 11, 5,
232, 77, 11, 5, 232, 65, 11, 5, 232, 63, 11, 5, 232, 64, 11, 5, 232, 47,
11, 5, 232, 46, 11, 5, 232, 50, 11, 5, 232, 48, 11, 5, 196, 3, 11, 5,
195, 254, 11, 5, 196, 39, 11, 5, 196, 12, 11, 5, 196, 28, 11, 5, 196, 24,
11, 5, 196, 31, 11, 5, 196, 30, 11, 5, 196, 131, 11, 5, 196, 126, 11, 5,
196, 157, 11, 5, 196, 144, 11, 5, 195, 232, 11, 5, 195, 228, 11, 5, 195,
252, 11, 5, 195, 234, 11, 5, 196, 43, 11, 5, 196, 111, 11, 5, 194, 216,
11, 5, 194, 214, 11, 5, 194, 223, 11, 5, 194, 219, 11, 5, 194, 217, 11,
5, 194, 218, 11, 5, 194, 206, 11, 5, 194, 205, 11, 5, 194, 210, 11, 5,
194, 209, 11, 5, 194, 207, 11, 5, 194, 208, 11, 5, 236, 184, 11, 5, 236,
169, 11, 5, 237, 16, 11, 5, 236, 212, 11, 5, 236, 247, 11, 5, 236, 252,
11, 5, 236, 251, 11, 5, 237, 181, 11, 5, 237, 175, 11, 5, 238, 0, 11, 5,
237, 201, 11, 5, 235, 43, 11, 5, 235, 44, 11, 5, 236, 114, 11, 5, 235,
90, 11, 5, 236, 146, 11, 5, 236, 117, 11, 5, 237, 46, 11, 5, 237, 116,
11, 5, 237, 67, 11, 5, 235, 34, 11, 5, 235, 32, 11, 5, 235, 62, 11, 5,
235, 42, 11, 5, 235, 37, 11, 5, 235, 40, 11, 5, 199, 63, 11, 5, 199, 55,
11, 5, 199, 128, 11, 5, 199, 73, 11, 5, 199, 111, 11, 5, 199, 113, 11, 5,
199, 112, 11, 5, 200, 105, 11, 5, 200, 90, 11, 5, 189, 11, 5, 200, 116,
11, 5, 198, 20, 11, 5, 198, 19, 11, 5, 198, 22, 11, 5, 198, 21, 11, 5,
198, 235, 11, 5, 198, 225, 11, 5, 155, 11, 5, 198, 248, 11, 5, 199, 246,
11, 5, 200, 79, 11, 5, 200, 17, 11, 5, 198, 3, 11, 5, 197, 254, 11, 5,
198, 45, 11, 5, 198, 18, 11, 5, 198, 4, 11, 5, 198, 15, 11, 5, 237, 133,
11, 5, 237, 132, 11, 5, 237, 138, 11, 5, 237, 134, 11, 5, 237, 135, 11,
5, 237, 137, 11, 5, 237, 136, 11, 5, 237, 154, 11, 5, 237, 153, 11, 5,
237, 161, 11, 5, 237, 155, 11, 5, 237, 123, 11, 5, 237, 125, 11, 5, 237,
124, 11, 5, 237, 128, 11, 5, 237, 127, 11, 5, 237, 131, 11, 5, 237, 129,
11, 5, 237, 146, 11, 5, 237, 149, 11, 5, 237, 147, 11, 5, 237, 119, 11,
5, 237, 118, 11, 5, 237, 126, 11, 5, 237, 122, 11, 5, 237, 120, 11, 5,
237, 121, 11, 5, 214, 233, 11, 5, 214, 232, 11, 5, 214, 240, 11, 5, 214,
235, 11, 5, 214, 236, 11, 5, 214, 237, 11, 5, 214, 249, 11, 5, 214, 248,
11, 5, 214, 255, 11, 5, 214, 250, 11, 5, 214, 225, 11, 5, 214, 224, 11,
5, 214, 231, 11, 5, 214, 226, 11, 5, 214, 241, 11, 5, 214, 247, 11, 5,
214, 245, 11, 5, 214, 217, 11, 5, 214, 216, 11, 5, 214, 222, 11, 5, 214,
220, 11, 5, 214, 218, 11, 5, 214, 219, 11, 5, 229, 53, 11, 5, 229, 52,
11, 5, 229, 59, 11, 5, 229, 54, 11, 5, 229, 56, 11, 5, 229, 55, 11, 5,
229, 58, 11, 5, 229, 57, 11, 5, 229, 65, 11, 5, 229, 63, 11, 5, 229, 67,
11, 5, 229, 66, 11, 5, 229, 46, 11, 5, 229, 47, 11, 5, 229, 50, 11, 5,
229, 49, 11, 5, 229, 51, 11, 5, 229, 60, 11, 5, 229, 62, 11, 5, 229, 61,
11, 5, 229, 45, 11, 5, 214, 4, 11, 5, 214, 2, 11, 5, 214, 60, 11, 5, 214,
7, 11, 5, 214, 34, 11, 5, 214, 48, 11, 5, 214, 47, 11, 5, 215, 37, 11, 5,
181, 11, 5, 215, 53, 11, 5, 212, 222, 11, 5, 212, 224, 11, 5, 212, 223,
11, 5, 213, 110, 11, 5, 213, 94, 11, 5, 213, 142, 11, 5, 213, 121, 11, 5,
214, 171, 11, 5, 214, 214, 11, 5, 214, 191, 11, 5, 212, 217, 11, 5, 212,
213, 11, 5, 213, 22, 11, 5, 212, 221, 11, 5, 212, 219, 11, 5, 212, 220,
11, 5, 229, 118, 11, 5, 229, 117, 11, 5, 229, 123, 11, 5, 229, 119, 11,
5, 229, 120, 11, 5, 229, 122, 11, 5, 229, 121, 11, 5, 229, 129, 11, 5,
229, 127, 11, 5, 229, 131, 11, 5, 229, 130, 11, 5, 229, 110, 11, 5, 229,
112, 11, 5, 229, 111, 11, 5, 229, 114, 11, 5, 229, 116, 11, 5, 229, 115,
11, 5, 229, 124, 11, 5, 229, 126, 11, 5, 229, 125, 11, 5, 229, 106, 11,
5, 229, 105, 11, 5, 229, 113, 11, 5, 229, 109, 11, 5, 229, 107, 11, 5,
229, 108, 11, 5, 229, 100, 11, 5, 229, 99, 11, 5, 229, 104, 11, 5, 229,
103, 11, 5, 229, 101, 11, 5, 229, 102, 11, 5, 219, 151, 11, 5, 219, 143,
11, 5, 219, 209, 11, 5, 219, 161, 11, 5, 219, 200, 11, 5, 219, 199, 11,
5, 219, 203, 11, 5, 219, 201, 11, 5, 220, 65, 11, 5, 220, 53, 11, 5, 177,
11, 5, 220, 76, 11, 5, 219, 13, 11, 5, 219, 12, 11, 5, 219, 15, 11, 5,
219, 14, 11, 5, 219, 60, 11, 5, 219, 45, 11, 5, 219, 107, 11, 5, 219, 66,
11, 5, 219, 226, 11, 5, 220, 42, 11, 5, 219, 244, 11, 5, 219, 7, 11, 5,
219, 5, 11, 5, 219, 36, 11, 5, 219, 11, 11, 5, 219, 9, 11, 5, 219, 10,
11, 5, 218, 241, 11, 5, 218, 240, 11, 5, 218, 251, 11, 5, 218, 244, 11,
5, 218, 242, 11, 5, 218, 243, 11, 5, 231, 17, 11, 5, 231, 16, 11, 5, 231,
46, 11, 5, 231, 29, 11, 5, 231, 38, 11, 5, 231, 37, 11, 5, 231, 40, 11,
5, 231, 39, 11, 5, 231, 185, 11, 5, 231, 180, 11, 5, 231, 233, 11, 5,
231, 196, 11, 5, 230, 159, 11, 5, 230, 158, 11, 5, 230, 161, 11, 5, 230,
160, 11, 5, 230, 231, 11, 5, 230, 229, 11, 5, 230, 254, 11, 5, 230, 240,
11, 5, 231, 124, 11, 5, 231, 122, 11, 5, 231, 158, 11, 5, 231, 135, 11,
5, 230, 148, 11, 5, 230, 147, 11, 5, 230, 186, 11, 5, 230, 157, 11, 5,
230, 149, 11, 5, 230, 156, 11, 5, 221, 158, 11, 5, 221, 153, 11, 5, 221,
204, 11, 5, 221, 172, 11, 5, 221, 185, 11, 5, 221, 189, 11, 5, 221, 187,
11, 5, 222, 83, 11, 5, 222, 65, 11, 5, 160, 11, 5, 222, 112, 11, 5, 221,
4, 11, 5, 221, 9, 11, 5, 221, 6, 11, 5, 221, 76, 11, 5, 221, 71, 11, 5,
221, 113, 11, 5, 221, 83, 11, 5, 222, 20, 11, 5, 222, 3, 11, 5, 222, 57,
11, 5, 222, 24, 11, 5, 220, 247, 11, 5, 220, 243, 11, 5, 221, 33, 11, 5,
221, 3, 11, 5, 220, 251, 11, 5, 221, 0, 11, 5, 231, 106, 11, 5, 231, 105,
11, 5, 231, 110, 11, 5, 231, 107, 11, 5, 231, 109, 11, 5, 231, 108, 11,
5, 231, 117, 11, 5, 231, 116, 11, 5, 231, 120, 11, 5, 231, 118, 11, 5,
231, 97, 11, 5, 231, 96, 11, 5, 231, 99, 11, 5, 231, 98, 11, 5, 231, 102,
11, 5, 231, 101, 11, 5, 231, 104, 11, 5, 231, 103, 11, 5, 231, 112, 11,
5, 231, 111, 11, 5, 231, 115, 11, 5, 231, 113, 11, 5, 231, 92, 11, 5,
231, 91, 11, 5, 231, 100, 11, 5, 231, 95, 11, 5, 231, 93, 11, 5, 231, 94,
11, 5, 216, 194, 11, 5, 216, 195, 11, 5, 216, 213, 11, 5, 216, 212, 11,
5, 216, 215, 11, 5, 216, 214, 11, 5, 216, 185, 11, 5, 216, 187, 11, 5,
216, 186, 11, 5, 216, 190, 11, 5, 216, 189, 11, 5, 216, 192, 11, 5, 216,
191, 11, 5, 216, 196, 11, 5, 216, 198, 11, 5, 216, 197, 11, 5, 216, 181,
11, 5, 216, 180, 11, 5, 216, 188, 11, 5, 216, 184, 11, 5, 216, 182, 11,
5, 216, 183, 11, 5, 228, 126, 11, 5, 228, 125, 11, 5, 228, 132, 11, 5,
228, 127, 11, 5, 228, 129, 11, 5, 228, 128, 11, 5, 228, 131, 11, 5, 228,
130, 11, 5, 228, 137, 11, 5, 228, 136, 11, 5, 228, 139, 11, 5, 228, 138,
11, 5, 228, 118, 11, 5, 228, 117, 11, 5, 228, 120, 11, 5, 228, 119, 11,
5, 228, 122, 11, 5, 228, 121, 11, 5, 228, 124, 11, 5, 228, 123, 11, 5,
228, 133, 11, 5, 228, 135, 11, 5, 228, 134, 11, 5, 214, 110, 11, 5, 214,
112, 11, 5, 214, 111, 11, 5, 214, 155, 11, 5, 214, 153, 11, 5, 214, 165,
11, 5, 214, 158, 11, 5, 214, 71, 11, 5, 214, 70, 11, 5, 214, 72, 11, 5,
214, 82, 11, 5, 214, 79, 11, 5, 214, 90, 11, 5, 214, 84, 11, 5, 214, 146,
11, 5, 214, 152, 11, 5, 214, 148, 11, 5, 229, 137, 11, 5, 229, 156, 11,
5, 229, 165, 11, 5, 230, 18, 11, 5, 230, 7, 11, 5, 144, 11, 5, 230, 30,
11, 5, 228, 156, 11, 5, 228, 155, 11, 5, 228, 158, 11, 5, 228, 157, 11,
5, 228, 201, 11, 5, 228, 192, 11, 5, 229, 43, 11, 5, 229, 8, 11, 5, 229,
193, 11, 5, 229, 255, 11, 5, 229, 205, 11, 5, 194, 132, 11, 5, 194, 117,
11, 5, 194, 169, 11, 5, 194, 143, 11, 5, 193, 233, 11, 5, 193, 235, 11,
5, 193, 234, 11, 5, 194, 1, 11, 5, 194, 36, 11, 5, 194, 12, 11, 5, 194,
85, 11, 5, 194, 111, 11, 5, 194, 92, 11, 5, 192, 15, 11, 5, 192, 14, 11,
5, 192, 30, 11, 5, 192, 18, 11, 5, 192, 23, 11, 5, 192, 25, 11, 5, 192,
24, 11, 5, 192, 94, 11, 5, 192, 91, 11, 5, 192, 112, 11, 5, 192, 98, 11,
5, 191, 245, 11, 5, 191, 247, 11, 5, 191, 246, 11, 5, 192, 3, 11, 5, 192,
2, 11, 5, 192, 8, 11, 5, 192, 4, 11, 5, 192, 73, 11, 5, 192, 85, 11, 5,
192, 78, 11, 5, 191, 241, 11, 5, 191, 240, 11, 5, 191, 252, 11, 5, 191,
244, 11, 5, 191, 242, 11, 5, 191, 243, 11, 5, 191, 227, 11, 5, 191, 226,
11, 5, 191, 232, 11, 5, 191, 230, 11, 5, 191, 228, 11, 5, 191, 229, 11,
5, 242, 119, 11, 5, 242, 112, 11, 5, 242, 149, 11, 5, 242, 132, 11, 5,
242, 146, 11, 5, 242, 140, 11, 5, 242, 148, 11, 5, 242, 147, 11, 5, 246,
193, 11, 5, 246, 185, 11, 5, 247, 19, 11, 5, 246, 226, 11, 5, 238, 150,
11, 5, 238, 152, 11, 5, 238, 151, 11, 5, 238, 215, 11, 5, 238, 203, 11,
5, 242, 63, 11, 5, 238, 234, 11, 5, 246, 121, 11, 5, 246, 158, 11, 5,
246, 127, 11, 5, 238, 121, 11, 5, 238, 119, 11, 5, 238, 162, 11, 5, 238,
148, 11, 5, 238, 127, 11, 5, 238, 143, 11, 5, 238, 98, 11, 5, 238, 97,
11, 5, 238, 110, 11, 5, 238, 104, 11, 5, 238, 99, 11, 5, 238, 101, 11, 5,
191, 210, 11, 5, 191, 209, 11, 5, 191, 216, 11, 5, 191, 211, 11, 5, 191,
213, 11, 5, 191, 212, 11, 5, 191, 215, 11, 5, 191, 214, 11, 5, 191, 222,
11, 5, 191, 221, 11, 5, 191, 225, 11, 5, 191, 223, 11, 5, 191, 206, 11,
5, 191, 208, 11, 5, 191, 207, 11, 5, 191, 217, 11, 5, 191, 220, 11, 5,
191, 218, 11, 5, 191, 199, 11, 5, 191, 203, 11, 5, 191, 202, 11, 5, 191,
200, 11, 5, 191, 201, 11, 5, 191, 193, 11, 5, 191, 192, 11, 5, 191, 198,
11, 5, 191, 196, 11, 5, 191, 194, 11, 5, 191, 195, 11, 5, 212, 133, 11,
5, 212, 132, 11, 5, 212, 138, 11, 5, 212, 134, 11, 5, 212, 135, 11, 5,
212, 137, 11, 5, 212, 136, 11, 5, 212, 143, 11, 5, 212, 142, 11, 5, 212,
146, 11, 5, 212, 145, 11, 5, 212, 126, 11, 5, 212, 127, 11, 5, 212, 130,
11, 5, 212, 131, 11, 5, 212, 139, 11, 5, 212, 141, 11, 5, 212, 121, 11,
5, 212, 129, 11, 5, 212, 125, 11, 5, 212, 122, 11, 5, 212, 123, 11, 5,
212, 116, 11, 5, 212, 115, 11, 5, 212, 120, 11, 5, 212, 119, 11, 5, 212,
117, 11, 5, 212, 118, 11, 5, 203, 43, 11, 5, 170, 11, 5, 203, 125, 11, 5,
203, 46, 11, 5, 203, 105, 11, 5, 203, 108, 11, 5, 203, 106, 11, 5, 206,
20, 11, 5, 206, 4, 11, 5, 188, 11, 5, 206, 28, 11, 5, 201, 113, 11, 5,
201, 115, 11, 5, 201, 114, 11, 5, 202, 177, 11, 5, 202, 166, 11, 5, 202,
212, 11, 5, 202, 181, 11, 5, 204, 137, 11, 5, 205, 223, 11, 5, 204, 168,
11, 5, 201, 88, 11, 5, 201, 85, 11, 5, 201, 184, 11, 5, 201, 112, 11, 5,
201, 92, 11, 5, 201, 100, 11, 5, 200, 242, 11, 5, 200, 241, 11, 5, 201,
56, 11, 5, 200, 250, 11, 5, 200, 244, 11, 5, 200, 249, 11, 5, 202, 53,
11, 5, 202, 52, 11, 5, 202, 59, 11, 5, 202, 54, 11, 5, 202, 56, 11, 5,
202, 58, 11, 5, 202, 57, 11, 5, 202, 68, 11, 5, 202, 66, 11, 5, 202, 92,
11, 5, 202, 69, 11, 5, 202, 48, 11, 5, 202, 47, 11, 5, 202, 51, 11, 5,
202, 49, 11, 5, 202, 62, 11, 5, 202, 65, 11, 5, 202, 63, 11, 5, 202, 44,
11, 5, 202, 42, 11, 5, 202, 46, 11, 5, 202, 45, 11, 5, 202, 37, 11, 5,
202, 36, 11, 5, 202, 41, 11, 5, 202, 40, 11, 5, 202, 38, 11, 5, 202, 39,
11, 5, 192, 66, 11, 5, 192, 65, 11, 5, 192, 71, 11, 5, 192, 68, 11, 5,
192, 45, 11, 5, 192, 47, 11, 5, 192, 46, 11, 5, 192, 50, 11, 5, 192, 49,
11, 5, 192, 54, 11, 5, 192, 51, 11, 5, 192, 59, 11, 5, 192, 58, 11, 5,
192, 62, 11, 5, 192, 60, 11, 5, 192, 41, 11, 5, 192, 40, 11, 5, 192, 48,
11, 5, 192, 44, 11, 5, 192, 42, 11, 5, 192, 43, 11, 5, 192, 33, 11, 5,
192, 32, 11, 5, 192, 37, 11, 5, 192, 36, 11, 5, 192, 34, 11, 5, 192, 35,
11, 5, 242, 251, 11, 5, 242, 247, 11, 5, 246, 117, 11, 5, 246, 103, 11,
5, 242, 164, 11, 5, 242, 163, 11, 5, 242, 166, 11, 5, 242, 165, 11, 5,
242, 179, 11, 5, 242, 178, 11, 5, 242, 188, 11, 5, 242, 183, 11, 5, 242,
222, 11, 5, 242, 219, 11, 5, 242, 245, 11, 5, 242, 230, 11, 5, 242, 158,
11, 5, 242, 168, 11, 5, 242, 162, 11, 5, 242, 159, 11, 5, 242, 161, 11,
5, 242, 151, 11, 5, 242, 150, 11, 5, 242, 155, 11, 5, 242, 154, 11, 5,
242, 152, 11, 5, 242, 153, 11, 5, 206, 255, 11, 5, 207, 3, 11, 5, 206,
237, 11, 5, 206, 238, 11, 5, 206, 242, 11, 5, 206, 241, 11, 5, 206, 245,
11, 5, 206, 243, 11, 5, 206, 249, 11, 5, 206, 248, 11, 5, 206, 254, 11,
5, 206, 250, 11, 5, 206, 233, 11, 5, 206, 231, 11, 5, 206, 239, 11, 5,
206, 236, 11, 5, 206, 234, 11, 5, 206, 235, 11, 5, 206, 226, 11, 5, 206,
225, 11, 5, 206, 230, 11, 5, 206, 229, 11, 5, 206, 227, 11, 5, 206, 228,
11, 5, 213, 86, 11, 5, 213, 85, 11, 5, 213, 88, 11, 5, 213, 87, 11, 5,
213, 77, 11, 5, 213, 79, 11, 5, 213, 78, 11, 5, 213, 81, 11, 5, 213, 80,
11, 5, 213, 84, 11, 5, 213, 83, 11, 5, 213, 71, 11, 5, 213, 70, 11, 5,
213, 76, 11, 5, 213, 74, 11, 5, 213, 72, 11, 5, 213, 73, 11, 5, 213, 65,
11, 5, 213, 64, 11, 5, 213, 69, 11, 5, 213, 68, 11, 5, 213, 66, 11, 5,
213, 67, 11, 5, 204, 22, 11, 5, 204, 17, 11, 5, 204, 64, 11, 5, 204, 35,
11, 5, 203, 152, 11, 5, 203, 154, 11, 5, 203, 153, 11, 5, 203, 179, 11,
5, 203, 174, 11, 5, 203, 211, 11, 5, 203, 199, 11, 5, 203, 246, 11, 5,
203, 239, 11, 5, 204, 12, 11, 5, 203, 255, 11, 5, 203, 148, 11, 5, 203,
145, 11, 5, 203, 164, 11, 5, 203, 151, 11, 5, 203, 149, 11, 5, 203, 150,
11, 5, 203, 128, 11, 5, 203, 127, 11, 5, 203, 134, 11, 5, 203, 131, 11,
5, 203, 129, 11, 5, 203, 130, 11, 5, 208, 22, 11, 5, 208, 16, 11, 5, 167,
11, 5, 208, 28, 11, 5, 206, 188, 11, 5, 206, 190, 11, 5, 206, 189, 11, 5,
207, 17, 11, 5, 207, 5, 11, 5, 207, 55, 11, 5, 207, 21, 11, 5, 207, 161,
11, 5, 208, 7, 11, 5, 207, 203, 11, 5, 206, 180, 11, 5, 206, 177, 11, 5,
206, 218, 11, 5, 206, 187, 11, 5, 206, 183, 11, 5, 206, 184, 11, 5, 206,
162, 11, 5, 206, 161, 11, 5, 206, 167, 11, 5, 206, 165, 11, 5, 206, 163,
11, 5, 206, 164, 11, 5, 223, 8, 11, 5, 223, 7, 11, 5, 223, 20, 11, 5,
223, 9, 11, 5, 223, 16, 11, 5, 223, 15, 11, 5, 223, 18, 11, 5, 223, 17,
11, 5, 222, 202, 11, 5, 222, 201, 11, 5, 222, 204, 11, 5, 222, 203, 11,
5, 222, 220, 11, 5, 222, 218, 11, 5, 222, 233, 11, 5, 222, 222, 11, 5,
222, 195, 11, 5, 222, 193, 11, 5, 222, 214, 11, 5, 222, 200, 11, 5, 222,
197, 11, 5, 222, 198, 11, 5, 222, 187, 11, 5, 222, 186, 11, 5, 222, 191,
11, 5, 222, 190, 11, 5, 222, 188, 11, 5, 222, 189, 11, 5, 208, 193, 11,
5, 208, 191, 11, 5, 208, 201, 11, 5, 208, 194, 11, 5, 208, 198, 11, 5,
208, 197, 11, 5, 208, 200, 11, 5, 208, 199, 11, 5, 208, 143, 11, 5, 208,
140, 11, 5, 208, 145, 11, 5, 208, 144, 11, 5, 208, 180, 11, 5, 208, 179,
11, 5, 208, 189, 11, 5, 208, 183, 11, 5, 208, 135, 11, 5, 208, 131, 11,
5, 208, 177, 11, 5, 208, 139, 11, 5, 208, 137, 11, 5, 208, 138, 11, 5,
208, 115, 11, 5, 208, 113, 11, 5, 208, 125, 11, 5, 208, 118, 11, 5, 208,
116, 11, 5, 208, 117, 11, 5, 222, 253, 11, 5, 222, 252, 11, 5, 223, 3,
11, 5, 222, 254, 11, 5, 223, 0, 11, 5, 222, 255, 11, 5, 223, 2, 11, 5,
223, 1, 11, 5, 222, 244, 11, 5, 222, 246, 11, 5, 222, 245, 11, 5, 222,
249, 11, 5, 222, 248, 11, 5, 222, 251, 11, 5, 222, 250, 11, 5, 222, 240,
11, 5, 222, 239, 11, 5, 222, 247, 11, 5, 222, 243, 11, 5, 222, 241, 11,
5, 222, 242, 11, 5, 222, 236, 11, 5, 222, 235, 11, 5, 222, 238, 11, 5,
222, 237, 11, 5, 213, 233, 11, 5, 213, 232, 11, 5, 213, 240, 11, 5, 213,
234, 11, 5, 213, 236, 11, 5, 213, 235, 11, 5, 213, 239, 11, 5, 213, 237,
11, 5, 213, 222, 11, 5, 213, 223, 11, 5, 213, 228, 11, 5, 213, 227, 11,
5, 213, 231, 11, 5, 213, 229, 11, 5, 213, 217, 11, 5, 213, 226, 11, 5,
213, 221, 11, 5, 213, 218, 11, 5, 213, 219, 11, 5, 213, 212, 11, 5, 213,
211, 11, 5, 213, 216, 11, 5, 213, 215, 11, 5, 213, 213, 11, 5, 213, 214,
11, 5, 212, 168, 11, 5, 212, 167, 11, 5, 212, 181, 11, 5, 212, 172, 11,
5, 212, 177, 11, 5, 212, 176, 11, 5, 212, 179, 11, 5, 212, 178, 11, 5,
212, 153, 11, 5, 212, 155, 11, 5, 212, 154, 11, 5, 212, 160, 11, 5, 212,
159, 11, 5, 212, 165, 11, 5, 212, 161, 11, 5, 212, 151, 11, 5, 212, 149,
11, 5, 212, 158, 11, 5, 212, 152, 11, 5, 193, 187, 11, 5, 193, 186, 11,
5, 193, 196, 11, 5, 193, 189, 11, 5, 193, 191, 11, 5, 193, 190, 11, 5,
193, 193, 11, 5, 193, 192, 11, 5, 193, 175, 11, 5, 193, 176, 11, 5, 193,
180, 11, 5, 193, 179, 11, 5, 193, 185, 11, 5, 193, 183, 11, 5, 193, 152,
11, 5, 193, 150, 11, 5, 193, 165, 11, 5, 193, 155, 11, 5, 193, 153, 11,
5, 193, 154, 11, 5, 193, 7, 11, 5, 193, 5, 11, 5, 193, 22, 11, 5, 193, 8,
11, 5, 193, 16, 11, 5, 193, 15, 11, 5, 193, 19, 11, 5, 193, 17, 11, 5,
192, 187, 11, 5, 192, 186, 11, 5, 192, 190, 11, 5, 192, 188, 11, 5, 192,
229, 11, 5, 192, 224, 11, 5, 193, 1, 11, 5, 192, 234, 11, 5, 192, 178,
11, 5, 192, 174, 11, 5, 192, 214, 11, 5, 192, 185, 11, 5, 192, 181, 11,
5, 192, 182, 11, 5, 192, 158, 11, 5, 192, 157, 11, 5, 192, 165, 11, 5,
192, 161, 11, 5, 192, 159, 11, 5, 192, 160, 11, 48, 208, 180, 11, 48,
219, 209, 11, 48, 221, 158, 11, 48, 212, 172, 11, 48, 238, 104, 11, 48,
202, 59, 11, 48, 231, 103, 11, 48, 231, 135, 11, 48, 216, 175, 11, 48,
228, 126, 11, 48, 218, 243, 11, 48, 248, 131, 11, 48, 216, 27, 11, 48,
193, 1, 11, 48, 209, 17, 11, 48, 228, 120, 11, 48, 200, 105, 11, 48, 231,
233, 11, 48, 191, 244, 11, 48, 238, 98, 11, 48, 237, 121, 11, 48, 247,
89, 11, 48, 231, 99, 11, 48, 212, 161, 11, 48, 198, 45, 11, 48, 211, 185,
11, 48, 222, 240, 11, 48, 192, 3, 11, 48, 208, 251, 11, 48, 229, 85, 11,
48, 193, 7, 11, 48, 194, 218, 11, 48, 203, 134, 11, 48, 196, 111, 11, 48,
192, 112, 11, 48, 222, 233, 11, 48, 212, 125, 11, 48, 222, 238, 11, 48,
230, 231, 11, 48, 223, 2, 11, 48, 194, 36, 11, 48, 235, 62, 11, 48, 203,
150, 11, 48, 219, 203, 11, 48, 238, 110, 11, 48, 238, 151, 11, 48, 242,
132, 11, 48, 228, 123, 11, 48, 204, 22, 11, 48, 191, 243, 11, 48, 203,
199, 11, 48, 242, 245, 11, 48, 191, 213, 11, 48, 215, 26, 11, 48, 222,
57, 219, 152, 1, 249, 3, 219, 152, 1, 166, 219, 152, 1, 210, 94, 219,
152, 1, 238, 0, 219, 152, 1, 189, 219, 152, 1, 199, 240, 219, 152, 1,
231, 233, 219, 152, 1, 160, 219, 152, 1, 221, 250, 219, 152, 1, 223, 62,
219, 152, 1, 247, 19, 219, 152, 1, 246, 117, 219, 152, 1, 235, 17, 219,
152, 1, 198, 118, 219, 152, 1, 198, 108, 219, 152, 1, 172, 219, 152, 1,
181, 219, 152, 1, 177, 219, 152, 1, 188, 219, 152, 1, 192, 71, 219, 152,
1, 192, 112, 219, 152, 1, 214, 165, 219, 152, 1, 144, 219, 152, 1, 193,
209, 219, 152, 1, 229, 187, 219, 152, 1, 233, 97, 219, 152, 1, 194, 169,
219, 152, 1, 204, 64, 219, 152, 1, 168, 219, 152, 1, 231, 84, 219, 152,
1, 64, 219, 152, 1, 251, 108, 219, 152, 1, 71, 219, 152, 1, 233, 230,
219, 152, 1, 70, 219, 152, 1, 74, 219, 152, 1, 68, 219, 152, 1, 197, 104,
219, 152, 1, 197, 97, 219, 152, 1, 212, 0, 219, 152, 1, 158, 215, 158,
199, 128, 219, 152, 1, 158, 215, 97, 209, 198, 219, 152, 1, 158, 215,
158, 238, 109, 219, 152, 1, 158, 215, 158, 247, 220, 219, 152, 1, 158,
215, 158, 181, 219, 152, 1, 158, 215, 158, 223, 29, 219, 152, 209, 38,
242, 38, 219, 152, 209, 38, 232, 71, 201, 238, 56, 5, 234, 171, 56, 5,
234, 167, 56, 5, 229, 225, 56, 5, 194, 100, 56, 5, 194, 99, 56, 5, 210,
168, 56, 5, 248, 48, 56, 5, 248, 108, 56, 5, 217, 74, 56, 5, 221, 64, 56,
5, 216, 207, 56, 5, 231, 171, 56, 5, 233, 40, 56, 5, 196, 118, 56, 5,
200, 56, 56, 5, 199, 222, 56, 5, 237, 30, 56, 5, 237, 27, 56, 5, 220, 32,
56, 5, 207, 234, 56, 5, 237, 101, 56, 5, 214, 246, 56, 5, 205, 205, 56,
5, 204, 10, 56, 5, 192, 82, 56, 5, 192, 61, 56, 5, 246, 150, 56, 5, 223,
39, 56, 5, 213, 247, 56, 5, 193, 66, 56, 5, 222, 48, 56, 5, 214, 138, 56,
5, 231, 150, 56, 5, 217, 29, 56, 5, 214, 203, 56, 5, 212, 189, 56, 5, 70,
56, 5, 223, 190, 56, 5, 229, 178, 56, 5, 229, 148, 56, 5, 194, 72, 56, 5,
194, 54, 56, 5, 210, 51, 56, 5, 248, 46, 56, 5, 248, 41, 56, 5, 217, 67,
56, 5, 221, 61, 56, 5, 216, 204, 56, 5, 231, 167, 56, 5, 233, 11, 56, 5,
196, 39, 56, 5, 199, 128, 56, 5, 199, 202, 56, 5, 237, 22, 56, 5, 237,
26, 56, 5, 219, 209, 56, 5, 207, 151, 56, 5, 237, 16, 56, 5, 214, 240,
56, 5, 203, 125, 56, 5, 203, 236, 56, 5, 192, 30, 56, 5, 192, 57, 56, 5,
242, 149, 56, 5, 223, 20, 56, 5, 213, 240, 56, 5, 193, 22, 56, 5, 221,
204, 56, 5, 214, 130, 56, 5, 231, 46, 56, 5, 216, 175, 56, 5, 214, 60,
56, 5, 212, 181, 56, 5, 64, 56, 5, 250, 224, 56, 5, 214, 160, 56, 5, 144,
56, 5, 230, 65, 56, 5, 194, 169, 56, 5, 194, 149, 56, 5, 166, 56, 5, 248,
54, 56, 5, 249, 3, 56, 5, 217, 82, 56, 5, 221, 69, 56, 5, 221, 67, 56, 5,
216, 211, 56, 5, 231, 175, 56, 5, 233, 97, 56, 5, 196, 157, 56, 5, 189,
56, 5, 199, 240, 56, 5, 237, 40, 56, 5, 237, 29, 56, 5, 177, 56, 5, 167,
56, 5, 238, 0, 56, 5, 214, 255, 56, 5, 188, 56, 5, 204, 64, 56, 5, 192,
112, 56, 5, 192, 71, 56, 5, 247, 19, 56, 5, 223, 62, 56, 5, 214, 0, 56,
5, 168, 56, 5, 160, 56, 5, 222, 121, 56, 5, 214, 144, 56, 5, 231, 233,
56, 5, 172, 56, 5, 181, 56, 5, 212, 201, 56, 5, 211, 194, 56, 5, 211,
189, 56, 5, 229, 16, 56, 5, 194, 17, 56, 5, 194, 13, 56, 5, 209, 172, 56,
5, 248, 44, 56, 5, 247, 206, 56, 5, 217, 62, 56, 5, 221, 59, 56, 5, 216,
200, 56, 5, 231, 163, 56, 5, 232, 152, 56, 5, 195, 236, 56, 5, 198, 254,
56, 5, 199, 170, 56, 5, 237, 19, 56, 5, 237, 24, 56, 5, 219, 73, 56, 5,
207, 28, 56, 5, 236, 120, 56, 5, 214, 227, 56, 5, 202, 183, 56, 5, 203,
203, 56, 5, 192, 5, 56, 5, 192, 52, 56, 5, 238, 239, 56, 5, 222, 223, 56,
5, 213, 230, 56, 5, 192, 235, 56, 5, 221, 88, 56, 5, 214, 128, 56, 5,
230, 242, 56, 5, 216, 35, 56, 5, 213, 125, 56, 5, 212, 162, 56, 5, 68,
56, 5, 197, 77, 56, 5, 228, 181, 56, 5, 228, 164, 56, 5, 193, 244, 56, 5,
193, 237, 56, 5, 209, 51, 56, 5, 248, 43, 56, 5, 247, 124, 56, 5, 217,
61, 56, 5, 221, 57, 56, 5, 216, 199, 56, 5, 231, 162, 56, 5, 232, 77, 56,
5, 194, 223, 56, 5, 198, 45, 56, 5, 199, 148, 56, 5, 237, 17, 56, 5, 237,
23, 56, 5, 219, 36, 56, 5, 206, 218, 56, 5, 235, 62, 56, 5, 214, 222, 56,
5, 201, 184, 56, 5, 203, 164, 56, 5, 191, 252, 56, 5, 192, 48, 56, 5,
238, 162, 56, 5, 222, 214, 56, 5, 213, 226, 56, 5, 192, 214, 56, 5, 221,
33, 56, 5, 214, 127, 56, 5, 230, 186, 56, 5, 215, 241, 56, 5, 213, 22,
56, 5, 212, 158, 56, 5, 74, 56, 5, 211, 211, 56, 5, 214, 86, 56, 5, 229,
43, 56, 5, 229, 19, 56, 5, 194, 36, 56, 5, 194, 18, 56, 5, 209, 198, 56,
5, 248, 45, 56, 5, 247, 220, 56, 5, 217, 63, 56, 5, 221, 60, 56, 5, 216,
202, 56, 5, 231, 165, 56, 5, 231, 164, 56, 5, 232, 164, 56, 5, 195, 252,
56, 5, 155, 56, 5, 199, 176, 56, 5, 237, 20, 56, 5, 237, 25, 56, 5, 219,
107, 56, 5, 207, 55, 56, 5, 236, 146, 56, 5, 214, 231, 56, 5, 202, 212,
56, 5, 203, 211, 56, 5, 192, 8, 56, 5, 192, 54, 56, 5, 242, 63, 56, 5,
222, 233, 56, 5, 213, 231, 56, 5, 193, 1, 56, 5, 221, 113, 56, 5, 214,
129, 56, 5, 230, 254, 56, 5, 216, 91, 56, 5, 213, 142, 56, 5, 212, 165,
56, 5, 71, 56, 5, 234, 88, 56, 5, 214, 149, 56, 5, 229, 255, 56, 5, 229,
208, 56, 5, 194, 111, 56, 5, 194, 94, 56, 5, 210, 181, 56, 5, 248, 49,
56, 5, 248, 123, 56, 5, 217, 75, 56, 5, 221, 65, 56, 5, 221, 63, 56, 5,
216, 208, 56, 5, 231, 172, 56, 5, 231, 170, 56, 5, 233, 47, 56, 5, 196,
123, 56, 5, 200, 79, 56, 5, 199, 224, 56, 5, 237, 31, 56, 5, 237, 28, 56,
5, 220, 42, 56, 5, 208, 7, 56, 5, 237, 116, 56, 5, 214, 247, 56, 5, 205,
223, 56, 5, 204, 12, 56, 5, 192, 85, 56, 5, 192, 62, 56, 5, 246, 158, 56,
5, 223, 41, 56, 5, 213, 249, 56, 5, 193, 69, 56, 5, 222, 57, 56, 5, 214,
139, 56, 5, 214, 135, 56, 5, 231, 158, 56, 5, 231, 144, 56, 5, 217, 48,
56, 5, 214, 214, 56, 5, 212, 190, 56, 5, 214, 167, 56, 5, 219, 250, 56,
242, 38, 56, 232, 71, 201, 238, 56, 208, 159, 77, 56, 5, 214, 230, 233,
97, 56, 5, 214, 230, 160, 56, 5, 214, 230, 202, 183, 56, 16, 233, 36, 56,
16, 222, 46, 56, 16, 199, 78, 56, 16, 214, 27, 56, 16, 248, 201, 56, 16,
233, 96, 56, 16, 200, 174, 56, 16, 237, 206, 56, 16, 236, 119, 56, 16,
221, 10, 56, 16, 199, 2, 56, 16, 236, 145, 56, 16, 222, 224, 56, 17, 192,
76, 56, 17, 101, 56, 17, 104, 56, 17, 133, 56, 17, 134, 56, 17, 151, 56,
17, 170, 56, 17, 179, 56, 17, 174, 56, 17, 182, 56, 5, 214, 230, 172, 56,
5, 214, 230, 236, 146, 42, 6, 1, 192, 80, 42, 2, 1, 192, 80, 42, 6, 1,
235, 12, 42, 2, 1, 235, 12, 42, 6, 1, 207, 168, 235, 14, 42, 2, 1, 207,
168, 235, 14, 42, 6, 1, 223, 111, 42, 2, 1, 223, 111, 42, 6, 1, 236, 163,
42, 2, 1, 236, 163, 42, 6, 1, 216, 43, 197, 92, 42, 2, 1, 216, 43, 197,
92, 42, 6, 1, 247, 138, 211, 216, 42, 2, 1, 247, 138, 211, 216, 42, 6, 1,
214, 179, 193, 51, 42, 2, 1, 214, 179, 193, 51, 42, 6, 1, 193, 48, 4,
248, 253, 193, 51, 42, 2, 1, 193, 48, 4, 248, 253, 193, 51, 42, 6, 1,
223, 109, 193, 84, 42, 2, 1, 223, 109, 193, 84, 42, 6, 1, 207, 168, 192,
214, 42, 2, 1, 207, 168, 192, 214, 42, 6, 1, 223, 109, 64, 42, 2, 1, 223,
109, 64, 42, 6, 1, 242, 84, 219, 147, 192, 179, 42, 2, 1, 242, 84, 219,
147, 192, 179, 42, 6, 1, 247, 240, 192, 179, 42, 2, 1, 247, 240, 192,
179, 42, 6, 1, 223, 109, 242, 84, 219, 147, 192, 179, 42, 2, 1, 223, 109,
242, 84, 219, 147, 192, 179, 42, 6, 1, 193, 3, 42, 2, 1, 193, 3, 42, 6,
1, 207, 168, 198, 112, 42, 2, 1, 207, 168, 198, 112, 42, 6, 1, 202, 198,
237, 116, 42, 2, 1, 202, 198, 237, 116, 42, 6, 1, 202, 198, 234, 124, 42,
2, 1, 202, 198, 234, 124, 42, 6, 1, 202, 198, 234, 99, 42, 2, 1, 202,
198, 234, 99, 42, 6, 1, 216, 47, 74, 42, 2, 1, 216, 47, 74, 42, 6, 1,
248, 17, 74, 42, 2, 1, 248, 17, 74, 42, 6, 1, 55, 216, 47, 74, 42, 2, 1,
55, 216, 47, 74, 42, 1, 215, 217, 74, 38, 42, 194, 204, 38, 42, 200, 31,
216, 124, 57, 38, 42, 228, 163, 216, 124, 57, 38, 42, 199, 165, 216, 124,
57, 203, 2, 250, 37, 38, 42, 1, 197, 89, 223, 251, 38, 42, 1, 70, 38, 42,
1, 193, 22, 38, 42, 1, 68, 38, 42, 1, 230, 26, 57, 38, 42, 1, 193, 47,
38, 42, 1, 202, 198, 57, 38, 42, 1, 211, 216, 38, 42, 222, 69, 38, 42,
210, 188, 42, 222, 69, 42, 210, 188, 42, 6, 1, 235, 27, 42, 2, 1, 235,
27, 42, 6, 1, 235, 3, 42, 2, 1, 235, 3, 42, 6, 1, 192, 38, 42, 2, 1, 192,
38, 42, 6, 1, 246, 174, 42, 2, 1, 246, 174, 42, 6, 1, 234, 255, 42, 2, 1,
234, 255, 42, 6, 1, 200, 80, 4, 85, 128, 42, 2, 1, 200, 80, 4, 85, 128,
42, 6, 1, 197, 248, 42, 2, 1, 197, 248, 42, 6, 1, 198, 87, 42, 2, 1, 198,
87, 42, 6, 1, 198, 92, 42, 2, 1, 198, 92, 42, 6, 1, 200, 85, 42, 2, 1,
200, 85, 42, 6, 1, 228, 144, 42, 2, 1, 228, 144, 42, 6, 1, 203, 140, 42,
2, 1, 203, 140, 42, 6, 1, 55, 74, 42, 2, 1, 55, 74, 42, 6, 1, 238, 180,
74, 42, 2, 1, 238, 180, 74, 73, 1, 42, 230, 26, 57, 73, 1, 42, 202, 198,
57, 38, 42, 1, 234, 164, 38, 42, 1, 223, 109, 71, 25, 1, 64, 25, 1, 160,
25, 1, 68, 25, 1, 221, 33, 25, 1, 234, 171, 25, 1, 207, 234, 25, 1, 200,
157, 25, 1, 74, 25, 1, 212, 181, 25, 1, 70, 25, 1, 177, 25, 1, 166, 25,
1, 207, 88, 25, 1, 207, 136, 25, 1, 220, 31, 25, 1, 217, 28, 25, 1, 200,
174, 25, 1, 214, 253, 25, 1, 213, 254, 25, 1, 218, 236, 25, 1, 201, 86,
25, 1, 215, 241, 25, 1, 203, 231, 25, 1, 203, 125, 25, 1, 203, 241, 25,
1, 204, 147, 25, 1, 220, 208, 25, 1, 222, 20, 25, 1, 212, 246, 25, 1,
213, 22, 25, 1, 213, 225, 25, 1, 192, 232, 25, 1, 203, 164, 25, 1, 192,
183, 25, 1, 168, 25, 1, 213, 59, 25, 1, 222, 6, 25, 1, 210, 98, 25, 1,
213, 247, 25, 1, 213, 39, 25, 1, 209, 42, 25, 1, 193, 241, 25, 1, 210,
168, 25, 1, 233, 40, 25, 1, 206, 218, 25, 1, 219, 36, 25, 1, 216, 175,
25, 1, 214, 60, 25, 1, 207, 170, 25, 1, 208, 53, 25, 1, 222, 30, 25, 1,
214, 93, 25, 1, 214, 144, 25, 1, 214, 165, 25, 1, 203, 211, 25, 1, 209,
47, 25, 1, 232, 77, 25, 1, 232, 157, 25, 1, 194, 169, 25, 1, 181, 25, 1,
219, 209, 25, 1, 210, 51, 25, 1, 219, 65, 25, 1, 221, 113, 25, 1, 217,
72, 25, 1, 207, 205, 25, 1, 217, 5, 25, 1, 172, 25, 1, 199, 128, 25, 1,
221, 204, 25, 1, 216, 91, 25, 1, 217, 80, 25, 1, 200, 8, 25, 1, 221, 69,
25, 1, 200, 30, 25, 1, 213, 25, 25, 1, 206, 48, 25, 1, 233, 93, 25, 1,
221, 72, 25, 1, 221, 104, 25, 38, 122, 221, 81, 25, 38, 122, 198, 30, 25,
213, 253, 25, 232, 71, 201, 238, 25, 242, 47, 25, 242, 38, 25, 204, 180,
25, 208, 159, 77, 73, 1, 242, 200, 158, 193, 11, 209, 255, 73, 1, 242,
200, 158, 193, 96, 209, 255, 73, 1, 242, 200, 158, 193, 11, 204, 36, 73,
1, 242, 200, 158, 193, 96, 204, 36, 73, 1, 242, 200, 158, 193, 11, 208,
177, 73, 1, 242, 200, 158, 193, 96, 208, 177, 73, 1, 242, 200, 158, 193,
11, 206, 218, 73, 1, 242, 200, 158, 193, 96, 206, 218, 73, 1, 233, 188,
235, 111, 158, 161, 73, 1, 139, 235, 111, 158, 161, 73, 1, 216, 162, 235,
111, 158, 161, 73, 1, 132, 235, 111, 158, 161, 73, 1, 233, 187, 235, 111,
158, 161, 73, 1, 233, 188, 235, 111, 220, 20, 158, 161, 73, 1, 139, 235,
111, 220, 20, 158, 161, 73, 1, 216, 162, 235, 111, 220, 20, 158, 161, 73,
1, 132, 235, 111, 220, 20, 158, 161, 73, 1, 233, 187, 235, 111, 220, 20,
158, 161, 73, 1, 233, 188, 220, 20, 158, 161, 73, 1, 139, 220, 20, 158,
161, 73, 1, 216, 162, 220, 20, 158, 161, 73, 1, 132, 220, 20, 158, 161,
73, 1, 233, 187, 220, 20, 158, 161, 73, 1, 78, 84, 161, 73, 1, 78, 203,
4, 73, 1, 78, 229, 5, 161, 73, 1, 106, 51, 238, 224, 250, 207, 73, 1,
208, 39, 130, 54, 73, 1, 208, 39, 142, 54, 73, 1, 208, 39, 233, 204, 77,
73, 1, 208, 39, 223, 121, 233, 204, 77, 73, 1, 132, 223, 121, 233, 204,
77, 73, 1, 201, 218, 26, 139, 199, 18, 73, 1, 201, 218, 26, 132, 199, 18,
8, 6, 1, 234, 159, 251, 26, 8, 2, 1, 234, 159, 251, 26, 8, 6, 1, 234,
159, 251, 57, 8, 2, 1, 234, 159, 251, 57, 8, 6, 1, 229, 206, 8, 2, 1,
229, 206, 8, 6, 1, 197, 192, 8, 2, 1, 197, 192, 8, 6, 1, 198, 189, 8, 2,
1, 198, 189, 8, 6, 1, 238, 159, 8, 2, 1, 238, 159, 8, 6, 1, 238, 160, 4,
242, 38, 8, 2, 1, 238, 160, 4, 242, 38, 8, 1, 2, 6, 233, 163, 8, 1, 2, 6,
206, 158, 8, 6, 1, 252, 33, 8, 2, 1, 252, 33, 8, 6, 1, 250, 166, 8, 2, 1,
250, 166, 8, 6, 1, 250, 8, 8, 2, 1, 250, 8, 8, 6, 1, 249, 247, 8, 2, 1,
249, 247, 8, 6, 1, 249, 248, 4, 229, 5, 161, 8, 2, 1, 249, 248, 4, 229,
5, 161, 8, 6, 1, 249, 236, 8, 2, 1, 249, 236, 8, 6, 1, 207, 168, 247, 53,
4, 236, 114, 8, 2, 1, 207, 168, 247, 53, 4, 236, 114, 8, 6, 1, 222, 185,
4, 111, 8, 2, 1, 222, 185, 4, 111, 8, 6, 1, 222, 185, 4, 237, 11, 111, 8,
2, 1, 222, 185, 4, 237, 11, 111, 8, 6, 1, 222, 185, 4, 201, 208, 26, 237,
11, 111, 8, 2, 1, 222, 185, 4, 201, 208, 26, 237, 11, 111, 8, 6, 1, 247,
136, 165, 8, 2, 1, 247, 136, 165, 8, 6, 1, 220, 202, 4, 139, 111, 8, 2,
1, 220, 202, 4, 139, 111, 8, 6, 1, 185, 4, 184, 201, 208, 211, 110, 8, 2,
1, 185, 4, 184, 201, 208, 211, 110, 8, 6, 1, 185, 4, 219, 69, 8, 2, 1,
185, 4, 219, 69, 8, 6, 1, 211, 194, 8, 2, 1, 211, 194, 8, 6, 1, 211, 94,
4, 201, 208, 199, 151, 237, 59, 8, 2, 1, 211, 94, 4, 201, 208, 199, 151,
237, 59, 8, 6, 1, 211, 94, 4, 232, 177, 8, 2, 1, 211, 94, 4, 232, 177, 8,
6, 1, 211, 94, 4, 202, 98, 200, 147, 8, 2, 1, 211, 94, 4, 202, 98, 200,
147, 8, 6, 1, 208, 248, 4, 201, 208, 199, 151, 237, 59, 8, 2, 1, 208,
248, 4, 201, 208, 199, 151, 237, 59, 8, 6, 1, 208, 248, 4, 237, 11, 111,
8, 2, 1, 208, 248, 4, 237, 11, 111, 8, 6, 1, 208, 112, 207, 10, 8, 2, 1,
208, 112, 207, 10, 8, 6, 1, 206, 199, 207, 10, 8, 2, 1, 206, 199, 207,
10, 8, 6, 1, 196, 237, 4, 237, 11, 111, 8, 2, 1, 196, 237, 4, 237, 11,
111, 8, 6, 1, 194, 210, 8, 2, 1, 194, 210, 8, 6, 1, 196, 4, 192, 155, 8,
2, 1, 196, 4, 192, 155, 8, 6, 1, 199, 169, 4, 111, 8, 2, 1, 199, 169, 4,
111, 8, 6, 1, 199, 169, 4, 201, 208, 199, 151, 237, 59, 8, 2, 1, 199,
169, 4, 201, 208, 199, 151, 237, 59, 8, 6, 1, 196, 112, 8, 2, 1, 196,
112, 8, 6, 1, 233, 242, 8, 2, 1, 233, 242, 8, 6, 1, 223, 96, 8, 2, 1,
223, 96, 8, 6, 1, 239, 21, 8, 2, 1, 239, 21, 73, 1, 197, 10, 8, 2, 1,
235, 51, 8, 2, 1, 219, 19, 8, 2, 1, 215, 210, 8, 2, 1, 212, 237, 8, 2, 1,
206, 198, 8, 1, 2, 6, 206, 198, 8, 2, 1, 198, 27, 8, 2, 1, 197, 84, 8, 6,
1, 223, 143, 238, 95, 8, 2, 1, 223, 143, 238, 95, 8, 6, 1, 223, 143, 233,
163, 8, 2, 1, 223, 143, 233, 163, 8, 6, 1, 223, 143, 232, 44, 8, 6, 1,
163, 223, 143, 232, 44, 8, 2, 1, 163, 223, 143, 232, 44, 8, 6, 1, 163,
165, 8, 2, 1, 163, 165, 8, 6, 1, 223, 143, 150, 8, 2, 1, 223, 143, 150,
8, 6, 1, 223, 143, 206, 158, 8, 2, 1, 223, 143, 206, 158, 8, 6, 1, 223,
143, 200, 228, 8, 2, 1, 223, 143, 200, 228, 73, 1, 132, 242, 122, 251,
143, 73, 1, 242, 47, 73, 1, 203, 195, 234, 30, 57, 8, 6, 1, 206, 53, 8,
2, 1, 206, 53, 8, 6, 1, 163, 230, 124, 8, 2, 1, 220, 202, 4, 207, 174,
229, 15, 26, 248, 82, 8, 1, 203, 67, 236, 114, 8, 6, 1, 215, 152, 4, 237,
59, 8, 2, 1, 215, 152, 4, 237, 59, 8, 6, 1, 247, 53, 4, 161, 8, 2, 1,
247, 53, 4, 161, 8, 2, 1, 247, 53, 4, 211, 49, 128, 8, 2, 1, 230, 125, 4,
211, 49, 128, 8, 6, 1, 76, 4, 232, 177, 8, 2, 1, 76, 4, 232, 177, 8, 6,
1, 233, 164, 4, 111, 8, 2, 1, 233, 164, 4, 111, 8, 6, 1, 195, 243, 251,
108, 8, 2, 1, 195, 243, 251, 108, 8, 6, 1, 195, 243, 212, 0, 8, 2, 1,
195, 243, 212, 0, 8, 6, 1, 195, 243, 197, 104, 8, 2, 1, 195, 243, 197,
104, 8, 6, 1, 232, 45, 4, 212, 18, 111, 8, 2, 1, 232, 45, 4, 212, 18,
111, 8, 6, 1, 222, 185, 4, 212, 18, 111, 8, 2, 1, 222, 185, 4, 212, 18,
111, 8, 6, 1, 215, 152, 4, 212, 18, 111, 8, 2, 1, 215, 152, 4, 212, 18,
111, 8, 6, 1, 208, 112, 4, 212, 18, 111, 8, 2, 1, 208, 112, 4, 212, 18,
111, 8, 6, 1, 206, 159, 4, 212, 18, 111, 8, 2, 1, 206, 159, 4, 212, 18,
111, 8, 6, 1, 230, 125, 4, 128, 8, 6, 1, 207, 168, 211, 184, 71, 8, 6, 1,
27, 232, 44, 8, 6, 1, 220, 202, 4, 248, 82, 8, 6, 1, 2, 6, 70, 8, 1, 2,
6, 208, 247, 8, 6, 1, 163, 222, 184, 8, 6, 1, 163, 200, 228, 8, 6, 1,
223, 66, 4, 238, 178, 8, 6, 1, 242, 215, 8, 6, 1, 248, 63, 8, 2, 1, 248,
63, 8, 6, 1, 211, 216, 8, 2, 1, 211, 216, 8, 6, 1, 124, 4, 111, 8, 2, 1,
124, 4, 111, 8, 6, 1, 231, 6, 64, 8, 2, 1, 231, 6, 64, 8, 6, 1, 231, 6,
70, 8, 2, 1, 231, 6, 70, 8, 6, 1, 231, 6, 68, 8, 2, 1, 231, 6, 68, 8, 6,
1, 250, 204, 194, 202, 8, 2, 1, 250, 204, 194, 202, 8, 6, 1, 247, 53, 4,
211, 49, 128, 8, 6, 1, 206, 159, 4, 128, 8, 6, 1, 192, 156, 4, 211, 49,
128, 8, 6, 1, 238, 96, 4, 203, 195, 201, 208, 211, 110, 8, 2, 1, 238, 96,
4, 203, 195, 201, 208, 211, 110, 8, 6, 1, 206, 159, 4, 203, 195, 201,
208, 211, 110, 8, 2, 1, 206, 159, 4, 203, 195, 201, 208, 211, 110, 8, 6,
1, 207, 168, 138, 230, 124, 8, 2, 1, 207, 168, 138, 230, 124, 8, 234, 35,
1, 203, 109, 70, 73, 1, 6, 230, 125, 4, 111, 73, 1, 2, 34, 212, 0, 8, 1,
2, 6, 163, 218, 236, 8, 234, 35, 1, 207, 168, 233, 163, 8, 234, 35, 1,
207, 168, 211, 93, 8, 234, 35, 1, 223, 121, 218, 236, 8, 234, 35, 1, 228,
97, 219, 75, 8, 234, 35, 1, 250, 112, 218, 236, 201, 53, 215, 72, 1, 64,
201, 53, 215, 72, 1, 70, 201, 53, 215, 72, 3, 235, 29, 201, 53, 215, 72,
1, 68, 201, 53, 215, 72, 1, 71, 201, 53, 215, 72, 1, 74, 201, 53, 215,
72, 3, 230, 20, 201, 53, 215, 72, 1, 221, 113, 201, 53, 215, 72, 1, 221,
220, 201, 53, 215, 72, 1, 230, 254, 201, 53, 215, 72, 1, 231, 56, 201,
53, 215, 72, 3, 250, 168, 201, 53, 215, 72, 1, 242, 63, 201, 53, 215, 72,
1, 242, 188, 201, 53, 215, 72, 1, 222, 233, 201, 53, 215, 72, 1, 223, 22,
201, 53, 215, 72, 1, 198, 60, 201, 53, 215, 72, 1, 198, 66, 201, 53, 215,
72, 1, 237, 131, 201, 53, 215, 72, 1, 237, 140, 201, 53, 215, 72, 1, 155,
201, 53, 215, 72, 1, 199, 176, 201, 53, 215, 72, 1, 236, 146, 201, 53,
215, 72, 1, 237, 20, 201, 53, 215, 72, 1, 213, 142, 201, 53, 215, 72, 1,
209, 198, 201, 53, 215, 72, 1, 210, 65, 201, 53, 215, 72, 1, 247, 220,
201, 53, 215, 72, 1, 248, 45, 201, 53, 215, 72, 1, 216, 91, 201, 53, 215,
72, 1, 207, 55, 201, 53, 215, 72, 1, 219, 107, 201, 53, 215, 72, 1, 206,
245, 201, 53, 215, 72, 1, 202, 212, 201, 53, 215, 72, 1, 229, 43, 201,
53, 215, 72, 18, 3, 64, 201, 53, 215, 72, 18, 3, 70, 201, 53, 215, 72,
18, 3, 68, 201, 53, 215, 72, 18, 3, 71, 201, 53, 215, 72, 18, 3, 211,
194, 201, 53, 215, 72, 209, 193, 217, 126, 201, 53, 215, 72, 209, 193,
217, 125, 201, 53, 215, 72, 209, 193, 217, 124, 201, 53, 215, 72, 209,
193, 217, 123, 201, 53, 215, 72, 3, 250, 249, 230, 20, 178, 223, 174,
232, 109, 90, 208, 167, 178, 223, 174, 232, 109, 90, 230, 78, 178, 223,
174, 232, 109, 112, 208, 165, 178, 223, 174, 232, 109, 90, 203, 33, 178,
223, 174, 232, 109, 90, 234, 143, 178, 223, 174, 232, 109, 112, 203, 30,
178, 223, 174, 208, 168, 77, 178, 223, 174, 209, 231, 77, 178, 223, 174,
206, 186, 77, 178, 223, 174, 208, 169, 77, 210, 90, 1, 160, 210, 90, 1,
221, 250, 210, 90, 1, 231, 233, 210, 90, 1, 214, 165, 210, 90, 1, 247,
19, 210, 90, 1, 246, 117, 210, 90, 1, 223, 62, 210, 90, 1, 212, 201, 210,
90, 1, 189, 210, 90, 1, 199, 240, 210, 90, 1, 238, 0, 210, 90, 1, 181,
210, 90, 1, 166, 210, 90, 1, 210, 94, 210, 90, 1, 249, 3, 210, 90, 1,
172, 210, 90, 1, 198, 118, 210, 90, 1, 198, 108, 210, 90, 1, 235, 17,
210, 90, 1, 194, 169, 210, 90, 1, 192, 71, 210, 90, 1, 192, 112, 210, 90,
1, 2, 64, 210, 90, 1, 168, 210, 90, 1, 167, 210, 90, 1, 177, 210, 90, 1,
204, 64, 210, 90, 1, 188, 210, 90, 1, 144, 210, 90, 1, 64, 210, 90, 1,
70, 210, 90, 1, 68, 210, 90, 1, 71, 210, 90, 1, 74, 210, 90, 1, 208, 239,
210, 90, 1, 193, 209, 210, 90, 1, 233, 97, 210, 90, 1, 231, 120, 210, 90,
1, 234, 171, 210, 90, 201, 164, 1, 194, 169, 210, 90, 201, 164, 1, 168,
210, 90, 1, 198, 83, 210, 90, 1, 198, 71, 210, 90, 1, 237, 161, 210, 90,
1, 213, 178, 210, 90, 1, 250, 249, 168, 210, 90, 1, 195, 247, 204, 64,
210, 90, 1, 195, 248, 144, 210, 90, 1, 250, 44, 233, 97, 210, 90, 201,
164, 1, 167, 210, 90, 201, 110, 1, 167, 210, 90, 1, 246, 234, 210, 90,
203, 74, 229, 246, 77, 210, 90, 55, 229, 246, 77, 210, 90, 122, 204, 56,
210, 90, 122, 55, 204, 56, 206, 9, 3, 250, 168, 206, 9, 3, 196, 6, 206,
9, 1, 64, 206, 9, 1, 252, 33, 206, 9, 1, 70, 206, 9, 1, 223, 224, 206, 9,
1, 68, 206, 9, 1, 196, 251, 206, 9, 1, 118, 150, 206, 9, 1, 118, 207, 4,
206, 9, 1, 118, 165, 206, 9, 1, 118, 219, 138, 206, 9, 1, 71, 206, 9, 1,
234, 171, 206, 9, 1, 251, 63, 206, 9, 1, 74, 206, 9, 1, 211, 194, 206, 9,
1, 250, 8, 206, 9, 1, 160, 206, 9, 1, 221, 250, 206, 9, 1, 231, 233, 206,
9, 1, 231, 84, 206, 9, 1, 214, 165, 206, 9, 1, 247, 19, 206, 9, 1, 246,
117, 206, 9, 1, 223, 62, 206, 9, 1, 223, 28, 206, 9, 1, 212, 201, 206, 9,
1, 198, 83, 206, 9, 1, 198, 71, 206, 9, 1, 237, 161, 206, 9, 1, 237, 145,
206, 9, 1, 213, 178, 206, 9, 1, 189, 206, 9, 1, 199, 240, 206, 9, 1, 238,
0, 206, 9, 1, 237, 40, 206, 9, 1, 181, 206, 9, 1, 166, 206, 9, 1, 210,
94, 206, 9, 1, 249, 3, 206, 9, 1, 248, 54, 206, 9, 1, 172, 206, 9, 1,
168, 206, 9, 1, 167, 206, 9, 1, 177, 206, 9, 1, 196, 157, 206, 9, 1, 204,
64, 206, 9, 1, 202, 92, 206, 9, 1, 188, 206, 9, 1, 144, 206, 9, 1, 219,
137, 206, 9, 116, 3, 230, 97, 206, 9, 18, 3, 252, 33, 206, 9, 18, 3, 70,
206, 9, 18, 3, 223, 224, 206, 9, 18, 3, 68, 206, 9, 18, 3, 196, 251, 206,
9, 18, 3, 118, 150, 206, 9, 18, 3, 118, 207, 4, 206, 9, 18, 3, 118, 165,
206, 9, 18, 3, 118, 219, 138, 206, 9, 18, 3, 71, 206, 9, 18, 3, 234, 171,
206, 9, 18, 3, 251, 63, 206, 9, 18, 3, 74, 206, 9, 18, 3, 211, 194, 206,
9, 18, 3, 250, 8, 206, 9, 3, 196, 11, 206, 9, 3, 246, 234, 206, 9, 237,
208, 206, 9, 55, 237, 208, 206, 9, 17, 192, 76, 206, 9, 17, 101, 206, 9,
17, 104, 206, 9, 17, 133, 206, 9, 17, 134, 206, 9, 17, 151, 206, 9, 17,
170, 206, 9, 17, 179, 206, 9, 17, 174, 206, 9, 17, 182, 38, 107, 17, 192,
76, 38, 107, 17, 101, 38, 107, 17, 104, 38, 107, 17, 133, 38, 107, 17,
134, 38, 107, 17, 151, 38, 107, 17, 170, 38, 107, 17, 179, 38, 107, 17,
174, 38, 107, 17, 182, 38, 107, 1, 64, 38, 107, 1, 68, 38, 107, 1, 160,
38, 107, 1, 181, 38, 107, 1, 166, 38, 107, 1, 167, 38, 107, 1, 196, 39,
38, 107, 3, 249, 246, 107, 3, 202, 159, 246, 234, 107, 3, 246, 235, 196,
11, 107, 3, 55, 246, 235, 196, 11, 107, 3, 246, 235, 104, 107, 3, 246,
235, 133, 107, 3, 246, 235, 249, 246, 107, 3, 209, 20, 107, 231, 197,
232, 247, 107, 246, 211, 107, 229, 237, 107, 3, 203, 113, 107, 223, 54,
211, 219, 107, 1, 249, 236, 107, 18, 3, 249, 236, 222, 63, 219, 210, 17,
192, 76, 222, 63, 219, 210, 17, 101, 222, 63, 219, 210, 17, 104, 222, 63,
219, 210, 17, 133, 222, 63, 219, 210, 17, 134, 222, 63, 219, 210, 17,
151, 222, 63, 219, 210, 17, 170, 222, 63, 219, 210, 17, 179, 222, 63,
219, 210, 17, 174, 222, 63, 219, 210, 17, 182, 222, 63, 219, 210, 1, 160,
222, 63, 219, 210, 1, 221, 250, 222, 63, 219, 210, 1, 231, 233, 222, 63,
219, 210, 1, 214, 165, 222, 63, 219, 210, 1, 188, 222, 63, 219, 210, 1,
204, 64, 222, 63, 219, 210, 1, 192, 112, 222, 63, 219, 210, 1, 212, 201,
222, 63, 219, 210, 1, 189, 222, 63, 219, 210, 1, 228, 185, 222, 63, 219,
210, 1, 181, 222, 63, 219, 210, 1, 166, 222, 63, 219, 210, 1, 210, 94,
222, 63, 219, 210, 1, 172, 222, 63, 219, 210, 1, 238, 0, 222, 63, 219,
210, 1, 249, 3, 222, 63, 219, 210, 1, 167, 222, 63, 219, 210, 1, 168,
222, 63, 219, 210, 1, 177, 222, 63, 219, 210, 1, 194, 169, 222, 63, 219,
210, 1, 199, 240, 222, 63, 219, 210, 1, 144, 222, 63, 219, 210, 1, 196,
157, 222, 63, 219, 210, 1, 247, 19, 222, 63, 219, 210, 1, 64, 222, 63,
219, 210, 1, 212, 0, 222, 63, 219, 210, 1, 70, 222, 63, 219, 210, 1, 211,
194, 222, 63, 219, 210, 18, 197, 104, 222, 63, 219, 210, 18, 71, 222, 63,
219, 210, 18, 68, 222, 63, 219, 210, 18, 234, 171, 222, 63, 219, 210, 18,
74, 222, 63, 219, 210, 158, 209, 215, 222, 63, 219, 210, 158, 246, 250,
222, 63, 219, 210, 158, 246, 251, 209, 215, 222, 63, 219, 210, 3, 238,
114, 222, 63, 219, 210, 3, 203, 133, 207, 217, 1, 160, 207, 217, 1, 231,
233, 207, 217, 1, 214, 165, 207, 217, 1, 189, 207, 217, 1, 238, 0, 207,
217, 1, 181, 207, 217, 1, 166, 207, 217, 1, 249, 3, 207, 217, 1, 172,
207, 217, 1, 247, 19, 207, 217, 1, 223, 62, 207, 217, 1, 212, 201, 207,
217, 1, 188, 207, 217, 1, 167, 207, 217, 1, 177, 207, 217, 1, 168, 207,
217, 1, 194, 169, 207, 217, 1, 144, 207, 217, 1, 217, 82, 207, 217, 1,
214, 144, 207, 217, 1, 214, 255, 207, 217, 1, 212, 166, 207, 217, 1, 64,
207, 217, 18, 3, 70, 207, 217, 18, 3, 68, 207, 217, 18, 3, 71, 207, 217,
18, 3, 251, 63, 207, 217, 18, 3, 74, 207, 217, 18, 3, 250, 8, 207, 217,
18, 3, 233, 230, 207, 217, 18, 3, 234, 199, 207, 217, 116, 3, 214, 167,
207, 217, 116, 3, 215, 151, 207, 217, 116, 3, 150, 207, 217, 116, 3, 230,
124, 207, 217, 196, 11, 207, 217, 205, 209, 77, 30, 143, 199, 99, 30,
143, 199, 98, 30, 143, 199, 96, 30, 143, 199, 101, 30, 143, 207, 128, 30,
143, 207, 112, 30, 143, 207, 107, 30, 143, 207, 109, 30, 143, 207, 125,
30, 143, 207, 118, 30, 143, 207, 111, 30, 143, 207, 130, 30, 143, 207,
113, 30, 143, 207, 132, 30, 143, 207, 129, 30, 143, 216, 149, 30, 143,
216, 140, 30, 143, 216, 143, 30, 143, 210, 21, 30, 143, 210, 32, 30, 143,
210, 33, 30, 143, 202, 76, 30, 143, 223, 237, 30, 143, 223, 244, 30, 143,
202, 87, 30, 143, 202, 74, 30, 143, 210, 74, 30, 143, 229, 157, 30, 143,
202, 71, 223, 47, 3, 211, 3, 223, 47, 3, 246, 155, 223, 47, 3, 220, 50,
223, 47, 3, 194, 57, 223, 47, 1, 64, 223, 47, 1, 228, 97, 222, 67, 223,
47, 1, 70, 223, 47, 1, 223, 224, 223, 47, 1, 68, 223, 47, 1, 211, 78,
246, 125, 223, 47, 1, 214, 166, 220, 7, 223, 47, 1, 214, 166, 220, 8,
208, 23, 223, 47, 1, 71, 223, 47, 1, 251, 63, 223, 47, 1, 74, 223, 47, 1,
160, 223, 47, 1, 222, 174, 206, 22, 223, 47, 1, 222, 174, 215, 195, 223,
47, 1, 231, 233, 223, 47, 1, 231, 234, 215, 195, 223, 47, 1, 214, 165,
223, 47, 1, 247, 19, 223, 47, 1, 247, 20, 215, 195, 223, 47, 1, 223, 62,
223, 47, 1, 212, 202, 215, 195, 223, 47, 1, 223, 63, 217, 184, 223, 47,
1, 212, 201, 223, 47, 1, 198, 83, 223, 47, 1, 198, 84, 217, 184, 223, 47,
1, 237, 161, 223, 47, 1, 237, 162, 217, 184, 223, 47, 1, 215, 97, 215,
195, 223, 47, 1, 189, 223, 47, 1, 200, 181, 215, 195, 223, 47, 1, 238, 0,
223, 47, 1, 238, 1, 217, 184, 223, 47, 1, 181, 223, 47, 1, 166, 223, 47,
1, 211, 78, 215, 195, 223, 47, 1, 249, 3, 223, 47, 1, 249, 4, 215, 195,
223, 47, 1, 172, 223, 47, 1, 168, 223, 47, 1, 167, 223, 47, 1, 208, 76,
251, 73, 223, 47, 1, 177, 223, 47, 1, 194, 169, 223, 47, 1, 206, 101,
215, 195, 223, 47, 1, 206, 101, 217, 184, 223, 47, 1, 188, 223, 47, 1,
144, 223, 47, 3, 246, 156, 200, 35, 223, 47, 18, 3, 200, 108, 223, 47,
18, 3, 199, 23, 223, 47, 18, 3, 193, 238, 223, 47, 18, 3, 193, 239, 217,
16, 223, 47, 18, 3, 201, 133, 223, 47, 18, 3, 201, 134, 217, 4, 223, 47,
18, 3, 200, 133, 223, 47, 18, 3, 236, 202, 215, 194, 223, 47, 18, 3, 210,
136, 223, 47, 116, 3, 222, 23, 223, 47, 116, 3, 210, 151, 223, 47, 116,
3, 247, 4, 223, 47, 211, 16, 223, 47, 46, 207, 190, 223, 47, 51, 207,
190, 223, 47, 211, 66, 250, 216, 223, 47, 211, 66, 217, 205, 223, 47,
211, 66, 219, 23, 223, 47, 211, 66, 194, 50, 223, 47, 211, 66, 211, 17,
223, 47, 211, 66, 219, 167, 223, 47, 211, 66, 219, 16, 223, 47, 211, 66,
251, 119, 223, 47, 211, 66, 251, 120, 251, 119, 223, 47, 211, 66, 209,
243, 223, 47, 163, 211, 66, 209, 243, 223, 47, 211, 12, 223, 47, 17, 192,
76, 223, 47, 17, 101, 223, 47, 17, 104, 223, 47, 17, 133, 223, 47, 17,
134, 223, 47, 17, 151, 223, 47, 17, 170, 223, 47, 17, 179, 223, 47, 17,
174, 223, 47, 17, 182, 223, 47, 211, 66, 199, 65, 198, 24, 223, 47, 211,
66, 223, 92, 79, 1, 204, 38, 231, 84, 79, 1, 204, 38, 246, 117, 79, 1,
204, 38, 223, 28, 79, 1, 204, 38, 213, 178, 79, 1, 204, 38, 248, 54, 79,
3, 204, 38, 206, 6, 79, 73, 1, 204, 38, 207, 235, 79, 1, 53, 220, 154,
212, 201, 79, 1, 53, 220, 154, 233, 97, 79, 1, 53, 220, 154, 231, 233,
79, 1, 53, 220, 154, 231, 84, 79, 1, 53, 220, 154, 223, 62, 79, 1, 53,
220, 154, 223, 28, 79, 1, 53, 220, 154, 237, 161, 79, 1, 53, 220, 154,
237, 145, 79, 1, 53, 220, 154, 213, 178, 79, 53, 220, 154, 17, 192, 76,
79, 53, 220, 154, 17, 101, 79, 53, 220, 154, 17, 104, 79, 53, 220, 154,
17, 133, 79, 53, 220, 154, 17, 134, 79, 53, 220, 154, 17, 151, 79, 53,
220, 154, 17, 170, 79, 53, 220, 154, 17, 179, 79, 53, 220, 154, 17, 174,
79, 53, 220, 154, 17, 182, 79, 1, 53, 220, 154, 219, 137, 79, 1, 53, 220,
154, 238, 0, 79, 1, 53, 220, 154, 237, 40, 79, 1, 53, 220, 154, 249, 3,
79, 1, 53, 220, 154, 248, 54, 246, 110, 1, 64, 246, 110, 1, 70, 246, 110,
1, 68, 246, 110, 1, 71, 246, 110, 1, 251, 63, 246, 110, 1, 74, 246, 110,
1, 160, 246, 110, 1, 221, 250, 246, 110, 1, 231, 233, 246, 110, 1, 231,
84, 246, 110, 1, 214, 74, 246, 110, 1, 214, 165, 246, 110, 1, 246, 117,
246, 110, 1, 242, 218, 246, 110, 1, 223, 62, 246, 110, 1, 223, 28, 246,
110, 1, 214, 62, 246, 110, 1, 214, 65, 246, 110, 1, 214, 63, 246, 110, 1,
189, 246, 110, 1, 199, 240, 246, 110, 1, 238, 0, 246, 110, 1, 237, 40,
246, 110, 1, 212, 244, 246, 110, 1, 181, 246, 110, 1, 237, 161, 246, 110,
1, 166, 246, 110, 1, 209, 134, 246, 110, 1, 210, 94, 246, 110, 1, 249, 3,
246, 110, 1, 248, 54, 246, 110, 1, 215, 229, 246, 110, 1, 172, 246, 110,
1, 248, 159, 246, 110, 1, 168, 246, 110, 1, 167, 246, 110, 1, 177, 246,
110, 1, 196, 157, 246, 110, 1, 202, 92, 246, 110, 1, 188, 246, 110, 1,
144, 246, 110, 18, 3, 252, 33, 246, 110, 18, 3, 70, 246, 110, 18, 3, 223,
224, 246, 110, 18, 3, 234, 150, 246, 110, 18, 3, 68, 246, 110, 18, 3,
212, 0, 246, 110, 18, 3, 74, 246, 110, 18, 3, 251, 63, 246, 110, 18, 3,
250, 8, 246, 110, 18, 3, 197, 104, 246, 110, 116, 3, 168, 246, 110, 116,
3, 167, 246, 110, 116, 3, 177, 246, 110, 116, 3, 194, 169, 246, 110, 1,
52, 222, 184, 246, 110, 1, 52, 232, 44, 246, 110, 1, 52, 214, 167, 246,
110, 116, 3, 52, 214, 167, 246, 110, 1, 52, 246, 119, 246, 110, 1, 52,
200, 228, 246, 110, 1, 52, 215, 151, 246, 110, 1, 52, 211, 93, 246, 110,
1, 52, 193, 148, 246, 110, 1, 52, 150, 246, 110, 1, 52, 165, 246, 110, 1,
52, 202, 95, 246, 110, 116, 3, 52, 218, 236, 246, 110, 116, 3, 52, 230,
124, 246, 110, 17, 192, 76, 246, 110, 17, 101, 246, 110, 17, 104, 246,
110, 17, 133, 246, 110, 17, 134, 246, 110, 17, 151, 246, 110, 17, 170,
246, 110, 17, 179, 246, 110, 17, 174, 246, 110, 17, 182, 246, 110, 209,
38, 202, 132, 246, 110, 209, 38, 237, 208, 246, 110, 209, 38, 55, 237,
208, 246, 110, 209, 38, 198, 170, 237, 208, 79, 1, 221, 242, 231, 233,
79, 1, 221, 242, 247, 19, 79, 1, 221, 242, 246, 117, 79, 1, 221, 242,
223, 62, 79, 1, 221, 242, 223, 28, 79, 1, 221, 242, 212, 201, 79, 1, 221,
242, 198, 83, 79, 1, 221, 242, 198, 71, 79, 1, 221, 242, 237, 161, 79, 1,
221, 242, 237, 145, 79, 1, 221, 242, 237, 40, 79, 1, 221, 242, 181, 79,
1, 221, 242, 188, 79, 1, 221, 242, 144, 79, 1, 221, 242, 229, 187, 79, 1,
221, 242, 233, 97, 79, 73, 1, 221, 242, 207, 235, 79, 1, 221, 242, 193,
209, 79, 1, 221, 242, 192, 112, 79, 1, 221, 242, 167, 79, 219, 92, 221,
242, 212, 23, 79, 219, 92, 221, 242, 208, 190, 79, 219, 92, 221, 242,
229, 98, 79, 16, 251, 49, 233, 203, 79, 16, 251, 49, 101, 79, 16, 251,
49, 104, 79, 1, 251, 49, 167, 79, 3, 210, 255, 222, 96, 199, 18, 79, 3,
53, 220, 154, 199, 16, 79, 3, 53, 220, 154, 199, 13, 79, 1, 203, 141,
211, 46, 246, 117, 79, 1, 203, 141, 211, 46, 204, 64, 53, 196, 29, 1,
132, 221, 113, 53, 196, 29, 1, 139, 221, 113, 53, 196, 29, 1, 132, 221,
220, 53, 196, 29, 1, 139, 221, 220, 53, 196, 29, 1, 132, 221, 229, 53,
196, 29, 1, 139, 221, 229, 53, 196, 29, 1, 132, 230, 254, 53, 196, 29, 1,
139, 230, 254, 53, 196, 29, 1, 132, 214, 90, 53, 196, 29, 1, 139, 214,
90, 53, 196, 29, 1, 132, 242, 63, 53, 196, 29, 1, 139, 242, 63, 53, 196,
29, 1, 132, 242, 188, 53, 196, 29, 1, 139, 242, 188, 53, 196, 29, 1, 132,
202, 212, 53, 196, 29, 1, 139, 202, 212, 53, 196, 29, 1, 132, 212, 165,
53, 196, 29, 1, 139, 212, 165, 53, 196, 29, 1, 132, 236, 146, 53, 196,
29, 1, 139, 236, 146, 53, 196, 29, 1, 132, 155, 53, 196, 29, 1, 139, 155,
53, 196, 29, 1, 132, 199, 176, 53, 196, 29, 1, 139, 199, 176, 53, 196,
29, 1, 132, 213, 142, 53, 196, 29, 1, 139, 213, 142, 53, 196, 29, 1, 132,
247, 220, 53, 196, 29, 1, 139, 247, 220, 53, 196, 29, 1, 132, 209, 198,
53, 196, 29, 1, 139, 209, 198, 53, 196, 29, 1, 132, 210, 65, 53, 196, 29,
1, 139, 210, 65, 53, 196, 29, 1, 132, 232, 164, 53, 196, 29, 1, 139, 232,
164, 53, 196, 29, 1, 132, 216, 91, 53, 196, 29, 1, 139, 216, 91, 53, 196,
29, 1, 132, 193, 1, 53, 196, 29, 1, 139, 193, 1, 53, 196, 29, 1, 132,
207, 55, 53, 196, 29, 1, 139, 207, 55, 53, 196, 29, 1, 132, 219, 107, 53,
196, 29, 1, 139, 219, 107, 53, 196, 29, 1, 132, 195, 252, 53, 196, 29, 1,
139, 195, 252, 53, 196, 29, 1, 132, 229, 43, 53, 196, 29, 1, 139, 229,
43, 53, 196, 29, 1, 132, 74, 53, 196, 29, 1, 139, 74, 53, 196, 29, 217,
181, 222, 117, 53, 196, 29, 18, 252, 33, 53, 196, 29, 18, 70, 53, 196,
29, 18, 197, 104, 53, 196, 29, 18, 68, 53, 196, 29, 18, 71, 53, 196, 29,
18, 74, 53, 196, 29, 217, 181, 221, 223, 53, 196, 29, 18, 228, 58, 53,
196, 29, 18, 197, 103, 53, 196, 29, 18, 197, 119, 53, 196, 29, 18, 250,
6, 53, 196, 29, 18, 249, 236, 53, 196, 29, 18, 250, 224, 53, 196, 29, 18,
250, 241, 53, 196, 29, 158, 217, 181, 234, 131, 53, 196, 29, 158, 217,
181, 212, 243, 53, 196, 29, 158, 217, 181, 199, 176, 53, 196, 29, 158,
217, 181, 202, 185, 53, 196, 29, 16, 221, 91, 53, 196, 29, 16, 212, 243,
53, 196, 29, 16, 206, 50, 53, 196, 29, 16, 229, 44, 229, 30, 53, 196, 29,
16, 221, 102, 221, 101, 217, 23, 217, 89, 1, 71, 217, 23, 217, 89, 1, 74,
217, 23, 217, 89, 1, 246, 117, 217, 23, 217, 89, 1, 212, 201, 217, 23,
217, 89, 1, 198, 83, 217, 23, 217, 89, 1, 198, 71, 217, 23, 217, 89, 1,
237, 161, 217, 23, 217, 89, 1, 237, 145, 217, 23, 217, 89, 1, 213, 178,
217, 23, 217, 89, 1, 204, 64, 217, 23, 217, 89, 1, 202, 92, 217, 23, 217,
89, 18, 3, 223, 224, 217, 23, 217, 89, 18, 3, 196, 251, 217, 23, 217, 89,
18, 3, 251, 253, 217, 23, 217, 89, 18, 3, 250, 8, 217, 23, 217, 89, 18,
3, 251, 245, 217, 23, 217, 89, 242, 234, 217, 23, 217, 89, 251, 69, 221,
211, 217, 23, 217, 89, 250, 197, 217, 23, 217, 89, 5, 207, 196, 77, 217,
23, 217, 89, 194, 11, 207, 196, 77, 217, 23, 217, 89, 18, 3, 196, 6, 217,
23, 217, 89, 196, 11, 36, 5, 198, 64, 36, 5, 198, 67, 36, 5, 198, 70, 36,
5, 198, 68, 36, 5, 198, 69, 36, 5, 198, 66, 36, 5, 237, 139, 36, 5, 237,
141, 36, 5, 237, 144, 36, 5, 237, 142, 36, 5, 237, 143, 36, 5, 237, 140,
36, 5, 235, 4, 36, 5, 235, 8, 36, 5, 235, 16, 36, 5, 235, 13, 36, 5, 235,
14, 36, 5, 235, 5, 36, 5, 246, 172, 36, 5, 246, 166, 36, 5, 246, 168, 36,
5, 246, 171, 36, 5, 246, 169, 36, 5, 246, 170, 36, 5, 246, 167, 36, 5,
248, 159, 36, 5, 248, 138, 36, 5, 248, 150, 36, 5, 248, 158, 36, 5, 248,
153, 36, 5, 248, 154, 36, 5, 248, 142, 8, 2, 1, 248, 188, 250, 252, 8, 2,
1, 41, 207, 166, 8, 2, 1, 247, 244, 71, 8, 2, 1, 248, 188, 71, 8, 2, 1,
234, 253, 4, 232, 177, 8, 2, 1, 219, 249, 233, 163, 8, 2, 1, 27, 232, 45,
4, 238, 178, 8, 2, 1, 220, 202, 4, 223, 121, 220, 49, 206, 158, 8, 2, 1,
220, 202, 4, 55, 85, 199, 90, 8, 2, 1, 220, 202, 4, 85, 207, 81, 8, 2, 1,
218, 237, 4, 238, 178, 8, 2, 1, 215, 152, 4, 238, 178, 8, 2, 1, 234, 74,
4, 238, 178, 8, 2, 1, 247, 244, 74, 8, 2, 1, 247, 244, 185, 4, 111, 8, 2,
1, 211, 184, 185, 4, 111, 8, 2, 1, 223, 121, 212, 0, 8, 2, 1, 163, 212,
1, 4, 111, 8, 2, 1, 163, 212, 1, 4, 229, 5, 111, 8, 2, 1, 163, 185, 211,
179, 8, 2, 1, 163, 185, 211, 180, 4, 111, 8, 2, 1, 201, 243, 150, 8, 1,
2, 6, 208, 112, 4, 51, 220, 16, 8, 2, 1, 208, 112, 194, 39, 230, 40, 8,
2, 1, 55, 150, 8, 2, 1, 208, 112, 4, 238, 178, 8, 2, 1, 55, 208, 112, 4,
238, 178, 8, 2, 1, 27, 150, 8, 2, 1, 27, 208, 112, 4, 207, 81, 8, 2, 1,
248, 178, 233, 255, 8, 2, 1, 124, 4, 203, 195, 51, 220, 16, 8, 2, 1, 124,
248, 194, 4, 203, 195, 51, 220, 16, 8, 2, 1, 197, 95, 8, 2, 1, 163, 197,
95, 8, 2, 1, 124, 4, 46, 128, 8, 2, 1, 242, 215, 8, 2, 1, 242, 216, 4,
132, 51, 207, 81, 8, 2, 1, 242, 216, 4, 132, 46, 204, 160, 8, 2, 1, 193,
224, 4, 132, 51, 207, 81, 8, 2, 1, 193, 224, 4, 184, 46, 220, 16, 8, 2,
1, 193, 224, 4, 184, 46, 220, 17, 26, 132, 51, 207, 81, 8, 2, 1, 193,
224, 4, 184, 46, 220, 17, 4, 204, 160, 8, 2, 1, 193, 149, 4, 203, 195,
51, 220, 16, 73, 247, 151, 4, 223, 121, 247, 150, 73, 1, 2, 229, 206, 73,
1, 2, 220, 202, 4, 223, 121, 220, 49, 206, 158, 73, 1, 2, 220, 202, 4,
85, 199, 90, 73, 1, 2, 124, 4, 46, 128, 8, 2, 1, 206, 68, 193, 84, 8, 2,
1, 223, 109, 71, 8, 2, 1, 211, 184, 212, 0, 8, 2, 1, 197, 46, 8, 2, 1,
223, 121, 250, 252, 33, 1, 2, 6, 211, 216, 8, 2, 1, 235, 19, 236, 231, 4,
207, 174, 128, 8, 2, 1, 198, 120, 236, 231, 4, 207, 174, 128, 8, 2, 1,
163, 208, 112, 4, 85, 199, 90, 73, 1, 2, 163, 194, 202, 73, 1, 46, 200,
159, 73, 1, 51, 200, 159, 99, 2, 1, 64, 99, 2, 1, 71, 99, 2, 1, 70, 99,
2, 1, 74, 99, 2, 1, 68, 99, 2, 1, 196, 236, 99, 2, 1, 231, 233, 99, 2, 1,
160, 99, 2, 1, 231, 158, 99, 2, 1, 231, 46, 99, 2, 1, 230, 254, 99, 2, 1,
230, 186, 99, 2, 1, 230, 146, 99, 2, 1, 144, 99, 2, 1, 229, 255, 99, 2,
1, 229, 178, 99, 2, 1, 229, 43, 99, 2, 1, 228, 181, 99, 2, 1, 228, 148,
99, 2, 1, 177, 99, 2, 1, 220, 42, 99, 2, 1, 219, 209, 99, 2, 1, 219, 107,
99, 2, 1, 219, 36, 99, 2, 1, 219, 4, 99, 2, 1, 172, 99, 2, 1, 217, 48,
99, 2, 1, 216, 175, 99, 2, 1, 216, 91, 99, 2, 1, 215, 241, 99, 2, 1, 181,
99, 2, 1, 229, 67, 99, 2, 1, 215, 71, 99, 2, 1, 214, 214, 99, 2, 1, 214,
60, 99, 2, 1, 213, 142, 99, 2, 1, 213, 22, 99, 2, 1, 212, 212, 99, 2, 1,
208, 176, 99, 2, 1, 208, 162, 99, 2, 1, 208, 155, 99, 2, 1, 208, 145, 99,
2, 1, 208, 134, 99, 2, 1, 208, 132, 99, 2, 1, 188, 99, 2, 1, 206, 158,
99, 2, 1, 205, 223, 99, 2, 1, 203, 125, 99, 2, 1, 202, 212, 99, 2, 1,
201, 184, 99, 2, 1, 201, 84, 99, 2, 1, 238, 0, 99, 2, 1, 189, 99, 2, 1,
237, 116, 99, 2, 1, 200, 79, 99, 2, 1, 237, 16, 99, 2, 1, 199, 128, 99,
2, 1, 236, 146, 99, 2, 1, 235, 62, 99, 2, 1, 235, 31, 99, 2, 1, 236, 158,
99, 2, 1, 199, 53, 99, 2, 1, 199, 52, 99, 2, 1, 199, 41, 99, 2, 1, 199,
40, 99, 2, 1, 199, 39, 99, 2, 1, 199, 38, 99, 2, 1, 198, 118, 99, 2, 1,
198, 112, 99, 2, 1, 198, 97, 99, 2, 1, 198, 95, 99, 2, 1, 198, 91, 99, 2,
1, 198, 90, 99, 2, 1, 194, 169, 99, 2, 1, 194, 111, 99, 2, 1, 194, 72,
99, 2, 1, 194, 36, 99, 2, 1, 193, 244, 99, 2, 1, 193, 231, 99, 2, 1, 168,
217, 23, 217, 89, 1, 221, 98, 217, 23, 217, 89, 1, 206, 50, 217, 23, 217,
89, 1, 220, 155, 217, 23, 217, 89, 1, 216, 102, 217, 23, 217, 89, 1, 166,
217, 23, 217, 89, 1, 181, 217, 23, 217, 89, 1, 242, 207, 217, 23, 217,
89, 1, 199, 92, 217, 23, 217, 89, 1, 221, 214, 217, 23, 217, 89, 1, 214,
80, 217, 23, 217, 89, 1, 199, 167, 217, 23, 217, 89, 1, 194, 157, 217,
23, 217, 89, 1, 193, 95, 217, 23, 217, 89, 1, 228, 169, 217, 23, 217, 89,
1, 197, 77, 217, 23, 217, 89, 1, 70, 217, 23, 217, 89, 1, 210, 88, 217,
23, 217, 89, 1, 250, 19, 217, 23, 217, 89, 1, 230, 246, 217, 23, 217, 89,
1, 223, 26, 217, 23, 217, 89, 1, 208, 48, 217, 23, 217, 89, 1, 249, 3,
217, 23, 217, 89, 1, 223, 10, 217, 23, 217, 89, 1, 236, 229, 217, 23,
217, 89, 1, 231, 53, 217, 23, 217, 89, 1, 237, 18, 217, 23, 217, 89, 1,
248, 51, 217, 23, 217, 89, 1, 221, 99, 219, 74, 217, 23, 217, 89, 1, 220,
156, 219, 74, 217, 23, 217, 89, 1, 216, 103, 219, 74, 217, 23, 217, 89,
1, 211, 78, 219, 74, 217, 23, 217, 89, 1, 215, 97, 219, 74, 217, 23, 217,
89, 1, 199, 93, 219, 74, 217, 23, 217, 89, 1, 214, 81, 219, 74, 217, 23,
217, 89, 1, 228, 97, 219, 74, 217, 23, 217, 89, 18, 3, 211, 209, 217, 23,
217, 89, 18, 3, 223, 188, 217, 23, 217, 89, 18, 3, 250, 222, 217, 23,
217, 89, 18, 3, 193, 58, 217, 23, 217, 89, 18, 3, 202, 175, 217, 23, 217,
89, 18, 3, 197, 74, 217, 23, 217, 89, 18, 3, 242, 232, 217, 23, 217, 89,
18, 3, 212, 227, 217, 23, 217, 89, 242, 233, 217, 23, 217, 89, 219, 20,
223, 71, 217, 23, 217, 89, 250, 136, 223, 71, 217, 23, 217, 89, 17, 192,
76, 217, 23, 217, 89, 17, 101, 217, 23, 217, 89, 17, 104, 217, 23, 217,
89, 17, 133, 217, 23, 217, 89, 17, 134, 217, 23, 217, 89, 17, 151, 217,
23, 217, 89, 17, 170, 217, 23, 217, 89, 17, 179, 217, 23, 217, 89, 17,
174, 217, 23, 217, 89, 17, 182, 30, 222, 206, 212, 103, 30, 222, 206,
212, 108, 30, 222, 206, 192, 250, 30, 222, 206, 192, 249, 30, 222, 206,
192, 248, 30, 222, 206, 197, 169, 30, 222, 206, 197, 173, 30, 222, 206,
192, 208, 30, 222, 206, 192, 204, 30, 222, 206, 233, 229, 30, 222, 206,
233, 227, 30, 222, 206, 233, 228, 30, 222, 206, 233, 225, 30, 222, 206,
228, 83, 30, 222, 206, 228, 82, 30, 222, 206, 228, 80, 30, 222, 206, 228,
81, 30, 222, 206, 228, 86, 30, 222, 206, 228, 79, 30, 222, 206, 228, 78,
30, 222, 206, 228, 88, 30, 222, 206, 250, 122, 30, 222, 206, 250, 121,
30, 123, 214, 38, 30, 123, 214, 44, 30, 123, 202, 73, 30, 123, 202, 72,
30, 123, 199, 98, 30, 123, 199, 96, 30, 123, 199, 95, 30, 123, 199, 101,
30, 123, 199, 102, 30, 123, 199, 94, 30, 123, 207, 112, 30, 123, 207,
127, 30, 123, 202, 79, 30, 123, 207, 124, 30, 123, 207, 114, 30, 123,
207, 116, 30, 123, 207, 103, 30, 123, 207, 104, 30, 123, 222, 102, 30,
123, 216, 148, 30, 123, 216, 142, 30, 123, 202, 83, 30, 123, 216, 145,
30, 123, 216, 151, 30, 123, 210, 17, 30, 123, 210, 26, 30, 123, 210, 30,
30, 123, 202, 81, 30, 123, 210, 20, 30, 123, 210, 34, 30, 123, 210, 35,
30, 123, 203, 56, 30, 123, 203, 59, 30, 123, 202, 77, 30, 123, 202, 75,
30, 123, 203, 54, 30, 123, 203, 62, 30, 123, 203, 63, 30, 123, 203, 48,
30, 123, 203, 61, 30, 123, 211, 6, 30, 123, 211, 7, 30, 123, 193, 42, 30,
123, 193, 45, 30, 123, 242, 142, 30, 123, 242, 141, 30, 123, 202, 88, 30,
123, 210, 72, 30, 123, 210, 71, 12, 15, 225, 215, 12, 15, 225, 214, 12,
15, 225, 213, 12, 15, 225, 212, 12, 15, 225, 211, 12, 15, 225, 210, 12,
15, 225, 209, 12, 15, 225, 208, 12, 15, 225, 207, 12, 15, 225, 206, 12,
15, 225, 205, 12, 15, 225, 204, 12, 15, 225, 203, 12, 15, 225, 202, 12,
15, 225, 201, 12, 15, 225, 200, 12, 15, 225, 199, 12, 15, 225, 198, 12,
15, 225, 197, 12, 15, 225, 196, 12, 15, 225, 195, 12, 15, 225, 194, 12,
15, 225, 193, 12, 15, 225, 192, 12, 15, 225, 191, 12, 15, 225, 190, 12,
15, 225, 189, 12, 15, 225, 188, 12, 15, 225, 187, 12, 15, 225, 186, 12,
15, 225, 185, 12, 15, 225, 184, 12, 15, 225, 183, 12, 15, 225, 182, 12,
15, 225, 181, 12, 15, 225, 180, 12, 15, 225, 179, 12, 15, 225, 178, 12,
15, 225, 177, 12, 15, 225, 176, 12, 15, 225, 175, 12, 15, 225, 174, 12,
15, 225, 173, 12, 15, 225, 172, 12, 15, 225, 171, 12, 15, 225, 170, 12,
15, 225, 169, 12, 15, 225, 168, 12, 15, 225, 167, 12, 15, 225, 166, 12,
15, 225, 165, 12, 15, 225, 164, 12, 15, 225, 163, 12, 15, 225, 162, 12,
15, 225, 161, 12, 15, 225, 160, 12, 15, 225, 159, 12, 15, 225, 158, 12,
15, 225, 157, 12, 15, 225, 156, 12, 15, 225, 155, 12, 15, 225, 154, 12,
15, 225, 153, 12, 15, 225, 152, 12, 15, 225, 151, 12, 15, 225, 150, 12,
15, 225, 149, 12, 15, 225, 148, 12, 15, 225, 147, 12, 15, 225, 146, 12,
15, 225, 145, 12, 15, 225, 144, 12, 15, 225, 143, 12, 15, 225, 142, 12,
15, 225, 141, 12, 15, 225, 140, 12, 15, 225, 139, 12, 15, 225, 138, 12,
15, 225, 137, 12, 15, 225, 136, 12, 15, 225, 135, 12, 15, 225, 134, 12,
15, 225, 133, 12, 15, 225, 132, 12, 15, 225, 131, 12, 15, 225, 130, 12,
15, 225, 129, 12, 15, 225, 128, 12, 15, 225, 127, 12, 15, 225, 126, 12,
15, 225, 125, 12, 15, 225, 124, 12, 15, 225, 123, 12, 15, 225, 122, 12,
15, 225, 121, 12, 15, 225, 120, 12, 15, 225, 119, 12, 15, 225, 118, 12,
15, 225, 117, 12, 15, 225, 116, 12, 15, 225, 115, 12, 15, 225, 114, 12,
15, 225, 113, 12, 15, 225, 112, 12, 15, 225, 111, 12, 15, 225, 110, 12,
15, 225, 109, 12, 15, 225, 108, 12, 15, 225, 107, 12, 15, 225, 106, 12,
15, 225, 105, 12, 15, 225, 104, 12, 15, 225, 103, 12, 15, 225, 102, 12,
15, 225, 101, 12, 15, 225, 100, 12, 15, 225, 99, 12, 15, 225, 98, 12, 15,
225, 97, 12, 15, 225, 96, 12, 15, 225, 95, 12, 15, 225, 94, 12, 15, 225,
93, 12, 15, 225, 92, 12, 15, 225, 91, 12, 15, 225, 90, 12, 15, 225, 89,
12, 15, 225, 88, 12, 15, 225, 87, 12, 15, 225, 86, 12, 15, 225, 85, 12,
15, 225, 84, 12, 15, 225, 83, 12, 15, 225, 82, 12, 15, 225, 81, 12, 15,
225, 80, 12, 15, 225, 79, 12, 15, 225, 78, 12, 15, 225, 77, 12, 15, 225,
76, 12, 15, 225, 75, 12, 15, 225, 74, 12, 15, 225, 73, 12, 15, 225, 72,
12, 15, 225, 71, 12, 15, 225, 70, 12, 15, 225, 69, 12, 15, 225, 68, 12,
15, 225, 67, 12, 15, 225, 66, 12, 15, 225, 65, 12, 15, 225, 64, 12, 15,
225, 63, 12, 15, 225, 62, 12, 15, 225, 61, 12, 15, 225, 60, 12, 15, 225,
59, 12, 15, 225, 58, 12, 15, 225, 57, 12, 15, 225, 56, 12, 15, 225, 55,
12, 15, 225, 54, 12, 15, 225, 53, 12, 15, 225, 52, 12, 15, 225, 51, 12,
15, 225, 50, 12, 15, 225, 49, 12, 15, 225, 48, 12, 15, 225, 47, 12, 15,
225, 46, 12, 15, 225, 45, 12, 15, 225, 44, 12, 15, 225, 43, 12, 15, 225,
42, 12, 15, 225, 41, 12, 15, 225, 40, 12, 15, 225, 39, 12, 15, 225, 38,
12, 15, 225, 37, 12, 15, 225, 36, 12, 15, 225, 35, 12, 15, 225, 34, 12,
15, 225, 33, 12, 15, 225, 32, 12, 15, 225, 31, 12, 15, 225, 30, 12, 15,
225, 29, 12, 15, 225, 28, 12, 15, 225, 27, 12, 15, 225, 26, 12, 15, 225,
25, 12, 15, 225, 24, 12, 15, 225, 23, 12, 15, 225, 22, 12, 15, 225, 21,
12, 15, 225, 20, 12, 15, 225, 19, 12, 15, 225, 18, 12, 15, 225, 17, 12,
15, 225, 16, 12, 15, 225, 15, 12, 15, 225, 14, 12, 15, 225, 13, 12, 15,
225, 12, 12, 15, 225, 11, 12, 15, 225, 10, 12, 15, 225, 9, 12, 15, 225,
8, 12, 15, 225, 7, 12, 15, 225, 6, 12, 15, 225, 5, 12, 15, 225, 4, 12,
15, 225, 3, 12, 15, 225, 2, 12, 15, 225, 1, 12, 15, 225, 0, 12, 15, 224,
255, 12, 15, 224, 254, 12, 15, 224, 253, 12, 15, 224, 252, 12, 15, 224,
251, 12, 15, 224, 250, 12, 15, 224, 249, 12, 15, 224, 248, 12, 15, 224,
247, 12, 15, 224, 246, 12, 15, 224, 245, 12, 15, 224, 244, 12, 15, 224,
243, 12, 15, 224, 242, 12, 15, 224, 241, 12, 15, 224, 240, 12, 15, 224,
239, 12, 15, 224, 238, 12, 15, 224, 237, 12, 15, 224, 236, 12, 15, 224,
235, 12, 15, 224, 234, 12, 15, 224, 233, 12, 15, 224, 232, 12, 15, 224,
231, 12, 15, 224, 230, 12, 15, 224, 229, 12, 15, 224, 228, 12, 15, 224,
227, 12, 15, 224, 226, 12, 15, 224, 225, 12, 15, 224, 224, 12, 15, 224,
223, 12, 15, 224, 222, 12, 15, 224, 221, 12, 15, 224, 220, 12, 15, 224,
219, 12, 15, 224, 218, 12, 15, 224, 217, 12, 15, 224, 216, 12, 15, 224,
215, 12, 15, 224, 214, 12, 15, 224, 213, 12, 15, 224, 212, 12, 15, 224,
211, 12, 15, 224, 210, 12, 15, 224, 209, 12, 15, 224, 208, 12, 15, 224,
207, 12, 15, 224, 206, 12, 15, 224, 205, 12, 15, 224, 204, 12, 15, 224,
203, 12, 15, 224, 202, 12, 15, 224, 201, 12, 15, 224, 200, 12, 15, 224,
199, 12, 15, 224, 198, 12, 15, 224, 197, 12, 15, 224, 196, 12, 15, 224,
195, 12, 15, 224, 194, 12, 15, 224, 193, 12, 15, 224, 192, 12, 15, 224,
191, 12, 15, 224, 190, 12, 15, 224, 189, 12, 15, 224, 188, 12, 15, 224,
187, 12, 15, 224, 186, 12, 15, 224, 185, 12, 15, 224, 184, 12, 15, 224,
183, 12, 15, 224, 182, 12, 15, 224, 181, 12, 15, 224, 180, 12, 15, 224,
179, 12, 15, 224, 178, 12, 15, 224, 177, 12, 15, 224, 176, 12, 15, 224,
175, 12, 15, 224, 174, 12, 15, 224, 173, 12, 15, 224, 172, 12, 15, 224,
171, 12, 15, 224, 170, 12, 15, 224, 169, 12, 15, 224, 168, 12, 15, 224,
167, 12, 15, 224, 166, 12, 15, 224, 165, 12, 15, 224, 164, 12, 15, 224,
163, 12, 15, 224, 162, 12, 15, 224, 161, 12, 15, 224, 160, 12, 15, 224,
159, 12, 15, 224, 158, 12, 15, 224, 157, 12, 15, 224, 156, 12, 15, 224,
155, 12, 15, 224, 154, 12, 15, 224, 153, 12, 15, 224, 152, 12, 15, 224,
151, 12, 15, 224, 150, 12, 15, 224, 149, 12, 15, 224, 148, 12, 15, 224,
147, 12, 15, 224, 146, 12, 15, 224, 145, 12, 15, 224, 144, 12, 15, 224,
143, 12, 15, 224, 142, 12, 15, 224, 141, 12, 15, 224, 140, 12, 15, 224,
139, 12, 15, 224, 138, 12, 15, 224, 137, 12, 15, 224, 136, 12, 15, 224,
135, 12, 15, 224, 134, 12, 15, 224, 133, 12, 15, 224, 132, 12, 15, 224,
131, 12, 15, 224, 130, 12, 15, 224, 129, 12, 15, 224, 128, 12, 15, 224,
127, 12, 15, 224, 126, 12, 15, 224, 125, 12, 15, 224, 124, 12, 15, 224,
123, 12, 15, 224, 122, 12, 15, 224, 121, 12, 15, 224, 120, 12, 15, 224,
119, 12, 15, 224, 118, 12, 15, 224, 117, 12, 15, 224, 116, 12, 15, 224,
115, 12, 15, 224, 114, 12, 15, 224, 113, 12, 15, 224, 112, 12, 15, 224,
111, 12, 15, 224, 110, 12, 15, 224, 109, 12, 15, 224, 108, 12, 15, 224,
107, 12, 15, 224, 106, 12, 15, 224, 105, 12, 15, 224, 104, 12, 15, 224,
103, 12, 15, 224, 102, 12, 15, 224, 101, 12, 15, 224, 100, 12, 15, 224,
99, 12, 15, 224, 98, 12, 15, 224, 97, 12, 15, 224, 96, 12, 15, 224, 95,
12, 15, 224, 94, 12, 15, 224, 93, 12, 15, 224, 92, 12, 15, 224, 91, 12,
15, 224, 90, 12, 15, 224, 89, 12, 15, 224, 88, 12, 15, 224, 87, 12, 15,
224, 86, 12, 15, 224, 85, 12, 15, 224, 84, 12, 15, 224, 83, 12, 15, 224,
82, 12, 15, 224, 81, 12, 15, 224, 80, 12, 15, 224, 79, 12, 15, 224, 78,
12, 15, 224, 77, 12, 15, 224, 76, 12, 15, 224, 75, 12, 15, 224, 74, 12,
15, 224, 73, 12, 15, 224, 72, 12, 15, 224, 71, 12, 15, 224, 70, 12, 15,
224, 69, 12, 15, 224, 68, 12, 15, 224, 67, 12, 15, 224, 66, 12, 15, 224,
65, 12, 15, 224, 64, 12, 15, 224, 63, 12, 15, 224, 62, 12, 15, 224, 61,
12, 15, 224, 60, 12, 15, 224, 59, 12, 15, 224, 58, 12, 15, 224, 57, 12,
15, 224, 56, 12, 15, 224, 55, 12, 15, 224, 54, 12, 15, 224, 53, 12, 15,
224, 52, 12, 15, 224, 51, 12, 15, 224, 50, 12, 15, 224, 49, 12, 15, 224,
48, 12, 15, 224, 47, 12, 15, 224, 46, 12, 15, 224, 45, 12, 15, 224, 44,
12, 15, 224, 43, 12, 15, 224, 42, 12, 15, 224, 41, 12, 15, 224, 40, 12,
15, 224, 39, 12, 15, 224, 38, 12, 15, 224, 37, 12, 15, 224, 36, 12, 15,
224, 35, 12, 15, 224, 34, 12, 15, 224, 33, 12, 15, 224, 32, 12, 15, 224,
31, 12, 15, 224, 30, 12, 15, 224, 29, 12, 15, 224, 28, 12, 15, 224, 27,
12, 15, 224, 26, 12, 15, 224, 25, 12, 15, 224, 24, 12, 15, 224, 23, 12,
15, 224, 22, 12, 15, 224, 21, 12, 15, 224, 20, 12, 15, 224, 19, 12, 15,
224, 18, 12, 15, 224, 17, 12, 15, 224, 16, 12, 15, 224, 15, 12, 15, 224,
14, 12, 15, 224, 13, 12, 15, 224, 12, 12, 15, 224, 11, 12, 15, 224, 10,
12, 15, 224, 9, 12, 15, 224, 8, 12, 15, 224, 7, 12, 15, 224, 6, 12, 15,
224, 5, 12, 15, 224, 4, 12, 15, 224, 3, 12, 15, 224, 2, 12, 15, 224, 1,
12, 15, 224, 0, 8, 2, 34, 233, 15, 8, 2, 34, 233, 11, 8, 2, 34, 232, 209,
8, 2, 34, 233, 14, 8, 2, 34, 233, 13, 8, 2, 34, 184, 206, 159, 200, 228,
8, 2, 34, 202, 35, 250, 91, 2, 34, 217, 6, 213, 96, 250, 91, 2, 34, 217,
6, 234, 177, 250, 91, 2, 34, 217, 6, 223, 159, 250, 91, 2, 34, 196, 45,
213, 96, 250, 91, 2, 34, 217, 6, 193, 201, 129, 1, 192, 240, 4, 229, 139,
129, 209, 192, 222, 213, 196, 135, 129, 34, 193, 20, 192, 240, 192, 240,
210, 205, 129, 1, 250, 244, 249, 231, 129, 1, 194, 64, 251, 26, 129, 1,
194, 64, 237, 221, 129, 1, 194, 64, 229, 255, 129, 1, 194, 64, 222, 139,
129, 1, 194, 64, 220, 86, 129, 1, 194, 64, 52, 217, 12, 129, 1, 194, 64,
207, 188, 129, 1, 194, 64, 200, 96, 129, 1, 250, 244, 102, 57, 129, 1,
203, 225, 4, 203, 225, 236, 114, 129, 1, 203, 225, 4, 203, 79, 236, 114,
129, 1, 203, 225, 4, 237, 241, 26, 203, 225, 236, 114, 129, 1, 203, 225,
4, 237, 241, 26, 203, 79, 236, 114, 129, 1, 157, 4, 210, 205, 129, 1,
157, 4, 208, 227, 129, 1, 157, 4, 217, 140, 129, 1, 248, 66, 4, 237, 240,
129, 1, 231, 32, 4, 237, 240, 129, 1, 237, 222, 4, 237, 240, 129, 1, 230,
0, 4, 217, 140, 129, 1, 196, 128, 4, 237, 240, 129, 1, 192, 90, 4, 237,
240, 129, 1, 200, 9, 4, 237, 240, 129, 1, 192, 240, 4, 237, 240, 129, 1,
52, 222, 140, 4, 237, 240, 129, 1, 222, 140, 4, 237, 240, 129, 1, 220,
87, 4, 237, 240, 129, 1, 217, 13, 4, 237, 240, 129, 1, 212, 231, 4, 237,
240, 129, 1, 206, 47, 4, 237, 240, 129, 1, 52, 210, 182, 4, 237, 240,
129, 1, 210, 182, 4, 237, 240, 129, 1, 198, 114, 4, 237, 240, 129, 1,
208, 187, 4, 237, 240, 129, 1, 207, 189, 4, 237, 240, 129, 1, 203, 225,
4, 237, 240, 129, 1, 200, 97, 4, 237, 240, 129, 1, 196, 128, 4, 229, 27,
129, 1, 248, 66, 4, 208, 51, 129, 1, 222, 140, 4, 208, 51, 129, 1, 210,
182, 4, 208, 51, 129, 34, 157, 220, 86, 9, 1, 157, 194, 137, 72, 20, 9,
1, 157, 194, 137, 52, 20, 9, 1, 248, 107, 72, 20, 9, 1, 248, 107, 52, 20,
9, 1, 248, 107, 88, 20, 9, 1, 248, 107, 217, 35, 20, 9, 1, 210, 162, 72,
20, 9, 1, 210, 162, 52, 20, 9, 1, 210, 162, 88, 20, 9, 1, 210, 162, 217,
35, 20, 9, 1, 248, 95, 72, 20, 9, 1, 248, 95, 52, 20, 9, 1, 248, 95, 88,
20, 9, 1, 248, 95, 217, 35, 20, 9, 1, 198, 74, 72, 20, 9, 1, 198, 74, 52,
20, 9, 1, 198, 74, 88, 20, 9, 1, 198, 74, 217, 35, 20, 9, 1, 200, 48, 72,
20, 9, 1, 200, 48, 52, 20, 9, 1, 200, 48, 88, 20, 9, 1, 200, 48, 217, 35,
20, 9, 1, 198, 76, 72, 20, 9, 1, 198, 76, 52, 20, 9, 1, 198, 76, 88, 20,
9, 1, 198, 76, 217, 35, 20, 9, 1, 196, 117, 72, 20, 9, 1, 196, 117, 52,
20, 9, 1, 196, 117, 88, 20, 9, 1, 196, 117, 217, 35, 20, 9, 1, 210, 160,
72, 20, 9, 1, 210, 160, 52, 20, 9, 1, 210, 160, 88, 20, 9, 1, 210, 160,
217, 35, 20, 9, 1, 235, 24, 72, 20, 9, 1, 235, 24, 52, 20, 9, 1, 235, 24,
88, 20, 9, 1, 235, 24, 217, 35, 20, 9, 1, 212, 188, 72, 20, 9, 1, 212,
188, 52, 20, 9, 1, 212, 188, 88, 20, 9, 1, 212, 188, 217, 35, 20, 9, 1,
200, 84, 72, 20, 9, 1, 200, 84, 52, 20, 9, 1, 200, 84, 88, 20, 9, 1, 200,
84, 217, 35, 20, 9, 1, 200, 82, 72, 20, 9, 1, 200, 82, 52, 20, 9, 1, 200,
82, 88, 20, 9, 1, 200, 82, 217, 35, 20, 9, 1, 237, 159, 72, 20, 9, 1,
237, 159, 52, 20, 9, 1, 237, 235, 72, 20, 9, 1, 237, 235, 52, 20, 9, 1,
235, 53, 72, 20, 9, 1, 235, 53, 52, 20, 9, 1, 237, 157, 72, 20, 9, 1,
237, 157, 52, 20, 9, 1, 223, 35, 72, 20, 9, 1, 223, 35, 52, 20, 9, 1,
206, 252, 72, 20, 9, 1, 206, 252, 52, 20, 9, 1, 222, 40, 72, 20, 9, 1,
222, 40, 52, 20, 9, 1, 222, 40, 88, 20, 9, 1, 222, 40, 217, 35, 20, 9, 1,
231, 221, 72, 20, 9, 1, 231, 221, 52, 20, 9, 1, 231, 221, 88, 20, 9, 1,
231, 221, 217, 35, 20, 9, 1, 230, 174, 72, 20, 9, 1, 230, 174, 52, 20, 9,
1, 230, 174, 88, 20, 9, 1, 230, 174, 217, 35, 20, 9, 1, 214, 89, 72, 20,
9, 1, 214, 89, 52, 20, 9, 1, 214, 89, 88, 20, 9, 1, 214, 89, 217, 35, 20,
9, 1, 213, 124, 231, 51, 72, 20, 9, 1, 213, 124, 231, 51, 52, 20, 9, 1,
207, 59, 72, 20, 9, 1, 207, 59, 52, 20, 9, 1, 207, 59, 88, 20, 9, 1, 207,
59, 217, 35, 20, 9, 1, 229, 221, 4, 97, 95, 72, 20, 9, 1, 229, 221, 4,
97, 95, 52, 20, 9, 1, 229, 221, 230, 252, 72, 20, 9, 1, 229, 221, 230,
252, 52, 20, 9, 1, 229, 221, 230, 252, 88, 20, 9, 1, 229, 221, 230, 252,
217, 35, 20, 9, 1, 229, 221, 236, 143, 72, 20, 9, 1, 229, 221, 236, 143,
52, 20, 9, 1, 229, 221, 236, 143, 88, 20, 9, 1, 229, 221, 236, 143, 217,
35, 20, 9, 1, 97, 248, 187, 72, 20, 9, 1, 97, 248, 187, 52, 20, 9, 1, 97,
248, 187, 4, 230, 67, 95, 72, 20, 9, 1, 97, 248, 187, 4, 230, 67, 95, 52,
20, 9, 16, 78, 58, 9, 16, 78, 63, 9, 16, 103, 236, 112, 58, 9, 16, 103,
236, 112, 63, 9, 16, 112, 236, 112, 58, 9, 16, 112, 236, 112, 63, 9, 16,
112, 236, 112, 209, 188, 235, 92, 58, 9, 16, 112, 236, 112, 209, 188,
235, 92, 63, 9, 16, 232, 119, 236, 112, 58, 9, 16, 232, 119, 236, 112,
63, 9, 16, 55, 84, 248, 194, 63, 9, 16, 103, 236, 112, 196, 55, 58, 9,
16, 103, 236, 112, 196, 55, 63, 9, 16, 207, 81, 9, 16, 2, 200, 152, 58,
9, 16, 2, 200, 152, 63, 9, 1, 214, 168, 72, 20, 9, 1, 214, 168, 52, 20,
9, 1, 214, 168, 88, 20, 9, 1, 214, 168, 217, 35, 20, 9, 1, 124, 72, 20,
9, 1, 124, 52, 20, 9, 1, 212, 1, 72, 20, 9, 1, 212, 1, 52, 20, 9, 1, 192,
215, 72, 20, 9, 1, 192, 215, 52, 20, 9, 1, 124, 4, 230, 67, 95, 72, 20,
9, 1, 196, 124, 72, 20, 9, 1, 196, 124, 52, 20, 9, 1, 221, 170, 212, 1,
72, 20, 9, 1, 221, 170, 212, 1, 52, 20, 9, 1, 221, 170, 192, 215, 72, 20,
9, 1, 221, 170, 192, 215, 52, 20, 9, 1, 234, 253, 72, 20, 9, 1, 234, 253,
52, 20, 9, 1, 234, 253, 88, 20, 9, 1, 234, 253, 217, 35, 20, 9, 1, 197,
94, 222, 61, 221, 170, 157, 217, 169, 88, 20, 9, 1, 197, 94, 222, 61,
221, 170, 157, 217, 169, 217, 35, 20, 9, 34, 97, 4, 230, 67, 95, 4, 157,
72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 157, 52, 20, 9, 34, 97, 4, 230, 67,
95, 4, 251, 109, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 251, 109, 52, 20,
9, 34, 97, 4, 230, 67, 95, 4, 194, 120, 72, 20, 9, 34, 97, 4, 230, 67,
95, 4, 194, 120, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4, 124, 72, 20, 9,
34, 97, 4, 230, 67, 95, 4, 124, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4,
212, 1, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 212, 1, 52, 20, 9, 34, 97,
4, 230, 67, 95, 4, 192, 215, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 192,
215, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4, 234, 253, 72, 20, 9, 34, 97,
4, 230, 67, 95, 4, 234, 253, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4, 234,
253, 88, 20, 9, 34, 197, 94, 221, 170, 97, 4, 230, 67, 95, 4, 157, 217,
169, 72, 20, 9, 34, 197, 94, 221, 170, 97, 4, 230, 67, 95, 4, 157, 217,
169, 52, 20, 9, 34, 197, 94, 221, 170, 97, 4, 230, 67, 95, 4, 157, 217,
169, 88, 20, 9, 1, 233, 62, 97, 72, 20, 9, 1, 233, 62, 97, 52, 20, 9, 1,
233, 62, 97, 88, 20, 9, 1, 233, 62, 97, 217, 35, 20, 9, 34, 97, 4, 230,
67, 95, 4, 223, 38, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 176, 72, 20, 9,
34, 97, 4, 230, 67, 95, 4, 91, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 157,
217, 169, 72, 20, 9, 34, 97, 4, 230, 67, 95, 4, 97, 72, 20, 9, 34, 248,
97, 4, 223, 38, 72, 20, 9, 34, 248, 97, 4, 176, 72, 20, 9, 34, 248, 97,
4, 221, 246, 72, 20, 9, 34, 248, 97, 4, 91, 72, 20, 9, 34, 248, 97, 4,
157, 217, 169, 72, 20, 9, 34, 248, 97, 4, 97, 72, 20, 9, 34, 200, 50, 4,
223, 38, 72, 20, 9, 34, 200, 50, 4, 176, 72, 20, 9, 34, 200, 50, 4, 221,
246, 72, 20, 9, 34, 200, 50, 4, 91, 72, 20, 9, 34, 200, 50, 4, 157, 217,
169, 72, 20, 9, 34, 200, 50, 4, 97, 72, 20, 9, 34, 199, 221, 4, 223, 38,
72, 20, 9, 34, 199, 221, 4, 91, 72, 20, 9, 34, 199, 221, 4, 157, 217,
169, 72, 20, 9, 34, 199, 221, 4, 97, 72, 20, 9, 34, 223, 38, 4, 176, 72,
20, 9, 34, 223, 38, 4, 91, 72, 20, 9, 34, 176, 4, 223, 38, 72, 20, 9, 34,
176, 4, 91, 72, 20, 9, 34, 221, 246, 4, 223, 38, 72, 20, 9, 34, 221, 246,
4, 176, 72, 20, 9, 34, 221, 246, 4, 91, 72, 20, 9, 34, 205, 202, 4, 223,
38, 72, 20, 9, 34, 205, 202, 4, 176, 72, 20, 9, 34, 205, 202, 4, 221,
246, 72, 20, 9, 34, 205, 202, 4, 91, 72, 20, 9, 34, 206, 87, 4, 176, 72,
20, 9, 34, 206, 87, 4, 91, 72, 20, 9, 34, 237, 251, 4, 223, 38, 72, 20,
9, 34, 237, 251, 4, 176, 72, 20, 9, 34, 237, 251, 4, 221, 246, 72, 20, 9,
34, 237, 251, 4, 91, 72, 20, 9, 34, 200, 152, 4, 176, 72, 20, 9, 34, 200,
152, 4, 91, 72, 20, 9, 34, 192, 107, 4, 91, 72, 20, 9, 34, 251, 58, 4,
223, 38, 72, 20, 9, 34, 251, 58, 4, 91, 72, 20, 9, 34, 231, 80, 4, 223,
38, 72, 20, 9, 34, 231, 80, 4, 91, 72, 20, 9, 34, 233, 35, 4, 223, 38,
72, 20, 9, 34, 233, 35, 4, 176, 72, 20, 9, 34, 233, 35, 4, 221, 246, 72,
20, 9, 34, 233, 35, 4, 91, 72, 20, 9, 34, 233, 35, 4, 157, 217, 169, 72,
20, 9, 34, 233, 35, 4, 97, 72, 20, 9, 34, 208, 233, 4, 176, 72, 20, 9,
34, 208, 233, 4, 91, 72, 20, 9, 34, 208, 233, 4, 157, 217, 169, 72, 20,
9, 34, 208, 233, 4, 97, 72, 20, 9, 34, 222, 140, 4, 157, 72, 20, 9, 34,
222, 140, 4, 223, 38, 72, 20, 9, 34, 222, 140, 4, 176, 72, 20, 9, 34,
222, 140, 4, 221, 246, 72, 20, 9, 34, 222, 140, 4, 220, 95, 72, 20, 9,
34, 222, 140, 4, 91, 72, 20, 9, 34, 222, 140, 4, 157, 217, 169, 72, 20,
9, 34, 222, 140, 4, 97, 72, 20, 9, 34, 220, 95, 4, 223, 38, 72, 20, 9,
34, 220, 95, 4, 176, 72, 20, 9, 34, 220, 95, 4, 221, 246, 72, 20, 9, 34,
220, 95, 4, 91, 72, 20, 9, 34, 220, 95, 4, 157, 217, 169, 72, 20, 9, 34,
220, 95, 4, 97, 72, 20, 9, 34, 91, 4, 223, 38, 72, 20, 9, 34, 91, 4, 176,
72, 20, 9, 34, 91, 4, 221, 246, 72, 20, 9, 34, 91, 4, 91, 72, 20, 9, 34,
91, 4, 157, 217, 169, 72, 20, 9, 34, 91, 4, 97, 72, 20, 9, 34, 213, 124,
4, 223, 38, 72, 20, 9, 34, 213, 124, 4, 176, 72, 20, 9, 34, 213, 124, 4,
221, 246, 72, 20, 9, 34, 213, 124, 4, 91, 72, 20, 9, 34, 213, 124, 4,
157, 217, 169, 72, 20, 9, 34, 213, 124, 4, 97, 72, 20, 9, 34, 229, 221,
4, 223, 38, 72, 20, 9, 34, 229, 221, 4, 91, 72, 20, 9, 34, 229, 221, 4,
157, 217, 169, 72, 20, 9, 34, 229, 221, 4, 97, 72, 20, 9, 34, 97, 4, 223,
38, 72, 20, 9, 34, 97, 4, 176, 72, 20, 9, 34, 97, 4, 221, 246, 72, 20, 9,
34, 97, 4, 91, 72, 20, 9, 34, 97, 4, 157, 217, 169, 72, 20, 9, 34, 97, 4,
97, 72, 20, 9, 34, 199, 233, 4, 201, 107, 157, 72, 20, 9, 34, 207, 222,
4, 201, 107, 157, 72, 20, 9, 34, 157, 217, 169, 4, 201, 107, 157, 72, 20,
9, 34, 204, 55, 4, 237, 214, 72, 20, 9, 34, 204, 55, 4, 222, 85, 72, 20,
9, 34, 204, 55, 4, 233, 59, 72, 20, 9, 34, 204, 55, 4, 237, 216, 72, 20,
9, 34, 204, 55, 4, 222, 87, 72, 20, 9, 34, 204, 55, 4, 201, 107, 157, 72,
20, 9, 34, 97, 4, 230, 67, 95, 4, 207, 222, 52, 20, 9, 34, 97, 4, 230,
67, 95, 4, 192, 104, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4, 91, 52, 20, 9,
34, 97, 4, 230, 67, 95, 4, 213, 124, 52, 20, 9, 34, 97, 4, 230, 67, 95,
4, 157, 217, 169, 52, 20, 9, 34, 97, 4, 230, 67, 95, 4, 97, 52, 20, 9,
34, 248, 97, 4, 207, 222, 52, 20, 9, 34, 248, 97, 4, 192, 104, 52, 20, 9,
34, 248, 97, 4, 91, 52, 20, 9, 34, 248, 97, 4, 213, 124, 52, 20, 9, 34,
248, 97, 4, 157, 217, 169, 52, 20, 9, 34, 248, 97, 4, 97, 52, 20, 9, 34,
200, 50, 4, 207, 222, 52, 20, 9, 34, 200, 50, 4, 192, 104, 52, 20, 9, 34,
200, 50, 4, 91, 52, 20, 9, 34, 200, 50, 4, 213, 124, 52, 20, 9, 34, 200,
50, 4, 157, 217, 169, 52, 20, 9, 34, 200, 50, 4, 97, 52, 20, 9, 34, 199,
221, 4, 207, 222, 52, 20, 9, 34, 199, 221, 4, 192, 104, 52, 20, 9, 34,
199, 221, 4, 91, 52, 20, 9, 34, 199, 221, 4, 213, 124, 52, 20, 9, 34,
199, 221, 4, 157, 217, 169, 52, 20, 9, 34, 199, 221, 4, 97, 52, 20, 9,
34, 233, 35, 4, 157, 217, 169, 52, 20, 9, 34, 233, 35, 4, 97, 52, 20, 9,
34, 208, 233, 4, 157, 217, 169, 52, 20, 9, 34, 208, 233, 4, 97, 52, 20,
9, 34, 222, 140, 4, 157, 52, 20, 9, 34, 222, 140, 4, 220, 95, 52, 20, 9,
34, 222, 140, 4, 91, 52, 20, 9, 34, 222, 140, 4, 157, 217, 169, 52, 20,
9, 34, 222, 140, 4, 97, 52, 20, 9, 34, 220, 95, 4, 91, 52, 20, 9, 34,
220, 95, 4, 157, 217, 169, 52, 20, 9, 34, 220, 95, 4, 97, 52, 20, 9, 34,
91, 4, 157, 52, 20, 9, 34, 91, 4, 91, 52, 20, 9, 34, 213, 124, 4, 207,
222, 52, 20, 9, 34, 213, 124, 4, 192, 104, 52, 20, 9, 34, 213, 124, 4,
91, 52, 20, 9, 34, 213, 124, 4, 213, 124, 52, 20, 9, 34, 213, 124, 4,
157, 217, 169, 52, 20, 9, 34, 213, 124, 4, 97, 52, 20, 9, 34, 157, 217,
169, 4, 201, 107, 157, 52, 20, 9, 34, 97, 4, 207, 222, 52, 20, 9, 34, 97,
4, 192, 104, 52, 20, 9, 34, 97, 4, 91, 52, 20, 9, 34, 97, 4, 213, 124,
52, 20, 9, 34, 97, 4, 157, 217, 169, 52, 20, 9, 34, 97, 4, 97, 52, 20, 9,
34, 97, 4, 230, 67, 95, 4, 223, 38, 88, 20, 9, 34, 97, 4, 230, 67, 95, 4,
176, 88, 20, 9, 34, 97, 4, 230, 67, 95, 4, 221, 246, 88, 20, 9, 34, 97,
4, 230, 67, 95, 4, 91, 88, 20, 9, 34, 97, 4, 230, 67, 95, 4, 229, 221,
88, 20, 9, 34, 248, 97, 4, 223, 38, 88, 20, 9, 34, 248, 97, 4, 176, 88,
20, 9, 34, 248, 97, 4, 221, 246, 88, 20, 9, 34, 248, 97, 4, 91, 88, 20,
9, 34, 248, 97, 4, 229, 221, 88, 20, 9, 34, 200, 50, 4, 223, 38, 88, 20,
9, 34, 200, 50, 4, 176, 88, 20, 9, 34, 200, 50, 4, 221, 246, 88, 20, 9,
34, 200, 50, 4, 91, 88, 20, 9, 34, 200, 50, 4, 229, 221, 88, 20, 9, 34,
199, 221, 4, 91, 88, 20, 9, 34, 223, 38, 4, 176, 88, 20, 9, 34, 223, 38,
4, 91, 88, 20, 9, 34, 176, 4, 223, 38, 88, 20, 9, 34, 176, 4, 91, 88, 20,
9, 34, 221, 246, 4, 223, 38, 88, 20, 9, 34, 221, 246, 4, 91, 88, 20, 9,
34, 205, 202, 4, 223, 38, 88, 20, 9, 34, 205, 202, 4, 176, 88, 20, 9, 34,
205, 202, 4, 221, 246, 88, 20, 9, 34, 205, 202, 4, 91, 88, 20, 9, 34,
206, 87, 4, 176, 88, 20, 9, 34, 206, 87, 4, 221, 246, 88, 20, 9, 34, 206,
87, 4, 91, 88, 20, 9, 34, 237, 251, 4, 223, 38, 88, 20, 9, 34, 237, 251,
4, 176, 88, 20, 9, 34, 237, 251, 4, 221, 246, 88, 20, 9, 34, 237, 251, 4,
91, 88, 20, 9, 34, 200, 152, 4, 176, 88, 20, 9, 34, 192, 107, 4, 91, 88,
20, 9, 34, 251, 58, 4, 223, 38, 88, 20, 9, 34, 251, 58, 4, 91, 88, 20, 9,
34, 231, 80, 4, 223, 38, 88, 20, 9, 34, 231, 80, 4, 91, 88, 20, 9, 34,
233, 35, 4, 223, 38, 88, 20, 9, 34, 233, 35, 4, 176, 88, 20, 9, 34, 233,
35, 4, 221, 246, 88, 20, 9, 34, 233, 35, 4, 91, 88, 20, 9, 34, 208, 233,
4, 176, 88, 20, 9, 34, 208, 233, 4, 91, 88, 20, 9, 34, 222, 140, 4, 223,
38, 88, 20, 9, 34, 222, 140, 4, 176, 88, 20, 9, 34, 222, 140, 4, 221,
246, 88, 20, 9, 34, 222, 140, 4, 220, 95, 88, 20, 9, 34, 222, 140, 4, 91,
88, 20, 9, 34, 220, 95, 4, 223, 38, 88, 20, 9, 34, 220, 95, 4, 176, 88,
20, 9, 34, 220, 95, 4, 221, 246, 88, 20, 9, 34, 220, 95, 4, 91, 88, 20,
9, 34, 220, 95, 4, 229, 221, 88, 20, 9, 34, 91, 4, 223, 38, 88, 20, 9,
34, 91, 4, 176, 88, 20, 9, 34, 91, 4, 221, 246, 88, 20, 9, 34, 91, 4, 91,
88, 20, 9, 34, 213, 124, 4, 223, 38, 88, 20, 9, 34, 213, 124, 4, 176, 88,
20, 9, 34, 213, 124, 4, 221, 246, 88, 20, 9, 34, 213, 124, 4, 91, 88, 20,
9, 34, 213, 124, 4, 229, 221, 88, 20, 9, 34, 229, 221, 4, 223, 38, 88,
20, 9, 34, 229, 221, 4, 91, 88, 20, 9, 34, 229, 221, 4, 201, 107, 157,
88, 20, 9, 34, 97, 4, 223, 38, 88, 20, 9, 34, 97, 4, 176, 88, 20, 9, 34,
97, 4, 221, 246, 88, 20, 9, 34, 97, 4, 91, 88, 20, 9, 34, 97, 4, 229,
221, 88, 20, 9, 34, 97, 4, 230, 67, 95, 4, 91, 217, 35, 20, 9, 34, 97, 4,
230, 67, 95, 4, 229, 221, 217, 35, 20, 9, 34, 248, 97, 4, 91, 217, 35,
20, 9, 34, 248, 97, 4, 229, 221, 217, 35, 20, 9, 34, 200, 50, 4, 91, 217,
35, 20, 9, 34, 200, 50, 4, 229, 221, 217, 35, 20, 9, 34, 199, 221, 4, 91,
217, 35, 20, 9, 34, 199, 221, 4, 229, 221, 217, 35, 20, 9, 34, 205, 202,
4, 91, 217, 35, 20, 9, 34, 205, 202, 4, 229, 221, 217, 35, 20, 9, 34,
204, 9, 4, 91, 217, 35, 20, 9, 34, 204, 9, 4, 229, 221, 217, 35, 20, 9,
34, 222, 140, 4, 220, 95, 217, 35, 20, 9, 34, 222, 140, 4, 91, 217, 35,
20, 9, 34, 220, 95, 4, 91, 217, 35, 20, 9, 34, 213, 124, 4, 91, 217, 35,
20, 9, 34, 213, 124, 4, 229, 221, 217, 35, 20, 9, 34, 97, 4, 91, 217, 35,
20, 9, 34, 97, 4, 229, 221, 217, 35, 20, 9, 34, 204, 55, 4, 233, 59, 217,
35, 20, 9, 34, 204, 55, 4, 237, 216, 217, 35, 20, 9, 34, 204, 55, 4, 222,
87, 217, 35, 20, 9, 34, 200, 152, 4, 157, 217, 169, 72, 20, 9, 34, 200,
152, 4, 97, 72, 20, 9, 34, 251, 58, 4, 157, 217, 169, 72, 20, 9, 34, 251,
58, 4, 97, 72, 20, 9, 34, 231, 80, 4, 157, 217, 169, 72, 20, 9, 34, 231,
80, 4, 97, 72, 20, 9, 34, 205, 202, 4, 157, 217, 169, 72, 20, 9, 34, 205,
202, 4, 97, 72, 20, 9, 34, 204, 9, 4, 157, 217, 169, 72, 20, 9, 34, 204,
9, 4, 97, 72, 20, 9, 34, 176, 4, 157, 217, 169, 72, 20, 9, 34, 176, 4,
97, 72, 20, 9, 34, 223, 38, 4, 157, 217, 169, 72, 20, 9, 34, 223, 38, 4,
97, 72, 20, 9, 34, 221, 246, 4, 157, 217, 169, 72, 20, 9, 34, 221, 246,
4, 97, 72, 20, 9, 34, 206, 87, 4, 157, 217, 169, 72, 20, 9, 34, 206, 87,
4, 97, 72, 20, 9, 34, 237, 251, 4, 157, 217, 169, 72, 20, 9, 34, 237,
251, 4, 97, 72, 20, 9, 34, 204, 9, 4, 223, 38, 72, 20, 9, 34, 204, 9, 4,
176, 72, 20, 9, 34, 204, 9, 4, 221, 246, 72, 20, 9, 34, 204, 9, 4, 91,
72, 20, 9, 34, 204, 9, 4, 207, 222, 72, 20, 9, 34, 205, 202, 4, 207, 222,
72, 20, 9, 34, 206, 87, 4, 207, 222, 72, 20, 9, 34, 237, 251, 4, 207,
222, 72, 20, 9, 34, 200, 152, 4, 157, 217, 169, 52, 20, 9, 34, 200, 152,
4, 97, 52, 20, 9, 34, 251, 58, 4, 157, 217, 169, 52, 20, 9, 34, 251, 58,
4, 97, 52, 20, 9, 34, 231, 80, 4, 157, 217, 169, 52, 20, 9, 34, 231, 80,
4, 97, 52, 20, 9, 34, 205, 202, 4, 157, 217, 169, 52, 20, 9, 34, 205,
202, 4, 97, 52, 20, 9, 34, 204, 9, 4, 157, 217, 169, 52, 20, 9, 34, 204,
9, 4, 97, 52, 20, 9, 34, 176, 4, 157, 217, 169, 52, 20, 9, 34, 176, 4,
97, 52, 20, 9, 34, 223, 38, 4, 157, 217, 169, 52, 20, 9, 34, 223, 38, 4,
97, 52, 20, 9, 34, 221, 246, 4, 157, 217, 169, 52, 20, 9, 34, 221, 246,
4, 97, 52, 20, 9, 34, 206, 87, 4, 157, 217, 169, 52, 20, 9, 34, 206, 87,
4, 97, 52, 20, 9, 34, 237, 251, 4, 157, 217, 169, 52, 20, 9, 34, 237,
251, 4, 97, 52, 20, 9, 34, 204, 9, 4, 223, 38, 52, 20, 9, 34, 204, 9, 4,
176, 52, 20, 9, 34, 204, 9, 4, 221, 246, 52, 20, 9, 34, 204, 9, 4, 91,
52, 20, 9, 34, 204, 9, 4, 207, 222, 52, 20, 9, 34, 205, 202, 4, 207, 222,
52, 20, 9, 34, 206, 87, 4, 207, 222, 52, 20, 9, 34, 237, 251, 4, 207,
222, 52, 20, 9, 34, 204, 9, 4, 223, 38, 88, 20, 9, 34, 204, 9, 4, 176,
88, 20, 9, 34, 204, 9, 4, 221, 246, 88, 20, 9, 34, 204, 9, 4, 91, 88, 20,
9, 34, 205, 202, 4, 229, 221, 88, 20, 9, 34, 204, 9, 4, 229, 221, 88, 20,
9, 34, 200, 152, 4, 91, 88, 20, 9, 34, 205, 202, 4, 223, 38, 217, 35, 20,
9, 34, 205, 202, 4, 176, 217, 35, 20, 9, 34, 205, 202, 4, 221, 246, 217,
35, 20, 9, 34, 204, 9, 4, 223, 38, 217, 35, 20, 9, 34, 204, 9, 4, 176,
217, 35, 20, 9, 34, 204, 9, 4, 221, 246, 217, 35, 20, 9, 34, 200, 152, 4,
91, 217, 35, 20, 9, 34, 192, 107, 4, 91, 217, 35, 20, 9, 34, 157, 4, 233,
57, 52, 20, 9, 34, 157, 4, 233, 57, 72, 20, 211, 148, 46, 210, 230, 211,
148, 51, 210, 230, 9, 34, 200, 50, 4, 223, 38, 4, 91, 88, 20, 9, 34, 200,
50, 4, 176, 4, 223, 38, 52, 20, 9, 34, 200, 50, 4, 176, 4, 223, 38, 88,
20, 9, 34, 200, 50, 4, 176, 4, 91, 88, 20, 9, 34, 200, 50, 4, 221, 246,
4, 91, 88, 20, 9, 34, 200, 50, 4, 91, 4, 223, 38, 88, 20, 9, 34, 200, 50,
4, 91, 4, 176, 88, 20, 9, 34, 200, 50, 4, 91, 4, 221, 246, 88, 20, 9, 34,
223, 38, 4, 91, 4, 176, 52, 20, 9, 34, 223, 38, 4, 91, 4, 176, 88, 20, 9,
34, 176, 4, 91, 4, 97, 52, 20, 9, 34, 176, 4, 91, 4, 157, 217, 169, 52,
20, 9, 34, 205, 202, 4, 176, 4, 223, 38, 88, 20, 9, 34, 205, 202, 4, 223,
38, 4, 176, 88, 20, 9, 34, 205, 202, 4, 223, 38, 4, 157, 217, 169, 52,
20, 9, 34, 205, 202, 4, 91, 4, 176, 52, 20, 9, 34, 205, 202, 4, 91, 4,
176, 88, 20, 9, 34, 205, 202, 4, 91, 4, 223, 38, 88, 20, 9, 34, 205, 202,
4, 91, 4, 91, 52, 20, 9, 34, 205, 202, 4, 91, 4, 91, 88, 20, 9, 34, 206,
87, 4, 176, 4, 176, 52, 20, 9, 34, 206, 87, 4, 176, 4, 176, 88, 20, 9,
34, 206, 87, 4, 91, 4, 91, 52, 20, 9, 34, 204, 9, 4, 176, 4, 91, 52, 20,
9, 34, 204, 9, 4, 176, 4, 91, 88, 20, 9, 34, 204, 9, 4, 223, 38, 4, 97,
52, 20, 9, 34, 204, 9, 4, 91, 4, 221, 246, 52, 20, 9, 34, 204, 9, 4, 91,
4, 221, 246, 88, 20, 9, 34, 204, 9, 4, 91, 4, 91, 52, 20, 9, 34, 204, 9,
4, 91, 4, 91, 88, 20, 9, 34, 237, 251, 4, 176, 4, 157, 217, 169, 52, 20,
9, 34, 237, 251, 4, 221, 246, 4, 91, 52, 20, 9, 34, 237, 251, 4, 221,
246, 4, 91, 88, 20, 9, 34, 200, 152, 4, 91, 4, 176, 52, 20, 9, 34, 200,
152, 4, 91, 4, 176, 88, 20, 9, 34, 200, 152, 4, 91, 4, 91, 88, 20, 9, 34,
200, 152, 4, 91, 4, 97, 52, 20, 9, 34, 251, 58, 4, 223, 38, 4, 91, 52,
20, 9, 34, 251, 58, 4, 91, 4, 91, 52, 20, 9, 34, 251, 58, 4, 91, 4, 91,
88, 20, 9, 34, 251, 58, 4, 91, 4, 157, 217, 169, 52, 20, 9, 34, 231, 80,
4, 91, 4, 91, 52, 20, 9, 34, 231, 80, 4, 91, 4, 97, 52, 20, 9, 34, 231,
80, 4, 91, 4, 157, 217, 169, 52, 20, 9, 34, 233, 35, 4, 221, 246, 4, 91,
52, 20, 9, 34, 233, 35, 4, 221, 246, 4, 91, 88, 20, 9, 34, 208, 233, 4,
91, 4, 176, 52, 20, 9, 34, 208, 233, 4, 91, 4, 91, 52, 20, 9, 34, 220,
95, 4, 176, 4, 91, 52, 20, 9, 34, 220, 95, 4, 176, 4, 97, 52, 20, 9, 34,
220, 95, 4, 176, 4, 157, 217, 169, 52, 20, 9, 34, 220, 95, 4, 223, 38, 4,
223, 38, 88, 20, 9, 34, 220, 95, 4, 223, 38, 4, 223, 38, 52, 20, 9, 34,
220, 95, 4, 221, 246, 4, 91, 52, 20, 9, 34, 220, 95, 4, 221, 246, 4, 91,
88, 20, 9, 34, 220, 95, 4, 91, 4, 176, 52, 20, 9, 34, 220, 95, 4, 91, 4,
176, 88, 20, 9, 34, 91, 4, 176, 4, 223, 38, 88, 20, 9, 34, 91, 4, 176, 4,
91, 88, 20, 9, 34, 91, 4, 176, 4, 97, 52, 20, 9, 34, 91, 4, 223, 38, 4,
176, 88, 20, 9, 34, 91, 4, 223, 38, 4, 91, 88, 20, 9, 34, 91, 4, 221,
246, 4, 223, 38, 88, 20, 9, 34, 91, 4, 221, 246, 4, 91, 88, 20, 9, 34,
91, 4, 223, 38, 4, 221, 246, 88, 20, 9, 34, 229, 221, 4, 91, 4, 223, 38,
88, 20, 9, 34, 229, 221, 4, 91, 4, 91, 88, 20, 9, 34, 213, 124, 4, 176,
4, 91, 88, 20, 9, 34, 213, 124, 4, 176, 4, 157, 217, 169, 52, 20, 9, 34,
213, 124, 4, 223, 38, 4, 91, 52, 20, 9, 34, 213, 124, 4, 223, 38, 4, 91,
88, 20, 9, 34, 213, 124, 4, 223, 38, 4, 157, 217, 169, 52, 20, 9, 34,
213, 124, 4, 91, 4, 97, 52, 20, 9, 34, 213, 124, 4, 91, 4, 157, 217, 169,
52, 20, 9, 34, 97, 4, 91, 4, 91, 52, 20, 9, 34, 97, 4, 91, 4, 91, 88, 20,
9, 34, 248, 97, 4, 221, 246, 4, 97, 52, 20, 9, 34, 200, 50, 4, 223, 38,
4, 97, 52, 20, 9, 34, 200, 50, 4, 223, 38, 4, 157, 217, 169, 52, 20, 9,
34, 200, 50, 4, 221, 246, 4, 97, 52, 20, 9, 34, 200, 50, 4, 221, 246, 4,
157, 217, 169, 52, 20, 9, 34, 200, 50, 4, 91, 4, 97, 52, 20, 9, 34, 200,
50, 4, 91, 4, 157, 217, 169, 52, 20, 9, 34, 223, 38, 4, 91, 4, 97, 52,
20, 9, 34, 223, 38, 4, 176, 4, 157, 217, 169, 52, 20, 9, 34, 223, 38, 4,
91, 4, 157, 217, 169, 52, 20, 9, 34, 205, 202, 4, 221, 246, 4, 157, 217,
169, 52, 20, 9, 34, 206, 87, 4, 176, 4, 97, 52, 20, 9, 34, 204, 9, 4,
176, 4, 97, 52, 20, 9, 34, 237, 251, 4, 176, 4, 97, 52, 20, 9, 34, 220,
95, 4, 223, 38, 4, 97, 52, 20, 9, 34, 220, 95, 4, 91, 4, 97, 52, 20, 9,
34, 97, 4, 176, 4, 97, 52, 20, 9, 34, 97, 4, 223, 38, 4, 97, 52, 20, 9,
34, 97, 4, 91, 4, 97, 52, 20, 9, 34, 91, 4, 91, 4, 97, 52, 20, 9, 34,
208, 233, 4, 91, 4, 97, 52, 20, 9, 34, 213, 124, 4, 176, 4, 97, 52, 20,
9, 34, 208, 233, 4, 91, 4, 176, 88, 20, 9, 34, 220, 95, 4, 176, 4, 91,
88, 20, 9, 34, 251, 58, 4, 91, 4, 97, 52, 20, 9, 34, 222, 140, 4, 91, 4,
97, 52, 20, 9, 34, 213, 124, 4, 223, 38, 4, 176, 88, 20, 9, 34, 91, 4,
221, 246, 4, 97, 52, 20, 9, 34, 220, 95, 4, 223, 38, 4, 91, 88, 20, 9,
34, 222, 140, 4, 91, 4, 91, 52, 20, 9, 34, 220, 95, 4, 223, 38, 4, 91,
52, 20, 9, 34, 213, 124, 4, 223, 38, 4, 176, 52, 20, 9, 34, 223, 38, 4,
176, 4, 97, 52, 20, 9, 34, 176, 4, 223, 38, 4, 97, 52, 20, 9, 34, 91, 4,
223, 38, 4, 97, 52, 20, 9, 34, 233, 35, 4, 91, 4, 97, 52, 20, 9, 34, 248,
97, 4, 176, 4, 97, 52, 20, 9, 34, 222, 140, 4, 91, 4, 91, 88, 20, 9, 34,
251, 58, 4, 223, 38, 4, 91, 88, 20, 9, 34, 206, 87, 4, 91, 4, 91, 88, 20,
9, 34, 205, 202, 4, 221, 246, 4, 97, 52, 20, 9, 34, 213, 124, 4, 223, 38,
4, 97, 52, 20, 9, 34, 206, 58, 197, 5, 250, 62, 221, 80, 201, 239, 3, 72,
20, 9, 34, 208, 229, 197, 5, 250, 62, 221, 80, 201, 239, 3, 72, 20, 9,
34, 251, 7, 72, 20, 9, 34, 251, 41, 72, 20, 9, 34, 216, 58, 72, 20, 9,
34, 206, 59, 72, 20, 9, 34, 208, 24, 72, 20, 9, 34, 251, 29, 72, 20, 9,
34, 194, 139, 72, 20, 9, 34, 206, 58, 72, 20, 9, 34, 206, 57, 251, 29,
194, 138, 9, 34, 223, 53, 207, 143, 57, 9, 34, 248, 4, 250, 129, 250,
130, 65, 205, 188, 65, 205, 77, 65, 205, 9, 65, 204, 254, 65, 204, 243,
65, 204, 232, 65, 204, 221, 65, 204, 210, 65, 204, 199, 65, 205, 187, 65,
205, 176, 65, 205, 165, 65, 205, 154, 65, 205, 143, 65, 205, 132, 65,
205, 121, 209, 105, 232, 136, 39, 84, 242, 38, 209, 105, 232, 136, 39,
84, 149, 242, 38, 209, 105, 232, 136, 39, 84, 149, 232, 71, 201, 238,
209, 105, 232, 136, 39, 84, 242, 47, 209, 105, 232, 136, 39, 84, 204,
180, 209, 105, 232, 136, 39, 84, 233, 204, 77, 209, 105, 232, 136, 39,
84, 208, 159, 77, 209, 105, 232, 136, 39, 84, 46, 62, 219, 247, 186, 209,
105, 232, 136, 39, 84, 51, 62, 219, 247, 247, 162, 209, 105, 232, 136,
39, 84, 229, 5, 234, 105, 38, 34, 46, 230, 78, 38, 34, 51, 230, 78, 38,
55, 199, 91, 46, 230, 78, 38, 55, 199, 91, 51, 230, 78, 38, 217, 215, 46,
230, 78, 38, 217, 215, 51, 230, 78, 38, 239, 9, 217, 214, 38, 34, 46,
138, 63, 38, 34, 51, 138, 63, 38, 199, 91, 46, 138, 63, 38, 199, 91, 51,
138, 63, 38, 217, 215, 46, 138, 63, 38, 217, 215, 51, 138, 63, 38, 239,
9, 217, 215, 63, 38, 42, 199, 61, 46, 230, 78, 38, 42, 199, 61, 51, 230,
78, 209, 105, 232, 136, 39, 84, 103, 78, 220, 40, 209, 105, 232, 136, 39,
84, 234, 100, 237, 185, 209, 105, 232, 136, 39, 84, 234, 89, 237, 185,
209, 105, 232, 136, 39, 84, 132, 219, 175, 209, 105, 232, 136, 39, 84,
194, 121, 132, 219, 175, 209, 105, 232, 136, 39, 84, 46, 210, 230, 209,
105, 232, 136, 39, 84, 51, 210, 230, 209, 105, 232, 136, 39, 84, 46, 238,
138, 186, 209, 105, 232, 136, 39, 84, 51, 238, 138, 186, 209, 105, 232,
136, 39, 84, 46, 198, 237, 204, 2, 186, 209, 105, 232, 136, 39, 84, 51,
198, 237, 204, 2, 186, 209, 105, 232, 136, 39, 84, 46, 60, 219, 247, 186,
209, 105, 232, 136, 39, 84, 51, 60, 219, 247, 186, 209, 105, 232, 136,
39, 84, 46, 55, 250, 208, 186, 209, 105, 232, 136, 39, 84, 51, 55, 250,
208, 186, 209, 105, 232, 136, 39, 84, 46, 250, 208, 186, 209, 105, 232,
136, 39, 84, 51, 250, 208, 186, 209, 105, 232, 136, 39, 84, 46, 238, 224,
186, 209, 105, 232, 136, 39, 84, 51, 238, 224, 186, 209, 105, 232, 136,
39, 84, 46, 62, 238, 224, 186, 209, 105, 232, 136, 39, 84, 51, 62, 238,
224, 186, 204, 155, 236, 114, 62, 204, 155, 236, 114, 209, 105, 232, 136,
39, 84, 46, 50, 186, 209, 105, 232, 136, 39, 84, 51, 50, 186, 237, 184,
211, 109, 246, 134, 211, 109, 194, 121, 211, 109, 55, 194, 121, 211, 109,
237, 184, 132, 219, 175, 246, 134, 132, 219, 175, 194, 121, 132, 219,
175, 2, 242, 38, 2, 149, 242, 38, 2, 232, 71, 201, 238, 2, 204, 180, 2,
242, 47, 2, 208, 159, 77, 2, 233, 204, 77, 2, 234, 100, 237, 185, 2, 46,
210, 230, 2, 51, 210, 230, 2, 46, 238, 138, 186, 2, 51, 238, 138, 186, 2,
46, 198, 237, 204, 2, 186, 2, 51, 198, 237, 204, 2, 186, 2, 31, 57, 2,
250, 229, 2, 250, 37, 2, 102, 57, 2, 228, 110, 2, 219, 240, 57, 2, 230,
204, 57, 2, 234, 30, 57, 2, 207, 169, 202, 189, 2, 236, 127, 57, 2, 210,
133, 57, 2, 242, 36, 250, 26, 9, 233, 57, 72, 20, 9, 200, 103, 4, 233,
57, 58, 9, 237, 214, 72, 20, 9, 200, 148, 232, 108, 9, 222, 85, 72, 20,
9, 233, 59, 72, 20, 9, 233, 59, 217, 35, 20, 9, 237, 216, 72, 20, 9, 237,
216, 217, 35, 20, 9, 222, 87, 72, 20, 9, 222, 87, 217, 35, 20, 9, 204,
55, 72, 20, 9, 204, 55, 217, 35, 20, 9, 201, 132, 72, 20, 9, 201, 132,
217, 35, 20, 9, 1, 230, 67, 72, 20, 9, 1, 157, 4, 217, 210, 95, 72, 20,
9, 1, 157, 4, 217, 210, 95, 52, 20, 9, 1, 157, 4, 230, 67, 95, 72, 20, 9,
1, 157, 4, 230, 67, 95, 52, 20, 9, 1, 194, 120, 4, 230, 67, 95, 72, 20,
9, 1, 194, 120, 4, 230, 67, 95, 52, 20, 9, 1, 157, 4, 230, 67, 248, 84,
72, 20, 9, 1, 157, 4, 230, 67, 248, 84, 52, 20, 9, 1, 97, 4, 230, 67, 95,
72, 20, 9, 1, 97, 4, 230, 67, 95, 52, 20, 9, 1, 97, 4, 230, 67, 95, 88,
20, 9, 1, 97, 4, 230, 67, 95, 217, 35, 20, 9, 1, 157, 72, 20, 9, 1, 157,
52, 20, 9, 1, 248, 97, 72, 20, 9, 1, 248, 97, 52, 20, 9, 1, 248, 97, 88,
20, 9, 1, 248, 97, 217, 35, 20, 9, 1, 200, 50, 217, 134, 72, 20, 9, 1,
200, 50, 217, 134, 52, 20, 9, 1, 200, 50, 72, 20, 9, 1, 200, 50, 52, 20,
9, 1, 200, 50, 88, 20, 9, 1, 200, 50, 217, 35, 20, 9, 1, 199, 221, 72,
20, 9, 1, 199, 221, 52, 20, 9, 1, 199, 221, 88, 20, 9, 1, 199, 221, 217,
35, 20, 9, 1, 223, 38, 72, 20, 9, 1, 223, 38, 52, 20, 9, 1, 223, 38, 88,
20, 9, 1, 223, 38, 217, 35, 20, 9, 1, 176, 72, 20, 9, 1, 176, 52, 20, 9,
1, 176, 88, 20, 9, 1, 176, 217, 35, 20, 9, 1, 221, 246, 72, 20, 9, 1,
221, 246, 52, 20, 9, 1, 221, 246, 88, 20, 9, 1, 221, 246, 217, 35, 20, 9,
1, 237, 228, 72, 20, 9, 1, 237, 228, 52, 20, 9, 1, 199, 233, 72, 20, 9,
1, 199, 233, 52, 20, 9, 1, 207, 222, 72, 20, 9, 1, 207, 222, 52, 20, 9,
1, 192, 104, 72, 20, 9, 1, 192, 104, 52, 20, 9, 1, 205, 202, 72, 20, 9,
1, 205, 202, 52, 20, 9, 1, 205, 202, 88, 20, 9, 1, 205, 202, 217, 35, 20,
9, 1, 204, 9, 72, 20, 9, 1, 204, 9, 52, 20, 9, 1, 204, 9, 88, 20, 9, 1,
204, 9, 217, 35, 20, 9, 1, 206, 87, 72, 20, 9, 1, 206, 87, 52, 20, 9, 1,
206, 87, 88, 20, 9, 1, 206, 87, 217, 35, 20, 9, 1, 237, 251, 72, 20, 9,
1, 237, 251, 52, 20, 9, 1, 237, 251, 88, 20, 9, 1, 237, 251, 217, 35, 20,
9, 1, 200, 152, 72, 20, 9, 1, 200, 152, 52, 20, 9, 1, 200, 152, 88, 20,
9, 1, 200, 152, 217, 35, 20, 9, 1, 192, 107, 72, 20, 9, 1, 192, 107, 52,
20, 9, 1, 192, 107, 88, 20, 9, 1, 192, 107, 217, 35, 20, 9, 1, 251, 58,
72, 20, 9, 1, 251, 58, 52, 20, 9, 1, 251, 58, 88, 20, 9, 1, 251, 58, 217,
35, 20, 9, 1, 231, 80, 72, 20, 9, 1, 231, 80, 52, 20, 9, 1, 231, 80, 88,
20, 9, 1, 231, 80, 217, 35, 20, 9, 1, 233, 35, 72, 20, 9, 1, 233, 35, 52,
20, 9, 1, 233, 35, 88, 20, 9, 1, 233, 35, 217, 35, 20, 9, 1, 208, 233,
72, 20, 9, 1, 208, 233, 52, 20, 9, 1, 208, 233, 88, 20, 9, 1, 208, 233,
217, 35, 20, 9, 1, 222, 140, 72, 20, 9, 1, 222, 140, 52, 20, 9, 1, 222,
140, 88, 20, 9, 1, 222, 140, 217, 35, 20, 9, 1, 220, 95, 72, 20, 9, 1,
220, 95, 52, 20, 9, 1, 220, 95, 88, 20, 9, 1, 220, 95, 217, 35, 20, 9, 1,
91, 72, 20, 9, 1, 91, 52, 20, 9, 1, 91, 88, 20, 9, 1, 91, 217, 35, 20, 9,
1, 213, 124, 72, 20, 9, 1, 213, 124, 52, 20, 9, 1, 213, 124, 88, 20, 9,
1, 213, 124, 217, 35, 20, 9, 1, 229, 221, 72, 20, 9, 1, 229, 221, 52, 20,
9, 1, 229, 221, 88, 20, 9, 1, 229, 221, 217, 35, 20, 9, 1, 194, 120, 72,
20, 9, 1, 194, 120, 52, 20, 9, 1, 157, 217, 169, 72, 20, 9, 1, 157, 217,
169, 52, 20, 9, 1, 97, 72, 20, 9, 1, 97, 52, 20, 9, 1, 97, 88, 20, 9, 1,
97, 217, 35, 20, 9, 34, 220, 95, 4, 157, 4, 217, 210, 95, 72, 20, 9, 34,
220, 95, 4, 157, 4, 217, 210, 95, 52, 20, 9, 34, 220, 95, 4, 157, 4, 230,
67, 95, 72, 20, 9, 34, 220, 95, 4, 157, 4, 230, 67, 95, 52, 20, 9, 34,
220, 95, 4, 157, 4, 230, 67, 248, 84, 72, 20, 9, 34, 220, 95, 4, 157, 4,
230, 67, 248, 84, 52, 20, 9, 34, 220, 95, 4, 157, 72, 20, 9, 34, 220, 95,
4, 157, 52, 20, 192, 77, 194, 61, 213, 136, 202, 160, 183, 233, 204, 77,
183, 208, 142, 77, 183, 31, 57, 183, 236, 127, 57, 183, 210, 133, 57,
183, 250, 229, 183, 250, 147, 183, 46, 210, 230, 183, 51, 210, 230, 183,
250, 37, 183, 102, 57, 183, 242, 38, 183, 228, 110, 183, 232, 71, 201,
238, 183, 202, 189, 183, 17, 192, 76, 183, 17, 101, 183, 17, 104, 183,
17, 133, 183, 17, 134, 183, 17, 151, 183, 17, 170, 183, 17, 179, 183, 17,
174, 183, 17, 182, 183, 242, 47, 183, 204, 180, 183, 219, 240, 57, 183,
234, 30, 57, 183, 230, 204, 57, 183, 208, 159, 77, 183, 242, 36, 250, 26,
183, 8, 6, 1, 64, 183, 8, 6, 1, 249, 226, 183, 8, 6, 1, 247, 52, 183, 8,
6, 1, 238, 95, 183, 8, 6, 1, 71, 183, 8, 6, 1, 233, 163, 183, 8, 6, 1,
232, 44, 183, 8, 6, 1, 230, 124, 183, 8, 6, 1, 70, 183, 8, 6, 1, 223, 65,
183, 8, 6, 1, 222, 184, 183, 8, 6, 1, 165, 183, 8, 6, 1, 218, 236, 183,
8, 6, 1, 215, 151, 183, 8, 6, 1, 74, 183, 8, 6, 1, 211, 93, 183, 8, 6, 1,
208, 247, 183, 8, 6, 1, 150, 183, 8, 6, 1, 206, 158, 183, 8, 6, 1, 200,
228, 183, 8, 6, 1, 68, 183, 8, 6, 1, 196, 236, 183, 8, 6, 1, 194, 202,
183, 8, 6, 1, 193, 223, 183, 8, 6, 1, 193, 148, 183, 8, 6, 1, 192, 155,
183, 46, 50, 186, 183, 207, 169, 202, 189, 183, 51, 50, 186, 183, 242,
122, 251, 143, 183, 132, 219, 175, 183, 230, 211, 251, 143, 183, 8, 2, 1,
64, 183, 8, 2, 1, 249, 226, 183, 8, 2, 1, 247, 52, 183, 8, 2, 1, 238, 95,
183, 8, 2, 1, 71, 183, 8, 2, 1, 233, 163, 183, 8, 2, 1, 232, 44, 183, 8,
2, 1, 230, 124, 183, 8, 2, 1, 70, 183, 8, 2, 1, 223, 65, 183, 8, 2, 1,
222, 184, 183, 8, 2, 1, 165, 183, 8, 2, 1, 218, 236, 183, 8, 2, 1, 215,
151, 183, 8, 2, 1, 74, 183, 8, 2, 1, 211, 93, 183, 8, 2, 1, 208, 247,
183, 8, 2, 1, 150, 183, 8, 2, 1, 206, 158, 183, 8, 2, 1, 200, 228, 183,
8, 2, 1, 68, 183, 8, 2, 1, 196, 236, 183, 8, 2, 1, 194, 202, 183, 8, 2,
1, 193, 223, 183, 8, 2, 1, 193, 148, 183, 8, 2, 1, 192, 155, 183, 46,
238, 138, 186, 183, 84, 219, 175, 183, 51, 238, 138, 186, 183, 199, 90,
183, 46, 62, 210, 230, 183, 51, 62, 210, 230, 145, 149, 232, 71, 201,
238, 145, 46, 238, 224, 186, 145, 51, 238, 224, 186, 145, 149, 242, 38,
145, 75, 85, 236, 114, 145, 75, 1, 194, 36, 145, 75, 1, 2, 64, 145, 75,
1, 2, 70, 145, 75, 1, 2, 68, 145, 75, 1, 2, 71, 145, 75, 1, 2, 74, 145,
75, 1, 2, 168, 145, 75, 1, 2, 192, 214, 145, 75, 1, 2, 193, 1, 145, 75,
1, 2, 198, 45, 145, 222, 82, 209, 76, 202, 174, 77, 145, 75, 1, 64, 145,
75, 1, 70, 145, 75, 1, 68, 145, 75, 1, 71, 145, 75, 1, 74, 145, 75, 1,
160, 145, 75, 1, 221, 204, 145, 75, 1, 221, 33, 145, 75, 1, 222, 57, 145,
75, 1, 221, 113, 145, 75, 1, 188, 145, 75, 1, 203, 125, 145, 75, 1, 201,
184, 145, 75, 1, 205, 223, 145, 75, 1, 202, 212, 145, 75, 1, 189, 145,
75, 1, 199, 128, 145, 75, 1, 198, 45, 145, 75, 1, 200, 79, 145, 75, 1,
155, 145, 75, 1, 181, 145, 75, 1, 214, 60, 145, 75, 1, 213, 22, 145, 75,
1, 214, 214, 145, 75, 1, 213, 142, 145, 75, 1, 144, 145, 75, 1, 229, 178,
145, 75, 1, 228, 181, 145, 75, 1, 229, 255, 145, 75, 1, 229, 43, 145, 75,
1, 172, 145, 75, 1, 216, 175, 145, 75, 1, 215, 241, 145, 75, 1, 217, 48,
145, 75, 1, 216, 91, 145, 75, 1, 168, 145, 75, 1, 192, 214, 145, 75, 1,
193, 1, 145, 75, 1, 167, 145, 75, 1, 207, 151, 145, 75, 1, 206, 218, 145,
75, 1, 208, 7, 145, 75, 1, 207, 55, 145, 75, 1, 194, 169, 145, 75, 1,
215, 151, 145, 75, 195, 248, 202, 174, 77, 145, 75, 204, 185, 202, 174,
77, 145, 30, 232, 247, 145, 30, 1, 221, 151, 145, 30, 1, 202, 84, 145,
30, 1, 221, 144, 145, 30, 1, 214, 45, 145, 30, 1, 214, 43, 145, 30, 1,
214, 42, 145, 30, 1, 199, 103, 145, 30, 1, 202, 73, 145, 30, 1, 207, 133,
145, 30, 1, 207, 128, 145, 30, 1, 207, 125, 145, 30, 1, 207, 118, 145,
30, 1, 207, 113, 145, 30, 1, 207, 108, 145, 30, 1, 207, 119, 145, 30, 1,
207, 131, 145, 30, 1, 216, 153, 145, 30, 1, 210, 36, 145, 30, 1, 202, 81,
145, 30, 1, 210, 25, 145, 30, 1, 203, 64, 145, 30, 1, 202, 78, 145, 30,
1, 223, 247, 145, 30, 1, 242, 144, 145, 30, 1, 202, 88, 145, 30, 1, 242,
211, 145, 30, 1, 221, 225, 145, 30, 1, 199, 198, 145, 30, 1, 210, 75,
145, 30, 1, 229, 162, 145, 30, 1, 64, 145, 30, 1, 251, 108, 145, 30, 1,
168, 145, 30, 1, 193, 118, 145, 30, 1, 234, 50, 145, 30, 1, 71, 145, 30,
1, 193, 56, 145, 30, 1, 193, 69, 145, 30, 1, 74, 145, 30, 1, 194, 169,
145, 30, 1, 194, 160, 145, 30, 1, 212, 0, 145, 30, 1, 193, 1, 145, 30, 1,
68, 145, 30, 1, 194, 93, 145, 30, 1, 194, 111, 145, 30, 1, 194, 72, 145,
30, 1, 192, 214, 145, 30, 1, 233, 230, 145, 30, 1, 193, 22, 145, 30, 1,
70, 183, 246, 140, 57, 183, 209, 143, 57, 183, 213, 111, 57, 183, 217,
214, 183, 247, 136, 161, 183, 193, 60, 57, 183, 194, 19, 57, 145, 232,
131, 152, 196, 105, 145, 114, 54, 145, 197, 30, 54, 145, 94, 54, 145,
235, 92, 54, 145, 60, 202, 106, 145, 62, 242, 130, 223, 134, 250, 193,
250, 219, 223, 134, 250, 193, 204, 165, 223, 134, 250, 193, 200, 15, 212,
19, 207, 193, 246, 99, 207, 193, 246, 99, 32, 76, 5, 249, 210, 64, 32,
76, 5, 249, 179, 71, 32, 76, 5, 249, 188, 70, 32, 76, 5, 249, 156, 74,
32, 76, 5, 249, 206, 68, 32, 76, 5, 249, 225, 238, 0, 32, 76, 5, 249,
172, 237, 116, 32, 76, 5, 249, 212, 237, 16, 32, 76, 5, 249, 202, 236,
146, 32, 76, 5, 249, 166, 235, 62, 32, 76, 5, 249, 160, 223, 62, 32, 76,
5, 249, 171, 223, 41, 32, 76, 5, 249, 181, 222, 233, 32, 76, 5, 249, 152,
222, 214, 32, 76, 5, 249, 140, 160, 32, 76, 5, 249, 173, 222, 57, 32, 76,
5, 249, 150, 221, 204, 32, 76, 5, 249, 147, 221, 113, 32, 76, 5, 249,
136, 221, 33, 32, 76, 5, 249, 137, 172, 32, 76, 5, 249, 203, 217, 48, 32,
76, 5, 249, 144, 216, 175, 32, 76, 5, 249, 201, 216, 91, 32, 76, 5, 249,
193, 215, 241, 32, 76, 5, 249, 214, 181, 32, 76, 5, 249, 192, 214, 214,
32, 76, 5, 249, 186, 214, 60, 32, 76, 5, 249, 165, 213, 142, 32, 76, 5,
249, 162, 213, 22, 32, 76, 5, 249, 221, 166, 32, 76, 5, 249, 145, 210,
181, 32, 76, 5, 249, 178, 210, 51, 32, 76, 5, 249, 205, 209, 198, 32, 76,
5, 249, 167, 209, 51, 32, 76, 5, 249, 200, 208, 239, 32, 76, 5, 249, 139,
208, 219, 32, 76, 5, 249, 195, 208, 201, 32, 76, 5, 249, 184, 208, 189,
32, 76, 5, 249, 157, 167, 32, 76, 5, 249, 189, 208, 7, 32, 76, 5, 249,
164, 207, 151, 32, 76, 5, 249, 223, 207, 55, 32, 76, 5, 249, 190, 206,
218, 32, 76, 5, 249, 185, 188, 32, 76, 5, 249, 208, 205, 223, 32, 76, 5,
249, 176, 203, 125, 32, 76, 5, 249, 204, 202, 212, 32, 76, 5, 249, 159,
201, 184, 32, 76, 5, 249, 158, 189, 32, 76, 5, 249, 219, 200, 79, 32, 76,
5, 249, 180, 199, 128, 32, 76, 5, 249, 217, 155, 32, 76, 5, 249, 148,
198, 45, 32, 76, 5, 249, 163, 194, 169, 32, 76, 5, 249, 142, 194, 111,
32, 76, 5, 249, 177, 194, 72, 32, 76, 5, 249, 175, 194, 36, 32, 76, 5,
249, 199, 192, 112, 32, 76, 5, 249, 143, 192, 85, 32, 76, 5, 249, 196,
192, 8, 32, 76, 5, 249, 191, 254, 42, 32, 76, 5, 249, 174, 253, 186, 32,
76, 5, 249, 133, 250, 8, 32, 76, 5, 249, 146, 235, 27, 32, 76, 5, 249,
129, 235, 26, 32, 76, 5, 249, 169, 212, 210, 32, 76, 5, 249, 187, 209,
49, 32, 76, 5, 249, 155, 209, 53, 32, 76, 5, 249, 141, 208, 70, 32, 76,
5, 249, 183, 208, 69, 32, 76, 5, 249, 149, 207, 48, 32, 76, 5, 249, 151,
200, 175, 32, 76, 5, 249, 131, 197, 248, 32, 76, 5, 249, 128, 104, 32,
76, 16, 249, 198, 32, 76, 16, 249, 197, 32, 76, 16, 249, 194, 32, 76, 16,
249, 182, 32, 76, 16, 249, 170, 32, 76, 16, 249, 168, 32, 76, 16, 249,
161, 32, 76, 16, 249, 154, 32, 76, 16, 249, 153, 32, 76, 16, 249, 138,
32, 76, 16, 249, 135, 32, 76, 16, 249, 134, 32, 76, 16, 249, 132, 32, 76,
16, 249, 130, 32, 76, 153, 249, 127, 217, 160, 32, 76, 153, 249, 126,
194, 23, 32, 76, 153, 249, 125, 237, 98, 32, 76, 153, 249, 124, 234, 27,
32, 76, 153, 249, 123, 217, 127, 32, 76, 153, 249, 122, 202, 27, 32, 76,
153, 249, 121, 233, 211, 32, 76, 153, 249, 120, 208, 34, 32, 76, 153,
249, 119, 204, 11, 32, 76, 153, 249, 118, 229, 247, 32, 76, 153, 249,
117, 202, 168, 32, 76, 153, 249, 116, 247, 218, 32, 76, 153, 249, 115,
238, 205, 32, 76, 153, 249, 114, 247, 108, 32, 76, 153, 249, 113, 194,
81, 32, 76, 153, 249, 112, 248, 190, 32, 76, 153, 249, 111, 211, 221, 32,
76, 153, 249, 110, 202, 138, 32, 76, 153, 249, 109, 238, 103, 32, 76,
216, 45, 249, 108, 222, 108, 32, 76, 216, 45, 249, 107, 222, 119, 32, 76,
153, 249, 106, 211, 236, 32, 76, 153, 249, 105, 194, 48, 32, 76, 153,
249, 104, 32, 76, 216, 45, 249, 103, 250, 105, 32, 76, 216, 45, 249, 102,
216, 253, 32, 76, 153, 249, 101, 247, 135, 32, 76, 153, 249, 100, 230,
245, 32, 76, 153, 249, 99, 32, 76, 153, 249, 98, 194, 14, 32, 76, 153,
249, 97, 32, 76, 153, 249, 96, 32, 76, 153, 249, 95, 228, 208, 32, 76,
153, 249, 94, 32, 76, 153, 249, 93, 32, 76, 153, 249, 92, 32, 76, 216,
45, 249, 90, 198, 7, 32, 76, 153, 249, 89, 32, 76, 153, 249, 88, 32, 76,
153, 249, 87, 242, 78, 32, 76, 153, 249, 86, 32, 76, 153, 249, 85, 32,
76, 153, 249, 84, 231, 189, 32, 76, 153, 249, 83, 250, 90, 32, 76, 153,
249, 82, 32, 76, 153, 249, 81, 32, 76, 153, 249, 80, 32, 76, 153, 249,
79, 32, 76, 153, 249, 78, 32, 76, 153, 249, 77, 32, 76, 153, 249, 76, 32,
76, 153, 249, 75, 32, 76, 153, 249, 74, 32, 76, 153, 249, 73, 216, 37,
32, 76, 153, 249, 72, 32, 76, 153, 249, 71, 198, 195, 32, 76, 153, 249,
70, 32, 76, 153, 249, 69, 32, 76, 153, 249, 68, 32, 76, 153, 249, 67, 32,
76, 153, 249, 66, 32, 76, 153, 249, 65, 32, 76, 153, 249, 64, 32, 76,
153, 249, 63, 32, 76, 153, 249, 62, 32, 76, 153, 249, 61, 32, 76, 153,
249, 60, 32, 76, 153, 249, 59, 229, 210, 32, 76, 153, 249, 38, 232, 145,
32, 76, 153, 249, 35, 248, 165, 32, 76, 153, 249, 30, 202, 146, 32, 76,
153, 249, 29, 54, 32, 76, 153, 249, 28, 32, 76, 153, 249, 27, 201, 60,
32, 76, 153, 249, 26, 32, 76, 153, 249, 25, 32, 76, 153, 249, 24, 194,
76, 242, 254, 32, 76, 153, 249, 23, 242, 254, 32, 76, 153, 249, 22, 242,
255, 232, 104, 32, 76, 153, 249, 21, 194, 79, 32, 76, 153, 249, 20, 32,
76, 153, 249, 19, 32, 76, 216, 45, 249, 18, 236, 207, 32, 76, 153, 249,
17, 32, 76, 153, 249, 16, 32, 76, 153, 249, 14, 32, 76, 153, 249, 13, 32,
76, 153, 249, 12, 32, 76, 153, 249, 11, 237, 188, 32, 76, 153, 249, 10,
32, 76, 153, 249, 9, 32, 76, 153, 249, 8, 32, 76, 153, 249, 7, 32, 76,
153, 249, 6, 32, 76, 153, 196, 52, 249, 91, 32, 76, 153, 196, 52, 249,
58, 32, 76, 153, 196, 52, 249, 57, 32, 76, 153, 196, 52, 249, 56, 32, 76,
153, 196, 52, 249, 55, 32, 76, 153, 196, 52, 249, 54, 32, 76, 153, 196,
52, 249, 53, 32, 76, 153, 196, 52, 249, 52, 32, 76, 153, 196, 52, 249,
51, 32, 76, 153, 196, 52, 249, 50, 32, 76, 153, 196, 52, 249, 49, 32, 76,
153, 196, 52, 249, 48, 32, 76, 153, 196, 52, 249, 47, 32, 76, 153, 196,
52, 249, 46, 32, 76, 153, 196, 52, 249, 45, 32, 76, 153, 196, 52, 249,
44, 32, 76, 153, 196, 52, 249, 43, 32, 76, 153, 196, 52, 249, 42, 32, 76,
153, 196, 52, 249, 41, 32, 76, 153, 196, 52, 249, 40, 32, 76, 153, 196,
52, 249, 39, 32, 76, 153, 196, 52, 249, 37, 32, 76, 153, 196, 52, 249,
36, 32, 76, 153, 196, 52, 249, 34, 32, 76, 153, 196, 52, 249, 33, 32, 76,
153, 196, 52, 249, 32, 32, 76, 153, 196, 52, 249, 31, 32, 76, 153, 196,
52, 249, 15, 32, 76, 153, 196, 52, 249, 5, 251, 101, 194, 11, 204, 166,
219, 175, 251, 101, 194, 11, 204, 166, 236, 114, 251, 101, 242, 244, 77,
251, 101, 31, 101, 251, 101, 31, 104, 251, 101, 31, 133, 251, 101, 31,
134, 251, 101, 31, 151, 251, 101, 31, 170, 251, 101, 31, 179, 251, 101,
31, 174, 251, 101, 31, 182, 251, 101, 31, 200, 30, 251, 101, 31, 197,
239, 251, 101, 31, 199, 184, 251, 101, 31, 232, 126, 251, 101, 31, 233,
3, 251, 101, 31, 203, 25, 251, 101, 31, 204, 140, 251, 101, 31, 234, 137,
251, 101, 31, 214, 11, 251, 101, 31, 90, 228, 162, 251, 101, 31, 103,
228, 162, 251, 101, 31, 112, 228, 162, 251, 101, 31, 232, 119, 228, 162,
251, 101, 31, 232, 214, 228, 162, 251, 101, 31, 203, 41, 228, 162, 251,
101, 31, 204, 146, 228, 162, 251, 101, 31, 234, 148, 228, 162, 251, 101,
31, 214, 16, 228, 162, 251, 101, 31, 90, 180, 251, 101, 31, 103, 180,
251, 101, 31, 112, 180, 251, 101, 31, 232, 119, 180, 251, 101, 31, 232,
214, 180, 251, 101, 31, 203, 41, 180, 251, 101, 31, 204, 146, 180, 251,
101, 31, 234, 148, 180, 251, 101, 31, 214, 16, 180, 251, 101, 31, 200,
31, 180, 251, 101, 31, 197, 240, 180, 251, 101, 31, 199, 185, 180, 251,
101, 31, 232, 127, 180, 251, 101, 31, 233, 4, 180, 251, 101, 31, 203, 26,
180, 251, 101, 31, 204, 141, 180, 251, 101, 31, 234, 138, 180, 251, 101,
31, 214, 12, 180, 251, 101, 194, 96, 248, 181, 197, 54, 251, 101, 194,
96, 232, 226, 201, 149, 251, 101, 194, 96, 205, 212, 201, 149, 251, 101,
194, 96, 199, 192, 201, 149, 251, 101, 194, 96, 232, 112, 201, 149, 251,
101, 235, 65, 217, 44, 232, 226, 201, 149, 251, 101, 219, 156, 217, 44,
232, 226, 201, 149, 251, 101, 217, 44, 205, 212, 201, 149, 251, 101, 217,
44, 199, 192, 201, 149, 33, 251, 133, 250, 10, 90, 208, 167, 33, 251,
133, 250, 10, 90, 230, 78, 33, 251, 133, 250, 10, 90, 235, 88, 33, 251,
133, 250, 10, 151, 33, 251, 133, 250, 10, 233, 3, 33, 251, 133, 250, 10,
232, 214, 228, 162, 33, 251, 133, 250, 10, 232, 214, 180, 33, 251, 133,
250, 10, 233, 4, 180, 33, 251, 133, 250, 10, 232, 214, 200, 135, 33, 251,
133, 250, 10, 200, 31, 200, 135, 33, 251, 133, 250, 10, 233, 4, 200, 135,
33, 251, 133, 250, 10, 90, 228, 163, 200, 135, 33, 251, 133, 250, 10,
232, 214, 228, 163, 200, 135, 33, 251, 133, 250, 10, 90, 199, 165, 200,
135, 33, 251, 133, 250, 10, 232, 214, 199, 165, 200, 135, 33, 251, 133,
250, 10, 232, 214, 202, 11, 33, 251, 133, 250, 10, 200, 31, 202, 11, 33,
251, 133, 250, 10, 233, 4, 202, 11, 33, 251, 133, 250, 10, 90, 228, 163,
202, 11, 33, 251, 133, 250, 10, 232, 214, 228, 163, 202, 11, 33, 251,
133, 250, 10, 90, 199, 165, 202, 11, 33, 251, 133, 250, 10, 200, 31, 199,
165, 202, 11, 33, 251, 133, 250, 10, 233, 4, 199, 165, 202, 11, 33, 251,
133, 250, 10, 200, 31, 216, 94, 33, 251, 133, 229, 204, 90, 209, 217, 33,
251, 133, 199, 208, 101, 33, 251, 133, 229, 200, 101, 33, 251, 133, 234,
36, 104, 33, 251, 133, 199, 208, 104, 33, 251, 133, 238, 100, 103, 235,
87, 33, 251, 133, 234, 36, 103, 235, 87, 33, 251, 133, 198, 161, 151, 33,
251, 133, 198, 161, 200, 30, 33, 251, 133, 198, 161, 200, 31, 250, 249,
20, 33, 251, 133, 229, 200, 200, 30, 33, 251, 133, 216, 242, 200, 30, 33,
251, 133, 199, 208, 200, 30, 33, 251, 133, 199, 208, 199, 184, 33, 251,
133, 198, 161, 233, 3, 33, 251, 133, 198, 161, 233, 4, 250, 249, 20, 33,
251, 133, 229, 200, 233, 3, 33, 251, 133, 199, 208, 233, 3, 33, 251, 133,
199, 208, 90, 228, 162, 33, 251, 133, 199, 208, 112, 228, 162, 33, 251,
133, 234, 36, 232, 214, 228, 162, 33, 251, 133, 198, 161, 232, 214, 228,
162, 33, 251, 133, 199, 208, 232, 214, 228, 162, 33, 251, 133, 246, 197,
232, 214, 228, 162, 33, 251, 133, 215, 36, 232, 214, 228, 162, 33, 251,
133, 199, 208, 90, 180, 33, 251, 133, 199, 208, 232, 214, 180, 33, 251,
133, 237, 79, 232, 214, 216, 94, 33, 251, 133, 201, 226, 233, 4, 216, 94,
33, 90, 138, 57, 33, 90, 138, 3, 250, 249, 20, 33, 103, 199, 189, 57, 33,
112, 208, 166, 57, 33, 193, 67, 57, 33, 200, 136, 57, 33, 235, 89, 57,
33, 212, 16, 57, 33, 103, 212, 15, 57, 33, 112, 212, 15, 57, 33, 232,
119, 212, 15, 57, 33, 232, 214, 212, 15, 57, 33, 216, 236, 57, 33, 220,
210, 248, 181, 57, 33, 219, 149, 57, 33, 211, 127, 57, 33, 193, 200, 57,
33, 250, 68, 57, 33, 250, 85, 57, 33, 230, 220, 57, 33, 198, 121, 248,
181, 57, 33, 192, 77, 57, 33, 90, 208, 168, 57, 33, 203, 66, 57, 33, 223,
171, 57, 213, 131, 57, 207, 30, 204, 136, 57, 207, 30, 197, 70, 57, 207,
30, 204, 172, 57, 207, 30, 204, 74, 57, 207, 30, 236, 222, 204, 74, 57,
207, 30, 203, 90, 57, 207, 30, 237, 75, 57, 207, 30, 208, 151, 57, 207,
30, 204, 153, 57, 207, 30, 235, 41, 57, 207, 30, 250, 62, 57, 207, 30,
246, 133, 57, 250, 55, 109, 33, 16, 200, 101, 207, 153, 210, 89, 236,
199, 3, 210, 170, 210, 89, 236, 199, 3, 209, 209, 229, 245, 210, 89, 236,
199, 3, 200, 104, 229, 245, 210, 89, 236, 199, 3, 246, 220, 210, 89, 236,
199, 3, 242, 206, 210, 89, 236, 199, 3, 194, 23, 210, 89, 236, 199, 3,
229, 210, 210, 89, 236, 199, 3, 231, 181, 210, 89, 236, 199, 3, 199, 119,
210, 89, 236, 199, 3, 54, 210, 89, 236, 199, 3, 247, 180, 210, 89, 236,
199, 3, 203, 233, 210, 89, 236, 199, 3, 242, 71, 210, 89, 236, 199, 3,
217, 159, 210, 89, 236, 199, 3, 217, 97, 210, 89, 236, 199, 3, 206, 6,
210, 89, 236, 199, 3, 219, 204, 210, 89, 236, 199, 3, 247, 201, 210, 89,
236, 199, 3, 246, 204, 209, 225, 210, 89, 236, 199, 3, 236, 128, 210, 89,
236, 199, 3, 242, 44, 210, 89, 236, 199, 3, 202, 247, 210, 89, 236, 199,
3, 242, 45, 210, 89, 236, 199, 3, 248, 105, 210, 89, 236, 199, 3, 203,
220, 210, 89, 236, 199, 3, 228, 208, 210, 89, 236, 199, 3, 229, 168, 210,
89, 236, 199, 3, 247, 103, 220, 16, 210, 89, 236, 199, 3, 246, 193, 210,
89, 236, 199, 3, 208, 34, 210, 89, 236, 199, 3, 234, 196, 210, 89, 236,
199, 3, 235, 97, 210, 89, 236, 199, 3, 198, 23, 210, 89, 236, 199, 3,
248, 108, 210, 89, 236, 199, 3, 209, 226, 198, 195, 210, 89, 236, 199, 3,
196, 18, 210, 89, 236, 199, 3, 210, 248, 210, 89, 236, 199, 3, 207, 19,
210, 89, 236, 199, 3, 219, 188, 210, 89, 236, 199, 3, 211, 104, 248, 252,
210, 89, 236, 199, 3, 232, 171, 210, 89, 236, 199, 3, 230, 212, 210, 89,
236, 199, 3, 201, 227, 210, 89, 236, 199, 3, 2, 249, 237, 210, 89, 236,
199, 3, 194, 121, 248, 203, 210, 89, 236, 199, 3, 38, 212, 18, 111, 218,
249, 1, 64, 218, 249, 1, 71, 218, 249, 1, 249, 226, 218, 249, 1, 248, 55,
218, 249, 1, 232, 44, 218, 249, 1, 238, 95, 218, 249, 1, 70, 218, 249, 1,
194, 202, 218, 249, 1, 192, 155, 218, 249, 1, 199, 242, 218, 249, 1, 223,
65, 218, 249, 1, 222, 184, 218, 249, 1, 208, 247, 218, 249, 1, 165, 218,
249, 1, 218, 236, 218, 249, 1, 215, 151, 218, 249, 1, 216, 96, 218, 249,
1, 213, 179, 218, 249, 1, 68, 218, 249, 1, 211, 93, 218, 249, 1, 221,
140, 218, 249, 1, 150, 218, 249, 1, 206, 158, 218, 249, 1, 200, 228, 218,
249, 1, 198, 86, 218, 249, 1, 250, 224, 218, 249, 1, 234, 88, 218, 249,
1, 230, 124, 218, 249, 1, 193, 223, 246, 210, 1, 64, 246, 210, 1, 211,
79, 246, 210, 1, 238, 95, 246, 210, 1, 165, 246, 210, 1, 196, 249, 246,
210, 1, 150, 246, 210, 1, 220, 46, 246, 210, 1, 254, 42, 246, 210, 1,
208, 247, 246, 210, 1, 249, 226, 246, 210, 1, 218, 236, 246, 210, 1, 74,
246, 210, 1, 238, 2, 246, 210, 1, 200, 228, 246, 210, 1, 204, 66, 246,
210, 1, 204, 65, 246, 210, 1, 206, 158, 246, 210, 1, 247, 51, 246, 210,
1, 68, 246, 210, 1, 213, 179, 246, 210, 1, 193, 223, 246, 210, 1, 215,
151, 246, 210, 1, 198, 85, 246, 210, 1, 211, 93, 246, 210, 1, 202, 95,
246, 210, 1, 70, 246, 210, 1, 71, 246, 210, 1, 196, 246, 246, 210, 1,
222, 184, 246, 210, 1, 222, 175, 246, 210, 1, 215, 1, 246, 210, 1, 196,
251, 246, 210, 1, 232, 44, 246, 210, 1, 231, 235, 246, 210, 1, 202, 35,
246, 210, 1, 202, 34, 246, 210, 1, 214, 167, 246, 210, 1, 223, 224, 246,
210, 1, 247, 50, 246, 210, 1, 198, 86, 246, 210, 1, 196, 248, 246, 210,
1, 207, 4, 246, 210, 1, 217, 87, 246, 210, 1, 217, 86, 246, 210, 1, 217,
85, 246, 210, 1, 217, 84, 246, 210, 1, 220, 45, 246, 210, 1, 234, 200,
246, 210, 1, 196, 247, 92, 234, 39, 199, 164, 77, 92, 234, 39, 17, 101,
92, 234, 39, 17, 104, 92, 234, 39, 17, 133, 92, 234, 39, 17, 134, 92,
234, 39, 17, 151, 92, 234, 39, 17, 170, 92, 234, 39, 17, 179, 92, 234,
39, 17, 174, 92, 234, 39, 17, 182, 92, 234, 39, 31, 200, 30, 92, 234, 39,
31, 197, 239, 92, 234, 39, 31, 199, 184, 92, 234, 39, 31, 232, 126, 92,
234, 39, 31, 233, 3, 92, 234, 39, 31, 203, 25, 92, 234, 39, 31, 204, 140,
92, 234, 39, 31, 234, 137, 92, 234, 39, 31, 214, 11, 92, 234, 39, 31, 90,
228, 162, 92, 234, 39, 31, 103, 228, 162, 92, 234, 39, 31, 112, 228, 162,
92, 234, 39, 31, 232, 119, 228, 162, 92, 234, 39, 31, 232, 214, 228, 162,
92, 234, 39, 31, 203, 41, 228, 162, 92, 234, 39, 31, 204, 146, 228, 162,
92, 234, 39, 31, 234, 148, 228, 162, 92, 234, 39, 31, 214, 16, 228, 162,
40, 43, 1, 64, 40, 43, 1, 248, 123, 40, 43, 1, 222, 57, 40, 43, 1, 237,
116, 40, 43, 1, 71, 40, 43, 1, 196, 123, 40, 43, 1, 192, 85, 40, 43, 1,
229, 255, 40, 43, 1, 199, 224, 40, 43, 1, 70, 40, 43, 1, 160, 40, 43, 1,
234, 124, 40, 43, 1, 234, 99, 40, 43, 1, 234, 88, 40, 43, 1, 233, 255,
40, 43, 1, 74, 40, 43, 1, 210, 181, 40, 43, 1, 204, 12, 40, 43, 1, 221,
33, 40, 43, 1, 234, 21, 40, 43, 1, 234, 9, 40, 43, 1, 200, 79, 40, 43, 1,
68, 40, 43, 1, 234, 127, 40, 43, 1, 210, 80, 40, 43, 1, 221, 234, 40, 43,
1, 234, 164, 40, 43, 1, 234, 11, 40, 43, 1, 242, 245, 40, 43, 1, 223,
224, 40, 43, 1, 196, 251, 40, 43, 1, 233, 248, 40, 43, 212, 234, 101, 40,
43, 212, 234, 151, 40, 43, 212, 234, 200, 30, 40, 43, 212, 234, 233, 3,
40, 43, 1, 193, 69, 40, 43, 1, 213, 115, 198, 112, 40, 43, 1, 202, 169,
198, 112, 230, 230, 1, 251, 66, 230, 230, 1, 248, 223, 230, 230, 1, 231,
43, 230, 230, 1, 237, 237, 230, 230, 1, 251, 61, 230, 230, 1, 208, 230,
230, 230, 1, 223, 77, 230, 230, 1, 230, 91, 230, 230, 1, 199, 178, 230,
230, 1, 234, 135, 230, 230, 1, 220, 248, 230, 230, 1, 220, 159, 230, 230,
1, 217, 150, 230, 230, 1, 215, 38, 230, 230, 1, 223, 33, 230, 230, 1,
197, 13, 230, 230, 1, 211, 52, 230, 230, 1, 214, 11, 230, 230, 1, 208,
47, 230, 230, 1, 206, 10, 230, 230, 1, 200, 46, 230, 230, 1, 194, 46,
230, 230, 1, 233, 77, 230, 230, 1, 223, 228, 230, 230, 1, 228, 145, 230,
230, 1, 211, 139, 230, 230, 1, 214, 16, 228, 162, 40, 210, 124, 1, 250,
224, 40, 210, 124, 1, 247, 89, 40, 210, 124, 1, 231, 217, 40, 210, 124,
1, 236, 132, 40, 210, 124, 1, 71, 40, 210, 124, 1, 192, 53, 40, 210, 124,
1, 235, 9, 40, 210, 124, 1, 192, 93, 40, 210, 124, 1, 235, 7, 40, 210,
124, 1, 70, 40, 210, 124, 1, 221, 97, 40, 210, 124, 1, 220, 12, 40, 210,
124, 1, 217, 3, 40, 210, 124, 1, 214, 194, 40, 210, 124, 1, 195, 235, 40,
210, 124, 1, 210, 167, 40, 210, 124, 1, 207, 220, 40, 210, 124, 1, 203,
97, 40, 210, 124, 1, 200, 149, 40, 210, 124, 1, 68, 40, 210, 124, 1, 242,
226, 40, 210, 124, 1, 203, 202, 40, 210, 124, 1, 204, 14, 40, 210, 124,
1, 192, 216, 40, 210, 124, 1, 193, 47, 40, 210, 124, 1, 74, 40, 210, 124,
1, 211, 194, 40, 210, 124, 1, 234, 164, 40, 210, 124, 1, 144, 40, 210,
124, 1, 198, 96, 40, 210, 124, 1, 196, 110, 40, 210, 124, 1, 193, 51, 40,
210, 124, 1, 193, 49, 40, 210, 124, 1, 193, 84, 40, 210, 124, 1, 223,
251, 40, 210, 124, 1, 192, 214, 40, 210, 124, 1, 168, 40, 210, 124, 1,
228, 58, 38, 40, 210, 124, 1, 250, 224, 38, 40, 210, 124, 1, 236, 132,
38, 40, 210, 124, 1, 192, 93, 38, 40, 210, 124, 1, 214, 194, 38, 40, 210,
124, 1, 203, 97, 197, 98, 1, 251, 0, 197, 98, 1, 248, 63, 197, 98, 1,
231, 205, 197, 98, 1, 221, 250, 197, 98, 1, 237, 76, 197, 98, 1, 229, 43,
197, 98, 1, 194, 36, 197, 98, 1, 192, 75, 197, 98, 1, 228, 200, 197, 98,
1, 200, 8, 197, 98, 1, 192, 239, 197, 98, 1, 222, 139, 197, 98, 1, 203,
224, 197, 98, 1, 220, 90, 197, 98, 1, 217, 12, 197, 98, 1, 237, 36, 197,
98, 1, 212, 230, 197, 98, 1, 191, 252, 197, 98, 1, 206, 45, 197, 98, 1,
251, 57, 197, 98, 1, 209, 51, 197, 98, 1, 206, 85, 197, 98, 1, 208, 182,
197, 98, 1, 208, 25, 197, 98, 1, 199, 228, 197, 98, 1, 231, 79, 197, 98,
1, 155, 197, 98, 1, 70, 197, 98, 1, 68, 197, 98, 1, 202, 46, 197, 98,
194, 11, 236, 177, 40, 210, 118, 3, 64, 40, 210, 118, 3, 70, 40, 210,
118, 3, 68, 40, 210, 118, 3, 160, 40, 210, 118, 3, 221, 33, 40, 210, 118,
3, 231, 233, 40, 210, 118, 3, 230, 186, 40, 210, 118, 3, 193, 209, 40,
210, 118, 3, 247, 19, 40, 210, 118, 3, 223, 62, 40, 210, 118, 3, 223, 20,
40, 210, 118, 3, 189, 40, 210, 118, 3, 198, 45, 40, 210, 118, 3, 238, 0,
40, 210, 118, 3, 237, 16, 40, 210, 118, 3, 235, 62, 40, 210, 118, 3, 199,
240, 40, 210, 118, 3, 166, 40, 210, 118, 3, 249, 3, 40, 210, 118, 3, 233,
97, 40, 210, 118, 3, 181, 40, 210, 118, 3, 213, 22, 40, 210, 118, 3, 172,
40, 210, 118, 3, 216, 175, 40, 210, 118, 3, 215, 241, 40, 210, 118, 3,
168, 40, 210, 118, 3, 196, 157, 40, 210, 118, 3, 196, 39, 40, 210, 118,
3, 167, 40, 210, 118, 3, 206, 218, 40, 210, 118, 3, 177, 40, 210, 118, 3,
188, 40, 210, 118, 3, 192, 112, 40, 210, 118, 3, 204, 64, 40, 210, 118,
3, 202, 92, 40, 210, 118, 3, 144, 40, 210, 118, 3, 250, 2, 40, 210, 118,
3, 250, 1, 40, 210, 118, 3, 250, 0, 40, 210, 118, 3, 193, 178, 40, 210,
118, 3, 237, 233, 40, 210, 118, 3, 237, 232, 40, 210, 118, 3, 248, 234,
40, 210, 118, 3, 247, 71, 40, 210, 118, 194, 11, 236, 177, 40, 210, 118,
31, 101, 40, 210, 118, 31, 104, 40, 210, 118, 31, 200, 30, 40, 210, 118,
31, 197, 239, 40, 210, 118, 31, 228, 162, 237, 56, 6, 1, 184, 70, 237,
56, 6, 1, 184, 71, 237, 56, 6, 1, 184, 64, 237, 56, 6, 1, 184, 251, 72,
237, 56, 6, 1, 184, 74, 237, 56, 6, 1, 184, 211, 194, 237, 56, 6, 1, 203,
195, 70, 237, 56, 6, 1, 203, 195, 71, 237, 56, 6, 1, 203, 195, 64, 237,
56, 6, 1, 203, 195, 251, 72, 237, 56, 6, 1, 203, 195, 74, 237, 56, 6, 1,
203, 195, 211, 194, 237, 56, 6, 1, 249, 236, 237, 56, 6, 1, 211, 106,
237, 56, 6, 1, 193, 244, 237, 56, 6, 1, 193, 66, 237, 56, 6, 1, 230, 124,
237, 56, 6, 1, 210, 168, 237, 56, 6, 1, 248, 108, 237, 56, 6, 1, 200, 56,
237, 56, 6, 1, 237, 101, 237, 56, 6, 1, 242, 241, 237, 56, 6, 1, 223, 39,
237, 56, 6, 1, 222, 64, 237, 56, 6, 1, 231, 179, 237, 56, 6, 1, 234, 164,
237, 56, 6, 1, 196, 118, 237, 56, 6, 1, 233, 235, 237, 56, 6, 1, 199,
222, 237, 56, 6, 1, 234, 9, 237, 56, 6, 1, 192, 82, 237, 56, 6, 1, 233,
255, 237, 56, 6, 1, 192, 61, 237, 56, 6, 1, 234, 21, 237, 56, 6, 1, 234,
124, 237, 56, 6, 1, 234, 99, 237, 56, 6, 1, 234, 88, 237, 56, 6, 1, 234,
73, 237, 56, 6, 1, 211, 238, 237, 56, 6, 1, 233, 212, 237, 56, 2, 1, 184,
70, 237, 56, 2, 1, 184, 71, 237, 56, 2, 1, 184, 64, 237, 56, 2, 1, 184,
251, 72, 237, 56, 2, 1, 184, 74, 237, 56, 2, 1, 184, 211, 194, 237, 56,
2, 1, 203, 195, 70, 237, 56, 2, 1, 203, 195, 71, 237, 56, 2, 1, 203, 195,
64, 237, 56, 2, 1, 203, 195, 251, 72, 237, 56, 2, 1, 203, 195, 74, 237,
56, 2, 1, 203, 195, 211, 194, 237, 56, 2, 1, 249, 236, 237, 56, 2, 1,
211, 106, 237, 56, 2, 1, 193, 244, 237, 56, 2, 1, 193, 66, 237, 56, 2, 1,
230, 124, 237, 56, 2, 1, 210, 168, 237, 56, 2, 1, 248, 108, 237, 56, 2,
1, 200, 56, 237, 56, 2, 1, 237, 101, 237, 56, 2, 1, 242, 241, 237, 56, 2,
1, 223, 39, 237, 56, 2, 1, 222, 64, 237, 56, 2, 1, 231, 179, 237, 56, 2,
1, 234, 164, 237, 56, 2, 1, 196, 118, 237, 56, 2, 1, 233, 235, 237, 56,
2, 1, 199, 222, 237, 56, 2, 1, 234, 9, 237, 56, 2, 1, 192, 82, 237, 56,
2, 1, 233, 255, 237, 56, 2, 1, 192, 61, 237, 56, 2, 1, 234, 21, 237, 56,
2, 1, 234, 124, 237, 56, 2, 1, 234, 99, 237, 56, 2, 1, 234, 88, 237, 56,
2, 1, 234, 73, 237, 56, 2, 1, 211, 238, 237, 56, 2, 1, 233, 212, 204, 19,
1, 210, 165, 204, 19, 1, 198, 235, 204, 19, 1, 221, 192, 204, 19, 1, 233,
40, 204, 19, 1, 199, 197, 204, 19, 1, 202, 212, 204, 19, 1, 201, 97, 204,
19, 1, 242, 160, 204, 19, 1, 193, 68, 204, 19, 1, 228, 159, 204, 19, 1,
248, 40, 204, 19, 1, 237, 115, 204, 19, 1, 231, 219, 204, 19, 1, 195,
230, 204, 19, 1, 199, 203, 204, 19, 1, 192, 5, 204, 19, 1, 217, 43, 204,
19, 1, 222, 212, 204, 19, 1, 194, 27, 204, 19, 1, 230, 101, 204, 19, 1,
219, 89, 204, 19, 1, 216, 121, 204, 19, 1, 223, 231, 204, 19, 1, 234,
162, 204, 19, 1, 250, 53, 204, 19, 1, 251, 113, 204, 19, 1, 211, 211,
204, 19, 1, 194, 14, 204, 19, 1, 211, 125, 204, 19, 1, 251, 72, 204, 19,
1, 207, 46, 204, 19, 1, 212, 230, 204, 19, 1, 234, 182, 204, 19, 1, 251,
77, 204, 19, 1, 228, 49, 204, 19, 1, 197, 41, 204, 19, 1, 212, 24, 204,
19, 1, 211, 186, 204, 19, 1, 211, 236, 204, 19, 1, 249, 239, 204, 19, 1,
250, 107, 204, 19, 1, 211, 163, 204, 19, 1, 251, 52, 204, 19, 1, 234, 13,
204, 19, 1, 250, 82, 204, 19, 1, 234, 193, 204, 19, 1, 228, 57, 204, 19,
1, 193, 30, 211, 141, 1, 251, 26, 211, 141, 1, 249, 3, 211, 141, 1, 189,
211, 141, 1, 223, 62, 211, 141, 1, 193, 209, 211, 141, 1, 221, 250, 211,
141, 1, 237, 100, 211, 141, 1, 167, 211, 141, 1, 188, 211, 141, 1, 203,
230, 211, 141, 1, 237, 40, 211, 141, 1, 246, 183, 211, 141, 1, 231, 233,
211, 141, 1, 233, 97, 211, 141, 1, 208, 237, 211, 141, 1, 222, 155, 211,
141, 1, 220, 180, 211, 141, 1, 216, 135, 211, 141, 1, 212, 214, 211, 141,
1, 194, 119, 211, 141, 1, 144, 211, 141, 1, 168, 211, 141, 1, 64, 211,
141, 1, 71, 211, 141, 1, 70, 211, 141, 1, 74, 211, 141, 1, 68, 211, 141,
1, 252, 33, 211, 141, 1, 234, 171, 211, 141, 1, 211, 194, 211, 141, 17,
192, 76, 211, 141, 17, 101, 211, 141, 17, 104, 211, 141, 17, 133, 211,
141, 17, 134, 211, 141, 17, 151, 211, 141, 17, 170, 211, 141, 17, 179,
211, 141, 17, 174, 211, 141, 17, 182, 211, 143, 6, 1, 64, 211, 143, 6, 1,
251, 63, 211, 143, 6, 1, 251, 57, 211, 143, 6, 1, 251, 72, 211, 143, 6,
1, 247, 167, 211, 143, 6, 1, 246, 117, 211, 143, 6, 1, 234, 156, 211,
143, 6, 1, 71, 211, 143, 6, 1, 234, 136, 211, 143, 6, 1, 144, 211, 143,
6, 1, 228, 115, 211, 143, 6, 1, 70, 211, 143, 6, 1, 160, 211, 143, 6, 1,
234, 155, 211, 143, 6, 1, 220, 212, 211, 143, 6, 1, 177, 211, 143, 6, 1,
172, 211, 143, 6, 1, 181, 211, 143, 6, 1, 74, 211, 143, 6, 1, 211, 235,
211, 143, 6, 1, 166, 211, 143, 6, 1, 234, 154, 211, 143, 6, 1, 188, 211,
143, 6, 1, 204, 64, 211, 143, 6, 1, 189, 211, 143, 6, 1, 234, 153, 211,
143, 6, 1, 198, 118, 211, 143, 6, 1, 234, 152, 211, 143, 6, 1, 198, 108,
211, 143, 6, 1, 237, 40, 211, 143, 6, 1, 68, 211, 143, 6, 1, 194, 169,
211, 143, 6, 1, 221, 250, 211, 143, 6, 1, 231, 84, 211, 143, 6, 1, 192,
112, 211, 143, 6, 1, 192, 71, 211, 143, 2, 1, 64, 211, 143, 2, 1, 251,
63, 211, 143, 2, 1, 251, 57, 211, 143, 2, 1, 251, 72, 211, 143, 2, 1,
247, 167, 211, 143, 2, 1, 246, 117, 211, 143, 2, 1, 234, 156, 211, 143,
2, 1, 71, 211, 143, 2, 1, 234, 136, 211, 143, 2, 1, 144, 211, 143, 2, 1,
228, 115, 211, 143, 2, 1, 70, 211, 143, 2, 1, 160, 211, 143, 2, 1, 234,
155, 211, 143, 2, 1, 220, 212, 211, 143, 2, 1, 177, 211, 143, 2, 1, 172,
211, 143, 2, 1, 181, 211, 143, 2, 1, 74, 211, 143, 2, 1, 211, 235, 211,
143, 2, 1, 166, 211, 143, 2, 1, 234, 154, 211, 143, 2, 1, 188, 211, 143,
2, 1, 204, 64, 211, 143, 2, 1, 189, 211, 143, 2, 1, 234, 153, 211, 143,
2, 1, 198, 118, 211, 143, 2, 1, 234, 152, 211, 143, 2, 1, 198, 108, 211,
143, 2, 1, 237, 40, 211, 143, 2, 1, 68, 211, 143, 2, 1, 194, 169, 211,
143, 2, 1, 221, 250, 211, 143, 2, 1, 231, 84, 211, 143, 2, 1, 192, 112,
211, 143, 2, 1, 192, 71, 234, 120, 1, 64, 234, 120, 1, 248, 123, 234,
120, 1, 246, 158, 234, 120, 1, 242, 245, 234, 120, 1, 237, 116, 234, 120,
1, 214, 247, 234, 120, 1, 237, 31, 234, 120, 1, 234, 150, 234, 120, 1,
71, 234, 120, 1, 233, 47, 234, 120, 1, 231, 158, 234, 120, 1, 231, 15,
234, 120, 1, 229, 255, 234, 120, 1, 70, 234, 120, 1, 223, 41, 234, 120,
1, 222, 57, 234, 120, 1, 220, 42, 234, 120, 1, 219, 132, 234, 120, 1,
217, 48, 234, 120, 1, 214, 214, 234, 120, 1, 181, 234, 120, 1, 213, 249,
234, 120, 1, 74, 234, 120, 1, 210, 181, 234, 120, 1, 208, 219, 234, 120,
1, 208, 7, 234, 120, 1, 206, 254, 234, 120, 1, 205, 223, 234, 120, 1,
204, 12, 234, 120, 1, 200, 79, 234, 120, 1, 199, 224, 234, 120, 1, 68,
234, 120, 1, 196, 123, 234, 120, 1, 193, 203, 234, 120, 1, 193, 148, 234,
120, 1, 192, 85, 234, 120, 1, 192, 62, 234, 120, 1, 231, 70, 234, 120, 1,
231, 76, 234, 120, 1, 221, 234, 246, 190, 251, 27, 1, 250, 251, 246, 190,
251, 27, 1, 248, 65, 246, 190, 251, 27, 1, 231, 33, 246, 190, 251, 27, 1,
237, 181, 246, 190, 251, 27, 1, 234, 181, 246, 190, 251, 27, 1, 192, 96,
246, 190, 251, 27, 1, 233, 172, 246, 190, 251, 27, 1, 192, 56, 246, 190,
251, 27, 1, 200, 107, 246, 190, 251, 27, 1, 246, 117, 246, 190, 251, 27,
1, 192, 225, 246, 190, 251, 27, 1, 192, 71, 246, 190, 251, 27, 1, 223,
104, 246, 190, 251, 27, 1, 204, 64, 246, 190, 251, 27, 1, 220, 83, 246,
190, 251, 27, 1, 223, 117, 246, 190, 251, 27, 1, 193, 199, 246, 190, 251,
27, 1, 235, 25, 246, 190, 251, 27, 1, 246, 217, 246, 190, 251, 27, 1,
223, 21, 246, 190, 251, 27, 1, 222, 99, 246, 190, 251, 27, 1, 218, 245,
246, 190, 251, 27, 1, 229, 189, 246, 190, 251, 27, 1, 208, 220, 246, 190,
251, 27, 1, 250, 165, 246, 190, 251, 27, 1, 242, 177, 246, 190, 251, 27,
1, 242, 215, 246, 190, 251, 27, 1, 238, 107, 246, 190, 251, 27, 1, 217,
138, 246, 190, 251, 27, 1, 208, 224, 246, 190, 251, 27, 1, 213, 95, 246,
190, 251, 27, 1, 235, 2, 246, 190, 251, 27, 1, 204, 46, 246, 190, 251,
27, 1, 223, 42, 246, 190, 251, 27, 1, 211, 211, 246, 190, 251, 27, 1,
197, 210, 246, 190, 251, 27, 1, 233, 70, 246, 190, 251, 27, 1, 235, 15,
246, 190, 251, 27, 1, 242, 251, 246, 190, 251, 27, 1, 210, 154, 246, 190,
251, 27, 1, 231, 60, 246, 190, 251, 27, 1, 208, 22, 246, 190, 251, 27, 1,
204, 73, 246, 190, 251, 27, 1, 196, 42, 246, 190, 251, 27, 1, 199, 56,
246, 190, 251, 27, 1, 203, 173, 246, 190, 251, 27, 1, 223, 75, 246, 190,
251, 27, 1, 238, 108, 246, 190, 251, 27, 1, 246, 183, 246, 190, 251, 27,
1, 193, 73, 246, 190, 251, 27, 1, 209, 238, 246, 190, 251, 27, 1, 221,
155, 246, 190, 251, 27, 242, 118, 77, 32, 41, 3, 251, 237, 32, 41, 3,
251, 236, 32, 41, 3, 251, 235, 32, 41, 3, 251, 234, 32, 41, 3, 251, 233,
32, 41, 3, 251, 232, 32, 41, 3, 251, 231, 32, 41, 3, 251, 230, 32, 41, 3,
251, 229, 32, 41, 3, 251, 228, 32, 41, 3, 251, 227, 32, 41, 3, 251, 226,
32, 41, 3, 251, 225, 32, 41, 3, 251, 224, 32, 41, 3, 251, 223, 32, 41, 3,
251, 222, 32, 41, 3, 251, 221, 32, 41, 3, 251, 220, 32, 41, 3, 251, 219,
32, 41, 3, 251, 218, 32, 41, 3, 251, 217, 32, 41, 3, 251, 216, 32, 41, 3,
251, 215, 32, 41, 3, 251, 214, 32, 41, 3, 251, 213, 32, 41, 3, 251, 212,
32, 41, 3, 251, 211, 32, 41, 3, 254, 247, 32, 41, 3, 251, 210, 32, 41, 3,
251, 209, 32, 41, 3, 251, 208, 32, 41, 3, 251, 207, 32, 41, 3, 251, 206,
32, 41, 3, 251, 205, 32, 41, 3, 251, 204, 32, 41, 3, 251, 203, 32, 41, 3,
251, 202, 32, 41, 3, 251, 201, 32, 41, 3, 251, 200, 32, 41, 3, 251, 199,
32, 41, 3, 251, 198, 32, 41, 3, 251, 197, 32, 41, 3, 251, 196, 32, 41, 3,
251, 195, 32, 41, 3, 251, 194, 32, 41, 3, 251, 193, 32, 41, 3, 251, 192,
32, 41, 3, 251, 191, 32, 41, 3, 251, 190, 32, 41, 3, 251, 189, 32, 41, 3,
251, 188, 32, 41, 3, 251, 187, 32, 41, 3, 251, 186, 32, 41, 3, 251, 185,
32, 41, 3, 251, 184, 32, 41, 3, 251, 183, 32, 41, 3, 251, 182, 32, 41, 3,
251, 181, 32, 41, 3, 251, 180, 32, 41, 3, 251, 179, 32, 41, 3, 251, 178,
32, 41, 3, 251, 177, 32, 41, 3, 251, 176, 32, 41, 3, 251, 175, 32, 41, 3,
251, 174, 32, 41, 3, 251, 173, 32, 41, 3, 251, 172, 32, 41, 3, 251, 171,
32, 41, 3, 251, 170, 32, 41, 3, 251, 169, 32, 41, 3, 251, 168, 32, 41, 3,
254, 160, 32, 41, 3, 251, 167, 32, 41, 3, 251, 166, 32, 41, 3, 254, 125,
32, 41, 3, 251, 165, 32, 41, 3, 251, 164, 32, 41, 3, 251, 163, 32, 41, 3,
251, 162, 32, 41, 3, 254, 112, 32, 41, 3, 251, 161, 32, 41, 3, 251, 160,
32, 41, 3, 251, 159, 32, 41, 3, 251, 158, 32, 41, 3, 251, 157, 32, 41, 3,
253, 184, 32, 41, 3, 253, 183, 32, 41, 3, 253, 182, 32, 41, 3, 253, 181,
32, 41, 3, 253, 180, 32, 41, 3, 253, 179, 32, 41, 3, 253, 178, 32, 41, 3,
253, 177, 32, 41, 3, 253, 175, 32, 41, 3, 253, 174, 32, 41, 3, 253, 173,
32, 41, 3, 253, 172, 32, 41, 3, 253, 171, 32, 41, 3, 253, 170, 32, 41, 3,
253, 168, 32, 41, 3, 253, 167, 32, 41, 3, 253, 166, 32, 41, 3, 253, 165,
32, 41, 3, 253, 164, 32, 41, 3, 253, 163, 32, 41, 3, 253, 162, 32, 41, 3,
253, 161, 32, 41, 3, 253, 160, 32, 41, 3, 253, 159, 32, 41, 3, 253, 158,
32, 41, 3, 253, 157, 32, 41, 3, 253, 156, 32, 41, 3, 253, 155, 32, 41, 3,
253, 154, 32, 41, 3, 253, 153, 32, 41, 3, 253, 152, 32, 41, 3, 253, 151,
32, 41, 3, 253, 150, 32, 41, 3, 253, 148, 32, 41, 3, 253, 147, 32, 41, 3,
253, 146, 32, 41, 3, 253, 142, 32, 41, 3, 253, 141, 32, 41, 3, 253, 140,
32, 41, 3, 253, 139, 32, 41, 3, 253, 135, 32, 41, 3, 253, 134, 32, 41, 3,
253, 133, 32, 41, 3, 253, 132, 32, 41, 3, 253, 131, 32, 41, 3, 253, 130,
32, 41, 3, 253, 129, 32, 41, 3, 253, 128, 32, 41, 3, 253, 127, 32, 41, 3,
253, 126, 32, 41, 3, 253, 125, 32, 41, 3, 253, 124, 32, 41, 3, 253, 123,
32, 41, 3, 253, 122, 32, 41, 3, 253, 121, 32, 41, 3, 253, 120, 32, 41, 3,
253, 119, 32, 41, 3, 253, 118, 32, 41, 3, 253, 117, 32, 41, 3, 253, 116,
32, 41, 3, 253, 115, 32, 41, 3, 253, 114, 32, 41, 3, 253, 113, 32, 41, 3,
253, 111, 32, 41, 3, 253, 110, 32, 41, 3, 253, 109, 32, 41, 3, 253, 108,
32, 41, 3, 253, 107, 32, 41, 3, 253, 105, 32, 41, 3, 253, 104, 32, 41, 3,
253, 103, 32, 41, 3, 253, 102, 32, 41, 3, 253, 100, 32, 41, 3, 253, 99,
32, 41, 3, 253, 98, 32, 41, 3, 253, 64, 32, 41, 3, 253, 62, 32, 41, 3,
253, 60, 32, 41, 3, 253, 58, 32, 41, 3, 253, 56, 32, 41, 3, 253, 54, 32,
41, 3, 253, 52, 32, 41, 3, 253, 50, 32, 41, 3, 253, 48, 32, 41, 3, 253,
46, 32, 41, 3, 253, 44, 32, 41, 3, 253, 41, 32, 41, 3, 253, 39, 32, 41,
3, 253, 37, 32, 41, 3, 253, 35, 32, 41, 3, 253, 33, 32, 41, 3, 253, 31,
32, 41, 3, 253, 29, 32, 41, 3, 253, 27, 32, 41, 3, 252, 201, 32, 41, 3,
252, 200, 32, 41, 3, 252, 199, 32, 41, 3, 252, 198, 32, 41, 3, 252, 197,
32, 41, 3, 252, 196, 32, 41, 3, 252, 194, 32, 41, 3, 252, 193, 32, 41, 3,
252, 192, 32, 41, 3, 252, 191, 32, 41, 3, 252, 190, 32, 41, 3, 252, 189,
32, 41, 3, 252, 187, 32, 41, 3, 252, 186, 32, 41, 3, 252, 182, 32, 41, 3,
252, 181, 32, 41, 3, 252, 179, 32, 41, 3, 252, 178, 32, 41, 3, 252, 177,
32, 41, 3, 252, 176, 32, 41, 3, 252, 175, 32, 41, 3, 252, 174, 32, 41, 3,
252, 173, 32, 41, 3, 252, 172, 32, 41, 3, 252, 171, 32, 41, 3, 252, 170,
32, 41, 3, 252, 169, 32, 41, 3, 252, 168, 32, 41, 3, 252, 167, 32, 41, 3,
252, 166, 32, 41, 3, 252, 165, 32, 41, 3, 252, 164, 32, 41, 3, 252, 163,
32, 41, 3, 252, 162, 32, 41, 3, 252, 161, 32, 41, 3, 252, 160, 32, 41, 3,
252, 159, 32, 41, 3, 252, 158, 32, 41, 3, 252, 157, 32, 41, 3, 252, 156,
32, 41, 3, 252, 155, 32, 41, 3, 252, 154, 32, 41, 3, 252, 153, 32, 41, 3,
252, 152, 32, 41, 3, 252, 151, 32, 41, 3, 252, 150, 32, 41, 3, 252, 149,
32, 41, 3, 252, 148, 32, 41, 3, 252, 147, 32, 41, 3, 252, 146, 32, 41, 3,
252, 145, 32, 41, 3, 252, 144, 32, 41, 3, 252, 143, 32, 41, 3, 252, 142,
32, 41, 3, 252, 141, 32, 41, 3, 252, 140, 32, 41, 3, 252, 139, 32, 41, 3,
252, 138, 32, 41, 3, 252, 137, 32, 41, 3, 252, 136, 32, 41, 3, 252, 135,
32, 41, 3, 252, 134, 32, 41, 3, 252, 133, 32, 41, 3, 252, 132, 32, 41, 3,
252, 131, 32, 41, 3, 252, 130, 32, 41, 3, 252, 129, 32, 41, 3, 252, 128,
32, 41, 3, 252, 127, 32, 41, 3, 252, 126, 32, 41, 3, 252, 125, 32, 41, 3,
252, 124, 32, 41, 3, 252, 123, 32, 41, 3, 252, 122, 32, 41, 3, 252, 121,
32, 41, 3, 252, 120, 32, 41, 3, 252, 119, 32, 41, 3, 252, 118, 32, 41, 3,
252, 117, 32, 41, 3, 252, 116, 32, 41, 3, 252, 115, 32, 41, 3, 252, 114,
32, 41, 3, 252, 113, 32, 41, 3, 252, 112, 32, 41, 3, 252, 111, 32, 41, 3,
252, 110, 32, 41, 3, 252, 109, 32, 41, 3, 252, 108, 32, 41, 3, 252, 107,
32, 41, 3, 252, 106, 32, 41, 3, 252, 105, 32, 41, 3, 252, 104, 32, 41, 3,
252, 103, 32, 41, 3, 252, 102, 32, 41, 3, 252, 101, 32, 41, 3, 252, 100,
32, 41, 3, 252, 99, 32, 41, 3, 252, 98, 32, 41, 3, 252, 97, 32, 41, 3,
252, 96, 32, 41, 3, 252, 95, 32, 41, 3, 252, 94, 32, 41, 3, 252, 93, 32,
41, 3, 252, 92, 32, 41, 3, 252, 91, 32, 41, 3, 252, 90, 32, 41, 3, 252,
89, 32, 41, 3, 252, 88, 32, 41, 3, 252, 87, 32, 41, 3, 252, 86, 32, 41,
3, 252, 85, 32, 41, 3, 252, 84, 32, 41, 3, 252, 83, 32, 41, 3, 252, 82,
32, 41, 3, 252, 81, 32, 41, 3, 252, 80, 32, 41, 3, 252, 79, 32, 41, 3,
252, 78, 32, 41, 3, 252, 77, 32, 41, 3, 252, 76, 32, 41, 3, 252, 75, 32,
41, 3, 252, 74, 32, 41, 3, 252, 73, 32, 41, 3, 252, 72, 32, 41, 3, 252,
71, 32, 41, 3, 252, 70, 32, 41, 3, 252, 69, 32, 41, 3, 252, 68, 32, 41,
3, 252, 67, 32, 41, 3, 252, 66, 32, 41, 3, 252, 65, 32, 41, 3, 252, 64,
32, 41, 3, 252, 63, 64, 32, 41, 3, 252, 62, 249, 226, 32, 41, 3, 252, 61,
238, 95, 32, 41, 3, 252, 60, 71, 32, 41, 3, 252, 59, 233, 163, 32, 41, 3,
252, 58, 230, 124, 32, 41, 3, 252, 57, 223, 65, 32, 41, 3, 252, 56, 222,
184, 32, 41, 3, 252, 55, 165, 32, 41, 3, 252, 54, 220, 189, 32, 41, 3,
252, 53, 220, 188, 32, 41, 3, 252, 52, 220, 187, 32, 41, 3, 252, 51, 220,
186, 32, 41, 3, 252, 50, 194, 202, 32, 41, 3, 252, 49, 193, 223, 32, 41,
3, 252, 48, 193, 148, 32, 41, 3, 252, 47, 211, 216, 32, 41, 3, 252, 46,
251, 152, 32, 41, 3, 252, 45, 248, 160, 32, 41, 3, 252, 44, 237, 163, 32,
41, 3, 252, 43, 233, 171, 32, 41, 3, 252, 42, 223, 41, 32, 41, 3, 252,
41, 32, 41, 3, 252, 40, 32, 41, 3, 252, 39, 32, 41, 3, 252, 38, 32, 41,
3, 252, 37, 32, 41, 3, 252, 36, 32, 41, 3, 252, 35, 32, 41, 3, 252, 34,
238, 102, 5, 64, 238, 102, 5, 71, 238, 102, 5, 70, 238, 102, 5, 74, 238,
102, 5, 68, 238, 102, 5, 223, 62, 238, 102, 5, 222, 233, 238, 102, 5,
160, 238, 102, 5, 222, 57, 238, 102, 5, 221, 204, 238, 102, 5, 221, 113,
238, 102, 5, 221, 33, 238, 102, 5, 177, 238, 102, 5, 220, 42, 238, 102,
5, 219, 209, 238, 102, 5, 219, 107, 238, 102, 5, 219, 36, 238, 102, 5,
172, 238, 102, 5, 217, 48, 238, 102, 5, 216, 175, 238, 102, 5, 216, 91,
238, 102, 5, 215, 241, 238, 102, 5, 181, 238, 102, 5, 214, 214, 238, 102,
5, 214, 60, 238, 102, 5, 213, 142, 238, 102, 5, 213, 22, 238, 102, 5,
166, 238, 102, 5, 210, 181, 238, 102, 5, 210, 51, 238, 102, 5, 209, 198,
238, 102, 5, 209, 51, 238, 102, 5, 167, 238, 102, 5, 208, 7, 238, 102, 5,
207, 151, 238, 102, 5, 207, 55, 238, 102, 5, 206, 218, 238, 102, 5, 188,
238, 102, 5, 205, 223, 238, 102, 5, 203, 125, 238, 102, 5, 202, 212, 238,
102, 5, 201, 184, 238, 102, 5, 189, 238, 102, 5, 200, 79, 238, 102, 5,
199, 128, 238, 102, 5, 155, 238, 102, 5, 198, 45, 238, 102, 5, 194, 169,
238, 102, 5, 194, 111, 238, 102, 5, 194, 72, 238, 102, 5, 194, 36, 238,
102, 5, 193, 209, 238, 102, 5, 193, 203, 238, 102, 5, 192, 112, 238, 102,
5, 192, 8, 223, 192, 250, 116, 1, 251, 24, 223, 192, 250, 116, 1, 248,
62, 223, 192, 250, 116, 1, 231, 31, 223, 192, 250, 116, 1, 237, 220, 223,
192, 250, 116, 1, 229, 255, 223, 192, 250, 116, 1, 194, 119, 223, 192,
250, 116, 1, 192, 89, 223, 192, 250, 116, 1, 229, 194, 223, 192, 250,
116, 1, 200, 4, 223, 192, 250, 116, 1, 192, 238, 223, 192, 250, 116, 1,
222, 109, 223, 192, 250, 116, 1, 220, 85, 223, 192, 250, 116, 1, 217, 12,
223, 192, 250, 116, 1, 212, 230, 223, 192, 250, 116, 1, 206, 46, 223,
192, 250, 116, 1, 249, 231, 223, 192, 250, 116, 1, 210, 181, 223, 192,
250, 116, 1, 206, 83, 223, 192, 250, 116, 1, 208, 181, 223, 192, 250,
116, 1, 207, 188, 223, 192, 250, 116, 1, 203, 224, 223, 192, 250, 116, 1,
200, 93, 223, 192, 250, 116, 205, 209, 57, 223, 192, 250, 116, 31, 101,
223, 192, 250, 116, 31, 104, 223, 192, 250, 116, 31, 133, 223, 192, 250,
116, 31, 200, 30, 223, 192, 250, 116, 31, 197, 239, 223, 192, 250, 116,
31, 90, 228, 162, 223, 192, 250, 116, 31, 90, 180, 223, 192, 250, 116,
31, 200, 31, 180, 211, 38, 1, 251, 24, 211, 38, 1, 248, 62, 211, 38, 1,
231, 31, 211, 38, 1, 237, 220, 211, 38, 1, 229, 255, 211, 38, 1, 194,
119, 211, 38, 1, 192, 89, 211, 38, 1, 229, 194, 211, 38, 1, 200, 4, 211,
38, 1, 192, 238, 211, 38, 1, 222, 109, 211, 38, 1, 220, 85, 211, 38, 1,
217, 12, 211, 38, 1, 52, 212, 230, 211, 38, 1, 212, 230, 211, 38, 1, 206,
46, 211, 38, 1, 249, 231, 211, 38, 1, 210, 181, 211, 38, 1, 206, 83, 211,
38, 1, 208, 181, 211, 38, 1, 207, 188, 211, 38, 1, 203, 224, 211, 38, 1,
200, 93, 211, 38, 220, 23, 232, 190, 211, 38, 207, 96, 232, 190, 211, 38,
31, 101, 211, 38, 31, 104, 211, 38, 31, 133, 211, 38, 31, 134, 211, 38,
31, 151, 211, 38, 31, 200, 30, 211, 38, 31, 197, 239, 215, 80, 1, 52,
251, 24, 215, 80, 1, 251, 24, 215, 80, 1, 52, 248, 62, 215, 80, 1, 248,
62, 215, 80, 1, 231, 31, 215, 80, 1, 237, 220, 215, 80, 1, 52, 229, 255,
215, 80, 1, 229, 255, 215, 80, 1, 194, 119, 215, 80, 1, 192, 89, 215, 80,
1, 229, 194, 215, 80, 1, 200, 4, 215, 80, 1, 52, 192, 238, 215, 80, 1,
192, 238, 215, 80, 1, 52, 222, 109, 215, 80, 1, 222, 109, 215, 80, 1, 52,
220, 85, 215, 80, 1, 220, 85, 215, 80, 1, 52, 217, 12, 215, 80, 1, 217,
12, 215, 80, 1, 52, 212, 230, 215, 80, 1, 212, 230, 215, 80, 1, 206, 46,
215, 80, 1, 249, 231, 215, 80, 1, 210, 181, 215, 80, 1, 206, 83, 215, 80,
1, 208, 181, 215, 80, 1, 207, 188, 215, 80, 1, 52, 203, 224, 215, 80, 1,
203, 224, 215, 80, 1, 200, 93, 215, 80, 31, 101, 215, 80, 31, 104, 215,
80, 31, 133, 215, 80, 31, 134, 215, 80, 238, 168, 31, 134, 215, 80, 31,
151, 215, 80, 31, 200, 30, 215, 80, 31, 197, 239, 215, 80, 31, 90, 228,
162, 230, 13, 1, 251, 24, 230, 13, 1, 248, 62, 230, 13, 1, 231, 31, 230,
13, 1, 237, 219, 230, 13, 1, 229, 255, 230, 13, 1, 194, 119, 230, 13, 1,
192, 87, 230, 13, 1, 229, 194, 230, 13, 1, 200, 4, 230, 13, 1, 192, 238,
230, 13, 1, 222, 109, 230, 13, 1, 220, 85, 230, 13, 1, 217, 12, 230, 13,
1, 212, 230, 230, 13, 1, 206, 46, 230, 13, 1, 249, 229, 230, 13, 1, 210,
181, 230, 13, 1, 206, 83, 230, 13, 1, 208, 181, 230, 13, 1, 203, 224,
230, 13, 1, 200, 93, 230, 13, 31, 101, 230, 13, 31, 151, 230, 13, 31,
200, 30, 230, 13, 31, 197, 239, 230, 13, 31, 90, 228, 162, 210, 63, 1,
251, 21, 210, 63, 1, 248, 65, 210, 63, 1, 231, 206, 210, 63, 1, 237, 78,
210, 63, 1, 229, 255, 210, 63, 1, 194, 126, 210, 63, 1, 192, 105, 210,
63, 1, 229, 196, 210, 63, 1, 200, 8, 210, 63, 1, 192, 239, 210, 63, 1,
222, 139, 210, 63, 1, 220, 91, 210, 63, 1, 217, 12, 210, 63, 1, 212, 230,
210, 63, 1, 204, 174, 210, 63, 1, 251, 57, 210, 63, 1, 210, 181, 210, 63,
1, 206, 85, 210, 63, 1, 208, 186, 210, 63, 1, 207, 18, 210, 63, 1, 203,
224, 210, 63, 1, 200, 100, 210, 63, 31, 101, 210, 63, 31, 200, 30, 210,
63, 31, 197, 239, 210, 63, 31, 90, 228, 162, 210, 63, 31, 104, 210, 63,
31, 133, 210, 63, 194, 11, 204, 165, 218, 248, 1, 64, 218, 248, 1, 249,
226, 218, 248, 1, 232, 44, 218, 248, 1, 238, 95, 218, 248, 1, 71, 218,
248, 1, 196, 236, 218, 248, 1, 70, 218, 248, 1, 193, 148, 218, 248, 1,
222, 184, 218, 248, 1, 165, 218, 248, 1, 218, 236, 218, 248, 1, 215, 151,
218, 248, 1, 74, 218, 248, 1, 150, 218, 248, 1, 202, 95, 218, 248, 1,
200, 228, 218, 248, 1, 68, 218, 248, 1, 233, 163, 218, 248, 1, 208, 247,
218, 248, 1, 206, 158, 218, 248, 1, 198, 86, 218, 248, 1, 250, 224, 218,
248, 1, 234, 88, 218, 248, 1, 218, 251, 218, 248, 1, 213, 179, 218, 248,
1, 247, 52, 218, 248, 198, 182, 77, 147, 229, 164, 1, 64, 147, 229, 164,
1, 71, 147, 229, 164, 1, 70, 147, 229, 164, 1, 74, 147, 229, 164, 1, 168,
147, 229, 164, 1, 194, 169, 147, 229, 164, 1, 249, 3, 147, 229, 164, 1,
249, 2, 147, 229, 164, 1, 166, 147, 229, 164, 1, 172, 147, 229, 164, 1,
181, 147, 229, 164, 1, 215, 95, 147, 229, 164, 1, 214, 214, 147, 229,
164, 1, 214, 212, 147, 229, 164, 1, 167, 147, 229, 164, 1, 208, 74, 147,
229, 164, 1, 177, 147, 229, 164, 1, 221, 250, 147, 229, 164, 1, 229, 187,
147, 229, 164, 1, 188, 147, 229, 164, 1, 206, 99, 147, 229, 164, 1, 205,
223, 147, 229, 164, 1, 160, 147, 229, 164, 1, 208, 239, 147, 229, 164, 1,
189, 147, 229, 164, 1, 200, 179, 147, 229, 164, 1, 200, 79, 147, 229,
164, 1, 200, 77, 147, 229, 164, 1, 155, 147, 229, 164, 1, 238, 0, 147,
229, 164, 16, 196, 33, 147, 229, 164, 16, 196, 32, 147, 238, 133, 1, 64,
147, 238, 133, 1, 71, 147, 238, 133, 1, 70, 147, 238, 133, 1, 74, 147,
238, 133, 1, 168, 147, 238, 133, 1, 194, 169, 147, 238, 133, 1, 249, 3,
147, 238, 133, 1, 166, 147, 238, 133, 1, 172, 147, 238, 133, 1, 181, 147,
238, 133, 1, 214, 214, 147, 238, 133, 1, 167, 147, 238, 133, 1, 177, 147,
238, 133, 1, 221, 250, 147, 238, 133, 1, 229, 187, 147, 238, 133, 1, 188,
147, 238, 133, 1, 250, 112, 188, 147, 238, 133, 1, 205, 223, 147, 238,
133, 1, 160, 147, 238, 133, 1, 208, 239, 147, 238, 133, 1, 189, 147, 238,
133, 1, 200, 79, 147, 238, 133, 1, 155, 147, 238, 133, 1, 238, 0, 147,
238, 133, 232, 109, 234, 112, 197, 246, 147, 238, 133, 232, 109, 90, 230,
78, 147, 238, 133, 219, 92, 207, 61, 147, 238, 133, 219, 92, 223, 197,
147, 238, 133, 31, 101, 147, 238, 133, 31, 104, 147, 238, 133, 31, 133,
147, 238, 133, 31, 134, 147, 238, 133, 31, 151, 147, 238, 133, 31, 170,
147, 238, 133, 31, 179, 147, 238, 133, 31, 174, 147, 238, 133, 31, 182,
147, 238, 133, 31, 200, 30, 147, 238, 133, 31, 197, 239, 147, 238, 133,
31, 199, 184, 147, 238, 133, 31, 232, 126, 147, 238, 133, 31, 233, 3,
147, 238, 133, 31, 203, 25, 147, 238, 133, 31, 204, 140, 147, 238, 133,
31, 90, 228, 162, 147, 238, 133, 31, 103, 228, 162, 147, 238, 133, 31,
112, 228, 162, 147, 238, 133, 31, 232, 119, 228, 162, 147, 238, 133, 31,
232, 214, 228, 162, 147, 238, 133, 31, 203, 41, 228, 162, 147, 238, 133,
31, 204, 146, 228, 162, 147, 238, 133, 31, 234, 148, 228, 162, 147, 238,
133, 31, 214, 16, 228, 162, 147, 238, 133, 31, 90, 180, 147, 238, 133,
31, 103, 180, 147, 238, 133, 31, 112, 180, 147, 238, 133, 31, 232, 119,
180, 147, 238, 133, 31, 232, 214, 180, 147, 238, 133, 31, 203, 41, 180,
147, 238, 133, 31, 204, 146, 180, 147, 238, 133, 31, 234, 148, 180, 147,
238, 133, 31, 214, 16, 180, 147, 238, 133, 31, 200, 31, 180, 147, 238,
133, 31, 197, 240, 180, 147, 238, 133, 31, 199, 185, 180, 147, 238, 133,
31, 232, 127, 180, 147, 238, 133, 31, 233, 4, 180, 147, 238, 133, 31,
203, 26, 180, 147, 238, 133, 31, 204, 141, 180, 147, 238, 133, 31, 234,
138, 180, 147, 238, 133, 31, 214, 12, 180, 147, 238, 133, 31, 90, 228,
163, 180, 147, 238, 133, 31, 103, 228, 163, 180, 147, 238, 133, 31, 112,
228, 163, 180, 147, 238, 133, 31, 232, 119, 228, 163, 180, 147, 238, 133,
31, 232, 214, 228, 163, 180, 147, 238, 133, 31, 203, 41, 228, 163, 180,
147, 238, 133, 31, 204, 146, 228, 163, 180, 147, 238, 133, 31, 234, 148,
228, 163, 180, 147, 238, 133, 31, 214, 16, 228, 163, 180, 147, 238, 133,
232, 109, 90, 197, 247, 147, 238, 133, 232, 109, 103, 197, 246, 147, 238,
133, 232, 109, 112, 197, 246, 147, 238, 133, 232, 109, 232, 119, 197,
246, 147, 238, 133, 232, 109, 232, 214, 197, 246, 147, 238, 133, 232,
109, 203, 41, 197, 246, 147, 238, 133, 232, 109, 204, 146, 197, 246, 147,
238, 133, 232, 109, 234, 148, 197, 246, 147, 238, 133, 232, 109, 214, 16,
197, 246, 147, 238, 133, 232, 109, 200, 31, 197, 246, 221, 236, 1, 64,
221, 236, 18, 3, 70, 221, 236, 18, 3, 68, 221, 236, 18, 3, 118, 150, 221,
236, 18, 3, 71, 221, 236, 18, 3, 74, 221, 236, 18, 220, 2, 77, 221, 236,
3, 55, 207, 82, 63, 221, 236, 3, 250, 168, 221, 236, 3, 196, 6, 221, 236,
1, 160, 221, 236, 1, 221, 250, 221, 236, 1, 231, 233, 221, 236, 1, 231,
84, 221, 236, 1, 247, 19, 221, 236, 1, 246, 117, 221, 236, 1, 223, 62,
221, 236, 1, 212, 201, 221, 236, 1, 198, 83, 221, 236, 1, 198, 71, 221,
236, 1, 237, 161, 221, 236, 1, 237, 145, 221, 236, 1, 213, 178, 221, 236,
1, 189, 221, 236, 1, 199, 240, 221, 236, 1, 238, 0, 221, 236, 1, 237, 40,
221, 236, 1, 181, 221, 236, 1, 166, 221, 236, 1, 210, 94, 221, 236, 1,
249, 3, 221, 236, 1, 248, 54, 221, 236, 1, 172, 221, 236, 1, 168, 221,
236, 1, 167, 221, 236, 1, 177, 221, 236, 1, 196, 157, 221, 236, 1, 204,
64, 221, 236, 1, 202, 92, 221, 236, 1, 188, 221, 236, 1, 192, 112, 221,
236, 1, 144, 221, 236, 1, 221, 139, 221, 236, 1, 198, 51, 221, 236, 1,
198, 52, 221, 236, 1, 196, 40, 221, 236, 3, 248, 194, 58, 221, 236, 3,
246, 189, 221, 236, 3, 78, 63, 221, 236, 196, 11, 221, 236, 17, 101, 221,
236, 17, 104, 221, 236, 17, 133, 221, 236, 17, 134, 221, 236, 31, 200,
30, 221, 236, 31, 197, 239, 221, 236, 31, 90, 228, 162, 221, 236, 31, 90,
180, 221, 236, 232, 109, 90, 230, 78, 221, 236, 209, 38, 236, 114, 221,
236, 209, 38, 2, 242, 130, 221, 236, 209, 38, 242, 130, 221, 236, 209,
38, 238, 194, 161, 221, 236, 209, 38, 217, 153, 221, 236, 209, 38, 219,
57, 221, 236, 209, 38, 237, 208, 221, 236, 209, 38, 55, 237, 208, 221,
236, 209, 38, 219, 169, 40, 202, 171, 250, 127, 1, 229, 255, 40, 202,
171, 250, 127, 1, 220, 85, 40, 202, 171, 250, 127, 1, 229, 194, 40, 202,
171, 250, 127, 1, 217, 12, 40, 202, 171, 250, 127, 1, 208, 181, 40, 202,
171, 250, 127, 1, 194, 119, 40, 202, 171, 250, 127, 1, 203, 224, 40, 202,
171, 250, 127, 1, 207, 188, 40, 202, 171, 250, 127, 1, 248, 62, 40, 202,
171, 250, 127, 1, 200, 93, 40, 202, 171, 250, 127, 1, 206, 20, 40, 202,
171, 250, 127, 1, 222, 109, 40, 202, 171, 250, 127, 1, 212, 230, 40, 202,
171, 250, 127, 1, 221, 231, 40, 202, 171, 250, 127, 1, 206, 83, 40, 202,
171, 250, 127, 1, 206, 46, 40, 202, 171, 250, 127, 1, 233, 47, 40, 202,
171, 250, 127, 1, 251, 26, 40, 202, 171, 250, 127, 1, 249, 229, 40, 202,
171, 250, 127, 1, 237, 37, 40, 202, 171, 250, 127, 1, 231, 31, 40, 202,
171, 250, 127, 1, 237, 220, 40, 202, 171, 250, 127, 1, 231, 72, 40, 202,
171, 250, 127, 1, 200, 4, 40, 202, 171, 250, 127, 1, 192, 87, 40, 202,
171, 250, 127, 1, 237, 34, 40, 202, 171, 250, 127, 1, 192, 238, 40, 202,
171, 250, 127, 1, 199, 226, 40, 202, 171, 250, 127, 1, 199, 205, 40, 202,
171, 250, 127, 31, 101, 40, 202, 171, 250, 127, 31, 233, 3, 40, 202, 171,
250, 127, 162, 223, 172, 40, 178, 250, 127, 1, 229, 220, 40, 178, 250,
127, 1, 220, 94, 40, 178, 250, 127, 1, 230, 89, 40, 178, 250, 127, 1,
217, 26, 40, 178, 250, 127, 1, 208, 232, 40, 178, 250, 127, 1, 194, 119,
40, 178, 250, 127, 1, 234, 7, 40, 178, 250, 127, 1, 207, 221, 40, 178,
250, 127, 1, 248, 96, 40, 178, 250, 127, 1, 200, 49, 40, 178, 250, 127,
1, 234, 8, 40, 178, 250, 127, 1, 222, 139, 40, 178, 250, 127, 1, 213,
123, 40, 178, 250, 127, 1, 221, 245, 40, 178, 250, 127, 1, 206, 86, 40,
178, 250, 127, 1, 234, 6, 40, 178, 250, 127, 1, 233, 34, 40, 178, 250,
127, 1, 251, 26, 40, 178, 250, 127, 1, 251, 57, 40, 178, 250, 127, 1,
237, 250, 40, 178, 250, 127, 1, 231, 149, 40, 178, 250, 127, 1, 237, 227,
40, 178, 250, 127, 1, 231, 79, 40, 178, 250, 127, 1, 200, 151, 40, 178,
250, 127, 1, 192, 103, 40, 178, 250, 127, 1, 199, 232, 40, 178, 250, 127,
1, 193, 64, 40, 178, 250, 127, 1, 199, 220, 40, 178, 250, 127, 1, 192,
106, 40, 178, 250, 127, 31, 101, 40, 178, 250, 127, 31, 200, 30, 40, 178,
250, 127, 31, 197, 239, 217, 151, 1, 251, 24, 217, 151, 1, 248, 62, 217,
151, 1, 248, 47, 217, 151, 1, 231, 31, 217, 151, 1, 231, 57, 217, 151, 1,
237, 220, 217, 151, 1, 229, 255, 217, 151, 1, 194, 119, 217, 151, 3, 197,
109, 217, 151, 1, 192, 89, 217, 151, 1, 192, 64, 217, 151, 1, 223, 43,
217, 151, 1, 223, 24, 217, 151, 1, 229, 194, 217, 151, 1, 200, 4, 217,
151, 1, 192, 238, 217, 151, 1, 222, 109, 217, 151, 1, 193, 206, 217, 151,
1, 221, 238, 217, 151, 1, 220, 85, 217, 151, 1, 237, 33, 217, 151, 1,
199, 231, 217, 151, 1, 217, 12, 217, 151, 1, 212, 230, 217, 151, 1, 206,
46, 217, 151, 1, 249, 231, 217, 151, 1, 251, 241, 217, 151, 1, 210, 181,
217, 151, 1, 233, 47, 217, 151, 1, 206, 83, 217, 151, 1, 208, 181, 217,
151, 1, 193, 182, 217, 151, 1, 208, 208, 217, 151, 1, 207, 188, 217, 151,
1, 203, 224, 217, 151, 1, 202, 60, 217, 151, 1, 200, 93, 217, 151, 251,
151, 122, 58, 217, 151, 251, 151, 122, 63, 217, 151, 31, 101, 217, 151,
31, 151, 217, 151, 31, 200, 30, 217, 151, 31, 197, 239, 217, 151, 31, 90,
228, 162, 217, 151, 209, 38, 202, 19, 217, 151, 209, 38, 232, 190, 217,
151, 209, 38, 55, 78, 194, 41, 236, 114, 217, 151, 209, 38, 78, 194, 41,
236, 114, 217, 151, 209, 38, 236, 114, 217, 151, 209, 38, 103, 236, 111,
217, 151, 209, 38, 219, 176, 232, 247, 249, 243, 1, 64, 249, 243, 1, 252,
33, 249, 243, 1, 250, 166, 249, 243, 1, 251, 247, 249, 243, 1, 250, 224,
249, 243, 1, 251, 249, 249, 243, 1, 251, 108, 249, 243, 1, 251, 104, 249,
243, 1, 71, 249, 243, 1, 234, 171, 249, 243, 1, 74, 249, 243, 1, 211,
194, 249, 243, 1, 70, 249, 243, 1, 223, 224, 249, 243, 1, 68, 249, 243,
1, 196, 251, 249, 243, 1, 222, 57, 249, 243, 1, 193, 203, 249, 243, 1,
193, 162, 249, 243, 1, 193, 173, 249, 243, 1, 231, 158, 249, 243, 1, 231,
115, 249, 243, 1, 231, 70, 249, 243, 1, 246, 158, 249, 243, 1, 223, 41,
249, 243, 1, 200, 79, 249, 243, 1, 199, 224, 249, 243, 1, 237, 116, 249,
243, 1, 237, 31, 249, 243, 1, 198, 78, 249, 243, 1, 210, 181, 249, 243,
1, 233, 47, 249, 243, 1, 248, 123, 249, 243, 1, 248, 49, 249, 243, 1,
214, 152, 249, 243, 1, 214, 67, 249, 243, 1, 214, 68, 249, 243, 1, 214,
214, 249, 243, 1, 212, 190, 249, 243, 1, 213, 173, 249, 243, 1, 217, 48,
249, 243, 1, 229, 93, 249, 243, 1, 192, 162, 249, 243, 1, 193, 69, 249,
243, 1, 196, 123, 249, 243, 1, 208, 7, 249, 243, 1, 220, 42, 249, 243, 1,
205, 223, 249, 243, 1, 192, 85, 249, 243, 1, 204, 12, 249, 243, 1, 192,
62, 249, 243, 1, 203, 132, 249, 243, 1, 202, 61, 249, 243, 1, 229, 255,
249, 243, 251, 151, 77, 199, 76, 103, 236, 112, 136, 90, 78, 209, 37, 2,
103, 236, 112, 136, 90, 78, 209, 37, 220, 73, 103, 236, 112, 136, 90, 78,
209, 37, 220, 73, 90, 78, 136, 103, 236, 112, 209, 37, 220, 73, 103, 207,
78, 136, 90, 207, 82, 209, 37, 220, 73, 90, 207, 82, 136, 103, 207, 78,
209, 37, 223, 150, 210, 223, 1, 251, 24, 223, 150, 210, 223, 1, 248, 62,
223, 150, 210, 223, 1, 231, 31, 223, 150, 210, 223, 1, 237, 220, 223,
150, 210, 223, 1, 229, 255, 223, 150, 210, 223, 1, 194, 119, 223, 150,
210, 223, 1, 192, 89, 223, 150, 210, 223, 1, 229, 194, 223, 150, 210,
223, 1, 200, 4, 223, 150, 210, 223, 1, 192, 238, 223, 150, 210, 223, 1,
222, 109, 223, 150, 210, 223, 1, 220, 85, 223, 150, 210, 223, 1, 217, 12,
223, 150, 210, 223, 1, 212, 230, 223, 150, 210, 223, 1, 206, 46, 223,
150, 210, 223, 1, 249, 231, 223, 150, 210, 223, 1, 210, 181, 223, 150,
210, 223, 1, 206, 83, 223, 150, 210, 223, 1, 208, 181, 223, 150, 210,
223, 1, 207, 188, 223, 150, 210, 223, 1, 203, 224, 223, 150, 210, 223, 1,
200, 93, 223, 150, 210, 223, 31, 101, 223, 150, 210, 223, 31, 104, 223,
150, 210, 223, 31, 133, 223, 150, 210, 223, 31, 134, 223, 150, 210, 223,
31, 200, 30, 223, 150, 210, 223, 31, 197, 239, 223, 150, 210, 223, 31,
90, 228, 162, 223, 150, 210, 223, 31, 90, 180, 223, 150, 211, 56, 1, 251,
24, 223, 150, 211, 56, 1, 248, 62, 223, 150, 211, 56, 1, 231, 31, 223,
150, 211, 56, 1, 237, 220, 223, 150, 211, 56, 1, 229, 255, 223, 150, 211,
56, 1, 194, 118, 223, 150, 211, 56, 1, 192, 89, 223, 150, 211, 56, 1,
229, 194, 223, 150, 211, 56, 1, 200, 4, 223, 150, 211, 56, 1, 192, 238,
223, 150, 211, 56, 1, 222, 109, 223, 150, 211, 56, 1, 220, 85, 223, 150,
211, 56, 1, 217, 11, 223, 150, 211, 56, 1, 212, 230, 223, 150, 211, 56,
1, 206, 46, 223, 150, 211, 56, 1, 210, 181, 223, 150, 211, 56, 1, 206,
83, 223, 150, 211, 56, 1, 203, 224, 223, 150, 211, 56, 1, 200, 93, 223,
150, 211, 56, 31, 101, 223, 150, 211, 56, 31, 104, 223, 150, 211, 56, 31,
133, 223, 150, 211, 56, 31, 134, 223, 150, 211, 56, 31, 200, 30, 223,
150, 211, 56, 31, 197, 239, 223, 150, 211, 56, 31, 90, 228, 162, 223,
150, 211, 56, 31, 90, 180, 209, 63, 211, 56, 1, 251, 24, 209, 63, 211,
56, 1, 248, 62, 209, 63, 211, 56, 1, 231, 31, 209, 63, 211, 56, 1, 237,
220, 209, 63, 211, 56, 1, 229, 255, 209, 63, 211, 56, 1, 194, 118, 209,
63, 211, 56, 1, 192, 89, 209, 63, 211, 56, 1, 229, 194, 209, 63, 211, 56,
1, 192, 238, 209, 63, 211, 56, 1, 222, 109, 209, 63, 211, 56, 1, 220, 85,
209, 63, 211, 56, 1, 217, 11, 209, 63, 211, 56, 1, 212, 230, 209, 63,
211, 56, 1, 206, 46, 209, 63, 211, 56, 1, 210, 181, 209, 63, 211, 56, 1,
206, 83, 209, 63, 211, 56, 1, 203, 224, 209, 63, 211, 56, 1, 200, 93,
209, 63, 211, 56, 205, 209, 77, 209, 63, 211, 56, 163, 205, 209, 77, 209,
63, 211, 56, 232, 119, 236, 112, 4, 238, 183, 209, 63, 211, 56, 232, 119,
236, 112, 4, 236, 114, 209, 63, 211, 56, 31, 101, 209, 63, 211, 56, 31,
104, 209, 63, 211, 56, 31, 133, 209, 63, 211, 56, 31, 134, 209, 63, 211,
56, 31, 200, 30, 209, 63, 211, 56, 31, 197, 239, 209, 63, 211, 56, 31,
90, 228, 162, 40, 198, 12, 1, 211, 152, 64, 40, 198, 12, 1, 193, 57, 64,
40, 198, 12, 1, 193, 57, 251, 108, 40, 198, 12, 1, 211, 152, 70, 40, 198,
12, 1, 193, 57, 70, 40, 198, 12, 1, 193, 57, 71, 40, 198, 12, 1, 211,
152, 74, 40, 198, 12, 1, 211, 152, 212, 0, 40, 198, 12, 1, 193, 57, 212,
0, 40, 198, 12, 1, 211, 152, 251, 238, 40, 198, 12, 1, 193, 57, 251, 238,
40, 198, 12, 1, 211, 152, 251, 107, 40, 198, 12, 1, 193, 57, 251, 107,
40, 198, 12, 1, 211, 152, 251, 80, 40, 198, 12, 1, 193, 57, 251, 80, 40,
198, 12, 1, 211, 152, 251, 102, 40, 198, 12, 1, 193, 57, 251, 102, 40,
198, 12, 1, 211, 152, 251, 125, 40, 198, 12, 1, 193, 57, 251, 125, 40,
198, 12, 1, 211, 152, 251, 106, 40, 198, 12, 1, 211, 152, 233, 170, 40,
198, 12, 1, 193, 57, 233, 170, 40, 198, 12, 1, 211, 152, 249, 236, 40,
198, 12, 1, 193, 57, 249, 236, 40, 198, 12, 1, 211, 152, 251, 89, 40,
198, 12, 1, 193, 57, 251, 89, 40, 198, 12, 1, 211, 152, 251, 100, 40,
198, 12, 1, 193, 57, 251, 100, 40, 198, 12, 1, 211, 152, 211, 254, 40,
198, 12, 1, 193, 57, 211, 254, 40, 198, 12, 1, 211, 152, 251, 35, 40,
198, 12, 1, 193, 57, 251, 35, 40, 198, 12, 1, 211, 152, 251, 99, 40, 198,
12, 1, 211, 152, 234, 103, 40, 198, 12, 1, 211, 152, 234, 99, 40, 198,
12, 1, 211, 152, 250, 224, 40, 198, 12, 1, 211, 152, 251, 97, 40, 198,
12, 1, 193, 57, 251, 97, 40, 198, 12, 1, 211, 152, 234, 65, 40, 198, 12,
1, 193, 57, 234, 65, 40, 198, 12, 1, 211, 152, 234, 85, 40, 198, 12, 1,
193, 57, 234, 85, 40, 198, 12, 1, 211, 152, 234, 51, 40, 198, 12, 1, 193,
57, 234, 51, 40, 198, 12, 1, 193, 57, 250, 214, 40, 198, 12, 1, 211, 152,
234, 73, 40, 198, 12, 1, 193, 57, 251, 96, 40, 198, 12, 1, 211, 152, 234,
41, 40, 198, 12, 1, 211, 152, 211, 185, 40, 198, 12, 1, 211, 152, 228,
51, 40, 198, 12, 1, 211, 152, 234, 179, 40, 198, 12, 1, 193, 57, 234,
179, 40, 198, 12, 1, 211, 152, 250, 135, 40, 198, 12, 1, 193, 57, 250,
135, 40, 198, 12, 1, 211, 152, 223, 107, 40, 198, 12, 1, 193, 57, 223,
107, 40, 198, 12, 1, 211, 152, 211, 165, 40, 198, 12, 1, 193, 57, 211,
165, 40, 198, 12, 1, 211, 152, 250, 131, 40, 198, 12, 1, 193, 57, 250,
131, 40, 198, 12, 1, 211, 152, 251, 95, 40, 198, 12, 1, 211, 152, 250,
61, 40, 198, 12, 1, 211, 152, 251, 93, 40, 198, 12, 1, 211, 152, 250, 53,
40, 198, 12, 1, 193, 57, 250, 53, 40, 198, 12, 1, 211, 152, 233, 255, 40,
198, 12, 1, 193, 57, 233, 255, 40, 198, 12, 1, 211, 152, 250, 26, 40,
198, 12, 1, 193, 57, 250, 26, 40, 198, 12, 1, 211, 152, 251, 90, 40, 198,
12, 1, 193, 57, 251, 90, 40, 198, 12, 1, 211, 152, 211, 140, 40, 198, 12,
1, 211, 152, 248, 177, 40, 169, 6, 1, 64, 40, 169, 6, 1, 252, 33, 40,
169, 6, 1, 234, 181, 40, 169, 6, 1, 250, 236, 40, 169, 6, 1, 234, 179,
40, 169, 6, 1, 234, 85, 40, 169, 6, 1, 234, 176, 40, 169, 6, 1, 234, 175,
40, 169, 6, 1, 250, 217, 40, 169, 6, 1, 71, 40, 169, 6, 1, 242, 85, 71,
40, 169, 6, 1, 234, 171, 40, 169, 6, 1, 234, 164, 40, 169, 6, 1, 234,
163, 40, 169, 6, 1, 234, 160, 40, 169, 6, 1, 234, 157, 40, 169, 6, 1, 70,
40, 169, 6, 1, 223, 224, 40, 169, 6, 1, 234, 134, 40, 169, 6, 1, 234,
131, 40, 169, 6, 1, 251, 44, 40, 169, 6, 1, 197, 50, 40, 169, 6, 1, 234,
124, 40, 169, 6, 1, 234, 102, 40, 169, 6, 1, 234, 99, 40, 169, 6, 1, 234,
88, 40, 169, 6, 1, 234, 51, 40, 169, 6, 1, 74, 40, 169, 6, 1, 211, 194,
40, 169, 6, 1, 214, 23, 212, 0, 40, 169, 6, 1, 206, 208, 212, 0, 40, 169,
6, 1, 211, 255, 40, 169, 6, 1, 234, 41, 40, 169, 6, 1, 234, 93, 40, 169,
6, 1, 234, 21, 40, 169, 6, 1, 203, 195, 234, 21, 40, 169, 6, 1, 234, 9,
40, 169, 6, 1, 233, 244, 40, 169, 6, 1, 233, 242, 40, 169, 6, 1, 234, 65,
40, 169, 6, 1, 233, 231, 40, 169, 6, 1, 234, 177, 40, 169, 6, 1, 68, 40,
169, 6, 1, 196, 251, 40, 169, 6, 1, 214, 23, 197, 104, 40, 169, 6, 1,
206, 208, 197, 104, 40, 169, 6, 1, 233, 218, 40, 169, 6, 1, 233, 170, 40,
169, 6, 1, 233, 165, 40, 169, 6, 1, 234, 64, 57, 40, 169, 6, 1, 197, 10,
40, 169, 2, 1, 64, 40, 169, 2, 1, 252, 33, 40, 169, 2, 1, 234, 181, 40,
169, 2, 1, 250, 236, 40, 169, 2, 1, 234, 179, 40, 169, 2, 1, 234, 85, 40,
169, 2, 1, 234, 176, 40, 169, 2, 1, 234, 175, 40, 169, 2, 1, 250, 217,
40, 169, 2, 1, 71, 40, 169, 2, 1, 242, 85, 71, 40, 169, 2, 1, 234, 171,
40, 169, 2, 1, 234, 164, 40, 169, 2, 1, 234, 163, 40, 169, 2, 1, 234,
160, 40, 169, 2, 1, 234, 157, 40, 169, 2, 1, 70, 40, 169, 2, 1, 223, 224,
40, 169, 2, 1, 234, 134, 40, 169, 2, 1, 234, 131, 40, 169, 2, 1, 251, 44,
40, 169, 2, 1, 197, 50, 40, 169, 2, 1, 234, 124, 40, 169, 2, 1, 234, 102,
40, 169, 2, 1, 234, 99, 40, 169, 2, 1, 234, 88, 40, 169, 2, 1, 234, 51,
40, 169, 2, 1, 74, 40, 169, 2, 1, 211, 194, 40, 169, 2, 1, 214, 23, 212,
0, 40, 169, 2, 1, 206, 208, 212, 0, 40, 169, 2, 1, 211, 255, 40, 169, 2,
1, 234, 41, 40, 169, 2, 1, 234, 93, 40, 169, 2, 1, 234, 21, 40, 169, 2,
1, 203, 195, 234, 21, 40, 169, 2, 1, 234, 9, 40, 169, 2, 1, 233, 244, 40,
169, 2, 1, 233, 242, 40, 169, 2, 1, 234, 65, 40, 169, 2, 1, 233, 231, 40,
169, 2, 1, 234, 177, 40, 169, 2, 1, 68, 40, 169, 2, 1, 196, 251, 40, 169,
2, 1, 214, 23, 197, 104, 40, 169, 2, 1, 206, 208, 197, 104, 40, 169, 2,
1, 233, 218, 40, 169, 2, 1, 233, 170, 40, 169, 2, 1, 233, 165, 40, 169,
2, 1, 234, 64, 57, 40, 169, 2, 1, 197, 10, 40, 169, 31, 101, 40, 169, 31,
151, 40, 169, 31, 200, 30, 40, 169, 31, 233, 3, 40, 169, 31, 90, 228,
162, 40, 169, 31, 90, 180, 230, 33, 207, 36, 1, 64, 230, 33, 207, 36, 1,
249, 3, 230, 33, 207, 36, 1, 166, 230, 33, 207, 36, 1, 189, 230, 33, 207,
36, 1, 198, 83, 230, 33, 207, 36, 1, 223, 62, 230, 33, 207, 36, 1, 247,
19, 230, 33, 207, 36, 1, 144, 230, 33, 207, 36, 1, 221, 250, 230, 33,
207, 36, 1, 233, 97, 230, 33, 207, 36, 1, 238, 0, 230, 33, 207, 36, 1,
237, 161, 230, 33, 207, 36, 1, 167, 230, 33, 207, 36, 1, 207, 3, 230, 33,
207, 36, 1, 192, 112, 230, 33, 207, 36, 1, 188, 230, 33, 207, 36, 1, 204,
64, 230, 33, 207, 36, 1, 160, 230, 33, 207, 36, 1, 231, 233, 230, 33,
207, 36, 1, 177, 230, 33, 207, 36, 1, 172, 230, 33, 207, 36, 1, 181, 230,
33, 207, 36, 1, 194, 169, 230, 33, 207, 36, 1, 221, 175, 194, 169, 230,
33, 207, 36, 1, 168, 230, 33, 207, 36, 1, 221, 175, 168, 230, 33, 207,
36, 1, 214, 165, 230, 33, 207, 36, 1, 212, 201, 230, 33, 207, 36, 1, 196,
157, 230, 33, 207, 36, 18, 64, 230, 33, 207, 36, 18, 70, 230, 33, 207,
36, 18, 68, 230, 33, 207, 36, 18, 71, 230, 33, 207, 36, 18, 74, 230, 33,
207, 36, 122, 206, 67, 230, 33, 207, 36, 122, 215, 97, 221, 216, 230, 33,
207, 36, 3, 230, 27, 230, 33, 207, 36, 3, 200, 150, 230, 33, 207, 36, 3,
200, 124, 230, 33, 207, 36, 3, 200, 106, 230, 33, 207, 36, 17, 192, 76,
230, 33, 207, 36, 17, 101, 230, 33, 207, 36, 17, 104, 230, 33, 207, 36,
17, 133, 230, 33, 207, 36, 17, 134, 230, 33, 207, 36, 17, 151, 230, 33,
207, 36, 17, 170, 230, 33, 207, 36, 17, 179, 230, 33, 207, 36, 17, 174,
230, 33, 207, 36, 17, 182, 206, 196, 17, 101, 206, 196, 17, 104, 206,
196, 17, 133, 206, 196, 17, 134, 206, 196, 17, 151, 206, 196, 17, 170,
206, 196, 17, 179, 206, 196, 17, 174, 206, 196, 17, 182, 206, 196, 31,
200, 30, 206, 196, 31, 197, 239, 206, 196, 31, 199, 184, 206, 196, 31,
232, 126, 206, 196, 31, 233, 3, 206, 196, 31, 203, 25, 206, 196, 31, 204,
140, 206, 196, 31, 234, 137, 206, 196, 31, 214, 11, 206, 196, 31, 90,
228, 162, 206, 196, 31, 103, 228, 162, 206, 196, 31, 112, 228, 162, 206,
196, 31, 232, 119, 228, 162, 206, 196, 31, 232, 214, 228, 162, 206, 196,
31, 203, 41, 228, 162, 206, 196, 31, 204, 146, 228, 162, 206, 196, 31,
234, 148, 228, 162, 206, 196, 31, 214, 16, 228, 162, 206, 196, 232, 109,
90, 230, 78, 206, 196, 232, 109, 90, 208, 167, 206, 196, 232, 109, 90,
199, 191, 206, 196, 232, 109, 103, 199, 188, 193, 28, 1, 234, 108, 193,
28, 1, 248, 123, 193, 28, 1, 210, 181, 193, 28, 1, 210, 80, 193, 28, 1,
199, 224, 193, 28, 1, 205, 223, 193, 28, 1, 242, 136, 193, 28, 1, 242,
203, 193, 28, 1, 242, 217, 193, 28, 1, 229, 187, 193, 28, 1, 193, 209,
193, 28, 1, 237, 227, 193, 28, 1, 192, 101, 193, 28, 1, 167, 193, 28, 1,
207, 156, 193, 28, 1, 192, 112, 193, 28, 1, 223, 62, 193, 28, 1, 203, 78,
193, 28, 1, 203, 224, 193, 28, 1, 206, 86, 193, 28, 1, 237, 250, 193, 28,
1, 189, 193, 28, 1, 192, 85, 193, 28, 1, 233, 172, 193, 28, 1, 193, 197,
193, 28, 1, 233, 97, 193, 28, 1, 196, 157, 193, 28, 1, 196, 158, 250,
249, 20, 193, 28, 1, 208, 232, 193, 28, 1, 222, 139, 193, 28, 1, 221,
247, 193, 28, 1, 231, 220, 193, 28, 1, 220, 94, 193, 28, 1, 216, 122,
193, 28, 1, 212, 230, 193, 28, 1, 197, 84, 193, 28, 1, 194, 119, 193, 28,
1, 211, 106, 193, 28, 1, 233, 212, 193, 28, 1, 230, 6, 193, 28, 1, 192,
229, 193, 28, 1, 233, 242, 193, 28, 38, 230, 67, 77, 193, 28, 38, 217,
210, 77, 193, 28, 228, 109, 77, 193, 28, 1, 220, 95, 4, 78, 58, 193, 28,
1, 192, 230, 4, 242, 122, 58, 40, 202, 194, 1, 251, 24, 40, 202, 194, 1,
52, 251, 24, 40, 202, 194, 1, 248, 62, 40, 202, 194, 1, 52, 248, 62, 40,
202, 194, 1, 231, 31, 40, 202, 194, 1, 229, 255, 40, 202, 194, 1, 52,
229, 255, 40, 202, 194, 1, 194, 119, 40, 202, 194, 1, 192, 89, 40, 202,
194, 1, 229, 194, 40, 202, 194, 1, 192, 238, 40, 202, 194, 1, 222, 109,
40, 202, 194, 1, 220, 85, 40, 202, 194, 1, 217, 12, 40, 202, 194, 1, 212,
230, 40, 202, 194, 1, 52, 212, 230, 40, 202, 194, 1, 52, 212, 231, 4, 84,
200, 147, 40, 202, 194, 1, 206, 46, 40, 202, 194, 1, 249, 231, 40, 202,
194, 1, 250, 249, 249, 231, 40, 202, 194, 1, 210, 181, 40, 202, 194, 1,
206, 83, 40, 202, 194, 1, 52, 206, 83, 40, 202, 194, 1, 52, 206, 84, 4,
84, 200, 147, 40, 202, 194, 1, 207, 186, 40, 202, 194, 1, 203, 224, 40,
202, 194, 1, 200, 93, 40, 202, 194, 1, 52, 200, 93, 40, 202, 194, 1, 52,
200, 94, 4, 84, 200, 147, 40, 202, 194, 31, 101, 40, 202, 194, 31, 104,
40, 202, 194, 31, 133, 40, 202, 194, 31, 134, 40, 202, 194, 31, 151, 40,
202, 194, 31, 200, 30, 40, 202, 194, 31, 197, 239, 40, 202, 194, 31, 199,
184, 40, 202, 194, 31, 90, 228, 162, 40, 202, 194, 232, 109, 90, 230, 78,
40, 202, 194, 34, 249, 230, 202, 194, 1, 251, 24, 202, 194, 1, 248, 62,
202, 194, 1, 231, 31, 202, 194, 1, 229, 255, 202, 194, 1, 194, 119, 202,
194, 1, 192, 89, 202, 194, 1, 229, 194, 202, 194, 1, 192, 238, 202, 194,
1, 222, 109, 202, 194, 1, 220, 85, 202, 194, 1, 217, 12, 202, 194, 1,
212, 230, 202, 194, 1, 206, 46, 202, 194, 1, 249, 231, 202, 194, 1, 210,
181, 202, 194, 1, 206, 83, 202, 194, 1, 207, 187, 202, 194, 1, 203, 224,
202, 194, 1, 200, 93, 202, 194, 1, 233, 18, 202, 194, 1, 219, 242, 202,
194, 223, 177, 203, 224, 202, 194, 38, 78, 63, 202, 194, 38, 103, 236,
112, 63, 202, 194, 38, 78, 58, 202, 194, 38, 103, 236, 112, 58, 202, 194,
38, 238, 132, 58, 202, 194, 38, 238, 132, 63, 202, 194, 38, 229, 15, 58,
202, 194, 38, 229, 15, 63, 202, 194, 38, 184, 229, 15, 63, 202, 194, 38,
207, 189, 63, 202, 194, 38, 201, 208, 63, 202, 194, 31, 101, 202, 194,
31, 200, 30, 202, 194, 31, 197, 239, 202, 194, 31, 90, 228, 162, 202,
194, 209, 38, 103, 84, 248, 182, 202, 194, 209, 38, 103, 84, 248, 183, 4,
236, 111, 202, 194, 209, 38, 242, 131, 4, 236, 114, 202, 194, 209, 38,
103, 242, 128, 4, 236, 111, 202, 194, 209, 38, 138, 242, 131, 4, 236,
114, 242, 181, 1, 251, 24, 242, 181, 1, 2, 251, 24, 242, 181, 1, 248, 62,
242, 181, 1, 231, 31, 242, 181, 1, 237, 220, 242, 181, 1, 229, 255, 242,
181, 1, 194, 119, 242, 181, 1, 238, 141, 194, 119, 242, 181, 1, 192, 89,
242, 181, 1, 229, 194, 242, 181, 1, 192, 238, 242, 181, 1, 222, 109, 242,
181, 1, 220, 85, 242, 181, 1, 217, 12, 242, 181, 1, 212, 230, 242, 181,
1, 206, 46, 242, 181, 1, 249, 231, 242, 181, 1, 210, 181, 242, 181, 1,
207, 188, 242, 181, 1, 203, 224, 242, 181, 1, 200, 93, 242, 181, 31, 101,
242, 181, 31, 104, 242, 181, 31, 133, 242, 181, 31, 134, 242, 181, 31,
200, 30, 242, 181, 31, 197, 239, 242, 181, 31, 90, 228, 162, 234, 101, 1,
251, 24, 234, 101, 1, 248, 62, 234, 101, 1, 231, 31, 234, 101, 1, 237,
220, 234, 101, 1, 229, 255, 234, 101, 1, 194, 119, 234, 101, 1, 192, 89,
234, 101, 1, 229, 194, 234, 101, 1, 200, 4, 234, 101, 1, 192, 238, 234,
101, 1, 222, 109, 234, 101, 1, 220, 85, 234, 101, 1, 217, 12, 234, 101,
1, 212, 230, 234, 101, 1, 206, 46, 234, 101, 1, 249, 231, 234, 101, 1,
210, 181, 234, 101, 1, 206, 83, 234, 101, 1, 208, 181, 234, 101, 1, 207,
188, 234, 101, 1, 203, 224, 234, 101, 1, 200, 93, 234, 101, 34, 192, 88,
164, 3, 246, 234, 164, 3, 250, 168, 164, 3, 196, 6, 164, 3, 223, 13, 164,
3, 197, 39, 164, 1, 64, 164, 1, 252, 33, 164, 1, 70, 164, 1, 223, 224,
164, 1, 68, 164, 1, 196, 251, 164, 1, 118, 150, 164, 1, 118, 207, 4, 164,
1, 118, 165, 164, 1, 118, 219, 138, 164, 1, 71, 164, 1, 251, 63, 164, 1,
74, 164, 1, 250, 8, 164, 1, 160, 164, 1, 221, 250, 164, 1, 231, 233, 164,
1, 231, 84, 164, 1, 214, 165, 164, 1, 247, 19, 164, 1, 246, 117, 164, 1,
223, 62, 164, 1, 223, 28, 164, 1, 212, 201, 164, 1, 198, 83, 164, 1, 198,
71, 164, 1, 237, 161, 164, 1, 237, 145, 164, 1, 213, 178, 164, 1, 189,
164, 1, 199, 240, 164, 1, 238, 0, 164, 1, 237, 40, 164, 1, 181, 164, 1,
166, 164, 1, 210, 94, 164, 1, 249, 3, 164, 1, 248, 54, 164, 1, 172, 164,
1, 168, 164, 1, 167, 164, 1, 177, 164, 1, 196, 157, 164, 1, 204, 64, 164,
1, 202, 92, 164, 1, 188, 164, 1, 144, 164, 1, 219, 137, 164, 1, 40, 44,
219, 126, 164, 1, 40, 44, 207, 3, 164, 1, 40, 44, 213, 160, 164, 18, 3,
252, 33, 164, 18, 3, 248, 50, 252, 33, 164, 18, 3, 70, 164, 18, 3, 223,
224, 164, 18, 3, 68, 164, 18, 3, 196, 251, 164, 18, 3, 118, 150, 164, 18,
3, 118, 207, 4, 164, 18, 3, 118, 165, 164, 18, 3, 118, 219, 138, 164, 18,
3, 71, 164, 18, 3, 251, 63, 164, 18, 3, 74, 164, 18, 3, 250, 8, 164, 196,
11, 164, 237, 208, 164, 55, 237, 208, 164, 209, 38, 236, 114, 164, 209,
38, 55, 236, 114, 164, 209, 38, 219, 175, 164, 209, 38, 238, 194, 161,
164, 209, 38, 219, 57, 164, 31, 101, 164, 31, 104, 164, 31, 133, 164, 31,
134, 164, 31, 151, 164, 31, 170, 164, 31, 179, 164, 31, 174, 164, 31,
182, 164, 31, 200, 30, 164, 31, 197, 239, 164, 31, 199, 184, 164, 31,
232, 126, 164, 31, 233, 3, 164, 31, 203, 25, 164, 31, 204, 140, 164, 31,
234, 137, 164, 31, 214, 11, 164, 31, 90, 228, 162, 164, 31, 90, 180, 164,
17, 192, 76, 164, 17, 101, 164, 17, 104, 164, 17, 133, 164, 17, 134, 164,
17, 151, 164, 17, 170, 164, 17, 179, 164, 17, 174, 164, 17, 182, 164, 31,
222, 228, 222, 132, 3, 246, 234, 222, 132, 3, 250, 168, 222, 132, 3, 196,
6, 222, 132, 1, 64, 222, 132, 1, 252, 33, 222, 132, 1, 70, 222, 132, 1,
223, 224, 222, 132, 1, 68, 222, 132, 1, 196, 251, 222, 132, 1, 71, 222,
132, 1, 251, 63, 222, 132, 1, 74, 222, 132, 1, 250, 8, 222, 132, 1, 160,
222, 132, 1, 221, 250, 222, 132, 1, 231, 233, 222, 132, 1, 231, 84, 222,
132, 1, 214, 165, 222, 132, 1, 247, 19, 222, 132, 1, 246, 117, 222, 132,
1, 223, 62, 222, 132, 1, 223, 28, 222, 132, 1, 212, 201, 222, 132, 1,
198, 83, 222, 132, 1, 198, 71, 222, 132, 1, 237, 161, 222, 132, 1, 237,
150, 222, 132, 1, 237, 145, 222, 132, 1, 207, 156, 222, 132, 1, 213, 178,
222, 132, 1, 189, 222, 132, 1, 199, 240, 222, 132, 1, 238, 0, 222, 132,
1, 237, 40, 222, 132, 1, 181, 222, 132, 1, 166, 222, 132, 1, 210, 94,
222, 132, 1, 249, 3, 222, 132, 1, 248, 54, 222, 132, 1, 172, 222, 132, 1,
168, 222, 132, 1, 167, 222, 132, 1, 177, 222, 132, 1, 196, 157, 222, 132,
1, 204, 64, 222, 132, 1, 202, 92, 222, 132, 1, 188, 222, 132, 1, 144,
222, 132, 18, 3, 252, 33, 222, 132, 18, 3, 70, 222, 132, 18, 3, 223, 224,
222, 132, 18, 3, 68, 222, 132, 18, 3, 196, 251, 222, 132, 18, 3, 71, 222,
132, 18, 3, 251, 63, 222, 132, 18, 3, 74, 222, 132, 18, 3, 250, 8, 222,
132, 3, 196, 11, 222, 132, 3, 212, 241, 222, 132, 251, 151, 57, 222, 132,
234, 54, 57, 222, 132, 31, 57, 222, 132, 205, 209, 77, 222, 132, 55, 205,
209, 77, 222, 132, 237, 208, 222, 132, 55, 237, 208, 222, 132, 31, 3, 58,
202, 179, 202, 187, 1, 206, 76, 202, 179, 202, 187, 1, 200, 151, 202,
179, 202, 187, 1, 248, 229, 202, 179, 202, 187, 1, 247, 8, 202, 179, 202,
187, 1, 237, 236, 202, 179, 202, 187, 1, 231, 218, 202, 179, 202, 187, 1,
217, 188, 202, 179, 202, 187, 1, 214, 162, 202, 179, 202, 187, 1, 220,
158, 202, 179, 202, 187, 1, 215, 71, 202, 179, 202, 187, 1, 196, 153,
202, 179, 202, 187, 1, 211, 57, 202, 179, 202, 187, 1, 193, 110, 202,
179, 202, 187, 1, 208, 50, 202, 179, 202, 187, 1, 230, 89, 202, 179, 202,
187, 1, 222, 137, 202, 179, 202, 187, 1, 223, 56, 202, 179, 202, 187, 1,
212, 198, 202, 179, 202, 187, 1, 251, 72, 202, 179, 202, 187, 1, 234,
169, 202, 179, 202, 187, 1, 223, 225, 202, 179, 202, 187, 1, 197, 97,
202, 179, 202, 187, 1, 211, 241, 202, 179, 202, 187, 1, 234, 157, 202,
179, 202, 187, 1, 217, 204, 202, 179, 202, 187, 17, 192, 76, 202, 179,
202, 187, 17, 101, 202, 179, 202, 187, 17, 104, 202, 179, 202, 187, 17,
133, 202, 179, 202, 187, 17, 134, 202, 179, 202, 187, 17, 151, 202, 179,
202, 187, 17, 170, 202, 179, 202, 187, 17, 179, 202, 179, 202, 187, 17,
174, 202, 179, 202, 187, 17, 182, 246, 111, 3, 246, 234, 246, 111, 3,
250, 168, 246, 111, 3, 196, 6, 246, 111, 1, 252, 33, 246, 111, 1, 70,
246, 111, 1, 68, 246, 111, 1, 71, 246, 111, 1, 222, 159, 246, 111, 1,
221, 249, 246, 111, 1, 231, 230, 246, 111, 1, 231, 83, 246, 111, 1, 214,
164, 246, 111, 1, 247, 18, 246, 111, 1, 246, 116, 246, 111, 1, 223, 61,
246, 111, 1, 223, 27, 246, 111, 1, 212, 200, 246, 111, 1, 198, 82, 246,
111, 1, 198, 70, 246, 111, 1, 237, 160, 246, 111, 1, 237, 144, 246, 111,
1, 213, 177, 246, 111, 1, 200, 174, 246, 111, 1, 199, 239, 246, 111, 1,
237, 255, 246, 111, 1, 237, 39, 246, 111, 1, 215, 84, 246, 111, 1, 211,
77, 246, 111, 1, 210, 93, 246, 111, 1, 249, 1, 246, 111, 1, 248, 53, 246,
111, 1, 217, 219, 246, 111, 1, 192, 163, 246, 111, 1, 193, 129, 246, 111,
1, 208, 68, 246, 111, 1, 220, 184, 246, 111, 1, 194, 163, 246, 111, 1,
206, 91, 246, 111, 1, 230, 99, 246, 111, 18, 3, 64, 246, 111, 18, 3, 70,
246, 111, 18, 3, 223, 224, 246, 111, 18, 3, 68, 246, 111, 18, 3, 196,
251, 246, 111, 18, 3, 71, 246, 111, 18, 3, 251, 63, 246, 111, 18, 3, 74,
246, 111, 18, 3, 250, 8, 246, 111, 18, 3, 211, 238, 246, 111, 185, 77,
246, 111, 250, 9, 77, 246, 111, 196, 11, 246, 111, 217, 217, 246, 111,
17, 192, 76, 246, 111, 17, 101, 246, 111, 17, 104, 246, 111, 17, 133,
246, 111, 17, 134, 246, 111, 17, 151, 246, 111, 17, 170, 246, 111, 17,
179, 246, 111, 17, 174, 246, 111, 17, 182, 246, 111, 205, 209, 77, 246,
111, 237, 208, 246, 111, 55, 237, 208, 246, 111, 208, 159, 77, 246, 111,
1, 219, 221, 246, 111, 18, 3, 252, 33, 246, 111, 18, 3, 234, 150, 246,
111, 1, 196, 156, 217, 186, 1, 64, 217, 186, 1, 70, 217, 186, 1, 68, 217,
186, 1, 71, 217, 186, 1, 74, 217, 186, 1, 160, 217, 186, 1, 221, 250,
217, 186, 1, 231, 233, 217, 186, 1, 231, 84, 217, 186, 1, 247, 19, 217,
186, 1, 246, 117, 217, 186, 1, 223, 62, 217, 186, 1, 223, 28, 217, 186,
1, 212, 201, 217, 186, 1, 198, 83, 217, 186, 1, 198, 71, 217, 186, 1,
237, 161, 217, 186, 1, 237, 145, 217, 186, 1, 213, 178, 217, 186, 1, 189,
217, 186, 1, 199, 240, 217, 186, 1, 238, 0, 217, 186, 1, 237, 40, 217,
186, 1, 181, 217, 186, 1, 166, 217, 186, 1, 210, 94, 217, 186, 1, 249, 3,
217, 186, 1, 248, 54, 217, 186, 1, 172, 217, 186, 1, 167, 217, 186, 1,
177, 217, 186, 1, 196, 157, 217, 186, 1, 188, 217, 186, 1, 144, 217, 186,
1, 207, 3, 217, 186, 3, 212, 241, 217, 186, 251, 151, 57, 217, 186, 205,
209, 77, 217, 186, 34, 203, 172, 204, 28, 3, 246, 234, 204, 28, 3, 250,
168, 204, 28, 3, 196, 6, 204, 28, 1, 64, 204, 28, 1, 252, 33, 204, 28, 1,
70, 204, 28, 1, 223, 224, 204, 28, 1, 68, 204, 28, 1, 196, 251, 204, 28,
1, 118, 150, 204, 28, 1, 118, 207, 4, 204, 28, 1, 118, 165, 204, 28, 1,
118, 219, 138, 204, 28, 1, 71, 204, 28, 1, 251, 63, 204, 28, 1, 74, 204,
28, 1, 250, 8, 204, 28, 1, 160, 204, 28, 1, 221, 250, 204, 28, 1, 231,
233, 204, 28, 1, 231, 84, 204, 28, 1, 214, 165, 204, 28, 1, 247, 19, 204,
28, 1, 246, 117, 204, 28, 1, 223, 62, 204, 28, 1, 223, 28, 204, 28, 1,
212, 201, 204, 28, 1, 198, 83, 204, 28, 1, 198, 71, 204, 28, 1, 237, 161,
204, 28, 1, 237, 145, 204, 28, 1, 213, 178, 204, 28, 1, 189, 204, 28, 1,
199, 240, 204, 28, 1, 238, 0, 204, 28, 1, 237, 40, 204, 28, 1, 181, 204,
28, 1, 166, 204, 28, 1, 210, 94, 204, 28, 1, 249, 3, 204, 28, 1, 248, 54,
204, 28, 1, 172, 204, 28, 1, 168, 204, 28, 1, 167, 204, 28, 1, 177, 204,
28, 1, 219, 137, 204, 28, 1, 196, 157, 204, 28, 1, 204, 64, 204, 28, 1,
202, 92, 204, 28, 1, 188, 204, 28, 1, 144, 204, 28, 18, 3, 252, 33, 204,
28, 18, 3, 70, 204, 28, 18, 3, 223, 224, 204, 28, 18, 3, 68, 204, 28, 18,
3, 196, 251, 204, 28, 18, 3, 118, 150, 204, 28, 18, 3, 118, 207, 4, 204,
28, 18, 3, 118, 165, 204, 28, 18, 3, 118, 219, 138, 204, 28, 18, 3, 71,
204, 28, 18, 3, 251, 63, 204, 28, 18, 3, 74, 204, 28, 18, 3, 250, 8, 204,
28, 3, 196, 11, 204, 28, 3, 249, 246, 204, 28, 3, 223, 13, 204, 28, 3,
197, 39, 204, 28, 211, 219, 204, 28, 237, 208, 204, 28, 55, 237, 208,
204, 28, 251, 151, 57, 204, 28, 204, 165, 204, 28, 206, 36, 77, 204, 28,
3, 212, 241, 204, 28, 18, 73, 77, 204, 28, 233, 189, 203, 195, 18, 77,
204, 28, 201, 87, 77, 204, 28, 18, 3, 209, 91, 71, 204, 28, 3, 223, 121,
246, 234, 204, 28, 17, 192, 76, 204, 28, 17, 101, 204, 28, 17, 104, 204,
28, 17, 133, 204, 28, 17, 134, 204, 28, 17, 151, 204, 28, 17, 170, 204,
28, 17, 179, 204, 28, 17, 174, 204, 28, 17, 182, 204, 28, 234, 130, 204,
28, 3, 203, 113, 204, 28, 229, 237, 204, 28, 238, 250, 57, 204, 28, 205,
209, 217, 126, 204, 28, 205, 209, 217, 125, 159, 250, 112, 17, 101, 159,
250, 112, 17, 104, 159, 250, 112, 17, 133, 159, 250, 112, 17, 134, 159,
250, 112, 17, 151, 159, 250, 112, 17, 170, 159, 250, 112, 17, 179, 159,
250, 112, 17, 174, 159, 250, 112, 17, 182, 159, 250, 112, 31, 200, 30,
159, 250, 112, 31, 197, 239, 159, 250, 112, 31, 199, 184, 159, 250, 112,
31, 232, 126, 159, 250, 112, 31, 233, 3, 159, 250, 112, 31, 203, 25, 159,
250, 112, 31, 204, 140, 159, 250, 112, 31, 234, 137, 159, 250, 112, 31,
214, 11, 159, 250, 112, 31, 90, 228, 162, 159, 250, 112, 31, 90, 180,
221, 219, 1, 64, 221, 219, 1, 252, 33, 221, 219, 1, 70, 221, 219, 1, 68,
221, 219, 1, 71, 221, 219, 1, 251, 63, 221, 219, 1, 74, 221, 219, 1, 250,
8, 221, 219, 1, 160, 221, 219, 1, 221, 250, 221, 219, 1, 231, 233, 221,
219, 1, 231, 120, 221, 219, 1, 231, 84, 221, 219, 1, 214, 165, 221, 219,
1, 247, 19, 221, 219, 1, 246, 117, 221, 219, 1, 223, 62, 221, 219, 1,
223, 6, 221, 219, 1, 212, 201, 221, 219, 1, 198, 83, 221, 219, 1, 198,
71, 221, 219, 1, 237, 161, 221, 219, 1, 237, 145, 221, 219, 1, 213, 178,
221, 219, 1, 189, 221, 219, 1, 199, 240, 221, 219, 1, 238, 0, 221, 219,
1, 237, 151, 221, 219, 1, 237, 40, 221, 219, 1, 181, 221, 219, 1, 166,
221, 219, 1, 210, 94, 221, 219, 1, 249, 3, 221, 219, 1, 248, 159, 221,
219, 1, 248, 54, 221, 219, 1, 172, 221, 219, 1, 168, 221, 219, 1, 167,
221, 219, 1, 177, 221, 219, 1, 196, 157, 221, 219, 1, 188, 221, 219, 1,
144, 221, 219, 1, 219, 137, 221, 219, 18, 3, 252, 33, 221, 219, 18, 3,
70, 221, 219, 18, 3, 223, 224, 221, 219, 18, 3, 68, 221, 219, 18, 3, 71,
221, 219, 18, 3, 251, 63, 221, 219, 18, 3, 74, 221, 219, 18, 3, 250, 8,
221, 219, 3, 250, 168, 221, 219, 3, 196, 11, 221, 219, 3, 212, 241, 221,
219, 3, 204, 54, 221, 219, 237, 208, 221, 219, 55, 237, 208, 221, 219,
194, 11, 204, 165, 221, 219, 205, 209, 77, 221, 219, 55, 205, 209, 77,
221, 219, 251, 151, 57, 221, 219, 3, 201, 131, 215, 220, 1, 64, 215, 220,
1, 70, 215, 220, 1, 68, 215, 220, 1, 71, 215, 220, 1, 160, 215, 220, 1,
221, 250, 215, 220, 1, 231, 233, 215, 220, 1, 231, 84, 215, 220, 1, 247,
19, 215, 220, 1, 246, 117, 215, 220, 1, 223, 62, 215, 220, 1, 223, 6,
215, 220, 1, 212, 201, 215, 220, 1, 198, 83, 215, 220, 1, 198, 71, 215,
220, 1, 237, 161, 215, 220, 1, 237, 151, 215, 220, 1, 237, 145, 215, 220,
1, 213, 178, 215, 220, 1, 189, 215, 220, 1, 199, 240, 215, 220, 1, 238,
0, 215, 220, 1, 237, 40, 215, 220, 1, 181, 215, 220, 1, 166, 215, 220, 1,
210, 94, 215, 220, 1, 249, 3, 215, 220, 1, 248, 54, 215, 220, 1, 172,
215, 220, 1, 168, 215, 220, 1, 167, 215, 220, 1, 177, 215, 220, 1, 196,
157, 215, 220, 1, 188, 215, 220, 1, 144, 215, 220, 1, 207, 3, 215, 220,
1, 207, 156, 215, 220, 205, 209, 77, 221, 210, 1, 64, 221, 210, 1, 252,
33, 221, 210, 1, 70, 221, 210, 1, 223, 224, 221, 210, 1, 68, 221, 210, 1,
196, 251, 221, 210, 1, 71, 221, 210, 1, 251, 63, 221, 210, 1, 74, 221,
210, 1, 250, 8, 221, 210, 1, 160, 221, 210, 1, 221, 250, 221, 210, 1,
231, 233, 221, 210, 1, 231, 120, 221, 210, 1, 231, 84, 221, 210, 1, 214,
165, 221, 210, 1, 247, 19, 221, 210, 1, 246, 117, 221, 210, 1, 223, 62,
221, 210, 1, 223, 6, 221, 210, 1, 223, 28, 221, 210, 1, 212, 201, 221,
210, 1, 198, 83, 221, 210, 1, 198, 71, 221, 210, 1, 237, 161, 221, 210,
1, 237, 151, 221, 210, 1, 207, 3, 221, 210, 1, 237, 145, 221, 210, 1,
213, 178, 221, 210, 1, 189, 221, 210, 1, 199, 240, 221, 210, 1, 238, 0,
221, 210, 1, 237, 40, 221, 210, 1, 181, 221, 210, 1, 166, 221, 210, 1,
210, 94, 221, 210, 1, 249, 3, 221, 210, 1, 248, 159, 221, 210, 1, 248,
54, 221, 210, 1, 172, 221, 210, 1, 168, 221, 210, 1, 167, 221, 210, 1,
177, 221, 210, 1, 196, 157, 221, 210, 1, 204, 64, 221, 210, 1, 188, 221,
210, 1, 144, 221, 210, 3, 250, 168, 221, 210, 18, 3, 252, 33, 221, 210,
18, 3, 70, 221, 210, 18, 3, 223, 224, 221, 210, 18, 3, 68, 221, 210, 18,
3, 196, 251, 221, 210, 18, 3, 71, 221, 210, 18, 3, 251, 63, 221, 210, 18,
3, 74, 221, 210, 18, 3, 250, 8, 221, 210, 3, 212, 241, 221, 210, 3, 196,
11, 221, 210, 17, 192, 76, 221, 210, 17, 101, 221, 210, 17, 104, 221,
210, 17, 133, 221, 210, 17, 134, 221, 210, 17, 151, 221, 210, 17, 170,
221, 210, 17, 179, 221, 210, 17, 174, 221, 210, 17, 182, 230, 219, 3, 38,
250, 169, 58, 230, 219, 3, 246, 234, 230, 219, 3, 250, 168, 230, 219, 3,
196, 6, 230, 219, 1, 64, 230, 219, 1, 252, 33, 230, 219, 1, 70, 230, 219,
1, 223, 224, 230, 219, 1, 68, 230, 219, 1, 196, 251, 230, 219, 1, 118,
150, 230, 219, 1, 118, 165, 230, 219, 1, 234, 171, 230, 219, 1, 251, 63,
230, 219, 1, 211, 194, 230, 219, 1, 250, 8, 230, 219, 1, 160, 230, 219,
1, 221, 250, 230, 219, 1, 231, 233, 230, 219, 1, 231, 84, 230, 219, 1,
214, 165, 230, 219, 1, 247, 19, 230, 219, 1, 246, 117, 230, 219, 1, 223,
62, 230, 219, 1, 223, 28, 230, 219, 1, 212, 201, 230, 219, 1, 198, 83,
230, 219, 1, 198, 71, 230, 219, 1, 237, 161, 230, 219, 1, 237, 145, 230,
219, 1, 213, 178, 230, 219, 1, 189, 230, 219, 1, 199, 240, 230, 219, 1,
238, 0, 230, 219, 1, 237, 40, 230, 219, 1, 181, 230, 219, 1, 166, 230,
219, 1, 210, 94, 230, 219, 1, 249, 3, 230, 219, 1, 248, 54, 230, 219, 1,
172, 230, 219, 1, 168, 230, 219, 1, 167, 230, 219, 1, 177, 230, 219, 1,
219, 137, 230, 219, 1, 196, 157, 230, 219, 1, 204, 64, 230, 219, 1, 202,
92, 230, 219, 1, 188, 230, 219, 1, 144, 38, 248, 18, 63, 230, 219, 3,
212, 241, 230, 219, 3, 249, 246, 230, 219, 18, 3, 252, 33, 230, 219, 18,
3, 70, 230, 219, 18, 3, 223, 224, 230, 219, 18, 3, 68, 230, 219, 18, 3,
196, 251, 230, 219, 18, 3, 118, 150, 230, 219, 18, 3, 118, 207, 4, 230,
219, 18, 3, 234, 171, 230, 219, 18, 3, 251, 63, 230, 219, 18, 3, 211,
194, 230, 219, 18, 3, 250, 8, 230, 219, 3, 196, 11, 230, 219, 211, 219,
230, 219, 250, 9, 220, 2, 77, 230, 219, 3, 209, 204, 230, 219, 1, 196,
120, 250, 168, 230, 219, 1, 196, 120, 55, 250, 168, 230, 219, 1, 118,
207, 4, 230, 219, 1, 118, 219, 138, 230, 219, 18, 3, 118, 165, 230, 219,
18, 3, 118, 219, 138, 38, 230, 219, 17, 192, 76, 38, 230, 219, 17, 101,
38, 230, 219, 17, 104, 38, 230, 219, 17, 133, 38, 230, 219, 17, 134, 38,
230, 219, 17, 151, 38, 230, 219, 17, 170, 38, 230, 219, 1, 64, 38, 230,
219, 1, 160, 38, 230, 219, 1, 181, 38, 230, 219, 1, 196, 39, 38, 230,
219, 1, 166, 214, 175, 1, 64, 214, 175, 1, 252, 33, 214, 175, 1, 70, 214,
175, 1, 223, 224, 214, 175, 1, 68, 214, 175, 1, 196, 251, 214, 175, 1,
118, 150, 214, 175, 1, 118, 207, 4, 214, 175, 1, 118, 165, 214, 175, 1,
118, 219, 138, 214, 175, 1, 71, 214, 175, 1, 251, 63, 214, 175, 1, 74,
214, 175, 1, 250, 8, 214, 175, 1, 160, 214, 175, 1, 221, 250, 214, 175,
1, 231, 233, 214, 175, 1, 231, 84, 214, 175, 1, 214, 165, 214, 175, 1,
214, 114, 214, 175, 1, 247, 19, 214, 175, 1, 246, 117, 214, 175, 1, 223,
62, 214, 175, 1, 223, 28, 214, 175, 1, 212, 201, 214, 175, 1, 212, 183,
214, 175, 1, 198, 83, 214, 175, 1, 198, 71, 214, 175, 1, 237, 161, 214,
175, 1, 237, 145, 214, 175, 1, 213, 178, 214, 175, 1, 189, 214, 175, 1,
199, 240, 214, 175, 1, 238, 0, 214, 175, 1, 237, 40, 214, 175, 1, 181,
214, 175, 1, 214, 65, 214, 175, 1, 166, 214, 175, 1, 210, 94, 214, 175,
1, 249, 3, 214, 175, 1, 248, 54, 214, 175, 1, 172, 214, 175, 1, 216, 178,
214, 175, 1, 168, 214, 175, 1, 167, 214, 175, 1, 207, 156, 214, 175, 1,
177, 214, 175, 1, 219, 222, 214, 175, 1, 194, 169, 214, 175, 1, 204, 64,
214, 175, 1, 202, 92, 214, 175, 1, 188, 214, 175, 1, 144, 214, 175, 18,
3, 252, 33, 214, 175, 18, 3, 70, 214, 175, 18, 3, 223, 224, 214, 175, 18,
3, 68, 214, 175, 18, 3, 196, 251, 214, 175, 18, 3, 118, 150, 214, 175,
18, 3, 118, 207, 4, 214, 175, 18, 3, 118, 165, 214, 175, 18, 3, 118, 219,
138, 214, 175, 18, 3, 71, 214, 175, 18, 3, 251, 63, 214, 175, 18, 3, 74,
214, 175, 18, 3, 250, 8, 214, 175, 3, 196, 11, 214, 175, 3, 246, 234,
214, 175, 3, 250, 168, 214, 175, 3, 196, 6, 214, 175, 3, 212, 241, 214,
175, 3, 249, 246, 214, 175, 3, 52, 250, 168, 214, 175, 211, 219, 214,
175, 203, 112, 214, 175, 237, 208, 214, 175, 55, 237, 208, 214, 175, 242,
38, 214, 175, 231, 197, 232, 247, 214, 175, 251, 151, 57, 214, 175, 17,
192, 76, 214, 175, 17, 101, 214, 175, 17, 104, 214, 175, 17, 133, 214,
175, 17, 134, 214, 175, 17, 151, 214, 175, 17, 170, 214, 175, 17, 179,
214, 175, 17, 174, 214, 175, 17, 182, 214, 175, 55, 242, 38, 214, 175,
209, 231, 77, 214, 175, 223, 147, 57, 214, 175, 206, 36, 77, 214, 175, 1,
196, 120, 250, 168, 214, 175, 3, 223, 13, 214, 175, 3, 197, 39, 199, 67,
250, 197, 199, 67, 1, 64, 199, 67, 1, 252, 33, 199, 67, 1, 70, 199, 67,
1, 223, 224, 199, 67, 1, 68, 199, 67, 1, 196, 251, 199, 67, 1, 118, 150,
199, 67, 1, 118, 207, 4, 199, 67, 1, 118, 165, 199, 67, 1, 118, 219, 138,
199, 67, 1, 71, 199, 67, 1, 251, 63, 199, 67, 1, 74, 199, 67, 1, 250, 8,
199, 67, 1, 160, 199, 67, 1, 221, 250, 199, 67, 1, 231, 233, 199, 67, 1,
231, 84, 199, 67, 1, 214, 165, 199, 67, 1, 247, 19, 199, 67, 1, 246, 117,
199, 67, 1, 223, 62, 199, 67, 1, 223, 28, 199, 67, 1, 212, 201, 199, 67,
1, 198, 83, 199, 67, 1, 198, 71, 199, 67, 1, 237, 161, 199, 67, 1, 237,
145, 199, 67, 1, 213, 178, 199, 67, 1, 189, 199, 67, 1, 199, 240, 199,
67, 1, 238, 0, 199, 67, 1, 237, 40, 199, 67, 1, 181, 199, 67, 1, 166,
199, 67, 1, 210, 94, 199, 67, 1, 249, 3, 199, 67, 1, 248, 54, 199, 67, 1,
172, 199, 67, 1, 168, 199, 67, 1, 167, 199, 67, 1, 177, 199, 67, 1, 196,
157, 199, 67, 1, 204, 64, 199, 67, 1, 202, 92, 199, 67, 1, 188, 199, 67,
1, 144, 199, 67, 18, 3, 252, 33, 199, 67, 18, 3, 70, 199, 67, 18, 3, 223,
224, 199, 67, 18, 3, 68, 199, 67, 18, 3, 196, 251, 199, 67, 18, 3, 118,
150, 199, 67, 18, 3, 118, 207, 4, 199, 67, 18, 3, 118, 165, 199, 67, 18,
3, 118, 219, 138, 199, 67, 18, 3, 71, 199, 67, 18, 3, 203, 195, 71, 199,
67, 18, 3, 251, 63, 199, 67, 18, 3, 74, 199, 67, 18, 3, 203, 195, 74,
199, 67, 18, 3, 250, 8, 199, 67, 3, 246, 234, 199, 67, 3, 250, 168, 199,
67, 3, 196, 6, 199, 67, 3, 196, 11, 199, 67, 3, 212, 241, 199, 67, 3,
249, 246, 199, 67, 230, 145, 199, 67, 251, 151, 57, 199, 67, 211, 219,
199, 67, 17, 192, 76, 199, 67, 17, 101, 199, 67, 17, 104, 199, 67, 17,
133, 199, 67, 17, 134, 199, 67, 17, 151, 199, 67, 17, 170, 199, 67, 17,
179, 199, 67, 17, 174, 199, 67, 17, 182, 203, 114, 1, 64, 203, 114, 1,
252, 33, 203, 114, 1, 70, 203, 114, 1, 223, 224, 203, 114, 1, 68, 203,
114, 1, 196, 251, 203, 114, 1, 118, 150, 203, 114, 1, 118, 207, 4, 203,
114, 1, 118, 165, 203, 114, 1, 118, 219, 138, 203, 114, 1, 71, 203, 114,
1, 251, 63, 203, 114, 1, 74, 203, 114, 1, 250, 8, 203, 114, 1, 160, 203,
114, 1, 221, 250, 203, 114, 1, 231, 233, 203, 114, 1, 231, 84, 203, 114,
1, 214, 165, 203, 114, 1, 247, 19, 203, 114, 1, 246, 117, 203, 114, 1,
223, 62, 203, 114, 1, 223, 28, 203, 114, 1, 212, 201, 203, 114, 1, 198,
83, 203, 114, 1, 198, 71, 203, 114, 1, 237, 161, 203, 114, 1, 237, 145,
203, 114, 1, 213, 178, 203, 114, 1, 189, 203, 114, 1, 199, 240, 203, 114,
1, 238, 0, 203, 114, 1, 237, 40, 203, 114, 1, 181, 203, 114, 1, 166, 203,
114, 1, 210, 94, 203, 114, 1, 249, 3, 203, 114, 1, 248, 54, 203, 114, 1,
172, 203, 114, 1, 168, 203, 114, 1, 167, 203, 114, 1, 177, 203, 114, 1,
196, 157, 203, 114, 1, 204, 64, 203, 114, 1, 202, 92, 203, 114, 1, 188,
203, 114, 1, 144, 203, 114, 18, 3, 252, 33, 203, 114, 18, 3, 70, 203,
114, 18, 3, 223, 224, 203, 114, 18, 3, 68, 203, 114, 18, 3, 196, 251,
203, 114, 18, 3, 118, 150, 203, 114, 18, 3, 118, 207, 4, 203, 114, 18, 3,
71, 203, 114, 18, 3, 251, 63, 203, 114, 18, 3, 74, 203, 114, 18, 3, 250,
8, 203, 114, 3, 246, 234, 203, 114, 3, 250, 168, 203, 114, 3, 196, 6,
203, 114, 3, 196, 11, 203, 114, 3, 212, 241, 203, 114, 3, 203, 113, 203,
114, 237, 208, 203, 114, 55, 237, 208, 203, 114, 204, 166, 236, 114, 203,
114, 204, 166, 161, 203, 114, 207, 196, 217, 126, 203, 114, 207, 196,
217, 125, 203, 114, 207, 196, 217, 124, 203, 114, 234, 80, 80, 199, 245,
77, 203, 114, 205, 209, 122, 4, 198, 180, 26, 197, 172, 211, 149, 203,
114, 205, 209, 122, 4, 198, 180, 26, 235, 111, 238, 192, 203, 114, 205,
209, 122, 4, 208, 13, 26, 235, 111, 238, 192, 203, 114, 205, 209, 122, 4,
208, 13, 26, 235, 111, 55, 238, 192, 203, 114, 205, 209, 122, 4, 208, 13,
26, 235, 111, 198, 170, 238, 192, 203, 114, 205, 209, 122, 55, 207, 81,
203, 114, 205, 209, 122, 55, 207, 82, 4, 208, 12, 203, 114, 205, 209,
122, 4, 55, 238, 192, 203, 114, 205, 209, 122, 4, 198, 170, 238, 192,
203, 114, 205, 209, 122, 4, 208, 170, 238, 192, 203, 114, 205, 209, 122,
4, 204, 163, 238, 192, 203, 114, 205, 209, 122, 4, 242, 128, 26, 208, 12,
203, 114, 205, 209, 122, 4, 242, 128, 26, 103, 234, 82, 203, 114, 205,
209, 122, 4, 242, 128, 26, 232, 119, 234, 82, 203, 114, 1, 199, 161, 250,
249, 70, 203, 114, 1, 197, 222, 250, 249, 70, 203, 114, 1, 197, 222, 250,
249, 223, 224, 203, 114, 1, 250, 249, 68, 203, 114, 18, 3, 250, 249, 68,
203, 114, 18, 3, 250, 249, 196, 251, 216, 76, 1, 64, 216, 76, 1, 252, 33,
216, 76, 1, 70, 216, 76, 1, 223, 224, 216, 76, 1, 68, 216, 76, 1, 196,
251, 216, 76, 1, 118, 150, 216, 76, 1, 118, 207, 4, 216, 76, 1, 118, 165,
216, 76, 1, 118, 219, 138, 216, 76, 1, 71, 216, 76, 1, 251, 63, 216, 76,
1, 74, 216, 76, 1, 250, 8, 216, 76, 1, 160, 216, 76, 1, 221, 250, 216,
76, 1, 231, 233, 216, 76, 1, 231, 84, 216, 76, 1, 214, 165, 216, 76, 1,
247, 19, 216, 76, 1, 246, 117, 216, 76, 1, 223, 62, 216, 76, 1, 223, 28,
216, 76, 1, 212, 201, 216, 76, 1, 198, 83, 216, 76, 1, 198, 71, 216, 76,
1, 237, 161, 216, 76, 1, 237, 145, 216, 76, 1, 213, 178, 216, 76, 1, 189,
216, 76, 1, 199, 240, 216, 76, 1, 238, 0, 216, 76, 1, 237, 40, 216, 76,
1, 181, 216, 76, 1, 166, 216, 76, 1, 210, 94, 216, 76, 1, 249, 3, 216,
76, 1, 248, 54, 216, 76, 1, 172, 216, 76, 1, 168, 216, 76, 1, 167, 216,
76, 1, 177, 216, 76, 1, 196, 157, 216, 76, 1, 204, 64, 216, 76, 1, 202,
92, 216, 76, 1, 188, 216, 76, 1, 144, 216, 76, 1, 219, 137, 216, 76, 18,
3, 252, 33, 216, 76, 18, 3, 70, 216, 76, 18, 3, 223, 224, 216, 76, 18, 3,
68, 216, 76, 18, 3, 196, 251, 216, 76, 18, 3, 118, 150, 216, 76, 18, 3,
118, 207, 4, 216, 76, 18, 3, 118, 165, 216, 76, 18, 3, 118, 219, 138,
216, 76, 18, 3, 71, 216, 76, 18, 3, 251, 63, 216, 76, 18, 3, 74, 216, 76,
18, 3, 250, 8, 216, 76, 3, 250, 168, 216, 76, 3, 196, 6, 216, 76, 3, 196,
11, 216, 76, 3, 250, 109, 216, 76, 237, 208, 216, 76, 55, 237, 208, 216,
76, 251, 151, 57, 216, 76, 3, 228, 149, 216, 76, 17, 192, 76, 216, 76,
17, 101, 216, 76, 17, 104, 216, 76, 17, 133, 216, 76, 17, 134, 216, 76,
17, 151, 216, 76, 17, 170, 216, 76, 17, 179, 216, 76, 17, 174, 216, 76,
17, 182, 100, 248, 12, 4, 211, 150, 100, 207, 16, 248, 11, 100, 55, 248,
12, 4, 211, 150, 100, 198, 170, 248, 12, 4, 211, 150, 100, 248, 12, 4,
55, 211, 150, 100, 207, 16, 248, 12, 4, 211, 150, 100, 207, 16, 248, 12,
4, 55, 211, 150, 100, 223, 121, 248, 11, 100, 223, 121, 248, 12, 4, 55,
211, 150, 100, 201, 63, 248, 11, 100, 201, 63, 248, 12, 4, 211, 150, 100,
201, 63, 248, 12, 4, 55, 211, 150, 100, 163, 201, 63, 248, 12, 4, 55,
211, 150, 200, 137, 1, 64, 200, 137, 1, 252, 33, 200, 137, 1, 70, 200,
137, 1, 223, 224, 200, 137, 1, 68, 200, 137, 1, 196, 251, 200, 137, 1,
71, 200, 137, 1, 251, 63, 200, 137, 1, 74, 200, 137, 1, 250, 8, 200, 137,
1, 160, 200, 137, 1, 221, 250, 200, 137, 1, 231, 233, 200, 137, 1, 231,
84, 200, 137, 1, 214, 165, 200, 137, 1, 247, 19, 200, 137, 1, 246, 117,
200, 137, 1, 223, 62, 200, 137, 1, 223, 28, 200, 137, 1, 212, 201, 200,
137, 1, 198, 83, 200, 137, 1, 198, 71, 200, 137, 1, 237, 161, 200, 137,
1, 237, 145, 200, 137, 1, 213, 178, 200, 137, 1, 189, 200, 137, 1, 199,
240, 200, 137, 1, 238, 0, 200, 137, 1, 237, 40, 200, 137, 1, 181, 200,
137, 1, 166, 200, 137, 1, 210, 94, 200, 137, 1, 249, 3, 200, 137, 1, 248,
54, 200, 137, 1, 172, 200, 137, 1, 168, 200, 137, 1, 167, 200, 137, 1,
177, 200, 137, 1, 196, 157, 200, 137, 1, 204, 64, 200, 137, 1, 188, 200,
137, 1, 144, 200, 137, 1, 207, 3, 200, 137, 3, 250, 168, 200, 137, 3,
196, 6, 200, 137, 18, 3, 252, 33, 200, 137, 18, 3, 70, 200, 137, 18, 3,
223, 224, 200, 137, 18, 3, 68, 200, 137, 18, 3, 196, 251, 200, 137, 18,
3, 71, 200, 137, 18, 3, 251, 63, 200, 137, 18, 3, 74, 200, 137, 18, 3,
250, 8, 200, 137, 3, 196, 11, 200, 137, 3, 212, 241, 200, 137, 1, 250,
112, 221, 250, 200, 137, 17, 192, 76, 200, 137, 17, 101, 200, 137, 17,
104, 200, 137, 17, 133, 200, 137, 17, 134, 200, 137, 17, 151, 200, 137,
17, 170, 200, 137, 17, 179, 200, 137, 17, 174, 200, 137, 17, 182, 251,
67, 1, 160, 251, 67, 1, 221, 250, 251, 67, 1, 214, 165, 251, 67, 1, 181,
251, 67, 1, 189, 251, 67, 1, 250, 249, 189, 251, 67, 1, 166, 251, 67, 1,
210, 94, 251, 67, 1, 249, 3, 251, 67, 1, 172, 251, 67, 1, 223, 62, 251,
67, 1, 246, 117, 251, 67, 1, 199, 240, 251, 67, 1, 167, 251, 67, 1, 177,
251, 67, 1, 188, 251, 67, 1, 212, 201, 251, 67, 1, 144, 251, 67, 1, 64,
251, 67, 1, 238, 0, 251, 67, 1, 237, 40, 251, 67, 1, 231, 233, 251, 67,
1, 250, 249, 231, 233, 251, 67, 1, 231, 84, 251, 67, 1, 248, 54, 251, 67,
1, 223, 28, 251, 67, 1, 250, 249, 249, 3, 251, 67, 116, 3, 217, 35, 177,
251, 67, 116, 3, 217, 35, 167, 251, 67, 116, 3, 217, 35, 219, 196, 167,
251, 67, 18, 3, 64, 251, 67, 18, 3, 252, 33, 251, 67, 18, 3, 70, 251, 67,
18, 3, 223, 224, 251, 67, 18, 3, 68, 251, 67, 18, 3, 196, 251, 251, 67,
18, 3, 71, 251, 67, 18, 3, 249, 241, 251, 67, 18, 3, 74, 251, 67, 18, 3,
251, 63, 251, 67, 18, 3, 250, 241, 251, 67, 3, 221, 181, 251, 67, 17,
192, 76, 251, 67, 17, 101, 251, 67, 17, 104, 251, 67, 17, 133, 251, 67,
17, 134, 251, 67, 17, 151, 251, 67, 17, 170, 251, 67, 17, 179, 251, 67,
17, 174, 251, 67, 17, 182, 251, 67, 31, 200, 30, 251, 67, 31, 197, 239,
251, 67, 3, 2, 205, 208, 251, 67, 3, 205, 208, 251, 67, 3, 206, 203, 251,
67, 16, 196, 39, 236, 133, 1, 64, 236, 133, 1, 252, 33, 236, 133, 1, 70,
236, 133, 1, 223, 224, 236, 133, 1, 68, 236, 133, 1, 196, 251, 236, 133,
1, 71, 236, 133, 1, 251, 63, 236, 133, 1, 74, 236, 133, 1, 250, 8, 236,
133, 1, 160, 236, 133, 1, 221, 250, 236, 133, 1, 231, 233, 236, 133, 1,
231, 84, 236, 133, 1, 214, 165, 236, 133, 1, 247, 19, 236, 133, 1, 246,
117, 236, 133, 1, 223, 62, 236, 133, 1, 223, 28, 236, 133, 1, 212, 201,
236, 133, 1, 198, 83, 236, 133, 1, 198, 71, 236, 133, 1, 237, 161, 236,
133, 1, 237, 145, 236, 133, 1, 213, 178, 236, 133, 1, 189, 236, 133, 1,
199, 240, 236, 133, 1, 238, 0, 236, 133, 1, 237, 40, 236, 133, 1, 181,
236, 133, 1, 166, 236, 133, 1, 210, 94, 236, 133, 1, 249, 3, 236, 133, 1,
248, 54, 236, 133, 1, 172, 236, 133, 1, 168, 236, 133, 1, 167, 236, 133,
1, 177, 236, 133, 1, 196, 157, 236, 133, 1, 204, 64, 236, 133, 1, 202,
92, 236, 133, 1, 188, 236, 133, 1, 144, 236, 133, 1, 207, 3, 236, 133,
18, 3, 252, 33, 236, 133, 18, 3, 70, 236, 133, 18, 3, 223, 224, 236, 133,
18, 3, 68, 236, 133, 18, 3, 196, 251, 236, 133, 18, 3, 118, 150, 236,
133, 18, 3, 118, 207, 4, 236, 133, 18, 3, 71, 236, 133, 18, 3, 251, 63,
236, 133, 18, 3, 74, 236, 133, 18, 3, 250, 8, 236, 133, 3, 250, 168, 236,
133, 3, 196, 6, 236, 133, 3, 196, 11, 236, 133, 3, 212, 241, 236, 133,
251, 151, 57, 194, 141, 242, 117, 6, 1, 214, 164, 194, 141, 242, 117, 6,
1, 64, 194, 141, 242, 117, 6, 1, 194, 72, 194, 141, 242, 117, 6, 1, 192,
214, 194, 141, 242, 117, 6, 1, 168, 194, 141, 242, 117, 6, 1, 193, 1,
194, 141, 242, 117, 6, 1, 223, 224, 194, 141, 242, 117, 6, 1, 196, 251,
194, 141, 242, 117, 6, 1, 71, 194, 141, 242, 117, 6, 1, 74, 194, 141,
242, 117, 6, 1, 250, 214, 194, 141, 242, 117, 6, 1, 231, 233, 194, 141,
242, 117, 6, 1, 221, 113, 194, 141, 242, 117, 6, 1, 234, 51, 194, 141,
242, 117, 6, 1, 192, 193, 194, 141, 242, 117, 6, 1, 197, 111, 194, 141,
242, 117, 6, 1, 234, 70, 194, 141, 242, 117, 6, 1, 212, 3, 194, 141, 242,
117, 6, 1, 198, 78, 194, 141, 242, 117, 6, 1, 212, 227, 194, 141, 242,
117, 6, 1, 238, 0, 194, 141, 242, 117, 6, 1, 250, 26, 194, 141, 242, 117,
6, 1, 250, 241, 194, 141, 242, 117, 6, 1, 247, 124, 194, 141, 242, 117,
6, 1, 209, 51, 194, 141, 242, 117, 6, 1, 229, 135, 194, 141, 242, 117, 6,
1, 229, 23, 194, 141, 242, 117, 6, 1, 228, 206, 194, 141, 242, 117, 6, 1,
230, 28, 194, 141, 242, 117, 6, 1, 202, 43, 194, 141, 242, 117, 6, 1,
203, 97, 194, 141, 242, 117, 6, 1, 195, 253, 194, 141, 242, 117, 2, 1,
214, 164, 194, 141, 242, 117, 2, 1, 64, 194, 141, 242, 117, 2, 1, 194,
72, 194, 141, 242, 117, 2, 1, 192, 214, 194, 141, 242, 117, 2, 1, 168,
194, 141, 242, 117, 2, 1, 193, 1, 194, 141, 242, 117, 2, 1, 223, 224,
194, 141, 242, 117, 2, 1, 196, 251, 194, 141, 242, 117, 2, 1, 71, 194,
141, 242, 117, 2, 1, 74, 194, 141, 242, 117, 2, 1, 250, 214, 194, 141,
242, 117, 2, 1, 231, 233, 194, 141, 242, 117, 2, 1, 221, 113, 194, 141,
242, 117, 2, 1, 234, 51, 194, 141, 242, 117, 2, 1, 192, 193, 194, 141,
242, 117, 2, 1, 197, 111, 194, 141, 242, 117, 2, 1, 234, 70, 194, 141,
242, 117, 2, 1, 212, 3, 194, 141, 242, 117, 2, 1, 198, 78, 194, 141, 242,
117, 2, 1, 212, 227, 194, 141, 242, 117, 2, 1, 238, 0, 194, 141, 242,
117, 2, 1, 250, 26, 194, 141, 242, 117, 2, 1, 250, 241, 194, 141, 242,
117, 2, 1, 247, 124, 194, 141, 242, 117, 2, 1, 209, 51, 194, 141, 242,
117, 2, 1, 229, 135, 194, 141, 242, 117, 2, 1, 229, 23, 194, 141, 242,
117, 2, 1, 228, 206, 194, 141, 242, 117, 2, 1, 230, 28, 194, 141, 242,
117, 2, 1, 202, 43, 194, 141, 242, 117, 2, 1, 203, 97, 194, 141, 242,
117, 2, 1, 195, 253, 194, 141, 242, 117, 17, 192, 76, 194, 141, 242, 117,
17, 101, 194, 141, 242, 117, 17, 104, 194, 141, 242, 117, 17, 133, 194,
141, 242, 117, 17, 134, 194, 141, 242, 117, 17, 151, 194, 141, 242, 117,
17, 170, 194, 141, 242, 117, 17, 179, 194, 141, 242, 117, 17, 174, 194,
141, 242, 117, 17, 182, 194, 141, 242, 117, 31, 200, 30, 194, 141, 242,
117, 31, 197, 239, 194, 141, 242, 117, 31, 199, 184, 194, 141, 242, 117,
31, 232, 126, 194, 141, 242, 117, 31, 233, 3, 194, 141, 242, 117, 31,
203, 25, 194, 141, 242, 117, 31, 204, 140, 194, 141, 242, 117, 31, 234,
137, 194, 141, 242, 117, 31, 214, 11, 194, 141, 242, 117, 211, 219, 236,
181, 251, 37, 1, 64, 236, 181, 251, 37, 1, 252, 33, 236, 181, 251, 37, 1,
70, 236, 181, 251, 37, 1, 223, 224, 236, 181, 251, 37, 1, 68, 236, 181,
251, 37, 1, 196, 251, 236, 181, 251, 37, 1, 71, 236, 181, 251, 37, 1, 74,
236, 181, 251, 37, 1, 160, 236, 181, 251, 37, 1, 221, 250, 236, 181, 251,
37, 1, 231, 233, 236, 181, 251, 37, 1, 231, 84, 236, 181, 251, 37, 1,
214, 165, 236, 181, 251, 37, 1, 247, 19, 236, 181, 251, 37, 1, 246, 117,
236, 181, 251, 37, 1, 223, 62, 236, 181, 251, 37, 1, 212, 201, 236, 181,
251, 37, 1, 198, 83, 236, 181, 251, 37, 1, 237, 161, 236, 181, 251, 37,
1, 237, 145, 236, 181, 251, 37, 1, 213, 178, 236, 181, 251, 37, 1, 189,
236, 181, 251, 37, 1, 199, 240, 236, 181, 251, 37, 1, 238, 0, 236, 181,
251, 37, 1, 237, 40, 236, 181, 251, 37, 1, 181, 236, 181, 251, 37, 1,
166, 236, 181, 251, 37, 1, 210, 94, 236, 181, 251, 37, 1, 249, 3, 236,
181, 251, 37, 1, 248, 54, 236, 181, 251, 37, 1, 172, 236, 181, 251, 37,
1, 168, 236, 181, 251, 37, 1, 192, 164, 236, 181, 251, 37, 1, 167, 236,
181, 251, 37, 1, 177, 236, 181, 251, 37, 1, 196, 157, 236, 181, 251, 37,
1, 204, 64, 236, 181, 251, 37, 1, 202, 92, 236, 181, 251, 37, 1, 188,
236, 181, 251, 37, 1, 144, 236, 181, 251, 37, 1, 219, 137, 236, 181, 251,
37, 1, 192, 112, 236, 181, 251, 37, 18, 3, 252, 33, 236, 181, 251, 37,
18, 3, 70, 236, 181, 251, 37, 18, 3, 223, 224, 236, 181, 251, 37, 18, 3,
68, 236, 181, 251, 37, 18, 3, 196, 251, 236, 181, 251, 37, 18, 3, 71,
236, 181, 251, 37, 18, 3, 251, 63, 236, 181, 251, 37, 18, 3, 74, 236,
181, 251, 37, 3, 250, 168, 236, 181, 251, 37, 3, 246, 234, 236, 181, 251,
37, 3, 230, 80, 236, 181, 251, 37, 196, 11, 236, 181, 251, 37, 209, 111,
215, 49, 57, 236, 181, 251, 37, 217, 35, 168, 236, 181, 251, 37, 88, 167,
236, 181, 251, 37, 217, 35, 167, 236, 181, 251, 37, 3, 212, 241, 236,
181, 251, 37, 55, 237, 208, 236, 181, 251, 37, 231, 197, 232, 247, 236,
181, 251, 37, 234, 80, 80, 199, 245, 77, 236, 181, 251, 37, 17, 192, 76,
236, 181, 251, 37, 17, 101, 236, 181, 251, 37, 17, 104, 236, 181, 251,
37, 17, 133, 236, 181, 251, 37, 17, 134, 236, 181, 251, 37, 17, 151, 236,
181, 251, 37, 17, 170, 236, 181, 251, 37, 17, 179, 236, 181, 251, 37, 17,
174, 236, 181, 251, 37, 17, 182, 215, 58, 1, 64, 215, 58, 1, 252, 33,
215, 58, 1, 70, 215, 58, 1, 223, 224, 215, 58, 1, 68, 215, 58, 1, 196,
251, 215, 58, 1, 118, 150, 215, 58, 1, 118, 207, 4, 215, 58, 1, 71, 215,
58, 1, 251, 63, 215, 58, 1, 74, 215, 58, 1, 250, 8, 215, 58, 1, 160, 215,
58, 1, 221, 250, 215, 58, 1, 231, 233, 215, 58, 1, 231, 84, 215, 58, 1,
214, 165, 215, 58, 1, 247, 19, 215, 58, 1, 246, 117, 215, 58, 1, 223, 62,
215, 58, 1, 223, 28, 215, 58, 1, 212, 201, 215, 58, 1, 198, 83, 215, 58,
1, 198, 71, 215, 58, 1, 237, 161, 215, 58, 1, 237, 145, 215, 58, 1, 213,
178, 215, 58, 1, 189, 215, 58, 1, 199, 240, 215, 58, 1, 238, 0, 215, 58,
1, 237, 40, 215, 58, 1, 181, 215, 58, 1, 166, 215, 58, 1, 210, 94, 215,
58, 1, 249, 3, 215, 58, 1, 248, 54, 215, 58, 1, 172, 215, 58, 1, 168,
215, 58, 1, 167, 215, 58, 1, 177, 215, 58, 1, 196, 157, 215, 58, 1, 204,
64, 215, 58, 1, 202, 92, 215, 58, 1, 188, 215, 58, 1, 144, 215, 58, 1,
219, 137, 215, 58, 1, 207, 3, 215, 58, 18, 3, 252, 33, 215, 58, 18, 3,
70, 215, 58, 18, 3, 223, 224, 215, 58, 18, 3, 68, 215, 58, 18, 3, 196,
251, 215, 58, 18, 3, 118, 150, 215, 58, 18, 3, 118, 207, 4, 215, 58, 18,
3, 71, 215, 58, 18, 3, 251, 63, 215, 58, 18, 3, 74, 215, 58, 18, 3, 250,
8, 215, 58, 3, 250, 168, 215, 58, 3, 196, 6, 215, 58, 3, 196, 11, 215,
58, 3, 249, 246, 215, 58, 3, 203, 113, 215, 58, 229, 237, 215, 58, 18, 3,
209, 91, 71, 192, 99, 50, 1, 64, 192, 99, 50, 18, 3, 70, 192, 99, 50, 18,
3, 197, 104, 192, 99, 50, 18, 3, 68, 192, 99, 50, 18, 3, 71, 192, 99, 50,
18, 3, 212, 0, 192, 99, 50, 18, 3, 74, 192, 99, 50, 18, 3, 251, 63, 192,
99, 50, 18, 3, 250, 8, 192, 99, 50, 18, 3, 207, 168, 70, 192, 99, 50, 18,
220, 2, 77, 192, 99, 50, 1, 160, 192, 99, 50, 1, 221, 250, 192, 99, 50,
1, 231, 233, 192, 99, 50, 1, 231, 84, 192, 99, 50, 1, 214, 165, 192, 99,
50, 1, 247, 19, 192, 99, 50, 1, 246, 117, 192, 99, 50, 1, 223, 62, 192,
99, 50, 1, 212, 201, 192, 99, 50, 1, 198, 83, 192, 99, 50, 1, 198, 71,
192, 99, 50, 1, 237, 161, 192, 99, 50, 1, 237, 145, 192, 99, 50, 1, 213,
178, 192, 99, 50, 1, 189, 192, 99, 50, 1, 199, 240, 192, 99, 50, 1, 238,
0, 192, 99, 50, 1, 237, 40, 192, 99, 50, 1, 181, 192, 99, 50, 1, 166,
192, 99, 50, 1, 210, 94, 192, 99, 50, 1, 249, 3, 192, 99, 50, 1, 248, 54,
192, 99, 50, 1, 172, 192, 99, 50, 1, 198, 118, 192, 99, 50, 1, 198, 108,
192, 99, 50, 1, 235, 17, 192, 99, 50, 1, 235, 11, 192, 99, 50, 1, 192,
71, 192, 99, 50, 1, 192, 112, 192, 99, 50, 1, 255, 41, 192, 99, 50, 1,
168, 192, 99, 50, 1, 167, 192, 99, 50, 1, 177, 192, 99, 50, 1, 196, 157,
192, 99, 50, 1, 204, 64, 192, 99, 50, 1, 202, 92, 192, 99, 50, 1, 188,
192, 99, 50, 1, 144, 192, 99, 50, 1, 221, 47, 192, 99, 50, 52, 116, 77,
192, 99, 50, 3, 196, 11, 192, 99, 50, 3, 246, 234, 192, 99, 50, 3, 246,
235, 4, 211, 150, 192, 99, 50, 3, 246, 237, 4, 211, 150, 192, 99, 50, 3,
250, 168, 192, 99, 50, 3, 196, 6, 192, 99, 50, 242, 66, 1, 167, 192, 99,
50, 242, 67, 1, 168, 192, 99, 50, 242, 67, 1, 167, 192, 99, 50, 242, 67,
1, 177, 192, 99, 50, 242, 67, 1, 196, 157, 192, 99, 50, 88, 229, 246, 77,
192, 99, 50, 242, 80, 229, 246, 77, 192, 99, 50, 122, 198, 103, 192, 99,
50, 122, 204, 56, 192, 99, 50, 122, 55, 204, 56, 192, 99, 50, 122, 184,
198, 103, 192, 99, 50, 88, 235, 103, 229, 246, 77, 192, 99, 50, 242, 80,
235, 103, 229, 246, 77, 192, 99, 50, 201, 163, 202, 164, 1, 64, 202, 164,
18, 3, 70, 202, 164, 18, 3, 197, 104, 202, 164, 18, 3, 68, 202, 164, 18,
3, 71, 202, 164, 18, 3, 74, 202, 164, 18, 3, 212, 0, 202, 164, 18, 3,
251, 63, 202, 164, 18, 3, 250, 8, 202, 164, 18, 3, 118, 150, 202, 164,
18, 3, 118, 165, 202, 164, 18, 220, 2, 77, 202, 164, 1, 160, 202, 164, 1,
221, 250, 202, 164, 1, 231, 233, 202, 164, 1, 231, 84, 202, 164, 1, 214,
165, 202, 164, 1, 247, 19, 202, 164, 1, 246, 117, 202, 164, 1, 223, 62,
202, 164, 1, 223, 28, 202, 164, 1, 212, 201, 202, 164, 1, 198, 83, 202,
164, 1, 198, 71, 202, 164, 1, 237, 161, 202, 164, 1, 237, 145, 202, 164,
1, 213, 178, 202, 164, 1, 189, 202, 164, 1, 199, 240, 202, 164, 1, 238,
0, 202, 164, 1, 237, 40, 202, 164, 1, 181, 202, 164, 1, 166, 202, 164, 1,
210, 94, 202, 164, 1, 249, 3, 202, 164, 1, 248, 54, 202, 164, 1, 172,
202, 164, 1, 198, 118, 202, 164, 1, 198, 108, 202, 164, 1, 235, 17, 202,
164, 1, 192, 71, 202, 164, 1, 192, 112, 202, 164, 1, 255, 41, 202, 164,
1, 168, 202, 164, 1, 167, 202, 164, 1, 177, 202, 164, 1, 196, 157, 202,
164, 1, 204, 64, 202, 164, 1, 202, 92, 202, 164, 1, 188, 202, 164, 1,
144, 202, 164, 1, 221, 47, 202, 164, 3, 223, 13, 202, 164, 3, 197, 39,
202, 164, 242, 66, 1, 167, 202, 164, 242, 66, 1, 177, 202, 164, 242, 66,
1, 204, 64, 202, 164, 242, 66, 1, 188, 202, 164, 52, 116, 3, 232, 44,
202, 164, 52, 116, 3, 222, 184, 202, 164, 52, 116, 3, 214, 167, 202, 164,
52, 116, 3, 238, 95, 202, 164, 52, 116, 3, 215, 151, 202, 164, 52, 116,
3, 249, 226, 202, 164, 52, 116, 3, 218, 236, 202, 164, 52, 116, 3, 150,
202, 164, 52, 116, 3, 165, 202, 164, 52, 116, 3, 204, 66, 202, 164, 52,
116, 3, 206, 158, 202, 164, 52, 116, 3, 255, 41, 202, 164, 3, 250, 168,
202, 164, 3, 196, 6, 202, 164, 231, 146, 77, 202, 164, 201, 163, 202,
164, 122, 198, 103, 202, 164, 122, 204, 56, 202, 164, 122, 55, 204, 56,
202, 164, 122, 209, 204, 202, 164, 229, 246, 122, 4, 216, 30, 26, 201,
124, 26, 198, 170, 232, 199, 202, 164, 229, 246, 122, 4, 216, 30, 26,
201, 124, 26, 232, 199, 202, 164, 229, 246, 122, 4, 216, 30, 26, 201,
123, 202, 164, 200, 16, 217, 126, 202, 164, 200, 16, 217, 125, 210, 198,
242, 135, 230, 12, 1, 166, 210, 198, 242, 135, 230, 12, 1, 160, 210, 198,
242, 135, 230, 12, 1, 177, 210, 198, 242, 135, 230, 12, 1, 172, 210, 198,
242, 135, 230, 12, 1, 238, 0, 210, 198, 242, 135, 230, 12, 1, 192, 112,
210, 198, 242, 135, 230, 12, 1, 196, 157, 210, 198, 242, 135, 230, 12, 1,
214, 165, 210, 198, 242, 135, 230, 12, 1, 144, 210, 198, 242, 135, 230,
12, 1, 231, 233, 210, 198, 242, 135, 230, 12, 1, 221, 250, 210, 198, 242,
135, 230, 12, 1, 188, 210, 198, 242, 135, 230, 12, 1, 249, 3, 210, 198,
242, 135, 230, 12, 1, 247, 19, 210, 198, 242, 135, 230, 12, 1, 189, 210,
198, 242, 135, 230, 12, 1, 199, 240, 210, 198, 242, 135, 230, 12, 1, 181,
210, 198, 242, 135, 230, 12, 1, 210, 94, 210, 198, 242, 135, 230, 12, 1,
167, 210, 198, 242, 135, 230, 12, 1, 233, 97, 210, 198, 242, 135, 230,
12, 1, 246, 117, 210, 198, 242, 135, 230, 12, 1, 64, 210, 198, 242, 135,
230, 12, 1, 71, 210, 198, 242, 135, 230, 12, 1, 70, 210, 198, 242, 135,
230, 12, 1, 74, 210, 198, 242, 135, 230, 12, 1, 68, 210, 198, 242, 135,
230, 12, 1, 197, 119, 210, 198, 242, 135, 230, 12, 1, 228, 58, 210, 198,
242, 135, 230, 12, 1, 52, 211, 93, 210, 198, 242, 135, 230, 12, 1, 52,
222, 184, 210, 198, 242, 135, 230, 12, 1, 52, 200, 228, 210, 198, 242,
135, 230, 12, 1, 52, 218, 236, 210, 198, 242, 135, 230, 12, 1, 52, 215,
151, 210, 198, 242, 135, 230, 12, 1, 52, 165, 210, 198, 242, 135, 230,
12, 1, 52, 194, 202, 210, 198, 242, 135, 230, 12, 1, 52, 214, 167, 210,
198, 242, 135, 230, 12, 1, 52, 193, 148, 210, 198, 242, 135, 230, 12,
207, 73, 158, 219, 84, 210, 198, 242, 135, 230, 12, 207, 73, 199, 18,
210, 198, 242, 135, 230, 12, 206, 36, 231, 6, 201, 238, 210, 198, 242,
135, 230, 12, 207, 73, 158, 184, 232, 243, 210, 198, 242, 135, 230, 12,
207, 73, 158, 232, 243, 210, 198, 242, 135, 230, 12, 206, 36, 231, 6,
201, 239, 232, 243, 210, 198, 242, 135, 230, 12, 206, 36, 158, 219, 84,
210, 198, 242, 135, 230, 12, 206, 36, 199, 18, 210, 198, 242, 135, 230,
12, 206, 36, 158, 184, 232, 243, 210, 198, 242, 135, 230, 12, 206, 36,
158, 232, 243, 210, 198, 242, 135, 230, 12, 216, 161, 199, 18, 210, 198,
242, 135, 230, 12, 231, 6, 201, 239, 196, 136, 210, 198, 242, 135, 230,
12, 216, 161, 158, 184, 232, 243, 210, 198, 242, 135, 230, 12, 216, 161,
158, 232, 243, 210, 198, 242, 135, 230, 12, 219, 50, 158, 219, 84, 210,
198, 242, 135, 230, 12, 219, 50, 199, 18, 210, 198, 242, 135, 230, 12,
231, 6, 201, 238, 210, 198, 242, 135, 230, 12, 219, 50, 158, 184, 232,
243, 210, 198, 242, 135, 230, 12, 219, 50, 158, 232, 243, 210, 198, 242,
135, 230, 12, 231, 6, 201, 239, 232, 243, 248, 52, 1, 64, 248, 52, 1,
252, 33, 248, 52, 1, 70, 248, 52, 1, 223, 224, 248, 52, 1, 68, 248, 52,
1, 196, 251, 248, 52, 1, 118, 150, 248, 52, 1, 118, 207, 4, 248, 52, 1,
118, 165, 248, 52, 1, 71, 248, 52, 1, 251, 63, 248, 52, 1, 74, 248, 52,
1, 250, 8, 248, 52, 1, 160, 248, 52, 1, 221, 250, 248, 52, 1, 231, 233,
248, 52, 1, 231, 84, 248, 52, 1, 214, 165, 248, 52, 1, 247, 19, 248, 52,
1, 246, 117, 248, 52, 1, 223, 62, 248, 52, 1, 223, 28, 248, 52, 1, 212,
201, 248, 52, 1, 198, 83, 248, 52, 1, 198, 71, 248, 52, 1, 237, 161, 248,
52, 1, 237, 145, 248, 52, 1, 213, 178, 248, 52, 1, 189, 248, 52, 1, 199,
240, 248, 52, 1, 238, 0, 248, 52, 1, 237, 40, 248, 52, 1, 181, 248, 52,
1, 166, 248, 52, 1, 210, 94, 248, 52, 1, 249, 3, 248, 52, 1, 248, 54,
248, 52, 1, 172, 248, 52, 1, 168, 248, 52, 1, 167, 248, 52, 1, 177, 248,
52, 1, 196, 157, 248, 52, 1, 204, 64, 248, 52, 1, 202, 92, 248, 52, 1,
188, 248, 52, 1, 144, 248, 52, 18, 3, 252, 33, 248, 52, 18, 3, 70, 248,
52, 18, 3, 223, 224, 248, 52, 18, 3, 68, 248, 52, 18, 3, 196, 251, 248,
52, 18, 3, 118, 150, 248, 52, 18, 3, 118, 207, 4, 248, 52, 18, 3, 118,
165, 248, 52, 18, 3, 71, 248, 52, 18, 3, 251, 63, 248, 52, 18, 3, 74,
248, 52, 18, 3, 250, 8, 248, 52, 3, 246, 234, 248, 52, 3, 250, 168, 248,
52, 3, 196, 6, 248, 52, 3, 196, 11, 248, 52, 3, 249, 246, 248, 52, 237,
208, 248, 52, 55, 237, 208, 248, 52, 194, 11, 204, 165, 248, 52, 231,
197, 232, 246, 248, 52, 231, 197, 232, 245, 248, 52, 17, 192, 76, 248,
52, 17, 101, 248, 52, 17, 104, 248, 52, 17, 133, 248, 52, 17, 134, 248,
52, 17, 151, 248, 52, 17, 170, 248, 52, 17, 179, 248, 52, 17, 174, 248,
52, 17, 182, 248, 52, 31, 101, 248, 52, 31, 104, 248, 52, 31, 133, 248,
52, 31, 134, 248, 52, 31, 151, 248, 52, 31, 170, 248, 52, 31, 179, 248,
52, 31, 174, 248, 52, 31, 182, 248, 52, 31, 200, 30, 248, 52, 31, 197,
239, 248, 52, 31, 199, 184, 248, 52, 31, 232, 126, 248, 52, 31, 233, 3,
248, 52, 31, 203, 25, 248, 52, 31, 204, 140, 248, 52, 31, 234, 137, 248,
52, 31, 214, 11, 248, 52, 228, 161, 197, 55, 77, 217, 128, 229, 246, 77,
217, 128, 122, 204, 56, 217, 128, 1, 160, 217, 128, 1, 221, 250, 217,
128, 1, 231, 233, 217, 128, 1, 214, 165, 217, 128, 1, 247, 19, 217, 128,
1, 246, 117, 217, 128, 1, 223, 62, 217, 128, 1, 212, 201, 217, 128, 1,
189, 217, 128, 1, 199, 240, 217, 128, 1, 238, 0, 217, 128, 1, 181, 217,
128, 1, 166, 217, 128, 1, 210, 94, 217, 128, 1, 249, 3, 217, 128, 1, 172,
217, 128, 1, 198, 118, 217, 128, 1, 198, 108, 217, 128, 1, 235, 17, 217,
128, 1, 194, 169, 217, 128, 1, 192, 71, 217, 128, 1, 192, 112, 217, 128,
1, 255, 41, 217, 128, 1, 168, 217, 128, 1, 167, 217, 128, 1, 177, 217,
128, 1, 204, 64, 217, 128, 1, 188, 217, 128, 1, 144, 217, 128, 1, 64,
217, 128, 201, 164, 1, 160, 217, 128, 201, 164, 1, 221, 250, 217, 128,
201, 164, 1, 231, 233, 217, 128, 201, 164, 1, 214, 165, 217, 128, 201,
164, 1, 247, 19, 217, 128, 201, 164, 1, 246, 117, 217, 128, 201, 164, 1,
223, 62, 217, 128, 201, 164, 1, 212, 201, 217, 128, 201, 164, 1, 189,
217, 128, 201, 164, 1, 199, 240, 217, 128, 201, 164, 1, 238, 0, 217, 128,
201, 164, 1, 181, 217, 128, 201, 164, 1, 166, 217, 128, 201, 164, 1, 210,
94, 217, 128, 201, 164, 1, 249, 3, 217, 128, 201, 164, 1, 172, 217, 128,
201, 164, 1, 198, 118, 217, 128, 201, 164, 1, 198, 108, 217, 128, 201,
164, 1, 235, 17, 217, 128, 201, 164, 1, 194, 169, 217, 128, 201, 164, 1,
192, 71, 217, 128, 201, 164, 1, 192, 112, 217, 128, 201, 164, 1, 168,
217, 128, 201, 164, 1, 167, 217, 128, 201, 164, 1, 177, 217, 128, 201,
164, 1, 204, 64, 217, 128, 201, 164, 1, 188, 217, 128, 201, 164, 1, 144,
217, 128, 201, 164, 1, 64, 217, 128, 18, 3, 252, 33, 217, 128, 18, 3, 70,
217, 128, 18, 3, 68, 217, 128, 18, 3, 71, 217, 128, 18, 3, 74, 217, 128,
3, 250, 168, 217, 128, 3, 246, 234, 217, 112, 127, 1, 64, 217, 112, 127,
1, 252, 33, 217, 112, 127, 1, 70, 217, 112, 127, 1, 223, 224, 217, 112,
127, 1, 68, 217, 112, 127, 1, 196, 251, 217, 112, 127, 1, 71, 217, 112,
127, 1, 251, 63, 217, 112, 127, 1, 74, 217, 112, 127, 1, 250, 8, 217,
112, 127, 1, 160, 217, 112, 127, 1, 221, 250, 217, 112, 127, 1, 231, 233,
217, 112, 127, 1, 231, 84, 217, 112, 127, 1, 214, 165, 217, 112, 127, 1,
247, 19, 217, 112, 127, 1, 246, 117, 217, 112, 127, 1, 223, 62, 217, 112,
127, 1, 223, 28, 217, 112, 127, 1, 212, 201, 217, 112, 127, 1, 198, 83,
217, 112, 127, 1, 198, 71, 217, 112, 127, 1, 237, 161, 217, 112, 127, 1,
237, 145, 217, 112, 127, 1, 213, 178, 217, 112, 127, 1, 189, 217, 112,
127, 1, 199, 240, 217, 112, 127, 1, 238, 0, 217, 112, 127, 1, 237, 40,
217, 112, 127, 1, 181, 217, 112, 127, 1, 166, 217, 112, 127, 1, 210, 94,
217, 112, 127, 1, 249, 3, 217, 112, 127, 1, 248, 54, 217, 112, 127, 1,
172, 217, 112, 127, 1, 168, 217, 112, 127, 1, 167, 217, 112, 127, 1, 177,
217, 112, 127, 1, 196, 157, 217, 112, 127, 1, 204, 64, 217, 112, 127, 1,
202, 92, 217, 112, 127, 1, 188, 217, 112, 127, 1, 144, 217, 112, 127, 1,
219, 137, 217, 112, 127, 1, 221, 47, 217, 112, 127, 1, 222, 234, 217,
112, 127, 1, 198, 223, 217, 112, 127, 18, 3, 252, 33, 217, 112, 127, 18,
3, 70, 217, 112, 127, 18, 3, 223, 224, 217, 112, 127, 18, 3, 68, 217,
112, 127, 18, 3, 196, 251, 217, 112, 127, 18, 3, 118, 150, 217, 112, 127,
18, 3, 71, 217, 112, 127, 18, 3, 251, 63, 217, 112, 127, 18, 3, 74, 217,
112, 127, 18, 3, 250, 8, 217, 112, 127, 3, 250, 168, 217, 112, 127, 3,
196, 6, 217, 112, 127, 3, 212, 241, 217, 112, 127, 3, 246, 236, 217, 112,
127, 3, 230, 80, 217, 112, 127, 196, 11, 217, 112, 127, 207, 194, 217,
112, 127, 208, 71, 217, 112, 127, 17, 192, 76, 217, 112, 127, 17, 101,
217, 112, 127, 17, 104, 217, 112, 127, 17, 133, 217, 112, 127, 17, 134,
217, 112, 127, 17, 151, 217, 112, 127, 17, 170, 217, 112, 127, 17, 179,
217, 112, 127, 17, 174, 217, 112, 127, 17, 182, 230, 164, 127, 1, 64,
230, 164, 127, 1, 252, 33, 230, 164, 127, 1, 70, 230, 164, 127, 1, 223,
224, 230, 164, 127, 1, 68, 230, 164, 127, 1, 196, 251, 230, 164, 127, 1,
234, 171, 230, 164, 127, 1, 251, 63, 230, 164, 127, 1, 211, 194, 230,
164, 127, 1, 250, 8, 230, 164, 127, 1, 168, 230, 164, 127, 1, 196, 157,
230, 164, 127, 1, 249, 3, 230, 164, 127, 1, 248, 54, 230, 164, 127, 1,
172, 230, 164, 127, 1, 160, 230, 164, 127, 1, 221, 250, 230, 164, 127, 1,
189, 230, 164, 127, 1, 199, 240, 230, 164, 127, 1, 177, 230, 164, 127, 1,
231, 233, 230, 164, 127, 1, 231, 84, 230, 164, 127, 1, 238, 0, 230, 164,
127, 1, 237, 40, 230, 164, 127, 1, 181, 230, 164, 127, 1, 247, 19, 230,
164, 127, 1, 246, 117, 230, 164, 127, 1, 198, 83, 230, 164, 127, 1, 198,
71, 230, 164, 127, 1, 219, 137, 230, 164, 127, 1, 223, 62, 230, 164, 127,
1, 223, 28, 230, 164, 127, 1, 237, 161, 230, 164, 127, 1, 237, 145, 230,
164, 127, 1, 214, 165, 230, 164, 127, 1, 166, 230, 164, 127, 1, 210, 94,
230, 164, 127, 1, 144, 230, 164, 127, 1, 167, 230, 164, 127, 1, 188, 230,
164, 127, 18, 3, 252, 33, 230, 164, 127, 18, 3, 70, 230, 164, 127, 18, 3,
223, 224, 230, 164, 127, 18, 3, 68, 230, 164, 127, 18, 3, 196, 251, 230,
164, 127, 18, 3, 234, 171, 230, 164, 127, 18, 3, 251, 63, 230, 164, 127,
18, 3, 211, 194, 230, 164, 127, 18, 3, 250, 8, 230, 164, 127, 3, 250,
168, 230, 164, 127, 3, 196, 6, 230, 164, 127, 196, 11, 230, 164, 127,
211, 219, 230, 164, 127, 17, 192, 76, 230, 164, 127, 17, 101, 230, 164,
127, 17, 104, 230, 164, 127, 17, 133, 230, 164, 127, 17, 134, 230, 164,
127, 17, 151, 230, 164, 127, 17, 170, 230, 164, 127, 17, 179, 230, 164,
127, 17, 174, 230, 164, 127, 17, 182, 217, 170, 1, 160, 217, 170, 1, 231,
233, 217, 170, 1, 214, 165, 217, 170, 1, 166, 217, 170, 1, 249, 3, 217,
170, 1, 172, 217, 170, 1, 189, 217, 170, 1, 238, 0, 217, 170, 1, 181,
217, 170, 1, 247, 19, 217, 170, 1, 223, 62, 217, 170, 1, 212, 201, 217,
170, 1, 168, 217, 170, 1, 167, 217, 170, 1, 177, 217, 170, 1, 196, 157,
217, 170, 1, 188, 217, 170, 1, 64, 217, 170, 250, 210, 217, 170, 18, 3,
70, 217, 170, 18, 3, 68, 217, 170, 18, 3, 71, 217, 170, 18, 3, 74, 217,
170, 210, 211, 217, 170, 234, 80, 80, 205, 208, 219, 152, 1, 193, 24, 44,
232, 109, 90, 199, 157, 44, 232, 109, 90, 211, 207, 44, 232, 109, 90,
234, 140, 44, 232, 109, 90, 203, 23, 44, 232, 109, 90, 232, 129, 44, 232,
109, 90, 199, 180, 44, 232, 109, 112, 234, 139, 44, 232, 109, 112, 203,
22, 44, 232, 109, 90, 197, 242, 44, 232, 109, 90, 203, 32, 44, 232, 109,
90, 203, 31, 44, 232, 109, 90, 200, 21, 44, 232, 109, 90, 234, 143, 44,
232, 109, 112, 197, 241, 44, 232, 109, 112, 203, 30, 44, 232, 109, 90,
233, 6, 44, 232, 109, 90, 208, 167, 44, 232, 109, 90, 230, 77, 44, 232,
109, 90, 230, 76, 44, 232, 109, 112, 208, 165, 44, 232, 109, 235, 94,
233, 81, 221, 182, 44, 3, 214, 197, 44, 3, 246, 122, 44, 3, 251, 240, 44,
3, 196, 239, 44, 3, 215, 178, 44, 3, 220, 253, 44, 3, 210, 202, 44, 3,
215, 222, 44, 3, 222, 156, 44, 3, 211, 23, 44, 3, 209, 174, 44, 3, 196,
142, 44, 3, 211, 72, 44, 3, 220, 242, 44, 3, 196, 113, 44, 194, 87, 238,
154, 57, 44, 235, 65, 238, 154, 57, 44, 220, 82, 57, 44, 206, 56, 211,
26, 57, 44, 198, 218, 238, 196, 57, 44, 198, 218, 31, 57, 44, 238, 136,
57, 44, 26, 212, 4, 57, 44, 202, 141, 57, 44, 198, 234, 57, 44, 223, 191,
209, 157, 57, 44, 202, 13, 232, 89, 57, 44, 3, 215, 182, 44, 3, 196, 150,
44, 209, 38, 234, 80, 80, 199, 244, 10, 3, 64, 10, 3, 41, 24, 64, 10, 3,
41, 24, 248, 241, 10, 3, 41, 24, 231, 202, 200, 19, 10, 3, 41, 24, 144,
10, 3, 41, 24, 223, 226, 10, 3, 41, 24, 220, 162, 230, 162, 10, 3, 41,
24, 215, 189, 10, 3, 41, 24, 206, 79, 10, 3, 254, 42, 10, 3, 251, 238,
10, 3, 251, 239, 24, 250, 51, 10, 3, 251, 239, 24, 235, 48, 230, 162, 10,
3, 251, 239, 24, 231, 215, 10, 3, 251, 239, 24, 231, 202, 200, 19, 10, 3,
251, 239, 24, 144, 10, 3, 251, 239, 24, 223, 227, 230, 162, 10, 3, 251,
239, 24, 223, 200, 10, 3, 251, 239, 24, 220, 163, 10, 3, 251, 239, 24,
203, 252, 10, 3, 251, 239, 24, 124, 102, 124, 102, 68, 10, 3, 251, 239,
230, 162, 10, 3, 251, 155, 10, 3, 251, 156, 24, 248, 220, 10, 3, 251,
156, 24, 231, 202, 200, 19, 10, 3, 251, 156, 24, 217, 49, 102, 234, 88,
10, 3, 251, 156, 24, 204, 62, 10, 3, 251, 156, 24, 200, 141, 10, 3, 251,
125, 10, 3, 251, 44, 10, 3, 251, 45, 24, 234, 15, 10, 3, 251, 45, 24,
203, 214, 102, 231, 18, 10, 3, 251, 35, 10, 3, 251, 36, 24, 251, 35, 10,
3, 251, 36, 24, 236, 225, 10, 3, 251, 36, 24, 231, 18, 10, 3, 251, 36,
24, 144, 10, 3, 251, 36, 24, 222, 144, 10, 3, 251, 36, 24, 221, 204, 10,
3, 251, 36, 24, 204, 12, 10, 3, 251, 36, 24, 197, 3, 10, 3, 251, 32, 10,
3, 251, 24, 10, 3, 250, 237, 10, 3, 250, 238, 24, 204, 12, 10, 3, 250,
224, 10, 3, 250, 225, 136, 250, 224, 10, 3, 250, 225, 112, 199, 82, 10,
3, 250, 225, 102, 215, 75, 211, 170, 250, 225, 102, 215, 74, 10, 3, 250,
225, 102, 215, 75, 202, 105, 10, 3, 250, 188, 10, 3, 250, 158, 10, 3,
250, 124, 10, 3, 250, 125, 24, 221, 0, 10, 3, 250, 96, 10, 3, 250, 59,
10, 3, 250, 53, 10, 3, 250, 54, 192, 26, 200, 19, 10, 3, 250, 54, 222,
148, 200, 19, 10, 3, 250, 54, 136, 250, 54, 198, 34, 136, 198, 34, 198,
34, 136, 198, 34, 210, 253, 10, 3, 250, 54, 136, 250, 54, 136, 250, 53,
10, 3, 250, 54, 136, 250, 54, 136, 250, 54, 238, 176, 250, 54, 136, 250,
54, 136, 250, 53, 10, 3, 250, 51, 10, 3, 250, 47, 10, 3, 249, 3, 10, 3,
248, 241, 10, 3, 248, 235, 10, 3, 248, 227, 10, 3, 248, 221, 10, 3, 248,
222, 136, 248, 221, 10, 3, 248, 220, 10, 3, 161, 10, 3, 248, 193, 10, 3,
248, 41, 10, 3, 248, 42, 24, 64, 10, 3, 248, 42, 24, 231, 193, 10, 3,
248, 42, 24, 223, 227, 230, 162, 10, 3, 247, 124, 10, 3, 247, 125, 136,
247, 125, 251, 238, 10, 3, 247, 125, 136, 247, 125, 197, 77, 10, 3, 247,
125, 238, 176, 247, 124, 10, 3, 247, 100, 10, 3, 247, 101, 136, 247, 100,
10, 3, 247, 89, 10, 3, 247, 88, 10, 3, 238, 0, 10, 3, 237, 246, 10, 3,
237, 247, 221, 163, 24, 41, 102, 217, 110, 10, 3, 237, 247, 221, 163, 24,
250, 237, 10, 3, 237, 247, 221, 163, 24, 248, 220, 10, 3, 237, 247, 221,
163, 24, 248, 41, 10, 3, 237, 247, 221, 163, 24, 231, 233, 10, 3, 237,
247, 221, 163, 24, 231, 234, 102, 217, 110, 10, 3, 237, 247, 221, 163,
24, 231, 46, 10, 3, 237, 247, 221, 163, 24, 231, 27, 10, 3, 237, 247,
221, 163, 24, 230, 175, 10, 3, 237, 247, 221, 163, 24, 144, 10, 3, 237,
247, 221, 163, 24, 223, 105, 10, 3, 237, 247, 221, 163, 24, 223, 106,
102, 219, 36, 10, 3, 237, 247, 221, 163, 24, 222, 129, 10, 3, 237, 247,
221, 163, 24, 177, 10, 3, 237, 247, 221, 163, 24, 219, 36, 10, 3, 237,
247, 221, 163, 24, 219, 37, 102, 217, 109, 10, 3, 237, 247, 221, 163, 24,
219, 19, 10, 3, 237, 247, 221, 163, 24, 214, 214, 10, 3, 237, 247, 221,
163, 24, 210, 254, 102, 210, 253, 10, 3, 237, 247, 221, 163, 24, 203,
125, 10, 3, 237, 247, 221, 163, 24, 200, 141, 10, 3, 237, 247, 221, 163,
24, 197, 121, 102, 231, 27, 10, 3, 237, 247, 221, 163, 24, 197, 3, 10, 3,
237, 218, 10, 3, 237, 195, 10, 3, 237, 194, 10, 3, 237, 193, 10, 3, 237,
16, 10, 3, 236, 254, 10, 3, 236, 227, 10, 3, 236, 228, 24, 204, 12, 10,
3, 236, 225, 10, 3, 236, 215, 10, 3, 236, 216, 222, 89, 124, 230, 163,
236, 194, 10, 3, 236, 194, 10, 3, 235, 62, 10, 3, 235, 63, 136, 235, 62,
10, 3, 235, 63, 230, 162, 10, 3, 235, 63, 203, 249, 10, 3, 235, 60, 10,
3, 235, 61, 24, 233, 252, 10, 3, 235, 59, 10, 3, 235, 56, 10, 3, 235, 55,
10, 3, 235, 54, 10, 3, 235, 49, 10, 3, 235, 47, 10, 3, 235, 48, 230, 162,
10, 3, 235, 48, 230, 163, 230, 162, 10, 3, 235, 46, 10, 3, 235, 39, 10,
3, 71, 10, 3, 234, 253, 24, 210, 253, 10, 3, 234, 253, 136, 234, 253,
212, 231, 136, 212, 230, 10, 3, 234, 200, 10, 3, 234, 201, 24, 41, 102,
230, 113, 102, 238, 0, 10, 3, 234, 201, 24, 231, 193, 10, 3, 234, 201,
24, 216, 175, 10, 3, 234, 201, 24, 206, 63, 10, 3, 234, 201, 24, 204, 12,
10, 3, 234, 201, 24, 68, 10, 3, 234, 173, 10, 3, 234, 161, 10, 3, 234,
124, 10, 3, 234, 88, 10, 3, 234, 89, 24, 231, 201, 10, 3, 234, 89, 24,
231, 202, 200, 19, 10, 3, 234, 89, 24, 217, 48, 10, 3, 234, 89, 238, 176,
234, 88, 10, 3, 234, 89, 211, 170, 234, 88, 10, 3, 234, 89, 202, 105, 10,
3, 234, 18, 10, 3, 234, 15, 10, 3, 233, 252, 10, 3, 233, 168, 10, 3, 233,
169, 24, 64, 10, 3, 233, 169, 24, 41, 102, 220, 96, 10, 3, 233, 169, 24,
41, 102, 220, 97, 24, 220, 96, 10, 3, 233, 169, 24, 250, 224, 10, 3, 233,
169, 24, 248, 241, 10, 3, 233, 169, 24, 235, 48, 230, 162, 10, 3, 233,
169, 24, 235, 48, 230, 163, 230, 162, 10, 3, 233, 169, 24, 144, 10, 3,
233, 169, 24, 230, 113, 230, 162, 10, 3, 233, 169, 24, 223, 227, 230,
162, 10, 3, 233, 169, 24, 222, 88, 10, 3, 233, 169, 24, 222, 89, 202,
105, 10, 3, 233, 169, 24, 221, 24, 10, 3, 233, 169, 24, 177, 10, 3, 233,
169, 24, 220, 97, 24, 220, 96, 10, 3, 233, 169, 24, 219, 209, 10, 3, 233,
169, 24, 219, 36, 10, 3, 233, 169, 24, 197, 120, 10, 3, 233, 169, 24,
197, 109, 10, 3, 231, 233, 10, 3, 231, 234, 230, 162, 10, 3, 231, 231,
10, 3, 231, 232, 24, 41, 102, 238, 1, 102, 144, 10, 3, 231, 232, 24, 41,
102, 144, 10, 3, 231, 232, 24, 41, 102, 223, 226, 10, 3, 231, 232, 24,
251, 156, 200, 20, 102, 200, 166, 10, 3, 231, 232, 24, 250, 224, 10, 3,
231, 232, 24, 250, 53, 10, 3, 231, 232, 24, 250, 52, 102, 231, 215, 10,
3, 231, 232, 24, 248, 241, 10, 3, 231, 232, 24, 248, 194, 102, 167, 10,
3, 231, 232, 24, 247, 89, 10, 3, 231, 232, 24, 247, 90, 102, 167, 10, 3,
231, 232, 24, 238, 0, 10, 3, 231, 232, 24, 237, 16, 10, 3, 231, 232, 24,
236, 228, 24, 204, 12, 10, 3, 231, 232, 24, 235, 60, 10, 3, 231, 232, 24,
234, 124, 10, 3, 231, 232, 24, 234, 125, 102, 177, 10, 3, 231, 232, 24,
234, 88, 10, 3, 231, 232, 24, 234, 89, 24, 231, 202, 200, 19, 10, 3, 231,
232, 24, 231, 202, 200, 19, 10, 3, 231, 232, 24, 231, 193, 10, 3, 231,
232, 24, 231, 46, 10, 3, 231, 232, 24, 231, 44, 10, 3, 231, 232, 24, 231,
45, 102, 64, 10, 3, 231, 232, 24, 231, 28, 102, 201, 184, 10, 3, 231,
232, 24, 230, 113, 102, 219, 37, 102, 233, 252, 10, 3, 231, 232, 24, 230,
81, 10, 3, 231, 232, 24, 230, 82, 102, 177, 10, 3, 231, 232, 24, 229,
179, 102, 219, 209, 10, 3, 231, 232, 24, 228, 173, 10, 3, 231, 232, 24,
223, 227, 230, 162, 10, 3, 231, 232, 24, 223, 91, 102, 228, 182, 102,
250, 53, 10, 3, 231, 232, 24, 222, 129, 10, 3, 231, 232, 24, 222, 88, 10,
3, 231, 232, 24, 221, 190, 10, 3, 231, 232, 24, 221, 191, 102, 220, 96,
10, 3, 231, 232, 24, 221, 25, 102, 250, 224, 10, 3, 231, 232, 24, 177,
10, 3, 231, 232, 24, 217, 49, 102, 234, 88, 10, 3, 231, 232, 24, 216,
175, 10, 3, 231, 232, 24, 212, 230, 10, 3, 231, 232, 24, 212, 231, 136,
212, 230, 10, 3, 231, 232, 24, 166, 10, 3, 231, 232, 24, 206, 63, 10, 3,
231, 232, 24, 206, 25, 10, 3, 231, 232, 24, 204, 12, 10, 3, 231, 232, 24,
204, 13, 102, 198, 15, 10, 3, 231, 232, 24, 203, 234, 10, 3, 231, 232,
24, 201, 129, 10, 3, 231, 232, 24, 200, 141, 10, 3, 231, 232, 24, 68, 10,
3, 231, 232, 24, 197, 109, 10, 3, 231, 232, 24, 197, 110, 102, 235, 62,
10, 3, 231, 232, 136, 231, 231, 10, 3, 231, 226, 10, 3, 231, 227, 238,
176, 231, 226, 10, 3, 231, 224, 10, 3, 231, 225, 136, 231, 225, 231, 194,
136, 231, 193, 10, 3, 231, 215, 10, 3, 231, 216, 231, 225, 136, 231, 225,
231, 194, 136, 231, 193, 10, 3, 231, 214, 10, 3, 231, 212, 10, 3, 231,
203, 10, 3, 231, 201, 10, 3, 231, 202, 200, 19, 10, 3, 231, 202, 136,
231, 201, 10, 3, 231, 202, 238, 176, 231, 201, 10, 3, 231, 193, 10, 3,
231, 192, 10, 3, 231, 186, 10, 3, 231, 127, 10, 3, 231, 128, 24, 221, 0,
10, 3, 231, 46, 10, 3, 231, 47, 24, 71, 10, 3, 231, 47, 24, 68, 10, 3,
231, 47, 238, 176, 231, 46, 10, 3, 231, 44, 10, 3, 231, 45, 136, 231, 44,
10, 3, 231, 45, 238, 176, 231, 44, 10, 3, 231, 41, 10, 3, 231, 27, 10, 3,
231, 28, 230, 162, 10, 3, 231, 25, 10, 3, 231, 26, 24, 41, 102, 223, 226,
10, 3, 231, 26, 24, 231, 202, 200, 19, 10, 3, 231, 26, 24, 223, 226, 10,
3, 231, 26, 24, 219, 37, 102, 223, 226, 10, 3, 231, 26, 24, 166, 10, 3,
231, 20, 10, 3, 231, 18, 10, 3, 231, 19, 238, 176, 231, 18, 10, 3, 231,
19, 24, 248, 241, 10, 3, 231, 19, 24, 200, 141, 10, 3, 231, 19, 200, 19,
10, 3, 230, 186, 10, 3, 230, 187, 238, 176, 230, 186, 10, 3, 230, 184,
10, 3, 230, 185, 24, 222, 129, 10, 3, 230, 185, 24, 222, 130, 24, 223,
227, 230, 162, 10, 3, 230, 185, 24, 212, 230, 10, 3, 230, 185, 24, 206,
64, 102, 198, 33, 10, 3, 230, 185, 230, 162, 10, 3, 230, 175, 10, 3, 230,
176, 24, 41, 102, 221, 0, 10, 3, 230, 176, 24, 221, 0, 10, 3, 230, 176,
136, 230, 176, 219, 27, 10, 3, 230, 167, 10, 3, 230, 165, 10, 3, 230,
166, 24, 204, 12, 10, 3, 230, 156, 10, 3, 230, 155, 10, 3, 230, 151, 10,
3, 230, 150, 10, 3, 144, 10, 3, 230, 113, 200, 19, 10, 3, 230, 113, 230,
162, 10, 3, 230, 81, 10, 3, 229, 178, 10, 3, 229, 179, 24, 250, 53, 10,
3, 229, 179, 24, 250, 51, 10, 3, 229, 179, 24, 248, 241, 10, 3, 229, 179,
24, 236, 194, 10, 3, 229, 179, 24, 231, 224, 10, 3, 229, 179, 24, 221,
179, 10, 3, 229, 179, 24, 212, 230, 10, 3, 229, 179, 24, 204, 12, 10, 3,
229, 179, 24, 68, 10, 3, 228, 181, 10, 3, 228, 173, 10, 3, 228, 174, 24,
250, 224, 10, 3, 228, 174, 24, 230, 81, 10, 3, 228, 174, 24, 222, 88, 10,
3, 228, 174, 24, 219, 153, 10, 3, 228, 174, 24, 197, 109, 10, 3, 228,
168, 10, 3, 70, 10, 3, 228, 97, 64, 10, 3, 228, 53, 10, 3, 223, 254, 10,
3, 223, 255, 136, 223, 255, 247, 89, 10, 3, 223, 255, 136, 223, 255, 202,
105, 10, 3, 223, 229, 10, 3, 223, 226, 10, 3, 223, 227, 236, 254, 10, 3,
223, 227, 207, 151, 10, 3, 223, 227, 136, 223, 227, 203, 218, 136, 203,
218, 197, 110, 136, 197, 109, 10, 3, 223, 227, 230, 162, 10, 3, 223, 218,
10, 3, 223, 219, 24, 231, 202, 200, 19, 10, 3, 223, 217, 10, 3, 223, 207,
10, 3, 223, 208, 24, 200, 141, 10, 3, 223, 208, 238, 176, 223, 207, 10,
3, 223, 208, 211, 170, 223, 207, 10, 3, 223, 208, 202, 105, 10, 3, 223,
200, 10, 3, 223, 190, 10, 3, 223, 105, 10, 3, 223, 90, 10, 3, 160, 10, 3,
222, 174, 24, 64, 10, 3, 222, 174, 24, 251, 125, 10, 3, 222, 174, 24,
251, 126, 102, 221, 24, 10, 3, 222, 174, 24, 250, 51, 10, 3, 222, 174,
24, 248, 241, 10, 3, 222, 174, 24, 248, 220, 10, 3, 222, 174, 24, 161,
10, 3, 222, 174, 24, 248, 41, 10, 3, 222, 174, 24, 234, 15, 10, 3, 222,
174, 24, 233, 252, 10, 3, 222, 174, 24, 231, 233, 10, 3, 222, 174, 24,
231, 215, 10, 3, 222, 174, 24, 231, 202, 200, 19, 10, 3, 222, 174, 24,
231, 193, 10, 3, 222, 174, 24, 231, 194, 102, 204, 63, 102, 64, 10, 3,
222, 174, 24, 231, 46, 10, 3, 222, 174, 24, 231, 27, 10, 3, 222, 174, 24,
231, 19, 102, 206, 25, 10, 3, 222, 174, 24, 231, 19, 238, 176, 231, 18,
10, 3, 222, 174, 24, 230, 186, 10, 3, 222, 174, 24, 230, 155, 10, 3, 222,
174, 24, 223, 226, 10, 3, 222, 174, 24, 223, 207, 10, 3, 222, 174, 24,
222, 129, 10, 3, 222, 174, 24, 221, 204, 10, 3, 222, 174, 24, 221, 190,
10, 3, 222, 174, 24, 219, 209, 10, 3, 222, 174, 24, 219, 36, 10, 3, 222,
174, 24, 217, 48, 10, 3, 222, 174, 24, 217, 49, 102, 235, 62, 10, 3, 222,
174, 24, 217, 49, 102, 231, 46, 10, 3, 222, 174, 24, 217, 49, 102, 200,
79, 10, 3, 222, 174, 24, 216, 175, 10, 3, 222, 174, 24, 216, 176, 102,
212, 225, 10, 3, 222, 174, 24, 214, 214, 10, 3, 222, 174, 24, 212, 230,
10, 3, 222, 174, 24, 210, 51, 10, 3, 222, 174, 24, 206, 218, 10, 3, 222,
174, 24, 188, 10, 3, 222, 174, 24, 206, 25, 10, 3, 222, 174, 24, 204, 64,
10, 3, 222, 174, 24, 204, 12, 10, 3, 222, 174, 24, 203, 234, 10, 3, 222,
174, 24, 203, 164, 10, 3, 222, 174, 24, 203, 104, 10, 3, 222, 174, 24,
201, 138, 10, 3, 222, 174, 24, 200, 112, 10, 3, 222, 174, 24, 68, 10, 3,
222, 174, 24, 197, 120, 10, 3, 222, 174, 24, 197, 109, 10, 3, 222, 174,
24, 197, 80, 24, 166, 10, 3, 222, 174, 24, 197, 3, 10, 3, 222, 174, 24,
192, 30, 10, 3, 222, 160, 10, 3, 222, 161, 238, 176, 222, 160, 10, 3,
222, 149, 10, 3, 222, 146, 10, 3, 222, 144, 10, 3, 222, 143, 10, 3, 222,
141, 10, 3, 222, 142, 136, 222, 141, 10, 3, 222, 129, 10, 3, 222, 130,
24, 223, 227, 230, 162, 10, 3, 222, 125, 10, 3, 222, 126, 24, 248, 241,
10, 3, 222, 126, 238, 176, 222, 125, 10, 3, 222, 123, 10, 3, 222, 122,
10, 3, 222, 88, 10, 3, 222, 89, 220, 164, 24, 124, 136, 220, 164, 24, 68,
10, 3, 222, 89, 136, 222, 89, 220, 164, 24, 124, 136, 220, 164, 24, 68,
10, 3, 222, 21, 10, 3, 221, 204, 10, 3, 221, 205, 24, 248, 241, 10, 3,
221, 205, 24, 68, 10, 3, 221, 205, 24, 197, 109, 10, 3, 221, 190, 10, 3,
221, 179, 10, 3, 221, 165, 10, 3, 221, 164, 10, 3, 221, 162, 10, 3, 221,
163, 136, 221, 162, 10, 3, 221, 33, 10, 3, 221, 34, 136, 229, 179, 24,
250, 52, 221, 34, 136, 229, 179, 24, 250, 51, 10, 3, 221, 24, 10, 3, 221,
22, 10, 3, 221, 23, 196, 137, 20, 10, 3, 221, 21, 10, 3, 221, 13, 10, 3,
221, 14, 230, 162, 10, 3, 221, 12, 10, 3, 221, 0, 10, 3, 221, 1, 211,
170, 221, 0, 10, 3, 220, 249, 10, 3, 220, 226, 10, 3, 177, 10, 3, 220,
163, 10, 3, 220, 164, 24, 64, 10, 3, 220, 164, 24, 41, 102, 238, 1, 102,
144, 10, 3, 220, 164, 24, 41, 102, 231, 193, 10, 3, 220, 164, 24, 41,
102, 220, 96, 10, 3, 220, 164, 24, 251, 35, 10, 3, 220, 164, 24, 250,
224, 10, 3, 220, 164, 24, 250, 54, 192, 26, 200, 19, 10, 3, 220, 164, 24,
248, 241, 10, 3, 220, 164, 24, 248, 41, 10, 3, 220, 164, 24, 237, 195,
10, 3, 220, 164, 24, 234, 88, 10, 3, 220, 164, 24, 231, 233, 10, 3, 220,
164, 24, 231, 193, 10, 3, 220, 164, 24, 230, 175, 10, 3, 220, 164, 24,
230, 176, 102, 230, 175, 10, 3, 220, 164, 24, 144, 10, 3, 220, 164, 24,
230, 81, 10, 3, 220, 164, 24, 229, 179, 24, 212, 230, 10, 3, 220, 164,
24, 223, 227, 230, 162, 10, 3, 220, 164, 24, 223, 207, 10, 3, 220, 164,
24, 223, 208, 102, 144, 10, 3, 220, 164, 24, 223, 208, 102, 219, 36, 10,
3, 220, 164, 24, 221, 204, 10, 3, 220, 164, 24, 221, 179, 10, 3, 220,
164, 24, 221, 24, 10, 3, 220, 164, 24, 221, 13, 10, 3, 220, 164, 24, 221,
14, 102, 229, 179, 102, 64, 10, 3, 220, 164, 24, 220, 163, 10, 3, 220,
164, 24, 219, 153, 10, 3, 220, 164, 24, 219, 36, 10, 3, 220, 164, 24,
219, 21, 10, 3, 220, 164, 24, 217, 48, 10, 3, 220, 164, 24, 217, 49, 102,
234, 88, 10, 3, 220, 164, 24, 215, 189, 10, 3, 220, 164, 24, 214, 214,
10, 3, 220, 164, 24, 204, 13, 102, 201, 129, 10, 3, 220, 164, 24, 203,
214, 102, 231, 19, 102, 234, 15, 10, 3, 220, 164, 24, 203, 214, 102, 231,
19, 200, 19, 10, 3, 220, 164, 24, 203, 162, 10, 3, 220, 164, 24, 203,
163, 102, 203, 162, 10, 3, 220, 164, 24, 201, 129, 10, 3, 220, 164, 24,
200, 155, 10, 3, 220, 164, 24, 200, 141, 10, 3, 220, 164, 24, 200, 80,
102, 41, 102, 201, 185, 102, 181, 10, 3, 220, 164, 24, 68, 10, 3, 220,
164, 24, 124, 102, 64, 10, 3, 220, 164, 24, 124, 102, 124, 102, 68, 10,
3, 220, 164, 24, 197, 121, 102, 250, 53, 10, 3, 220, 164, 24, 197, 109,
10, 3, 220, 164, 24, 197, 3, 10, 3, 220, 164, 202, 105, 10, 3, 220, 161,
10, 3, 220, 162, 24, 204, 12, 10, 3, 220, 162, 24, 204, 13, 102, 201,
129, 10, 3, 220, 162, 230, 162, 10, 3, 220, 162, 230, 163, 136, 220, 162,
230, 163, 204, 12, 10, 3, 220, 157, 10, 3, 220, 96, 10, 3, 220, 97, 24,
220, 96, 10, 3, 220, 94, 10, 3, 220, 95, 24, 221, 0, 10, 3, 220, 95, 24,
221, 1, 102, 206, 218, 10, 3, 219, 209, 10, 3, 219, 190, 10, 3, 219, 178,
10, 3, 219, 153, 10, 3, 219, 36, 10, 3, 219, 37, 24, 248, 241, 10, 3,
219, 34, 10, 3, 219, 35, 24, 251, 35, 10, 3, 219, 35, 24, 248, 241, 10,
3, 219, 35, 24, 233, 252, 10, 3, 219, 35, 24, 233, 253, 200, 19, 10, 3,
219, 35, 24, 231, 202, 200, 19, 10, 3, 219, 35, 24, 229, 179, 24, 248,
241, 10, 3, 219, 35, 24, 223, 207, 10, 3, 219, 35, 24, 222, 146, 10, 3,
219, 35, 24, 222, 144, 10, 3, 219, 35, 24, 222, 145, 102, 250, 53, 10, 3,
219, 35, 24, 221, 204, 10, 3, 219, 35, 24, 220, 185, 102, 250, 53, 10, 3,
219, 35, 24, 220, 163, 10, 3, 219, 35, 24, 217, 49, 102, 234, 88, 10, 3,
219, 35, 24, 214, 214, 10, 3, 219, 35, 24, 213, 22, 10, 3, 219, 35, 24,
203, 126, 102, 250, 53, 10, 3, 219, 35, 24, 203, 96, 102, 247, 124, 10,
3, 219, 35, 24, 198, 33, 10, 3, 219, 35, 200, 19, 10, 3, 219, 35, 238,
176, 219, 34, 10, 3, 219, 35, 211, 170, 219, 34, 10, 3, 219, 35, 202,
105, 10, 3, 219, 35, 203, 249, 10, 3, 219, 33, 10, 3, 219, 27, 10, 3,
219, 28, 136, 219, 27, 10, 3, 219, 28, 211, 170, 219, 27, 10, 3, 219, 28,
203, 249, 10, 3, 219, 24, 10, 3, 219, 21, 10, 3, 219, 19, 10, 3, 219, 20,
136, 219, 19, 10, 3, 219, 20, 136, 219, 20, 231, 194, 136, 231, 193, 10,
3, 172, 10, 3, 217, 228, 24, 200, 141, 10, 3, 217, 228, 230, 162, 10, 3,
217, 220, 10, 3, 217, 188, 10, 3, 217, 135, 10, 3, 217, 110, 10, 3, 217,
109, 10, 3, 217, 48, 10, 3, 216, 248, 10, 3, 216, 175, 10, 3, 216, 120,
10, 3, 215, 241, 10, 3, 215, 242, 136, 215, 241, 10, 3, 215, 226, 10, 3,
215, 227, 230, 162, 10, 3, 215, 207, 10, 3, 215, 193, 10, 3, 215, 189,
10, 3, 215, 190, 24, 64, 10, 3, 215, 190, 24, 221, 0, 10, 3, 215, 190,
24, 192, 112, 10, 3, 215, 190, 136, 215, 189, 10, 3, 215, 190, 136, 215,
190, 24, 41, 102, 181, 10, 3, 215, 190, 238, 176, 215, 189, 10, 3, 215,
187, 10, 3, 215, 188, 24, 64, 10, 3, 215, 188, 24, 41, 102, 237, 16, 10,
3, 215, 188, 24, 237, 16, 10, 3, 215, 188, 230, 162, 10, 3, 181, 10, 3,
215, 87, 10, 3, 215, 74, 10, 3, 215, 75, 223, 120, 10, 3, 215, 75, 24,
203, 165, 200, 19, 10, 3, 215, 75, 211, 170, 215, 74, 10, 3, 215, 73, 10,
3, 215, 66, 212, 216, 10, 3, 215, 65, 10, 3, 215, 64, 10, 3, 214, 214,
10, 3, 214, 215, 24, 64, 10, 3, 214, 215, 24, 197, 109, 10, 3, 214, 215,
203, 249, 10, 3, 214, 60, 10, 3, 214, 61, 24, 71, 10, 3, 214, 51, 10, 3,
214, 21, 10, 3, 214, 22, 24, 231, 202, 200, 19, 10, 3, 214, 22, 24, 231,
194, 102, 231, 202, 200, 19, 10, 3, 214, 17, 10, 3, 214, 18, 24, 250,
224, 10, 3, 214, 18, 24, 250, 53, 10, 3, 214, 18, 24, 250, 54, 102, 250,
53, 10, 3, 214, 18, 24, 230, 175, 10, 3, 214, 18, 24, 217, 49, 102, 231,
202, 200, 19, 10, 3, 214, 18, 24, 214, 214, 10, 3, 214, 18, 24, 212, 230,
10, 3, 214, 18, 24, 204, 12, 10, 3, 214, 18, 24, 204, 13, 102, 41, 250,
224, 10, 3, 214, 18, 24, 204, 13, 102, 250, 53, 10, 3, 214, 18, 24, 204,
13, 102, 250, 54, 102, 250, 53, 10, 3, 214, 18, 24, 197, 121, 102, 250,
53, 10, 3, 214, 18, 24, 197, 3, 10, 3, 214, 5, 10, 3, 213, 22, 10, 3,
212, 247, 10, 3, 212, 230, 10, 3, 212, 231, 220, 162, 24, 231, 193, 10,
3, 212, 231, 220, 162, 24, 217, 110, 10, 3, 212, 231, 220, 162, 24, 206,
63, 10, 3, 212, 231, 220, 162, 24, 206, 64, 136, 212, 231, 220, 162, 24,
206, 63, 10, 3, 212, 231, 220, 162, 24, 197, 3, 10, 3, 212, 231, 200, 19,
10, 3, 212, 231, 136, 212, 230, 10, 3, 212, 231, 238, 176, 212, 230, 10,
3, 212, 231, 238, 176, 212, 231, 220, 162, 136, 220, 161, 10, 3, 212,
225, 10, 3, 212, 226, 251, 156, 24, 250, 47, 10, 3, 212, 226, 251, 156,
24, 248, 41, 10, 3, 212, 226, 251, 156, 24, 235, 56, 10, 3, 212, 226,
251, 156, 24, 230, 175, 10, 3, 212, 226, 251, 156, 24, 223, 227, 230,
162, 10, 3, 212, 226, 251, 156, 24, 222, 144, 10, 3, 212, 226, 251, 156,
24, 177, 10, 3, 212, 226, 251, 156, 24, 214, 214, 10, 3, 212, 226, 251,
156, 24, 203, 93, 10, 3, 212, 226, 251, 156, 24, 197, 120, 10, 3, 212,
226, 221, 163, 24, 248, 41, 10, 3, 212, 226, 221, 163, 24, 248, 42, 68,
10, 3, 166, 10, 3, 211, 67, 10, 3, 211, 25, 10, 3, 210, 253, 10, 3, 210,
109, 10, 3, 210, 51, 10, 3, 210, 52, 24, 64, 10, 3, 210, 52, 24, 251,
238, 10, 3, 210, 52, 24, 248, 41, 10, 3, 210, 52, 24, 247, 124, 10, 3,
210, 52, 24, 71, 10, 3, 210, 52, 24, 70, 10, 3, 210, 52, 24, 228, 53, 10,
3, 210, 52, 24, 68, 10, 3, 210, 52, 24, 197, 120, 10, 3, 210, 52, 238,
176, 210, 51, 10, 3, 209, 245, 10, 3, 209, 246, 24, 222, 125, 10, 3, 209,
246, 24, 197, 109, 10, 3, 209, 246, 24, 192, 112, 10, 3, 209, 246, 211,
170, 209, 245, 10, 3, 167, 10, 3, 208, 66, 10, 3, 207, 151, 10, 3, 206,
218, 10, 3, 188, 10, 3, 206, 80, 212, 216, 10, 3, 206, 79, 10, 3, 206,
80, 24, 64, 10, 3, 206, 80, 24, 235, 62, 10, 3, 206, 80, 24, 235, 60, 10,
3, 206, 80, 24, 144, 10, 3, 206, 80, 24, 222, 129, 10, 3, 206, 80, 24,
221, 0, 10, 3, 206, 80, 24, 219, 19, 10, 3, 206, 80, 24, 216, 175, 10, 3,
206, 80, 24, 212, 230, 10, 3, 206, 80, 24, 206, 63, 10, 3, 206, 80, 24,
203, 234, 10, 3, 206, 80, 24, 200, 166, 10, 3, 206, 80, 24, 197, 120, 10,
3, 206, 80, 24, 197, 115, 10, 3, 206, 80, 24, 197, 84, 10, 3, 206, 80,
24, 197, 27, 10, 3, 206, 80, 24, 197, 3, 10, 3, 206, 80, 136, 206, 79,
10, 3, 206, 80, 230, 162, 10, 3, 206, 63, 10, 3, 206, 64, 220, 164, 24,
250, 51, 10, 3, 206, 34, 10, 3, 206, 25, 10, 3, 204, 64, 10, 3, 204, 62,
10, 3, 204, 63, 24, 64, 10, 3, 204, 63, 24, 248, 241, 10, 3, 204, 63, 24,
231, 18, 10, 3, 204, 63, 24, 214, 214, 10, 3, 204, 63, 24, 203, 162, 10,
3, 204, 63, 24, 198, 15, 10, 3, 204, 63, 24, 68, 10, 3, 204, 63, 24, 124,
102, 64, 10, 3, 204, 60, 10, 3, 204, 58, 10, 3, 204, 30, 10, 3, 204, 12,
10, 3, 204, 13, 228, 181, 10, 3, 204, 13, 136, 204, 13, 231, 225, 136,
231, 225, 231, 194, 136, 231, 193, 10, 3, 204, 13, 136, 204, 13, 200,
167, 136, 200, 167, 231, 194, 136, 231, 193, 10, 3, 204, 5, 10, 3, 204,
0, 10, 3, 203, 252, 10, 3, 203, 251, 10, 3, 203, 248, 10, 3, 203, 234,
10, 3, 203, 235, 24, 64, 10, 3, 203, 235, 24, 223, 207, 10, 3, 203, 228,
10, 3, 203, 229, 24, 64, 10, 3, 203, 229, 24, 248, 221, 10, 3, 203, 229,
24, 247, 100, 10, 3, 203, 229, 24, 236, 215, 10, 3, 203, 229, 24, 231,
193, 10, 3, 203, 229, 24, 223, 226, 10, 3, 203, 229, 24, 223, 227, 230,
162, 10, 3, 203, 229, 24, 220, 249, 10, 3, 203, 229, 24, 219, 21, 10, 3,
203, 229, 24, 215, 226, 10, 3, 203, 229, 24, 206, 63, 10, 3, 203, 222,
10, 3, 203, 217, 10, 3, 203, 218, 200, 19, 10, 3, 203, 218, 136, 203,
218, 247, 90, 136, 247, 89, 10, 3, 203, 213, 10, 3, 203, 164, 10, 3, 203,
165, 136, 223, 121, 203, 164, 10, 3, 203, 162, 10, 3, 203, 160, 10, 3,
203, 125, 10, 3, 203, 126, 230, 162, 10, 3, 203, 104, 10, 3, 203, 102,
10, 3, 203, 103, 136, 203, 103, 203, 162, 10, 3, 203, 95, 10, 3, 203, 93,
10, 3, 201, 184, 10, 3, 201, 185, 136, 201, 184, 10, 3, 201, 141, 10, 3,
201, 140, 10, 3, 201, 138, 10, 3, 201, 129, 10, 3, 201, 128, 10, 3, 201,
100, 10, 3, 201, 99, 10, 3, 189, 10, 3, 200, 181, 250, 37, 10, 3, 200,
181, 24, 229, 178, 10, 3, 200, 181, 24, 216, 175, 10, 3, 200, 181, 230,
162, 10, 3, 200, 166, 10, 3, 200, 167, 136, 200, 167, 214, 61, 136, 214,
61, 236, 195, 136, 236, 194, 10, 3, 200, 167, 202, 105, 10, 3, 200, 155,
10, 3, 190, 24, 248, 41, 10, 3, 190, 24, 230, 175, 10, 3, 190, 24, 204,
12, 10, 3, 190, 24, 203, 164, 10, 3, 190, 24, 198, 33, 10, 3, 190, 24,
197, 109, 10, 3, 200, 141, 10, 3, 200, 112, 10, 3, 200, 79, 10, 3, 200,
80, 230, 162, 10, 3, 199, 128, 10, 3, 199, 129, 200, 19, 10, 3, 199, 92,
10, 3, 199, 69, 10, 3, 199, 70, 24, 200, 141, 10, 3, 199, 70, 136, 199,
69, 10, 3, 199, 70, 136, 199, 70, 231, 225, 136, 231, 225, 231, 194, 136,
231, 193, 10, 3, 198, 45, 10, 3, 198, 33, 10, 3, 198, 31, 10, 3, 198, 27,
10, 3, 198, 15, 10, 3, 198, 16, 136, 198, 16, 192, 113, 136, 192, 112,
10, 3, 68, 10, 3, 124, 230, 175, 10, 3, 124, 124, 68, 10, 3, 124, 136,
124, 211, 78, 136, 211, 78, 231, 194, 136, 231, 193, 10, 3, 124, 136,
124, 201, 101, 136, 201, 100, 10, 3, 124, 136, 124, 124, 207, 168, 136,
124, 207, 167, 10, 3, 197, 120, 10, 3, 197, 115, 10, 3, 197, 109, 10, 3,
197, 110, 220, 249, 10, 3, 197, 110, 24, 248, 241, 10, 3, 197, 110, 24,
216, 175, 10, 3, 197, 110, 24, 124, 102, 124, 102, 68, 10, 3, 197, 110,
24, 124, 102, 124, 102, 124, 230, 162, 10, 3, 197, 110, 230, 162, 10, 3,
197, 110, 203, 249, 10, 3, 197, 110, 203, 250, 24, 248, 241, 10, 3, 197,
105, 10, 3, 197, 84, 10, 3, 197, 85, 24, 220, 163, 10, 3, 197, 85, 24,
217, 49, 102, 238, 0, 10, 3, 197, 85, 24, 204, 62, 10, 3, 197, 85, 24,
68, 10, 3, 197, 83, 10, 3, 197, 79, 10, 3, 197, 80, 24, 222, 88, 10, 3,
197, 80, 24, 166, 10, 3, 197, 77, 10, 3, 197, 78, 230, 162, 10, 3, 197,
27, 10, 3, 197, 28, 238, 176, 197, 27, 10, 3, 197, 28, 203, 249, 10, 3,
197, 25, 10, 3, 197, 26, 24, 41, 102, 144, 10, 3, 197, 26, 24, 41, 102,
181, 10, 3, 197, 26, 24, 251, 35, 10, 3, 197, 26, 24, 144, 10, 3, 197,
26, 24, 212, 230, 10, 3, 197, 26, 24, 197, 120, 10, 3, 197, 26, 24, 197,
121, 102, 250, 53, 10, 3, 197, 26, 24, 197, 121, 102, 248, 41, 10, 3,
197, 24, 10, 3, 197, 21, 10, 3, 197, 20, 10, 3, 197, 16, 10, 3, 197, 17,
24, 64, 10, 3, 197, 17, 24, 250, 47, 10, 3, 197, 17, 24, 161, 10, 3, 197,
17, 24, 235, 49, 10, 3, 197, 17, 24, 231, 233, 10, 3, 197, 17, 24, 231,
215, 10, 3, 197, 17, 24, 231, 202, 200, 19, 10, 3, 197, 17, 24, 231, 193,
10, 3, 197, 17, 24, 230, 186, 10, 3, 197, 17, 24, 144, 10, 3, 197, 17,
24, 223, 226, 10, 3, 197, 17, 24, 223, 207, 10, 3, 197, 17, 24, 223, 90,
10, 3, 197, 17, 24, 221, 204, 10, 3, 197, 17, 24, 219, 19, 10, 3, 197,
17, 24, 216, 120, 10, 3, 197, 17, 24, 166, 10, 3, 197, 17, 24, 204, 12,
10, 3, 197, 17, 24, 203, 102, 10, 3, 197, 17, 24, 198, 45, 10, 3, 197,
17, 24, 124, 102, 230, 175, 10, 3, 197, 17, 24, 197, 109, 10, 3, 197, 17,
24, 197, 14, 10, 3, 197, 14, 10, 3, 197, 15, 24, 68, 10, 3, 197, 3, 10,
3, 197, 4, 24, 64, 10, 3, 197, 4, 24, 221, 33, 10, 3, 197, 4, 24, 221, 0,
10, 3, 197, 4, 24, 200, 141, 10, 3, 196, 255, 10, 3, 197, 2, 10, 3, 197,
0, 10, 3, 196, 252, 10, 3, 196, 240, 10, 3, 196, 241, 24, 222, 88, 10, 3,
196, 238, 10, 3, 192, 112, 10, 3, 192, 113, 200, 19, 10, 3, 192, 113,
108, 24, 221, 0, 10, 3, 192, 108, 10, 3, 192, 100, 10, 3, 192, 84, 10, 3,
192, 30, 10, 3, 192, 31, 136, 192, 30, 10, 3, 192, 29, 10, 3, 192, 27,
10, 3, 192, 28, 222, 148, 200, 19, 10, 3, 192, 22, 10, 3, 192, 13, 10, 3,
191, 252, 10, 3, 191, 250, 10, 3, 191, 251, 24, 64, 10, 3, 191, 249, 10,
3, 191, 248, 10, 3, 222, 113, 234, 121, 10, 3, 251, 239, 24, 212, 230,
10, 3, 251, 156, 24, 64, 10, 3, 250, 238, 24, 221, 15, 10, 3, 237, 247,
221, 163, 24, 197, 121, 102, 217, 110, 10, 3, 237, 245, 10, 3, 236, 195,
102, 203, 164, 10, 3, 235, 61, 24, 204, 12, 10, 3, 233, 169, 24, 230,
175, 10, 3, 233, 169, 24, 204, 12, 10, 3, 231, 232, 24, 250, 225, 102,
222, 130, 102, 64, 10, 3, 231, 232, 24, 250, 51, 10, 3, 231, 157, 10, 3,
231, 35, 10, 3, 228, 153, 10, 3, 222, 174, 24, 250, 188, 10, 3, 222, 174,
24, 250, 50, 10, 3, 222, 174, 24, 231, 18, 10, 3, 222, 174, 24, 230, 175,
10, 3, 222, 174, 24, 229, 179, 24, 250, 51, 10, 3, 222, 174, 24, 219, 19,
10, 3, 222, 174, 24, 166, 10, 3, 222, 174, 24, 203, 156, 10, 3, 222, 174,
24, 198, 45, 10, 3, 222, 174, 24, 197, 25, 10, 3, 220, 164, 24, 231, 46,
10, 3, 219, 35, 203, 250, 24, 248, 241, 10, 3, 219, 35, 24, 233, 253,
102, 220, 96, 10, 3, 219, 35, 24, 203, 164, 10, 3, 216, 247, 10, 3, 215,
188, 24, 192, 112, 10, 3, 215, 86, 10, 3, 214, 20, 10, 3, 214, 19, 10, 3,
214, 18, 24, 248, 221, 10, 3, 214, 18, 24, 231, 46, 10, 3, 212, 248, 207,
16, 214, 12, 237, 94, 10, 3, 210, 110, 250, 37, 10, 3, 209, 249, 10, 3,
206, 80, 24, 223, 227, 230, 162, 10, 3, 199, 120, 10, 3, 197, 85, 24,
217, 48, 10, 3, 124, 68, 10, 162, 3, 103, 250, 53, 10, 162, 3, 112, 250,
53, 10, 162, 3, 232, 119, 250, 53, 10, 162, 3, 232, 214, 250, 53, 10,
162, 3, 203, 41, 250, 53, 10, 162, 3, 204, 146, 250, 53, 10, 162, 3, 234,
148, 250, 53, 10, 162, 3, 214, 16, 250, 53, 10, 162, 3, 112, 236, 194,
10, 162, 3, 232, 119, 236, 194, 10, 162, 3, 232, 214, 236, 194, 10, 162,
3, 203, 41, 236, 194, 10, 162, 3, 204, 146, 236, 194, 10, 162, 3, 234,
148, 236, 194, 10, 162, 3, 214, 16, 236, 194, 10, 162, 3, 232, 119, 68,
10, 162, 3, 232, 214, 68, 10, 162, 3, 203, 41, 68, 10, 162, 3, 204, 146,
68, 10, 162, 3, 234, 148, 68, 10, 162, 3, 214, 16, 68, 10, 162, 3, 90,
231, 129, 10, 162, 3, 103, 231, 129, 10, 162, 3, 112, 231, 129, 10, 162,
3, 232, 119, 231, 129, 10, 162, 3, 232, 214, 231, 129, 10, 162, 3, 203,
41, 231, 129, 10, 162, 3, 204, 146, 231, 129, 10, 162, 3, 234, 148, 231,
129, 10, 162, 3, 214, 16, 231, 129, 10, 162, 3, 90, 231, 126, 10, 162, 3,
103, 231, 126, 10, 162, 3, 112, 231, 126, 10, 162, 3, 232, 119, 231, 126,
10, 162, 3, 232, 214, 231, 126, 10, 162, 3, 103, 204, 30, 10, 162, 3,
112, 204, 30, 10, 162, 3, 112, 204, 31, 196, 137, 20, 10, 162, 3, 232,
119, 204, 30, 10, 162, 3, 232, 214, 204, 30, 10, 162, 3, 203, 41, 204,
30, 10, 162, 3, 204, 146, 204, 30, 10, 162, 3, 234, 148, 204, 30, 10,
162, 3, 214, 16, 204, 30, 10, 162, 3, 90, 204, 23, 10, 162, 3, 103, 204,
23, 10, 162, 3, 112, 204, 23, 10, 162, 3, 112, 204, 24, 196, 137, 20, 10,
162, 3, 232, 119, 204, 23, 10, 162, 3, 232, 214, 204, 23, 10, 162, 3,
204, 31, 24, 231, 216, 102, 236, 194, 10, 162, 3, 204, 31, 24, 231, 216,
102, 216, 120, 10, 162, 3, 90, 247, 85, 10, 162, 3, 103, 247, 85, 10,
162, 3, 112, 247, 85, 10, 162, 3, 112, 247, 86, 196, 137, 20, 10, 162, 3,
232, 119, 247, 85, 10, 162, 3, 232, 214, 247, 85, 10, 162, 3, 112, 196,
137, 232, 136, 233, 254, 10, 162, 3, 112, 196, 137, 232, 136, 233, 251,
10, 162, 3, 232, 119, 196, 137, 232, 136, 219, 179, 10, 162, 3, 232, 119,
196, 137, 232, 136, 219, 177, 10, 162, 3, 232, 119, 196, 137, 232, 136,
219, 180, 64, 10, 162, 3, 232, 119, 196, 137, 232, 136, 219, 180, 249,
226, 10, 162, 3, 203, 41, 196, 137, 232, 136, 250, 49, 10, 162, 3, 204,
146, 196, 137, 232, 136, 223, 199, 10, 162, 3, 204, 146, 196, 137, 232,
136, 223, 201, 64, 10, 162, 3, 204, 146, 196, 137, 232, 136, 223, 201,
249, 226, 10, 162, 3, 234, 148, 196, 137, 232, 136, 196, 254, 10, 162, 3,
234, 148, 196, 137, 232, 136, 196, 253, 10, 162, 3, 214, 16, 196, 137,
232, 136, 223, 215, 10, 162, 3, 214, 16, 196, 137, 232, 136, 223, 214,
10, 162, 3, 214, 16, 196, 137, 232, 136, 223, 213, 10, 162, 3, 214, 16,
196, 137, 232, 136, 223, 216, 64, 10, 162, 3, 103, 250, 54, 200, 19, 10,
162, 3, 112, 250, 54, 200, 19, 10, 162, 3, 232, 119, 250, 54, 200, 19,
10, 162, 3, 232, 214, 250, 54, 200, 19, 10, 162, 3, 203, 41, 250, 54,
200, 19, 10, 162, 3, 90, 248, 205, 10, 162, 3, 103, 248, 205, 10, 162, 3,
112, 248, 205, 10, 162, 3, 232, 119, 248, 205, 10, 162, 3, 232, 119, 248,
206, 196, 137, 20, 10, 162, 3, 232, 214, 248, 205, 10, 162, 3, 232, 214,
248, 206, 196, 137, 20, 10, 162, 3, 214, 29, 10, 162, 3, 214, 30, 10,
162, 3, 90, 233, 250, 10, 162, 3, 103, 233, 250, 10, 162, 3, 90, 199,
192, 236, 194, 10, 162, 3, 103, 199, 189, 236, 194, 10, 162, 3, 232, 214,
203, 28, 236, 194, 10, 162, 3, 90, 199, 192, 196, 137, 232, 136, 64, 10,
162, 3, 103, 199, 189, 196, 137, 232, 136, 64, 10, 162, 3, 90, 234, 144,
250, 53, 10, 162, 3, 90, 208, 168, 250, 53, 10, 162, 3, 40, 250, 40, 90,
203, 29, 10, 162, 3, 40, 250, 40, 90, 208, 167, 10, 162, 3, 90, 208, 168,
230, 156, 10, 162, 3, 90, 138, 230, 156, 10, 162, 3, 234, 122, 90, 199,
191, 10, 162, 3, 234, 122, 103, 199, 188, 10, 162, 3, 234, 122, 232, 126,
10, 162, 3, 234, 122, 233, 3, 10, 162, 3, 232, 119, 124, 196, 137, 20,
10, 162, 3, 232, 214, 124, 196, 137, 20, 10, 162, 3, 203, 41, 124, 196,
137, 20, 10, 162, 3, 204, 146, 124, 196, 137, 20, 10, 162, 3, 234, 148,
124, 196, 137, 20, 10, 162, 3, 214, 16, 124, 196, 137, 20, 10, 209, 38,
3, 40, 250, 40, 194, 11, 236, 177, 10, 209, 38, 3, 84, 242, 47, 10, 209,
38, 3, 237, 11, 242, 47, 10, 209, 38, 3, 237, 11, 198, 181, 10, 209, 38,
3, 237, 11, 208, 173, 10, 3, 251, 239, 24, 212, 231, 200, 19, 10, 3, 251,
239, 24, 203, 162, 10, 3, 251, 126, 24, 233, 252, 10, 3, 248, 242, 24,
236, 195, 200, 19, 10, 3, 248, 228, 24, 251, 155, 10, 3, 248, 228, 24,
214, 60, 10, 3, 248, 228, 24, 192, 112, 10, 3, 247, 125, 136, 247, 125,
24, 215, 87, 10, 3, 238, 1, 24, 200, 141, 10, 3, 237, 247, 24, 221, 0,
10, 3, 236, 228, 24, 223, 226, 10, 3, 236, 228, 24, 124, 124, 68, 10, 3,
236, 226, 24, 197, 109, 10, 3, 235, 57, 24, 250, 188, 10, 3, 235, 57, 24,
250, 53, 10, 3, 235, 57, 24, 250, 54, 250, 27, 220, 28, 10, 3, 235, 57,
24, 236, 215, 10, 3, 235, 57, 24, 235, 49, 10, 3, 235, 57, 24, 234, 15,
10, 3, 235, 57, 24, 231, 233, 10, 3, 235, 57, 24, 231, 46, 10, 3, 235,
57, 24, 231, 28, 230, 162, 10, 3, 235, 57, 24, 231, 18, 10, 3, 235, 57,
24, 144, 10, 3, 235, 57, 24, 229, 178, 10, 3, 235, 57, 24, 223, 227, 230,
162, 10, 3, 235, 57, 24, 222, 88, 10, 3, 235, 57, 24, 221, 0, 10, 3, 235,
57, 24, 220, 249, 10, 3, 235, 57, 24, 220, 250, 102, 222, 88, 10, 3, 235,
57, 24, 220, 151, 10, 3, 235, 57, 24, 220, 94, 10, 3, 235, 57, 24, 220,
95, 24, 221, 0, 10, 3, 235, 57, 24, 219, 25, 102, 231, 18, 10, 3, 235,
57, 24, 217, 110, 10, 3, 235, 57, 24, 216, 248, 10, 3, 235, 57, 24, 216,
175, 10, 3, 235, 57, 24, 214, 60, 10, 3, 235, 57, 24, 210, 51, 10, 3,
235, 57, 24, 204, 12, 10, 3, 235, 57, 24, 203, 126, 230, 162, 10, 3, 234,
201, 24, 221, 0, 10, 3, 234, 201, 24, 210, 253, 10, 3, 234, 16, 193, 223,
10, 3, 233, 253, 238, 176, 233, 252, 10, 3, 233, 169, 203, 250, 24, 250,
53, 10, 3, 233, 169, 203, 250, 24, 229, 178, 10, 3, 233, 169, 203, 250,
24, 223, 227, 230, 162, 10, 3, 233, 169, 203, 250, 24, 177, 10, 3, 233,
169, 203, 250, 24, 220, 96, 10, 3, 233, 169, 203, 250, 24, 217, 48, 10,
3, 233, 169, 203, 250, 24, 216, 248, 10, 3, 233, 169, 203, 250, 24, 201,
184, 10, 3, 233, 169, 24, 201, 184, 10, 3, 231, 232, 24, 248, 227, 10, 3,
231, 232, 24, 236, 228, 230, 162, 10, 3, 231, 232, 24, 235, 57, 24, 223,
227, 230, 162, 10, 3, 231, 232, 24, 235, 57, 24, 222, 88, 10, 3, 231,
232, 24, 234, 18, 10, 3, 231, 232, 24, 231, 233, 10, 3, 231, 232, 24,
231, 194, 102, 237, 16, 10, 3, 231, 232, 24, 231, 194, 102, 214, 214, 10,
3, 231, 232, 24, 230, 113, 102, 64, 10, 3, 231, 232, 24, 220, 250, 102,
222, 88, 10, 3, 231, 232, 24, 220, 94, 10, 3, 231, 232, 24, 220, 95, 24,
221, 0, 10, 3, 231, 232, 24, 219, 24, 10, 3, 231, 232, 24, 215, 189, 10,
3, 231, 232, 24, 214, 214, 10, 3, 231, 232, 24, 214, 215, 102, 234, 200,
10, 3, 231, 232, 24, 214, 215, 102, 231, 46, 10, 3, 231, 232, 24, 203,
228, 10, 3, 231, 232, 24, 192, 13, 10, 3, 231, 227, 207, 16, 214, 12,
237, 94, 10, 3, 231, 128, 24, 68, 10, 3, 231, 19, 24, 231, 19, 238, 176,
231, 18, 10, 3, 230, 185, 24, 223, 227, 230, 162, 10, 3, 230, 176, 102,
231, 19, 24, 200, 141, 10, 3, 230, 113, 200, 20, 230, 162, 10, 3, 229,
179, 24, 250, 54, 136, 229, 179, 24, 250, 53, 10, 3, 222, 174, 24, 247,
124, 10, 3, 222, 174, 24, 160, 10, 3, 222, 174, 24, 124, 124, 68, 10, 3,
222, 174, 24, 197, 27, 10, 3, 220, 164, 24, 191, 253, 136, 191, 252, 10,
3, 220, 152, 10, 3, 220, 150, 10, 3, 220, 149, 10, 3, 220, 148, 10, 3,
220, 147, 10, 3, 220, 146, 10, 3, 220, 145, 10, 3, 220, 144, 136, 220,
144, 230, 162, 10, 3, 220, 143, 10, 3, 220, 142, 136, 220, 141, 10, 3,
220, 140, 10, 3, 220, 139, 10, 3, 220, 138, 10, 3, 220, 137, 10, 3, 220,
136, 10, 3, 220, 135, 10, 3, 220, 134, 10, 3, 220, 133, 10, 3, 220, 132,
10, 3, 220, 131, 10, 3, 220, 130, 10, 3, 220, 129, 10, 3, 220, 128, 10,
3, 220, 127, 10, 3, 220, 126, 10, 3, 220, 125, 10, 3, 220, 124, 10, 3,
220, 123, 10, 3, 220, 121, 10, 3, 220, 122, 24, 230, 186, 10, 3, 220,
122, 24, 223, 226, 10, 3, 220, 122, 24, 210, 254, 102, 219, 33, 10, 3,
220, 122, 24, 210, 254, 102, 210, 254, 102, 219, 33, 10, 3, 220, 122, 24,
197, 121, 102, 249, 3, 10, 3, 220, 120, 10, 3, 220, 119, 10, 3, 220, 118,
10, 3, 220, 117, 10, 3, 220, 116, 10, 3, 220, 115, 10, 3, 220, 114, 10,
3, 220, 113, 10, 3, 220, 112, 10, 3, 220, 111, 10, 3, 220, 109, 10, 3,
220, 110, 24, 250, 53, 10, 3, 220, 110, 24, 248, 241, 10, 3, 220, 110,
24, 235, 48, 230, 163, 230, 162, 10, 3, 220, 110, 24, 221, 24, 10, 3,
220, 110, 24, 177, 10, 3, 220, 110, 24, 200, 112, 10, 3, 220, 110, 24,
200, 79, 10, 3, 220, 110, 24, 197, 120, 10, 3, 220, 110, 24, 197, 109,
10, 3, 220, 110, 24, 197, 14, 10, 3, 220, 108, 10, 3, 220, 106, 10, 3,
220, 107, 24, 235, 60, 10, 3, 220, 107, 24, 231, 233, 10, 3, 220, 107,
24, 223, 226, 10, 3, 220, 107, 24, 223, 227, 230, 162, 10, 3, 220, 107,
24, 214, 60, 10, 3, 220, 107, 24, 210, 254, 102, 210, 254, 102, 219, 33,
10, 3, 220, 107, 24, 203, 253, 102, 221, 204, 10, 3, 220, 107, 24, 197,
109, 10, 3, 220, 107, 24, 197, 14, 10, 3, 220, 104, 10, 3, 220, 103, 10,
3, 219, 35, 230, 163, 24, 250, 53, 10, 3, 219, 35, 24, 236, 194, 10, 3,
219, 35, 24, 230, 81, 10, 3, 219, 35, 24, 210, 253, 10, 3, 219, 35, 24,
210, 254, 102, 210, 254, 102, 219, 33, 10, 3, 219, 35, 24, 200, 141, 10,
3, 216, 176, 102, 192, 111, 10, 3, 215, 190, 136, 215, 190, 24, 231, 233,
10, 3, 215, 190, 136, 215, 190, 24, 222, 129, 10, 3, 214, 18, 24, 236,
228, 230, 162, 10, 3, 214, 18, 24, 231, 18, 10, 3, 214, 18, 24, 230, 167,
10, 3, 214, 18, 24, 229, 178, 10, 3, 214, 18, 24, 222, 21, 10, 3, 214,
18, 24, 220, 147, 10, 3, 214, 18, 24, 217, 110, 10, 3, 214, 18, 24, 210,
254, 102, 210, 253, 10, 3, 214, 18, 24, 68, 10, 3, 214, 18, 24, 124, 102,
68, 10, 3, 214, 18, 24, 197, 14, 10, 3, 206, 80, 230, 163, 24, 144, 10,
3, 206, 80, 24, 234, 88, 10, 3, 206, 80, 24, 204, 13, 250, 27, 220, 28,
10, 3, 206, 80, 24, 200, 141, 10, 3, 204, 61, 200, 19, 10, 3, 204, 13,
136, 204, 12, 10, 3, 204, 13, 102, 228, 173, 10, 3, 204, 13, 102, 215,
64, 10, 3, 204, 13, 102, 206, 25, 10, 3, 203, 163, 102, 235, 57, 24, 214,
60, 10, 3, 203, 163, 102, 234, 201, 24, 250, 224, 10, 3, 203, 126, 24,
200, 141, 10, 3, 200, 142, 102, 206, 79, 10, 3, 198, 28, 24, 231, 202,
200, 19, 10, 3, 198, 28, 24, 112, 236, 194, 10, 3, 197, 26, 223, 120, 10,
3, 197, 26, 24, 197, 109, 10, 3, 197, 17, 24, 237, 194, 10, 3, 197, 17,
24, 220, 105, 10, 3, 197, 17, 24, 219, 33, 10, 3, 192, 111, 10, 3, 191,
253, 136, 191, 253, 102, 206, 25, 10, 3, 191, 251, 24, 112, 236, 195,
200, 19, 14, 7, 255, 26, 14, 7, 255, 25, 14, 7, 255, 24, 14, 7, 255, 23,
14, 7, 255, 22, 14, 7, 255, 21, 14, 7, 255, 20, 14, 7, 255, 19, 14, 7,
255, 18, 14, 7, 255, 17, 14, 7, 255, 16, 14, 7, 255, 15, 14, 7, 255, 14,
14, 7, 255, 12, 14, 7, 255, 11, 14, 7, 255, 10, 14, 7, 255, 9, 14, 7,
255, 8, 14, 7, 255, 7, 14, 7, 255, 6, 14, 7, 255, 5, 14, 7, 255, 4, 14,
7, 255, 3, 14, 7, 255, 2, 14, 7, 255, 1, 14, 7, 255, 0, 14, 7, 254, 255,
14, 7, 254, 254, 14, 7, 254, 253, 14, 7, 254, 252, 14, 7, 254, 251, 14,
7, 254, 249, 14, 7, 254, 248, 14, 7, 254, 246, 14, 7, 254, 245, 14, 7,
254, 244, 14, 7, 254, 243, 14, 7, 254, 242, 14, 7, 254, 241, 14, 7, 254,
240, 14, 7, 254, 239, 14, 7, 254, 238, 14, 7, 254, 237, 14, 7, 254, 236,
14, 7, 254, 235, 14, 7, 254, 233, 14, 7, 254, 232, 14, 7, 254, 231, 14,
7, 254, 229, 14, 7, 254, 228, 14, 7, 254, 227, 14, 7, 254, 226, 14, 7,
254, 225, 14, 7, 254, 224, 14, 7, 254, 223, 14, 7, 254, 222, 14, 7, 254,
219, 14, 7, 254, 218, 14, 7, 254, 217, 14, 7, 254, 216, 14, 7, 254, 215,
14, 7, 254, 214, 14, 7, 254, 213, 14, 7, 254, 212, 14, 7, 254, 211, 14,
7, 254, 210, 14, 7, 254, 209, 14, 7, 254, 208, 14, 7, 254, 207, 14, 7,
254, 206, 14, 7, 254, 205, 14, 7, 254, 204, 14, 7, 254, 203, 14, 7, 254,
202, 14, 7, 254, 201, 14, 7, 254, 200, 14, 7, 254, 196, 14, 7, 254, 195,
14, 7, 254, 194, 14, 7, 254, 193, 14, 7, 249, 224, 14, 7, 249, 222, 14,
7, 249, 220, 14, 7, 249, 218, 14, 7, 249, 216, 14, 7, 249, 215, 14, 7,
249, 213, 14, 7, 249, 211, 14, 7, 249, 209, 14, 7, 249, 207, 14, 7, 247,
48, 14, 7, 247, 47, 14, 7, 247, 46, 14, 7, 247, 45, 14, 7, 247, 44, 14,
7, 247, 43, 14, 7, 247, 42, 14, 7, 247, 41, 14, 7, 247, 40, 14, 7, 247,
39, 14, 7, 247, 38, 14, 7, 247, 37, 14, 7, 247, 36, 14, 7, 247, 35, 14,
7, 247, 34, 14, 7, 247, 33, 14, 7, 247, 32, 14, 7, 247, 31, 14, 7, 247,
30, 14, 7, 247, 29, 14, 7, 247, 28, 14, 7, 247, 27, 14, 7, 247, 26, 14,
7, 247, 25, 14, 7, 247, 24, 14, 7, 247, 23, 14, 7, 247, 22, 14, 7, 247,
21, 14, 7, 238, 94, 14, 7, 238, 93, 14, 7, 238, 92, 14, 7, 238, 91, 14,
7, 238, 90, 14, 7, 238, 89, 14, 7, 238, 88, 14, 7, 238, 87, 14, 7, 238,
86, 14, 7, 238, 85, 14, 7, 238, 84, 14, 7, 238, 83, 14, 7, 238, 82, 14,
7, 238, 81, 14, 7, 238, 80, 14, 7, 238, 79, 14, 7, 238, 78, 14, 7, 238,
77, 14, 7, 238, 76, 14, 7, 238, 75, 14, 7, 238, 74, 14, 7, 238, 73, 14,
7, 238, 72, 14, 7, 238, 71, 14, 7, 238, 70, 14, 7, 238, 69, 14, 7, 238,
68, 14, 7, 238, 67, 14, 7, 238, 66, 14, 7, 238, 65, 14, 7, 238, 64, 14,
7, 238, 63, 14, 7, 238, 62, 14, 7, 238, 61, 14, 7, 238, 60, 14, 7, 238,
59, 14, 7, 238, 58, 14, 7, 238, 57, 14, 7, 238, 56, 14, 7, 238, 55, 14,
7, 238, 54, 14, 7, 238, 53, 14, 7, 238, 52, 14, 7, 238, 51, 14, 7, 238,
50, 14, 7, 238, 49, 14, 7, 238, 48, 14, 7, 238, 47, 14, 7, 238, 46, 14,
7, 238, 45, 14, 7, 238, 44, 14, 7, 238, 43, 14, 7, 238, 42, 14, 7, 238,
41, 14, 7, 238, 40, 14, 7, 238, 39, 14, 7, 238, 38, 14, 7, 238, 37, 14,
7, 238, 36, 14, 7, 238, 35, 14, 7, 238, 34, 14, 7, 238, 33, 14, 7, 238,
32, 14, 7, 238, 31, 14, 7, 238, 30, 14, 7, 238, 29, 14, 7, 238, 28, 14,
7, 238, 27, 14, 7, 238, 26, 14, 7, 238, 25, 14, 7, 238, 24, 14, 7, 238,
23, 14, 7, 238, 22, 14, 7, 238, 21, 14, 7, 238, 20, 14, 7, 238, 19, 14,
7, 238, 18, 14, 7, 238, 17, 14, 7, 238, 16, 14, 7, 238, 15, 14, 7, 238,
14, 14, 7, 238, 13, 14, 7, 238, 12, 14, 7, 238, 11, 14, 7, 238, 10, 14,
7, 238, 9, 14, 7, 238, 8, 14, 7, 238, 7, 14, 7, 238, 6, 14, 7, 238, 5,
14, 7, 238, 4, 14, 7, 238, 3, 14, 7, 234, 245, 14, 7, 234, 244, 14, 7,
234, 243, 14, 7, 234, 242, 14, 7, 234, 241, 14, 7, 234, 240, 14, 7, 234,
239, 14, 7, 234, 238, 14, 7, 234, 237, 14, 7, 234, 236, 14, 7, 234, 235,
14, 7, 234, 234, 14, 7, 234, 233, 14, 7, 234, 232, 14, 7, 234, 231, 14,
7, 234, 230, 14, 7, 234, 229, 14, 7, 234, 228, 14, 7, 234, 227, 14, 7,
234, 226, 14, 7, 234, 225, 14, 7, 234, 224, 14, 7, 234, 223, 14, 7, 234,
222, 14, 7, 234, 221, 14, 7, 234, 220, 14, 7, 234, 219, 14, 7, 234, 218,
14, 7, 234, 217, 14, 7, 234, 216, 14, 7, 234, 215, 14, 7, 234, 214, 14,
7, 234, 213, 14, 7, 234, 212, 14, 7, 234, 211, 14, 7, 234, 210, 14, 7,
234, 209, 14, 7, 234, 208, 14, 7, 234, 207, 14, 7, 234, 206, 14, 7, 234,
205, 14, 7, 234, 204, 14, 7, 234, 203, 14, 7, 234, 202, 14, 7, 233, 162,
14, 7, 233, 161, 14, 7, 233, 160, 14, 7, 233, 159, 14, 7, 233, 158, 14,
7, 233, 157, 14, 7, 233, 156, 14, 7, 233, 155, 14, 7, 233, 154, 14, 7,
233, 153, 14, 7, 233, 152, 14, 7, 233, 151, 14, 7, 233, 150, 14, 7, 233,
149, 14, 7, 233, 148, 14, 7, 233, 147, 14, 7, 233, 146, 14, 7, 233, 145,
14, 7, 233, 144, 14, 7, 233, 143, 14, 7, 233, 142, 14, 7, 233, 141, 14,
7, 233, 140, 14, 7, 233, 139, 14, 7, 233, 138, 14, 7, 233, 137, 14, 7,
233, 136, 14, 7, 233, 135, 14, 7, 233, 134, 14, 7, 233, 133, 14, 7, 233,
132, 14, 7, 233, 131, 14, 7, 233, 130, 14, 7, 233, 129, 14, 7, 233, 128,
14, 7, 233, 127, 14, 7, 233, 126, 14, 7, 233, 125, 14, 7, 233, 124, 14,
7, 233, 123, 14, 7, 233, 122, 14, 7, 233, 121, 14, 7, 233, 120, 14, 7,
233, 119, 14, 7, 233, 118, 14, 7, 233, 117, 14, 7, 233, 116, 14, 7, 233,
115, 14, 7, 233, 114, 14, 7, 233, 113, 14, 7, 233, 112, 14, 7, 233, 111,
14, 7, 233, 110, 14, 7, 233, 109, 14, 7, 233, 108, 14, 7, 233, 107, 14,
7, 233, 106, 14, 7, 233, 105, 14, 7, 233, 104, 14, 7, 233, 103, 14, 7,
233, 102, 14, 7, 233, 101, 14, 7, 233, 100, 14, 7, 233, 99, 14, 7, 233,
98, 14, 7, 232, 43, 14, 7, 232, 42, 14, 7, 232, 41, 14, 7, 232, 40, 14,
7, 232, 39, 14, 7, 232, 38, 14, 7, 232, 37, 14, 7, 232, 36, 14, 7, 232,
35, 14, 7, 232, 34, 14, 7, 232, 33, 14, 7, 232, 32, 14, 7, 232, 31, 14,
7, 232, 30, 14, 7, 232, 29, 14, 7, 232, 28, 14, 7, 232, 27, 14, 7, 232,
26, 14, 7, 232, 25, 14, 7, 232, 24, 14, 7, 232, 23, 14, 7, 232, 22, 14,
7, 232, 21, 14, 7, 232, 20, 14, 7, 232, 19, 14, 7, 232, 18, 14, 7, 232,
17, 14, 7, 232, 16, 14, 7, 232, 15, 14, 7, 232, 14, 14, 7, 232, 13, 14,
7, 232, 12, 14, 7, 232, 11, 14, 7, 232, 10, 14, 7, 232, 9, 14, 7, 232, 8,
14, 7, 232, 7, 14, 7, 232, 6, 14, 7, 232, 5, 14, 7, 232, 4, 14, 7, 232,
3, 14, 7, 232, 2, 14, 7, 232, 1, 14, 7, 232, 0, 14, 7, 231, 255, 14, 7,
231, 254, 14, 7, 231, 253, 14, 7, 231, 252, 14, 7, 231, 251, 14, 7, 231,
250, 14, 7, 231, 249, 14, 7, 231, 248, 14, 7, 231, 247, 14, 7, 231, 246,
14, 7, 231, 245, 14, 7, 231, 244, 14, 7, 231, 243, 14, 7, 231, 242, 14,
7, 231, 241, 14, 7, 231, 240, 14, 7, 231, 239, 14, 7, 231, 238, 14, 7,
231, 237, 14, 7, 231, 236, 14, 7, 230, 122, 14, 7, 230, 121, 14, 7, 230,
120, 14, 7, 230, 119, 14, 7, 230, 118, 14, 7, 230, 117, 14, 7, 230, 116,
14, 7, 230, 115, 14, 7, 230, 114, 14, 7, 228, 77, 14, 7, 228, 76, 14, 7,
228, 75, 14, 7, 228, 74, 14, 7, 228, 73, 14, 7, 228, 72, 14, 7, 228, 71,
14, 7, 228, 70, 14, 7, 228, 69, 14, 7, 228, 68, 14, 7, 228, 67, 14, 7,
228, 66, 14, 7, 228, 65, 14, 7, 228, 64, 14, 7, 228, 63, 14, 7, 228, 62,
14, 7, 228, 61, 14, 7, 228, 60, 14, 7, 228, 59, 14, 7, 222, 183, 14, 7,
222, 182, 14, 7, 222, 181, 14, 7, 222, 180, 14, 7, 222, 179, 14, 7, 222,
178, 14, 7, 222, 177, 14, 7, 222, 176, 14, 7, 220, 199, 14, 7, 220, 198,
14, 7, 220, 197, 14, 7, 220, 196, 14, 7, 220, 195, 14, 7, 220, 194, 14,
7, 220, 193, 14, 7, 220, 192, 14, 7, 220, 191, 14, 7, 220, 190, 14, 7,
218, 234, 14, 7, 218, 233, 14, 7, 218, 232, 14, 7, 218, 230, 14, 7, 218,
228, 14, 7, 218, 227, 14, 7, 218, 225, 14, 7, 218, 223, 14, 7, 218, 221,
14, 7, 218, 219, 14, 7, 218, 217, 14, 7, 218, 215, 14, 7, 218, 213, 14,
7, 218, 212, 14, 7, 218, 210, 14, 7, 218, 208, 14, 7, 218, 207, 14, 7,
218, 206, 14, 7, 218, 205, 14, 7, 218, 204, 14, 7, 218, 203, 14, 7, 218,
202, 14, 7, 218, 201, 14, 7, 218, 200, 14, 7, 218, 198, 14, 7, 218, 196,
14, 7, 218, 194, 14, 7, 218, 193, 14, 7, 218, 191, 14, 7, 218, 190, 14,
7, 218, 188, 14, 7, 218, 187, 14, 7, 218, 185, 14, 7, 218, 183, 14, 7,
218, 181, 14, 7, 218, 179, 14, 7, 218, 177, 14, 7, 218, 176, 14, 7, 218,
174, 14, 7, 218, 172, 14, 7, 218, 171, 14, 7, 218, 169, 14, 7, 218, 167,
14, 7, 218, 165, 14, 7, 218, 163, 14, 7, 218, 162, 14, 7, 218, 160, 14,
7, 218, 158, 14, 7, 218, 156, 14, 7, 218, 155, 14, 7, 218, 153, 14, 7,
218, 151, 14, 7, 218, 150, 14, 7, 218, 149, 14, 7, 218, 147, 14, 7, 218,
145, 14, 7, 218, 143, 14, 7, 218, 141, 14, 7, 218, 139, 14, 7, 218, 137,
14, 7, 218, 135, 14, 7, 218, 134, 14, 7, 218, 132, 14, 7, 218, 130, 14,
7, 218, 128, 14, 7, 218, 126, 14, 7, 215, 146, 14, 7, 215, 145, 14, 7,
215, 144, 14, 7, 215, 143, 14, 7, 215, 142, 14, 7, 215, 141, 14, 7, 215,
140, 14, 7, 215, 139, 14, 7, 215, 138, 14, 7, 215, 137, 14, 7, 215, 136,
14, 7, 215, 135, 14, 7, 215, 134, 14, 7, 215, 133, 14, 7, 215, 132, 14,
7, 215, 131, 14, 7, 215, 130, 14, 7, 215, 129, 14, 7, 215, 128, 14, 7,
215, 127, 14, 7, 215, 126, 14, 7, 215, 125, 14, 7, 215, 124, 14, 7, 215,
123, 14, 7, 215, 122, 14, 7, 215, 121, 14, 7, 215, 120, 14, 7, 215, 119,
14, 7, 215, 118, 14, 7, 215, 117, 14, 7, 215, 116, 14, 7, 215, 115, 14,
7, 215, 114, 14, 7, 215, 113, 14, 7, 215, 112, 14, 7, 215, 111, 14, 7,
215, 110, 14, 7, 215, 109, 14, 7, 215, 108, 14, 7, 215, 107, 14, 7, 215,
106, 14, 7, 215, 105, 14, 7, 215, 104, 14, 7, 215, 103, 14, 7, 215, 102,
14, 7, 215, 101, 14, 7, 215, 100, 14, 7, 215, 99, 14, 7, 215, 98, 14, 7,
213, 203, 14, 7, 213, 202, 14, 7, 213, 201, 14, 7, 213, 200, 14, 7, 213,
199, 14, 7, 213, 198, 14, 7, 213, 197, 14, 7, 213, 196, 14, 7, 213, 195,
14, 7, 213, 194, 14, 7, 213, 193, 14, 7, 213, 192, 14, 7, 213, 191, 14,
7, 213, 190, 14, 7, 213, 189, 14, 7, 213, 188, 14, 7, 213, 187, 14, 7,
213, 186, 14, 7, 213, 185, 14, 7, 213, 184, 14, 7, 213, 183, 14, 7, 213,
182, 14, 7, 213, 18, 14, 7, 213, 17, 14, 7, 213, 16, 14, 7, 213, 15, 14,
7, 213, 14, 14, 7, 213, 13, 14, 7, 213, 12, 14, 7, 213, 11, 14, 7, 213,
10, 14, 7, 213, 9, 14, 7, 213, 8, 14, 7, 213, 7, 14, 7, 213, 6, 14, 7,
213, 5, 14, 7, 213, 4, 14, 7, 213, 3, 14, 7, 213, 2, 14, 7, 213, 1, 14,
7, 213, 0, 14, 7, 212, 255, 14, 7, 212, 254, 14, 7, 212, 253, 14, 7, 212,
252, 14, 7, 212, 251, 14, 7, 212, 250, 14, 7, 212, 249, 14, 7, 212, 102,
14, 7, 212, 101, 14, 7, 212, 100, 14, 7, 212, 99, 14, 7, 212, 98, 14, 7,
212, 97, 14, 7, 212, 96, 14, 7, 212, 95, 14, 7, 212, 94, 14, 7, 212, 93,
14, 7, 212, 92, 14, 7, 212, 91, 14, 7, 212, 90, 14, 7, 212, 89, 14, 7,
212, 88, 14, 7, 212, 87, 14, 7, 212, 86, 14, 7, 212, 85, 14, 7, 212, 84,
14, 7, 212, 83, 14, 7, 212, 82, 14, 7, 212, 81, 14, 7, 212, 80, 14, 7,
212, 79, 14, 7, 212, 78, 14, 7, 212, 77, 14, 7, 212, 76, 14, 7, 212, 75,
14, 7, 212, 74, 14, 7, 212, 73, 14, 7, 212, 72, 14, 7, 212, 71, 14, 7,
212, 70, 14, 7, 212, 69, 14, 7, 212, 68, 14, 7, 212, 67, 14, 7, 212, 66,
14, 7, 212, 65, 14, 7, 212, 64, 14, 7, 212, 63, 14, 7, 212, 62, 14, 7,
212, 61, 14, 7, 212, 60, 14, 7, 212, 59, 14, 7, 212, 58, 14, 7, 212, 57,
14, 7, 212, 56, 14, 7, 212, 55, 14, 7, 212, 54, 14, 7, 212, 53, 14, 7,
212, 52, 14, 7, 212, 51, 14, 7, 212, 50, 14, 7, 212, 49, 14, 7, 212, 48,
14, 7, 212, 47, 14, 7, 212, 46, 14, 7, 212, 45, 14, 7, 212, 44, 14, 7,
212, 43, 14, 7, 212, 42, 14, 7, 212, 41, 14, 7, 212, 40, 14, 7, 212, 39,
14, 7, 212, 38, 14, 7, 212, 37, 14, 7, 212, 36, 14, 7, 212, 35, 14, 7,
212, 34, 14, 7, 212, 33, 14, 7, 212, 32, 14, 7, 212, 31, 14, 7, 212, 30,
14, 7, 212, 29, 14, 7, 212, 28, 14, 7, 211, 92, 14, 7, 211, 91, 14, 7,
211, 90, 14, 7, 211, 89, 14, 7, 211, 88, 14, 7, 211, 87, 14, 7, 211, 86,
14, 7, 211, 85, 14, 7, 211, 84, 14, 7, 211, 83, 14, 7, 211, 82, 14, 7,
211, 81, 14, 7, 211, 80, 14, 7, 208, 246, 14, 7, 208, 245, 14, 7, 208,
244, 14, 7, 208, 243, 14, 7, 208, 242, 14, 7, 208, 241, 14, 7, 208, 240,
14, 7, 208, 110, 14, 7, 208, 109, 14, 7, 208, 108, 14, 7, 208, 107, 14,
7, 208, 106, 14, 7, 208, 105, 14, 7, 208, 104, 14, 7, 208, 103, 14, 7,
208, 102, 14, 7, 208, 101, 14, 7, 208, 100, 14, 7, 208, 99, 14, 7, 208,
98, 14, 7, 208, 97, 14, 7, 208, 96, 14, 7, 208, 95, 14, 7, 208, 94, 14,
7, 208, 93, 14, 7, 208, 92, 14, 7, 208, 91, 14, 7, 208, 90, 14, 7, 208,
89, 14, 7, 208, 88, 14, 7, 208, 87, 14, 7, 208, 86, 14, 7, 208, 85, 14,
7, 208, 84, 14, 7, 208, 83, 14, 7, 208, 82, 14, 7, 208, 81, 14, 7, 208,
80, 14, 7, 208, 79, 14, 7, 208, 78, 14, 7, 208, 77, 14, 7, 206, 155, 14,
7, 206, 154, 14, 7, 206, 153, 14, 7, 206, 152, 14, 7, 206, 151, 14, 7,
206, 150, 14, 7, 206, 149, 14, 7, 206, 148, 14, 7, 206, 147, 14, 7, 206,
146, 14, 7, 206, 145, 14, 7, 206, 144, 14, 7, 206, 143, 14, 7, 206, 142,
14, 7, 206, 141, 14, 7, 206, 140, 14, 7, 206, 139, 14, 7, 206, 138, 14,
7, 206, 137, 14, 7, 206, 136, 14, 7, 206, 135, 14, 7, 206, 134, 14, 7,
206, 133, 14, 7, 206, 132, 14, 7, 206, 131, 14, 7, 206, 130, 14, 7, 206,
129, 14, 7, 206, 128, 14, 7, 206, 127, 14, 7, 206, 126, 14, 7, 206, 125,
14, 7, 206, 124, 14, 7, 206, 123, 14, 7, 206, 122, 14, 7, 206, 121, 14,
7, 206, 120, 14, 7, 206, 119, 14, 7, 206, 118, 14, 7, 206, 117, 14, 7,
206, 116, 14, 7, 206, 115, 14, 7, 206, 114, 14, 7, 206, 113, 14, 7, 206,
112, 14, 7, 206, 111, 14, 7, 206, 110, 14, 7, 206, 109, 14, 7, 206, 108,
14, 7, 206, 107, 14, 7, 206, 106, 14, 7, 206, 105, 14, 7, 206, 104, 14,
7, 206, 103, 14, 7, 206, 102, 14, 7, 200, 225, 14, 7, 200, 224, 14, 7,
200, 223, 14, 7, 200, 222, 14, 7, 200, 221, 14, 7, 200, 220, 14, 7, 200,
219, 14, 7, 200, 218, 14, 7, 200, 217, 14, 7, 200, 216, 14, 7, 200, 215,
14, 7, 200, 214, 14, 7, 200, 213, 14, 7, 200, 212, 14, 7, 200, 211, 14,
7, 200, 210, 14, 7, 200, 209, 14, 7, 200, 208, 14, 7, 200, 207, 14, 7,
200, 206, 14, 7, 200, 205, 14, 7, 200, 204, 14, 7, 200, 203, 14, 7, 200,
202, 14, 7, 200, 201, 14, 7, 200, 200, 14, 7, 200, 199, 14, 7, 200, 198,
14, 7, 200, 197, 14, 7, 200, 196, 14, 7, 200, 195, 14, 7, 200, 194, 14,
7, 200, 193, 14, 7, 200, 192, 14, 7, 200, 191, 14, 7, 200, 190, 14, 7,
200, 189, 14, 7, 200, 188, 14, 7, 200, 187, 14, 7, 200, 186, 14, 7, 200,
185, 14, 7, 200, 184, 14, 7, 200, 183, 14, 7, 200, 182, 14, 7, 197, 168,
14, 7, 197, 167, 14, 7, 197, 166, 14, 7, 197, 165, 14, 7, 197, 164, 14,
7, 197, 163, 14, 7, 197, 162, 14, 7, 197, 161, 14, 7, 197, 160, 14, 7,
197, 159, 14, 7, 197, 158, 14, 7, 197, 157, 14, 7, 197, 156, 14, 7, 197,
155, 14, 7, 197, 154, 14, 7, 197, 153, 14, 7, 197, 152, 14, 7, 197, 151,
14, 7, 197, 150, 14, 7, 197, 149, 14, 7, 197, 148, 14, 7, 197, 147, 14,
7, 197, 146, 14, 7, 197, 145, 14, 7, 197, 144, 14, 7, 197, 143, 14, 7,
197, 142, 14, 7, 197, 141, 14, 7, 197, 140, 14, 7, 197, 139, 14, 7, 197,
138, 14, 7, 197, 137, 14, 7, 197, 136, 14, 7, 197, 135, 14, 7, 197, 134,
14, 7, 197, 133, 14, 7, 197, 132, 14, 7, 197, 131, 14, 7, 197, 130, 14,
7, 197, 129, 14, 7, 197, 128, 14, 7, 197, 127, 14, 7, 197, 126, 14, 7,
197, 125, 14, 7, 197, 124, 14, 7, 197, 123, 14, 7, 197, 122, 14, 7, 196,
235, 14, 7, 196, 234, 14, 7, 196, 233, 14, 7, 196, 232, 14, 7, 196, 231,
14, 7, 196, 230, 14, 7, 196, 229, 14, 7, 196, 228, 14, 7, 196, 227, 14,
7, 196, 226, 14, 7, 196, 225, 14, 7, 196, 224, 14, 7, 196, 223, 14, 7,
196, 222, 14, 7, 196, 221, 14, 7, 196, 220, 14, 7, 196, 219, 14, 7, 196,
218, 14, 7, 196, 217, 14, 7, 196, 216, 14, 7, 196, 215, 14, 7, 196, 214,
14, 7, 196, 213, 14, 7, 196, 212, 14, 7, 196, 211, 14, 7, 196, 210, 14,
7, 196, 209, 14, 7, 196, 208, 14, 7, 196, 207, 14, 7, 196, 206, 14, 7,
196, 205, 14, 7, 196, 204, 14, 7, 196, 203, 14, 7, 196, 202, 14, 7, 196,
201, 14, 7, 196, 200, 14, 7, 196, 199, 14, 7, 196, 198, 14, 7, 196, 197,
14, 7, 196, 196, 14, 7, 196, 195, 14, 7, 196, 194, 14, 7, 196, 193, 14,
7, 196, 192, 14, 7, 196, 191, 14, 7, 196, 190, 14, 7, 196, 189, 14, 7,
196, 188, 14, 7, 196, 187, 14, 7, 196, 186, 14, 7, 196, 185, 14, 7, 196,
184, 14, 7, 196, 183, 14, 7, 196, 182, 14, 7, 196, 181, 14, 7, 196, 180,
14, 7, 196, 179, 14, 7, 196, 178, 14, 7, 196, 177, 14, 7, 196, 176, 14,
7, 196, 175, 14, 7, 196, 174, 14, 7, 196, 173, 14, 7, 196, 172, 14, 7,
196, 171, 14, 7, 196, 170, 14, 7, 196, 169, 14, 7, 196, 168, 14, 7, 196,
167, 14, 7, 196, 166, 14, 7, 196, 165, 14, 7, 196, 164, 14, 7, 196, 163,
14, 7, 196, 162, 14, 7, 196, 161, 14, 7, 196, 160, 14, 7, 196, 159, 14,
7, 194, 201, 14, 7, 194, 200, 14, 7, 194, 199, 14, 7, 194, 198, 14, 7,
194, 197, 14, 7, 194, 196, 14, 7, 194, 195, 14, 7, 194, 194, 14, 7, 194,
193, 14, 7, 194, 192, 14, 7, 194, 191, 14, 7, 194, 190, 14, 7, 194, 189,
14, 7, 194, 188, 14, 7, 194, 187, 14, 7, 194, 186, 14, 7, 194, 185, 14,
7, 194, 184, 14, 7, 194, 183, 14, 7, 194, 182, 14, 7, 194, 181, 14, 7,
194, 180, 14, 7, 194, 179, 14, 7, 194, 178, 14, 7, 194, 177, 14, 7, 194,
176, 14, 7, 194, 175, 14, 7, 194, 174, 14, 7, 194, 173, 14, 7, 194, 172,
14, 7, 194, 171, 14, 7, 194, 170, 14, 7, 193, 221, 14, 7, 193, 220, 14,
7, 193, 219, 14, 7, 193, 218, 14, 7, 193, 217, 14, 7, 193, 216, 14, 7,
193, 215, 14, 7, 193, 214, 14, 7, 193, 213, 14, 7, 193, 212, 14, 7, 193,
211, 14, 7, 193, 210, 14, 7, 193, 146, 14, 7, 193, 145, 14, 7, 193, 144,
14, 7, 193, 143, 14, 7, 193, 142, 14, 7, 193, 141, 14, 7, 193, 140, 14,
7, 193, 139, 14, 7, 193, 138, 14, 7, 192, 154, 14, 7, 192, 153, 14, 7,
192, 152, 14, 7, 192, 151, 14, 7, 192, 150, 14, 7, 192, 149, 14, 7, 192,
148, 14, 7, 192, 147, 14, 7, 192, 146, 14, 7, 192, 145, 14, 7, 192, 144,
14, 7, 192, 143, 14, 7, 192, 142, 14, 7, 192, 141, 14, 7, 192, 140, 14,
7, 192, 139, 14, 7, 192, 138, 14, 7, 192, 137, 14, 7, 192, 136, 14, 7,
192, 135, 14, 7, 192, 134, 14, 7, 192, 133, 14, 7, 192, 132, 14, 7, 192,
131, 14, 7, 192, 130, 14, 7, 192, 129, 14, 7, 192, 128, 14, 7, 192, 127,
14, 7, 192, 126, 14, 7, 192, 125, 14, 7, 192, 124, 14, 7, 192, 123, 14,
7, 192, 122, 14, 7, 192, 121, 14, 7, 192, 120, 14, 7, 192, 119, 14, 7,
192, 118, 14, 7, 192, 117, 14, 7, 192, 116, 14, 7, 192, 115, 14, 7, 192,
114, 14, 7, 252, 32, 14, 7, 252, 31, 14, 7, 252, 30, 14, 7, 252, 29, 14,
7, 252, 28, 14, 7, 252, 27, 14, 7, 252, 26, 14, 7, 252, 25, 14, 7, 252,
24, 14, 7, 252, 23, 14, 7, 252, 22, 14, 7, 252, 21, 14, 7, 252, 20, 14,
7, 252, 19, 14, 7, 252, 18, 14, 7, 252, 17, 14, 7, 252, 16, 14, 7, 252,
15, 14, 7, 252, 14, 14, 7, 252, 13, 14, 7, 252, 12, 14, 7, 252, 11, 14,
7, 252, 10, 14, 7, 252, 9, 14, 7, 252, 8, 14, 7, 252, 7, 14, 7, 252, 6,
14, 7, 252, 5, 14, 7, 252, 4, 14, 7, 252, 3, 14, 7, 252, 2, 14, 7, 252,
1, 14, 7, 252, 0, 14, 7, 251, 255, 14, 7, 84, 222, 228, 14, 7, 229, 5,
222, 228, 14, 7, 223, 148, 250, 27, 198, 249, 202, 14, 14, 7, 223, 148,
250, 27, 247, 188, 202, 14, 14, 7, 223, 148, 250, 27, 198, 249, 234, 79,
14, 7, 223, 148, 250, 27, 247, 188, 234, 79, 14, 7, 211, 111, 216, 160,
14, 7, 248, 100, 205, 198, 14, 7, 234, 80, 205, 198, 29, 7, 255, 26, 29,
7, 255, 25, 29, 7, 255, 24, 29, 7, 255, 23, 29, 7, 255, 22, 29, 7, 255,
20, 29, 7, 255, 17, 29, 7, 255, 16, 29, 7, 255, 15, 29, 7, 255, 14, 29,
7, 255, 13, 29, 7, 255, 12, 29, 7, 255, 11, 29, 7, 255, 10, 29, 7, 255,
9, 29, 7, 255, 7, 29, 7, 255, 6, 29, 7, 255, 5, 29, 7, 255, 3, 29, 7,
255, 2, 29, 7, 255, 1, 29, 7, 255, 0, 29, 7, 254, 255, 29, 7, 254, 254,
29, 7, 254, 253, 29, 7, 254, 252, 29, 7, 254, 251, 29, 7, 254, 250, 29,
7, 254, 249, 29, 7, 254, 248, 29, 7, 254, 246, 29, 7, 254, 245, 29, 7,
254, 244, 29, 7, 254, 243, 29, 7, 254, 241, 29, 7, 254, 240, 29, 7, 254,
239, 29, 7, 254, 238, 29, 7, 254, 237, 29, 7, 254, 236, 29, 7, 254, 235,
29, 7, 254, 234, 29, 7, 254, 233, 29, 7, 254, 231, 29, 7, 254, 230, 29,
7, 254, 229, 29, 7, 254, 227, 29, 7, 254, 225, 29, 7, 254, 224, 29, 7,
254, 223, 29, 7, 254, 222, 29, 7, 254, 221, 29, 7, 254, 220, 29, 7, 254,
219, 29, 7, 254, 218, 29, 7, 254, 217, 29, 7, 254, 216, 29, 7, 254, 215,
29, 7, 254, 214, 29, 7, 254, 213, 29, 7, 254, 212, 29, 7, 254, 211, 29,
7, 254, 210, 29, 7, 254, 209, 29, 7, 254, 208, 29, 7, 254, 207, 29, 7,
254, 206, 29, 7, 254, 205, 29, 7, 254, 204, 29, 7, 254, 203, 29, 7, 254,
202, 29, 7, 254, 201, 29, 7, 254, 200, 29, 7, 254, 199, 29, 7, 254, 198,
29, 7, 254, 197, 29, 7, 254, 196, 29, 7, 254, 195, 29, 7, 254, 194, 29,
7, 254, 193, 29, 7, 254, 192, 29, 7, 254, 191, 29, 7, 254, 190, 29, 7,
254, 189, 29, 7, 254, 188, 29, 7, 254, 187, 29, 7, 254, 186, 29, 7, 254,
185, 29, 7, 254, 184, 29, 7, 254, 183, 29, 7, 254, 182, 29, 7, 254, 181,
29, 7, 254, 180, 29, 7, 254, 179, 29, 7, 254, 178, 29, 7, 254, 177, 29,
7, 254, 176, 29, 7, 254, 175, 29, 7, 254, 174, 29, 7, 254, 173, 29, 7,
254, 172, 29, 7, 254, 171, 29, 7, 254, 170, 29, 7, 254, 169, 29, 7, 254,
168, 29, 7, 254, 167, 29, 7, 254, 166, 29, 7, 254, 165, 29, 7, 254, 164,
29, 7, 254, 163, 29, 7, 254, 162, 29, 7, 254, 161, 29, 7, 254, 159, 29,
7, 254, 158, 29, 7, 254, 157, 29, 7, 254, 156, 29, 7, 254, 155, 29, 7,
254, 154, 29, 7, 254, 153, 29, 7, 254, 152, 29, 7, 254, 151, 29, 7, 254,
150, 29, 7, 254, 149, 29, 7, 254, 148, 29, 7, 254, 147, 29, 7, 254, 146,
29, 7, 254, 145, 29, 7, 254, 144, 29, 7, 254, 143, 29, 7, 254, 142, 29,
7, 254, 141, 29, 7, 254, 140, 29, 7, 254, 139, 29, 7, 254, 138, 29, 7,
254, 137, 29, 7, 254, 136, 29, 7, 254, 135, 29, 7, 254, 134, 29, 7, 254,
133, 29, 7, 254, 132, 29, 7, 254, 131, 29, 7, 254, 130, 29, 7, 254, 129,
29, 7, 254, 128, 29, 7, 254, 127, 29, 7, 254, 126, 29, 7, 254, 124, 29,
7, 254, 123, 29, 7, 254, 122, 29, 7, 254, 121, 29, 7, 254, 120, 29, 7,
254, 119, 29, 7, 254, 118, 29, 7, 254, 117, 29, 7, 254, 116, 29, 7, 254,
115, 29, 7, 254, 114, 29, 7, 254, 113, 29, 7, 254, 111, 29, 7, 254, 110,
29, 7, 254, 109, 29, 7, 254, 108, 29, 7, 254, 107, 29, 7, 254, 106, 29,
7, 254, 105, 29, 7, 254, 104, 29, 7, 254, 103, 29, 7, 254, 102, 29, 7,
254, 101, 29, 7, 254, 100, 29, 7, 254, 99, 29, 7, 254, 98, 29, 7, 254,
97, 29, 7, 254, 96, 29, 7, 254, 95, 29, 7, 254, 94, 29, 7, 254, 93, 29,
7, 254, 92, 29, 7, 254, 91, 29, 7, 254, 90, 29, 7, 254, 89, 29, 7, 254,
88, 29, 7, 254, 87, 29, 7, 254, 86, 29, 7, 254, 85, 29, 7, 254, 84, 29,
7, 254, 83, 29, 7, 254, 82, 29, 7, 254, 81, 29, 7, 254, 80, 29, 7, 254,
79, 29, 7, 254, 78, 29, 7, 254, 77, 29, 7, 254, 76, 29, 7, 254, 75, 29,
7, 254, 74, 29, 7, 254, 73, 29, 7, 254, 72, 29, 7, 254, 71, 29, 7, 254,
70, 29, 7, 254, 69, 29, 7, 254, 68, 29, 7, 254, 67, 29, 7, 254, 66, 29,
7, 254, 65, 29, 7, 254, 64, 29, 7, 254, 63, 29, 7, 254, 62, 29, 7, 254,
61, 29, 7, 254, 60, 29, 7, 254, 59, 29, 7, 254, 58, 29, 7, 254, 57, 29,
7, 254, 56, 29, 7, 254, 55, 29, 7, 254, 54, 29, 7, 254, 53, 29, 7, 254,
52, 29, 7, 254, 51, 29, 7, 254, 50, 29, 7, 254, 49, 29, 7, 254, 48, 29,
7, 254, 47, 29, 7, 254, 46, 29, 7, 254, 45, 29, 7, 254, 44, 29, 7, 254,
43, 29, 7, 254, 41, 29, 7, 254, 40, 29, 7, 254, 39, 29, 7, 254, 38, 29,
7, 254, 37, 29, 7, 254, 36, 29, 7, 254, 35, 29, 7, 254, 34, 29, 7, 254,
33, 29, 7, 254, 32, 29, 7, 254, 31, 29, 7, 254, 30, 29, 7, 254, 29, 29,
7, 254, 28, 29, 7, 254, 27, 29, 7, 254, 26, 29, 7, 254, 25, 29, 7, 254,
24, 29, 7, 254, 23, 29, 7, 254, 22, 29, 7, 254, 21, 29, 7, 254, 20, 29,
7, 254, 19, 29, 7, 254, 18, 29, 7, 254, 17, 29, 7, 254, 16, 29, 7, 254,
15, 29, 7, 254, 14, 29, 7, 254, 13, 29, 7, 254, 12, 29, 7, 254, 11, 29,
7, 254, 10, 29, 7, 254, 9, 29, 7, 254, 8, 29, 7, 254, 7, 29, 7, 254, 6,
29, 7, 254, 5, 29, 7, 254, 4, 29, 7, 254, 3, 29, 7, 254, 2, 29, 7, 254,
1, 29, 7, 254, 0, 29, 7, 253, 255, 29, 7, 253, 254, 29, 7, 253, 253, 29,
7, 253, 252, 29, 7, 253, 251, 29, 7, 253, 250, 29, 7, 253, 249, 29, 7,
253, 248, 29, 7, 253, 247, 29, 7, 253, 246, 29, 7, 253, 245, 29, 7, 253,
244, 29, 7, 253, 243, 29, 7, 253, 242, 29, 7, 253, 241, 29, 7, 253, 240,
29, 7, 253, 239, 29, 7, 253, 238, 29, 7, 253, 237, 29, 7, 253, 236, 29,
7, 253, 235, 29, 7, 253, 234, 29, 7, 253, 233, 29, 7, 253, 232, 29, 7,
253, 231, 29, 7, 253, 230, 29, 7, 253, 229, 29, 7, 253, 228, 29, 7, 253,
227, 29, 7, 253, 226, 29, 7, 253, 225, 29, 7, 253, 224, 29, 7, 253, 223,
29, 7, 253, 222, 29, 7, 253, 221, 29, 7, 253, 220, 29, 7, 253, 219, 29,
7, 253, 218, 29, 7, 253, 217, 29, 7, 253, 216, 29, 7, 253, 215, 29, 7,
253, 214, 29, 7, 253, 213, 29, 7, 253, 212, 29, 7, 253, 211, 29, 7, 253,
210, 29, 7, 253, 209, 29, 7, 253, 208, 29, 7, 253, 207, 29, 7, 253, 206,
29, 7, 253, 205, 29, 7, 253, 204, 29, 7, 253, 203, 29, 7, 253, 202, 29,
7, 253, 201, 29, 7, 253, 200, 29, 7, 253, 199, 29, 7, 253, 198, 29, 7,
253, 197, 29, 7, 253, 196, 29, 7, 253, 195, 29, 7, 253, 194, 29, 7, 253,
193, 29, 7, 253, 192, 29, 7, 253, 191, 29, 7, 253, 190, 29, 7, 253, 189,
29, 7, 253, 188, 29, 7, 253, 187, 29, 7, 253, 185, 29, 7, 253, 184, 29,
7, 253, 183, 29, 7, 253, 182, 29, 7, 253, 181, 29, 7, 253, 180, 29, 7,
253, 179, 29, 7, 253, 178, 29, 7, 253, 177, 29, 7, 253, 176, 29, 7, 253,
175, 29, 7, 253, 172, 29, 7, 253, 171, 29, 7, 253, 170, 29, 7, 253, 169,
29, 7, 253, 165, 29, 7, 253, 164, 29, 7, 253, 163, 29, 7, 253, 162, 29,
7, 253, 161, 29, 7, 253, 160, 29, 7, 253, 159, 29, 7, 253, 158, 29, 7,
253, 157, 29, 7, 253, 156, 29, 7, 253, 155, 29, 7, 253, 154, 29, 7, 253,
153, 29, 7, 253, 152, 29, 7, 253, 151, 29, 7, 253, 150, 29, 7, 253, 149,
29, 7, 253, 148, 29, 7, 253, 147, 29, 7, 253, 145, 29, 7, 253, 144, 29,
7, 253, 143, 29, 7, 253, 142, 29, 7, 253, 141, 29, 7, 253, 140, 29, 7,
253, 139, 29, 7, 253, 138, 29, 7, 253, 137, 29, 7, 253, 136, 29, 7, 253,
135, 29, 7, 253, 134, 29, 7, 253, 133, 29, 7, 253, 132, 29, 7, 253, 131,
29, 7, 253, 130, 29, 7, 253, 129, 29, 7, 253, 128, 29, 7, 253, 127, 29,
7, 253, 126, 29, 7, 253, 125, 29, 7, 253, 124, 29, 7, 253, 123, 29, 7,
253, 122, 29, 7, 253, 121, 29, 7, 253, 120, 29, 7, 253, 119, 29, 7, 253,
118, 29, 7, 253, 117, 29, 7, 253, 116, 29, 7, 253, 115, 29, 7, 253, 114,
29, 7, 253, 113, 29, 7, 253, 112, 29, 7, 253, 111, 29, 7, 253, 110, 29,
7, 253, 109, 29, 7, 253, 108, 29, 7, 253, 107, 29, 7, 253, 106, 29, 7,
253, 105, 29, 7, 253, 104, 29, 7, 253, 103, 29, 7, 253, 102, 29, 7, 253,
101, 29, 7, 253, 100, 29, 7, 253, 99, 29, 7, 253, 98, 29, 7, 253, 97, 29,
7, 253, 96, 29, 7, 253, 95, 29, 7, 253, 94, 29, 7, 253, 93, 29, 7, 253,
92, 29, 7, 253, 91, 29, 7, 253, 90, 29, 7, 253, 89, 29, 7, 253, 88, 29,
7, 253, 87, 29, 7, 253, 86, 29, 7, 253, 85, 29, 7, 253, 84, 208, 76, 211,
164, 207, 151, 29, 7, 253, 83, 29, 7, 253, 82, 29, 7, 253, 81, 29, 7,
253, 80, 29, 7, 253, 79, 29, 7, 253, 78, 29, 7, 253, 77, 29, 7, 253, 76,
29, 7, 253, 75, 29, 7, 253, 74, 29, 7, 253, 73, 29, 7, 253, 72, 174, 29,
7, 253, 71, 29, 7, 253, 70, 29, 7, 253, 69, 29, 7, 253, 68, 29, 7, 253,
67, 29, 7, 253, 66, 29, 7, 253, 65, 29, 7, 253, 63, 29, 7, 253, 61, 29,
7, 253, 59, 29, 7, 253, 57, 29, 7, 253, 55, 29, 7, 253, 53, 29, 7, 253,
51, 29, 7, 253, 49, 29, 7, 253, 47, 29, 7, 253, 45, 248, 100, 219, 92,
77, 29, 7, 253, 43, 234, 80, 219, 92, 77, 29, 7, 253, 42, 29, 7, 253, 40,
29, 7, 253, 38, 29, 7, 253, 36, 29, 7, 253, 34, 29, 7, 253, 32, 29, 7,
253, 30, 29, 7, 253, 28, 29, 7, 253, 26, 29, 7, 253, 25, 29, 7, 253, 24,
29, 7, 253, 23, 29, 7, 253, 22, 29, 7, 253, 21, 29, 7, 253, 20, 29, 7,
253, 19, 29, 7, 253, 18, 29, 7, 253, 17, 29, 7, 253, 16, 29, 7, 253, 15,
29, 7, 253, 14, 29, 7, 253, 13, 29, 7, 253, 12, 29, 7, 253, 11, 29, 7,
253, 10, 29, 7, 253, 9, 29, 7, 253, 8, 29, 7, 253, 7, 29, 7, 253, 6, 29,
7, 253, 5, 29, 7, 253, 4, 29, 7, 253, 3, 29, 7, 253, 2, 29, 7, 253, 1,
29, 7, 253, 0, 29, 7, 252, 255, 29, 7, 252, 254, 29, 7, 252, 253, 29, 7,
252, 252, 29, 7, 252, 251, 29, 7, 252, 250, 29, 7, 252, 249, 29, 7, 252,
248, 29, 7, 252, 247, 29, 7, 252, 246, 29, 7, 252, 245, 29, 7, 252, 244,
29, 7, 252, 243, 29, 7, 252, 242, 29, 7, 252, 241, 29, 7, 252, 240, 29,
7, 252, 239, 29, 7, 252, 238, 29, 7, 252, 237, 29, 7, 252, 236, 29, 7,
252, 235, 29, 7, 252, 234, 29, 7, 252, 233, 29, 7, 252, 232, 29, 7, 252,
231, 29, 7, 252, 230, 29, 7, 252, 229, 29, 7, 252, 228, 29, 7, 252, 227,
29, 7, 252, 226, 29, 7, 252, 225, 29, 7, 252, 224, 29, 7, 252, 223, 29,
7, 252, 222, 29, 7, 252, 221, 29, 7, 252, 220, 29, 7, 252, 219, 29, 7,
252, 218, 29, 7, 252, 217, 29, 7, 252, 216, 29, 7, 252, 215, 29, 7, 252,
214, 29, 7, 252, 213, 29, 7, 252, 212, 29, 7, 252, 211, 29, 7, 252, 210,
29, 7, 252, 209, 29, 7, 252, 208, 29, 7, 252, 207, 29, 7, 252, 206, 29,
7, 252, 205, 29, 7, 252, 204, 29, 7, 252, 203, 29, 7, 252, 202, 29, 7,
252, 201, 29, 7, 252, 200, 29, 7, 252, 199, 29, 7, 252, 198, 29, 7, 252,
197, 29, 7, 252, 196, 29, 7, 252, 195, 29, 7, 252, 194, 29, 7, 252, 193,
29, 7, 252, 192, 29, 7, 252, 191, 29, 7, 252, 190, 29, 7, 252, 189, 29,
7, 252, 188, 29, 7, 252, 187, 29, 7, 252, 186, 29, 7, 252, 185, 29, 7,
252, 184, 29, 7, 252, 183, 29, 7, 252, 182, 29, 7, 252, 181, 29, 7, 252,
180, 29, 7, 252, 179, 29, 7, 252, 178, 29, 7, 252, 177, 29, 7, 252, 176,
29, 7, 252, 175, 29, 7, 252, 174, 29, 7, 252, 173, 29, 7, 252, 172, 25,
1, 210, 84, 214, 98, 216, 217, 25, 1, 210, 84, 231, 166, 232, 156, 25, 1,
210, 84, 209, 175, 216, 218, 209, 251, 25, 1, 210, 84, 209, 175, 216,
218, 209, 252, 25, 1, 210, 84, 215, 85, 216, 217, 25, 1, 210, 84, 203,
159, 25, 1, 210, 84, 199, 62, 216, 217, 25, 1, 210, 84, 212, 147, 216,
217, 25, 1, 210, 84, 203, 223, 211, 78, 213, 240, 25, 1, 210, 84, 209,
175, 211, 78, 213, 241, 209, 251, 25, 1, 210, 84, 209, 175, 211, 78, 213,
241, 209, 252, 25, 1, 210, 84, 217, 199, 25, 1, 210, 84, 198, 46, 217,
200, 25, 1, 210, 84, 214, 159, 25, 1, 210, 84, 217, 196, 25, 1, 210, 84,
217, 147, 25, 1, 210, 84, 215, 174, 25, 1, 210, 84, 204, 148, 25, 1, 210,
84, 213, 31, 25, 1, 210, 84, 222, 13, 25, 1, 210, 84, 213, 207, 25, 1,
210, 84, 201, 86, 25, 1, 210, 84, 214, 97, 25, 1, 210, 84, 220, 75, 25,
1, 210, 84, 219, 237, 220, 247, 25, 1, 210, 84, 213, 41, 216, 225, 25, 1,
210, 84, 217, 203, 25, 1, 210, 84, 210, 215, 25, 1, 210, 84, 231, 65, 25,
1, 210, 84, 211, 29, 25, 1, 210, 84, 216, 56, 214, 132, 25, 1, 210, 84,
212, 128, 216, 228, 25, 1, 210, 84, 124, 192, 184, 215, 78, 25, 1, 210,
84, 231, 66, 25, 1, 210, 84, 213, 41, 213, 42, 25, 1, 210, 84, 203, 44,
25, 1, 210, 84, 216, 210, 25, 1, 210, 84, 216, 231, 25, 1, 210, 84, 216,
31, 25, 1, 210, 84, 222, 138, 25, 1, 210, 84, 211, 78, 220, 29, 25, 1,
210, 84, 215, 0, 220, 29, 25, 1, 210, 84, 210, 106, 25, 1, 210, 84, 217,
197, 25, 1, 210, 84, 214, 26, 25, 1, 210, 84, 209, 30, 25, 1, 210, 84,
198, 38, 25, 1, 210, 84, 219, 32, 25, 1, 210, 84, 202, 184, 25, 1, 210,
84, 199, 249, 25, 1, 210, 84, 217, 194, 25, 1, 210, 84, 222, 20, 25, 1,
210, 84, 214, 252, 25, 1, 210, 84, 221, 5, 25, 1, 210, 84, 216, 32, 25,
1, 210, 84, 203, 155, 25, 1, 210, 84, 219, 85, 25, 1, 210, 84, 232, 227,
25, 1, 210, 84, 207, 31, 25, 1, 210, 84, 221, 58, 25, 1, 210, 84, 202,
180, 25, 1, 210, 84, 217, 142, 210, 40, 25, 1, 210, 84, 203, 216, 25, 1,
210, 84, 213, 40, 25, 1, 210, 84, 203, 197, 213, 52, 192, 192, 25, 1,
210, 84, 212, 169, 216, 52, 25, 1, 210, 84, 211, 73, 25, 1, 210, 84, 213,
209, 25, 1, 210, 84, 197, 49, 25, 1, 210, 84, 214, 135, 25, 1, 210, 84,
217, 193, 25, 1, 210, 84, 213, 252, 25, 1, 210, 84, 217, 77, 25, 1, 210,
84, 212, 184, 25, 1, 210, 84, 199, 253, 25, 1, 210, 84, 202, 177, 25, 1,
210, 84, 211, 74, 25, 1, 210, 84, 213, 56, 25, 1, 210, 84, 217, 201, 25,
1, 210, 84, 212, 181, 25, 1, 210, 84, 222, 100, 25, 1, 210, 84, 213, 59,
25, 1, 210, 84, 196, 118, 25, 1, 210, 84, 219, 36, 25, 1, 210, 84, 214,
196, 25, 1, 210, 84, 215, 52, 25, 1, 210, 84, 217, 76, 25, 1, 210, 83,
213, 54, 25, 1, 210, 83, 198, 46, 217, 198, 25, 1, 210, 83, 203, 107, 25,
1, 210, 83, 204, 152, 198, 45, 25, 1, 210, 83, 219, 87, 213, 37, 25, 1,
210, 83, 217, 83, 217, 202, 25, 1, 210, 83, 221, 188, 25, 1, 210, 83,
193, 32, 25, 1, 210, 83, 217, 78, 25, 1, 210, 83, 222, 124, 25, 1, 210,
83, 210, 164, 25, 1, 210, 83, 193, 115, 220, 29, 25, 1, 210, 83, 220, 95,
213, 52, 212, 195, 25, 1, 210, 83, 213, 34, 203, 242, 25, 1, 210, 83,
214, 223, 213, 255, 25, 1, 210, 83, 231, 63, 25, 1, 210, 83, 209, 241,
25, 1, 210, 83, 198, 46, 213, 50, 25, 1, 210, 83, 203, 247, 213, 250, 25,
1, 210, 83, 203, 243, 25, 1, 210, 83, 216, 218, 199, 252, 25, 1, 210, 83,
217, 65, 217, 79, 25, 1, 210, 83, 212, 182, 213, 37, 25, 1, 210, 83, 222,
9, 25, 1, 210, 83, 231, 64, 25, 1, 210, 83, 222, 5, 25, 1, 210, 83, 220,
179, 25, 1, 210, 83, 210, 218, 25, 1, 210, 83, 196, 47, 25, 1, 210, 83,
214, 99, 215, 172, 25, 1, 210, 83, 214, 134, 217, 61, 25, 1, 210, 83,
193, 242, 25, 1, 210, 83, 206, 69, 25, 1, 210, 83, 200, 170, 25, 1, 210,
83, 216, 230, 25, 1, 210, 83, 214, 118, 25, 1, 210, 83, 214, 119, 220,
72, 25, 1, 210, 83, 216, 220, 25, 1, 210, 83, 201, 139, 25, 1, 210, 83,
217, 69, 25, 1, 210, 83, 216, 36, 25, 1, 210, 83, 212, 199, 25, 1, 210,
83, 209, 34, 25, 1, 210, 83, 216, 229, 214, 136, 25, 1, 210, 83, 233, 16,
25, 1, 210, 83, 217, 56, 25, 1, 210, 83, 233, 40, 25, 1, 210, 83, 222,
17, 25, 1, 210, 83, 217, 228, 213, 244, 25, 1, 210, 83, 217, 228, 213,
220, 25, 1, 210, 83, 219, 236, 25, 1, 210, 83, 214, 142, 25, 1, 210, 83,
213, 61, 25, 1, 210, 83, 172, 25, 1, 210, 83, 221, 171, 25, 1, 210, 83,
214, 87, 25, 1, 210, 82, 214, 98, 217, 200, 25, 1, 210, 82, 212, 146, 25,
1, 210, 82, 192, 192, 25, 1, 210, 82, 194, 145, 25, 1, 210, 82, 214, 135,
25, 1, 210, 82, 214, 244, 25, 1, 210, 82, 214, 105, 25, 1, 210, 82, 231,
73, 25, 1, 210, 82, 217, 73, 25, 1, 210, 82, 231, 173, 25, 1, 210, 82,
212, 171, 216, 100, 216, 232, 25, 1, 210, 82, 213, 28, 217, 64, 25, 1,
210, 82, 217, 70, 25, 1, 210, 82, 209, 247, 25, 1, 210, 82, 214, 229, 25,
1, 210, 82, 217, 81, 247, 15, 25, 1, 210, 82, 222, 7, 25, 1, 210, 82,
231, 74, 25, 1, 210, 82, 222, 14, 25, 1, 210, 82, 192, 215, 215, 205, 25,
1, 210, 82, 212, 140, 25, 1, 210, 82, 217, 58, 25, 1, 210, 82, 213, 60,
25, 1, 210, 82, 217, 64, 25, 1, 210, 82, 193, 33, 25, 1, 210, 82, 221,
66, 25, 1, 210, 82, 222, 159, 25, 1, 210, 82, 204, 147, 25, 1, 210, 82,
214, 238, 25, 1, 210, 82, 200, 168, 25, 1, 210, 82, 213, 224, 25, 1, 210,
82, 199, 62, 192, 196, 25, 1, 210, 82, 201, 171, 25, 1, 210, 82, 214,
125, 212, 195, 25, 1, 210, 82, 196, 46, 25, 1, 210, 82, 215, 55, 25, 1,
210, 82, 217, 228, 222, 16, 25, 1, 210, 82, 213, 42, 25, 1, 210, 82, 214,
120, 25, 1, 210, 82, 220, 76, 25, 1, 210, 82, 217, 66, 25, 1, 210, 82,
216, 209, 25, 1, 210, 82, 213, 36, 25, 1, 210, 82, 199, 248, 25, 1, 210,
82, 214, 122, 25, 1, 210, 82, 232, 75, 25, 1, 210, 82, 214, 243, 25, 1,
210, 82, 213, 62, 25, 1, 210, 82, 213, 58, 25, 1, 210, 82, 247, 98, 25,
1, 210, 82, 196, 48, 25, 1, 210, 82, 217, 71, 25, 1, 210, 82, 206, 218,
25, 1, 210, 82, 213, 254, 25, 1, 210, 82, 220, 94, 25, 1, 210, 82, 199,
59, 25, 1, 210, 82, 213, 44, 214, 87, 25, 1, 210, 82, 213, 246, 25, 1,
210, 82, 222, 20, 25, 1, 210, 82, 214, 127, 25, 1, 210, 82, 217, 193, 25,
1, 210, 82, 217, 59, 25, 1, 210, 82, 219, 36, 25, 1, 210, 82, 220, 247,
25, 1, 210, 82, 213, 252, 25, 1, 210, 82, 214, 87, 25, 1, 210, 82, 193,
232, 25, 1, 210, 82, 214, 123, 25, 1, 210, 82, 213, 47, 25, 1, 210, 82,
213, 38, 25, 1, 210, 82, 221, 7, 213, 209, 25, 1, 210, 82, 213, 45, 25,
1, 210, 82, 214, 251, 25, 1, 210, 82, 217, 228, 213, 50, 25, 1, 210, 82,
193, 129, 25, 1, 210, 82, 214, 250, 25, 1, 210, 82, 203, 158, 25, 1, 210,
82, 204, 150, 25, 1, 210, 82, 217, 67, 25, 1, 210, 82, 217, 200, 25, 1,
210, 82, 217, 77, 25, 1, 210, 82, 222, 8, 25, 1, 210, 82, 217, 68, 25, 1,
210, 82, 222, 12, 25, 1, 210, 82, 217, 81, 210, 46, 25, 1, 210, 82, 192,
175, 25, 1, 210, 82, 213, 242, 25, 1, 210, 82, 216, 156, 25, 1, 210, 82,
215, 235, 25, 1, 210, 82, 203, 219, 25, 1, 210, 82, 222, 31, 220, 54, 25,
1, 210, 82, 222, 31, 233, 53, 25, 1, 210, 82, 214, 157, 25, 1, 210, 82,
215, 52, 25, 1, 210, 82, 219, 157, 25, 1, 210, 82, 210, 6, 25, 1, 210,
82, 210, 154, 25, 1, 210, 82, 200, 8, 25, 1, 154, 217, 57, 25, 1, 154,
194, 143, 25, 1, 154, 213, 240, 25, 1, 154, 216, 217, 25, 1, 154, 213,
238, 25, 1, 154, 219, 202, 25, 1, 154, 213, 243, 25, 1, 154, 213, 57, 25,
1, 154, 214, 141, 25, 1, 154, 212, 195, 25, 1, 154, 193, 243, 25, 1, 154,
214, 95, 25, 1, 154, 204, 10, 25, 1, 154, 214, 106, 25, 1, 154, 222, 15,
25, 1, 154, 199, 250, 25, 1, 154, 203, 245, 25, 1, 154, 213, 251, 25, 1,
154, 201, 139, 25, 1, 154, 222, 20, 25, 1, 154, 193, 117, 25, 1, 154,
221, 8, 25, 1, 154, 206, 28, 25, 1, 154, 216, 222, 25, 1, 154, 214, 242,
25, 1, 154, 217, 164, 25, 1, 154, 216, 228, 25, 1, 154, 204, 149, 25, 1,
154, 193, 59, 25, 1, 154, 213, 245, 25, 1, 154, 222, 11, 217, 60, 25, 1,
154, 214, 102, 25, 1, 154, 198, 45, 25, 1, 154, 231, 83, 25, 1, 154, 214,
92, 25, 1, 154, 233, 17, 25, 1, 154, 214, 246, 25, 1, 154, 216, 201, 25,
1, 154, 219, 230, 25, 1, 154, 214, 228, 25, 1, 154, 216, 51, 25, 1, 154,
216, 205, 25, 1, 154, 209, 14, 25, 1, 154, 216, 203, 25, 1, 154, 216,
219, 25, 1, 154, 219, 19, 25, 1, 154, 213, 49, 25, 1, 154, 217, 80, 25,
1, 154, 220, 236, 25, 1, 154, 212, 184, 25, 1, 154, 199, 253, 25, 1, 154,
202, 177, 25, 1, 154, 192, 175, 25, 1, 154, 222, 12, 25, 1, 154, 208, 52,
25, 1, 154, 200, 55, 25, 1, 154, 214, 103, 25, 1, 154, 216, 224, 25, 1,
154, 213, 48, 25, 1, 154, 222, 10, 25, 1, 154, 209, 253, 25, 1, 154, 210,
99, 25, 1, 154, 212, 157, 25, 1, 154, 219, 236, 25, 1, 154, 214, 142, 25,
1, 154, 216, 221, 25, 1, 154, 214, 115, 25, 1, 154, 192, 189, 25, 1, 154,
210, 253, 25, 1, 154, 192, 188, 25, 1, 154, 214, 251, 25, 1, 154, 213,
37, 25, 1, 154, 201, 173, 25, 1, 154, 221, 12, 25, 1, 154, 214, 131, 25,
1, 154, 214, 100, 25, 1, 154, 198, 20, 25, 1, 154, 216, 232, 25, 1, 154,
221, 2, 25, 1, 154, 213, 46, 25, 1, 154, 199, 251, 25, 1, 154, 217, 195,
25, 1, 154, 214, 140, 25, 1, 154, 219, 229, 25, 1, 154, 214, 121, 25, 1,
154, 213, 51, 25, 1, 154, 213, 224, 25, 1, 154, 231, 67, 25, 1, 154, 221,
33, 25, 1, 154, 207, 206, 211, 225, 25, 1, 154, 200, 157, 25, 1, 154,
198, 245, 25, 1, 154, 212, 181, 25, 1, 154, 207, 88, 25, 1, 154, 220, 31,
25, 1, 154, 217, 28, 25, 1, 154, 218, 236, 25, 1, 154, 201, 86, 25, 1,
154, 215, 241, 25, 1, 154, 203, 231, 25, 1, 154, 203, 241, 25, 1, 154,
220, 208, 25, 1, 154, 213, 22, 25, 1, 154, 203, 164, 25, 1, 154, 213, 39,
25, 1, 154, 210, 168, 25, 1, 154, 214, 60, 25, 1, 154, 203, 196, 25, 1,
154, 209, 29, 25, 1, 154, 215, 172, 25, 1, 154, 219, 65, 25, 1, 154, 207,
206, 215, 230, 25, 1, 154, 199, 128, 25, 1, 154, 213, 25, 25, 1, 154,
217, 81, 179, 25, 1, 154, 206, 26, 25, 1, 154, 233, 96, 25, 1, 110, 214,
250, 25, 1, 110, 198, 252, 25, 1, 110, 217, 70, 25, 1, 110, 220, 76, 25,
1, 110, 195, 238, 25, 1, 110, 219, 71, 25, 1, 110, 211, 77, 25, 1, 110,
202, 188, 25, 1, 110, 208, 26, 25, 1, 110, 213, 53, 25, 1, 110, 214, 221,
25, 1, 110, 209, 47, 25, 1, 110, 200, 129, 25, 1, 110, 214, 108, 25, 1,
110, 221, 62, 25, 1, 110, 193, 235, 25, 1, 110, 205, 205, 25, 1, 110,
214, 132, 25, 1, 110, 211, 74, 25, 1, 110, 198, 254, 25, 1, 110, 221, 6,
25, 1, 110, 219, 86, 25, 1, 110, 213, 56, 25, 1, 110, 214, 84, 25, 1,
110, 217, 201, 25, 1, 110, 214, 101, 25, 1, 110, 214, 83, 25, 1, 110,
213, 55, 25, 1, 110, 207, 85, 25, 1, 110, 213, 242, 25, 1, 110, 210, 166,
25, 1, 110, 206, 91, 25, 1, 110, 214, 116, 25, 1, 110, 216, 211, 25, 1,
110, 231, 61, 25, 1, 110, 214, 104, 25, 1, 110, 213, 253, 25, 1, 110,
217, 141, 25, 1, 110, 219, 67, 25, 1, 110, 214, 137, 25, 1, 110, 214,
234, 25, 1, 110, 200, 156, 213, 37, 25, 1, 110, 204, 151, 25, 1, 110,
209, 40, 25, 1, 110, 214, 254, 202, 196, 25, 1, 110, 214, 124, 212, 195,
25, 1, 110, 193, 18, 25, 1, 110, 231, 62, 25, 1, 110, 198, 39, 25, 1,
110, 193, 36, 25, 1, 110, 209, 198, 25, 1, 110, 198, 26, 25, 1, 110, 222,
18, 25, 1, 110, 201, 172, 25, 1, 110, 199, 252, 25, 1, 110, 196, 49, 25,
1, 110, 194, 86, 25, 1, 110, 220, 182, 25, 1, 110, 209, 51, 25, 1, 110,
200, 169, 25, 1, 110, 231, 82, 25, 1, 110, 214, 147, 25, 1, 110, 203,
244, 25, 1, 110, 216, 206, 25, 1, 110, 217, 74, 25, 1, 110, 212, 144, 25,
1, 110, 213, 205, 25, 1, 110, 231, 169, 25, 1, 110, 198, 27, 25, 1, 110,
221, 16, 25, 1, 110, 193, 93, 25, 1, 110, 212, 182, 242, 101, 25, 1, 110,
193, 7, 25, 1, 110, 216, 223, 25, 1, 110, 214, 239, 25, 1, 110, 210, 41,
25, 1, 110, 192, 195, 25, 1, 110, 219, 231, 25, 1, 110, 232, 75, 25, 1,
110, 231, 168, 25, 1, 110, 214, 94, 25, 1, 110, 222, 20, 25, 1, 110, 217,
204, 25, 1, 110, 214, 107, 25, 1, 110, 231, 68, 25, 1, 110, 233, 97, 25,
1, 110, 213, 26, 25, 1, 110, 210, 100, 25, 1, 110, 193, 34, 25, 1, 110,
214, 133, 25, 1, 110, 212, 182, 248, 60, 25, 1, 110, 212, 124, 25, 1,
110, 209, 170, 25, 1, 110, 216, 156, 25, 1, 110, 232, 73, 25, 1, 110,
215, 78, 25, 1, 110, 215, 235, 25, 1, 110, 231, 67, 25, 1, 110, 232, 78,
70, 25, 1, 110, 215, 173, 25, 1, 110, 209, 46, 25, 1, 110, 214, 96, 25,
1, 110, 220, 247, 25, 1, 110, 210, 38, 25, 1, 110, 213, 40, 25, 1, 110,
193, 35, 25, 1, 110, 214, 117, 25, 1, 110, 211, 78, 210, 139, 25, 1, 110,
232, 78, 246, 253, 25, 1, 110, 232, 157, 25, 1, 110, 213, 247, 25, 1,
110, 64, 25, 1, 110, 198, 245, 25, 1, 110, 74, 25, 1, 110, 70, 25, 1,
110, 220, 74, 25, 1, 110, 211, 78, 209, 207, 25, 1, 110, 200, 174, 25, 1,
110, 200, 113, 25, 1, 110, 214, 254, 215, 160, 228, 193, 25, 1, 110, 203,
219, 25, 1, 110, 193, 31, 25, 1, 110, 214, 77, 25, 1, 110, 192, 200, 25,
1, 110, 192, 233, 201, 65, 25, 1, 110, 192, 233, 238, 208, 25, 1, 110,
192, 183, 25, 1, 110, 192, 191, 25, 1, 110, 222, 6, 25, 1, 110, 210, 98,
25, 1, 110, 213, 248, 234, 34, 25, 1, 110, 209, 42, 25, 1, 110, 193, 241,
25, 1, 110, 233, 40, 25, 1, 110, 196, 118, 25, 1, 110, 219, 36, 25, 1,
110, 216, 175, 25, 1, 110, 207, 170, 25, 1, 110, 208, 53, 25, 1, 110,
214, 76, 25, 1, 110, 214, 165, 25, 1, 110, 203, 211, 25, 1, 110, 203,
196, 25, 1, 110, 232, 78, 207, 209, 25, 1, 110, 181, 25, 1, 110, 210, 51,
25, 1, 110, 219, 65, 25, 1, 110, 221, 113, 25, 1, 110, 217, 5, 25, 1,
110, 172, 25, 1, 110, 217, 138, 25, 1, 110, 199, 254, 25, 1, 110, 221,
204, 25, 1, 110, 216, 55, 25, 1, 110, 200, 30, 25, 1, 110, 233, 64, 25,
1, 110, 231, 55, 25, 1, 210, 81, 160, 25, 1, 210, 81, 68, 25, 1, 210, 81,
221, 33, 25, 1, 210, 81, 234, 171, 25, 1, 210, 81, 207, 234, 25, 1, 210,
81, 200, 157, 25, 1, 210, 81, 212, 181, 25, 1, 210, 81, 177, 25, 1, 210,
81, 207, 88, 25, 1, 210, 81, 207, 136, 25, 1, 210, 81, 217, 28, 25, 1,
210, 81, 200, 174, 25, 1, 210, 81, 214, 253, 25, 1, 210, 81, 213, 254,
25, 1, 210, 81, 218, 236, 25, 1, 210, 81, 201, 86, 25, 1, 210, 81, 203,
231, 25, 1, 210, 81, 203, 125, 25, 1, 210, 81, 204, 147, 25, 1, 210, 81,
220, 208, 25, 1, 210, 81, 222, 20, 25, 1, 210, 81, 212, 246, 25, 1, 210,
81, 213, 22, 25, 1, 210, 81, 213, 225, 25, 1, 210, 81, 192, 232, 25, 1,
210, 81, 203, 164, 25, 1, 210, 81, 168, 25, 1, 210, 81, 213, 59, 25, 1,
210, 81, 210, 98, 25, 1, 210, 81, 213, 39, 25, 1, 210, 81, 193, 241, 25,
1, 210, 81, 210, 168, 25, 1, 210, 81, 206, 218, 25, 1, 210, 81, 214, 60,
25, 1, 210, 81, 207, 170, 25, 1, 210, 81, 222, 30, 25, 1, 210, 81, 214,
93, 25, 1, 210, 81, 214, 144, 25, 1, 210, 81, 203, 211, 25, 1, 210, 81,
209, 47, 25, 1, 210, 81, 232, 157, 25, 1, 210, 81, 194, 169, 25, 1, 210,
81, 219, 209, 25, 1, 210, 81, 219, 65, 25, 1, 210, 81, 221, 113, 25, 1,
210, 81, 217, 72, 25, 1, 210, 81, 207, 205, 25, 1, 210, 81, 172, 25, 1,
210, 81, 216, 91, 25, 1, 210, 81, 217, 80, 25, 1, 210, 81, 200, 8, 25, 1,
210, 81, 221, 69, 25, 1, 210, 81, 206, 48, 25, 1, 210, 81, 194, 222, 215,
245, 1, 189, 215, 245, 1, 214, 113, 215, 245, 1, 193, 1, 215, 245, 1,
216, 122, 215, 245, 1, 249, 3, 215, 245, 1, 238, 0, 215, 245, 1, 64, 215,
245, 1, 210, 77, 215, 245, 1, 221, 244, 215, 245, 1, 230, 31, 215, 245,
1, 237, 231, 215, 245, 1, 242, 168, 215, 245, 1, 222, 50, 215, 245, 1,
211, 226, 215, 245, 1, 217, 201, 215, 245, 1, 214, 20, 215, 245, 1, 166,
215, 245, 1, 211, 194, 215, 245, 1, 74, 215, 245, 1, 207, 55, 215, 245,
1, 203, 236, 215, 245, 1, 199, 223, 215, 245, 1, 234, 199, 215, 245, 1,
194, 169, 215, 245, 1, 71, 215, 245, 1, 221, 113, 215, 245, 1, 220, 83,
215, 245, 1, 177, 215, 245, 1, 230, 88, 215, 245, 1, 207, 151, 215, 245,
1, 200, 45, 215, 245, 17, 192, 76, 215, 245, 17, 101, 215, 245, 17, 104,
215, 245, 17, 133, 215, 245, 17, 134, 215, 245, 17, 151, 215, 245, 17,
170, 215, 245, 17, 179, 215, 245, 17, 174, 215, 245, 17, 182, 215, 245,
237, 208, 215, 245, 55, 237, 208, 248, 173, 196, 154, 1, 234, 69, 248,
173, 196, 154, 1, 160, 248, 173, 196, 154, 1, 205, 223, 248, 173, 196,
154, 1, 233, 97, 248, 173, 196, 154, 1, 217, 75, 248, 173, 196, 154, 1,
193, 19, 248, 173, 196, 154, 1, 231, 218, 248, 173, 196, 154, 1, 237, 21,
248, 173, 196, 154, 1, 221, 68, 248, 173, 196, 154, 1, 222, 233, 248,
173, 196, 154, 1, 228, 146, 248, 173, 196, 154, 1, 194, 169, 248, 173,
196, 154, 1, 192, 8, 248, 173, 196, 154, 1, 231, 162, 248, 173, 196, 154,
1, 236, 146, 248, 173, 196, 154, 1, 246, 158, 248, 173, 196, 154, 1, 196,
244, 248, 173, 196, 154, 1, 155, 248, 173, 196, 154, 1, 249, 3, 248, 173,
196, 154, 1, 194, 223, 248, 173, 196, 154, 1, 193, 63, 248, 173, 196,
154, 1, 166, 248, 173, 196, 154, 1, 194, 161, 248, 173, 196, 154, 1, 64,
248, 173, 196, 154, 1, 74, 248, 173, 196, 154, 1, 211, 194, 248, 173,
196, 154, 1, 68, 248, 173, 196, 154, 1, 234, 171, 248, 173, 196, 154, 1,
71, 248, 173, 196, 154, 1, 70, 248, 173, 196, 154, 38, 139, 199, 18, 248,
173, 196, 154, 38, 132, 199, 18, 248, 173, 196, 154, 38, 216, 162, 199,
18, 248, 173, 196, 154, 38, 219, 49, 199, 18, 248, 173, 196, 154, 38,
229, 153, 199, 18, 248, 173, 196, 154, 232, 71, 201, 238, 141, 89, 18,
222, 47, 141, 89, 18, 222, 43, 141, 89, 18, 221, 193, 141, 89, 18, 221,
156, 141, 89, 18, 222, 75, 141, 89, 18, 222, 72, 141, 89, 18, 221, 17,
141, 89, 18, 220, 244, 141, 89, 18, 222, 49, 141, 89, 18, 222, 4, 141,
89, 18, 222, 134, 141, 89, 18, 222, 131, 141, 89, 18, 221, 87, 141, 89,
18, 221, 84, 141, 89, 18, 222, 68, 141, 89, 18, 222, 66, 141, 89, 18,
221, 19, 141, 89, 18, 221, 18, 141, 89, 18, 221, 106, 141, 89, 18, 221,
73, 141, 89, 18, 221, 195, 141, 89, 18, 221, 194, 141, 89, 18, 222, 149,
141, 89, 18, 222, 71, 141, 89, 18, 220, 234, 141, 89, 18, 220, 225, 141,
89, 18, 222, 158, 141, 89, 18, 222, 150, 141, 89, 116, 196, 129, 141, 89,
116, 213, 29, 141, 89, 116, 220, 60, 141, 89, 116, 230, 11, 141, 89, 116,
213, 181, 141, 89, 116, 208, 17, 141, 89, 116, 213, 208, 141, 89, 116,
208, 213, 141, 89, 116, 193, 80, 141, 89, 116, 229, 128, 141, 89, 116,
217, 96, 141, 89, 116, 242, 249, 141, 89, 116, 215, 2, 141, 89, 116, 229,
64, 141, 89, 116, 209, 216, 141, 89, 116, 213, 35, 141, 89, 116, 215, 42,
141, 89, 116, 250, 8, 141, 89, 116, 193, 205, 141, 89, 116, 246, 191,
141, 89, 122, 242, 137, 198, 36, 141, 89, 122, 242, 137, 202, 212, 141,
89, 122, 242, 137, 222, 22, 141, 89, 122, 242, 137, 221, 235, 141, 89,
122, 242, 137, 201, 170, 141, 89, 122, 242, 137, 229, 22, 141, 89, 122,
242, 137, 200, 99, 141, 89, 3, 195, 233, 199, 173, 141, 89, 3, 195, 233,
198, 107, 246, 149, 141, 89, 3, 242, 137, 242, 238, 141, 89, 3, 195, 233,
199, 201, 141, 89, 3, 195, 233, 233, 37, 141, 89, 3, 193, 160, 213, 23,
141, 89, 3, 193, 160, 207, 153, 141, 89, 3, 193, 160, 198, 228, 141, 89,
3, 193, 160, 233, 78, 141, 89, 3, 195, 233, 205, 199, 141, 89, 3, 217,
27, 201, 174, 141, 89, 3, 195, 233, 213, 75, 141, 89, 3, 228, 54, 193,
100, 141, 89, 3, 193, 204, 141, 89, 3, 242, 137, 198, 94, 207, 37, 141,
89, 17, 192, 76, 141, 89, 17, 101, 141, 89, 17, 104, 141, 89, 17, 133,
141, 89, 17, 134, 141, 89, 17, 151, 141, 89, 17, 170, 141, 89, 17, 179,
141, 89, 17, 174, 141, 89, 17, 182, 141, 89, 31, 200, 25, 141, 89, 31,
228, 160, 141, 89, 31, 200, 31, 199, 163, 141, 89, 31, 216, 123, 141, 89,
31, 228, 163, 216, 123, 141, 89, 31, 200, 31, 248, 22, 141, 89, 31, 198,
172, 141, 89, 3, 195, 233, 219, 31, 141, 89, 3, 193, 157, 141, 89, 3,
229, 123, 141, 89, 3, 199, 190, 229, 123, 141, 89, 3, 191, 237, 199, 234,
141, 89, 3, 229, 48, 141, 89, 3, 213, 89, 141, 89, 3, 193, 195, 141, 89,
3, 213, 27, 141, 89, 3, 249, 247, 141, 89, 3, 197, 214, 246, 148, 141,
89, 3, 217, 27, 198, 110, 141, 89, 3, 200, 100, 141, 89, 3, 219, 62, 141,
89, 3, 215, 191, 141, 89, 3, 242, 137, 230, 84, 219, 8, 213, 33, 213, 32,
141, 89, 3, 242, 137, 238, 161, 198, 101, 141, 89, 3, 242, 137, 197, 212,
141, 89, 3, 242, 137, 197, 213, 242, 156, 141, 89, 3, 242, 137, 209, 45,
237, 176, 141, 89, 3, 242, 137, 213, 82, 198, 236, 141, 89, 242, 108, 3,
198, 105, 141, 89, 242, 108, 3, 193, 65, 141, 89, 242, 108, 3, 219, 154,
141, 89, 242, 108, 3, 220, 58, 141, 89, 242, 108, 3, 193, 156, 141, 89,
242, 108, 3, 221, 88, 141, 89, 242, 108, 3, 230, 8, 141, 89, 242, 108, 3,
215, 233, 141, 89, 242, 108, 3, 199, 174, 141, 89, 242, 108, 3, 198, 115,
141, 89, 242, 108, 3, 210, 91, 141, 89, 242, 108, 3, 221, 248, 141, 89,
242, 108, 3, 230, 72, 141, 89, 242, 108, 3, 196, 151, 141, 89, 242, 108,
3, 233, 74, 141, 89, 242, 108, 3, 193, 107, 141, 89, 242, 108, 3, 198,
88, 141, 89, 242, 108, 3, 220, 229, 141, 89, 242, 108, 3, 194, 211, 217,
36, 6, 1, 218, 236, 217, 36, 6, 1, 206, 158, 217, 36, 6, 1, 196, 236,
217, 36, 6, 1, 194, 202, 217, 36, 6, 1, 250, 20, 217, 36, 6, 1, 192, 155,
217, 36, 6, 1, 221, 70, 217, 36, 6, 1, 211, 93, 217, 36, 6, 1, 200, 228,
217, 36, 6, 1, 232, 44, 217, 36, 6, 1, 233, 163, 217, 36, 6, 1, 70, 217,
36, 6, 1, 222, 184, 217, 36, 6, 1, 64, 217, 36, 6, 1, 223, 65, 217, 36,
6, 1, 71, 217, 36, 6, 1, 249, 226, 217, 36, 6, 1, 247, 52, 217, 36, 6, 1,
68, 217, 36, 6, 1, 192, 214, 217, 36, 6, 1, 165, 217, 36, 6, 1, 208, 247,
217, 36, 6, 1, 228, 190, 217, 36, 6, 1, 212, 203, 217, 36, 6, 1, 193,
223, 217, 36, 6, 1, 238, 95, 217, 36, 6, 1, 212, 0, 217, 36, 6, 1, 215,
151, 217, 36, 6, 1, 150, 217, 36, 6, 1, 74, 217, 36, 6, 1, 251, 63, 217,
36, 6, 1, 193, 148, 217, 36, 2, 1, 218, 236, 217, 36, 2, 1, 206, 158,
217, 36, 2, 1, 196, 236, 217, 36, 2, 1, 194, 202, 217, 36, 2, 1, 250, 20,
217, 36, 2, 1, 192, 155, 217, 36, 2, 1, 221, 70, 217, 36, 2, 1, 211, 93,
217, 36, 2, 1, 200, 228, 217, 36, 2, 1, 232, 44, 217, 36, 2, 1, 233, 163,
217, 36, 2, 1, 70, 217, 36, 2, 1, 222, 184, 217, 36, 2, 1, 64, 217, 36,
2, 1, 223, 65, 217, 36, 2, 1, 71, 217, 36, 2, 1, 249, 226, 217, 36, 2, 1,
247, 52, 217, 36, 2, 1, 68, 217, 36, 2, 1, 192, 214, 217, 36, 2, 1, 165,
217, 36, 2, 1, 208, 247, 217, 36, 2, 1, 228, 190, 217, 36, 2, 1, 212,
203, 217, 36, 2, 1, 193, 223, 217, 36, 2, 1, 238, 95, 217, 36, 2, 1, 212,
0, 217, 36, 2, 1, 215, 151, 217, 36, 2, 1, 150, 217, 36, 2, 1, 74, 217,
36, 2, 1, 251, 63, 217, 36, 2, 1, 193, 148, 217, 36, 17, 192, 76, 217,
36, 17, 101, 217, 36, 17, 104, 217, 36, 17, 133, 217, 36, 17, 134, 217,
36, 17, 151, 217, 36, 17, 170, 217, 36, 17, 179, 217, 36, 17, 174, 217,
36, 17, 182, 217, 36, 31, 200, 30, 217, 36, 31, 234, 111, 217, 36, 31,
197, 244, 217, 36, 31, 199, 186, 217, 36, 31, 232, 113, 217, 36, 31, 233,
7, 217, 36, 31, 203, 35, 217, 36, 31, 204, 143, 217, 36, 31, 234, 145,
217, 36, 31, 214, 13, 217, 36, 17, 90, 250, 249, 20, 217, 36, 17, 103,
250, 249, 20, 217, 36, 17, 112, 250, 249, 20, 217, 36, 242, 38, 217, 36,
232, 71, 201, 238, 217, 36, 16, 251, 48, 217, 36, 233, 204, 211, 241,
117, 1, 166, 117, 1, 249, 3, 117, 1, 11, 166, 117, 1, 209, 234, 117, 1,
172, 117, 1, 216, 178, 117, 1, 250, 112, 172, 117, 1, 233, 97, 117, 1,
196, 157, 117, 1, 196, 41, 117, 1, 189, 117, 1, 238, 0, 117, 1, 11, 198,
83, 117, 1, 11, 189, 117, 1, 198, 83, 117, 1, 237, 161, 117, 1, 181, 117,
1, 214, 65, 117, 1, 11, 213, 178, 117, 1, 250, 112, 181, 117, 1, 213,
178, 117, 1, 213, 164, 117, 1, 177, 117, 1, 218, 250, 117, 1, 219, 222,
117, 1, 219, 211, 117, 1, 199, 50, 117, 1, 236, 155, 117, 1, 199, 42,
117, 1, 236, 154, 117, 1, 160, 117, 1, 231, 233, 117, 1, 11, 160, 117, 1,
208, 239, 117, 1, 208, 216, 117, 1, 214, 165, 117, 1, 214, 114, 117, 1,
250, 112, 214, 165, 117, 1, 144, 117, 1, 193, 209, 117, 1, 231, 84, 117,
1, 231, 59, 117, 1, 198, 93, 117, 1, 235, 0, 117, 1, 212, 201, 117, 1,
212, 183, 117, 1, 198, 108, 117, 1, 235, 11, 117, 1, 11, 198, 108, 117,
1, 11, 235, 11, 117, 1, 207, 232, 198, 108, 117, 1, 204, 64, 117, 1, 202,
92, 117, 1, 192, 71, 117, 1, 191, 254, 117, 1, 198, 118, 117, 1, 235, 17,
117, 1, 11, 198, 118, 117, 1, 188, 117, 1, 192, 112, 117, 1, 191, 255,
117, 1, 191, 225, 117, 1, 191, 205, 117, 1, 250, 112, 191, 225, 117, 1,
191, 197, 117, 1, 191, 204, 117, 1, 194, 169, 117, 1, 251, 72, 117, 1,
229, 187, 117, 1, 247, 146, 117, 1, 201, 54, 117, 1, 235, 1, 117, 1, 200,
79, 117, 1, 198, 112, 117, 1, 206, 221, 117, 3, 116, 73, 161, 117, 1,
215, 47, 117, 3, 250, 43, 117, 3, 207, 232, 195, 246, 117, 3, 207, 232,
250, 43, 117, 18, 3, 64, 117, 18, 3, 252, 33, 117, 18, 3, 251, 68, 117,
18, 3, 250, 224, 117, 18, 3, 250, 214, 117, 18, 3, 74, 117, 18, 3, 211,
194, 117, 18, 3, 194, 36, 117, 18, 3, 194, 202, 117, 18, 3, 71, 117, 18,
3, 234, 88, 117, 18, 3, 234, 73, 117, 18, 3, 211, 252, 117, 18, 3, 70,
117, 18, 3, 228, 58, 117, 18, 3, 228, 57, 117, 18, 3, 228, 56, 117, 18,
3, 223, 116, 117, 18, 3, 223, 251, 117, 18, 3, 223, 224, 117, 18, 3, 223,
78, 117, 18, 3, 223, 164, 117, 18, 3, 68, 117, 18, 3, 197, 119, 117, 18,
3, 197, 118, 117, 18, 3, 197, 117, 117, 18, 3, 196, 251, 117, 18, 3, 197,
101, 117, 18, 3, 197, 61, 117, 18, 3, 193, 148, 117, 18, 3, 193, 22, 117,
18, 3, 251, 108, 117, 18, 3, 251, 104, 117, 18, 3, 234, 13, 117, 18, 3,
207, 7, 234, 13, 117, 18, 3, 234, 21, 117, 18, 3, 207, 7, 234, 21, 117,
18, 3, 251, 63, 117, 18, 3, 234, 150, 117, 18, 3, 250, 8, 117, 18, 3,
211, 130, 117, 18, 3, 215, 151, 117, 18, 3, 214, 167, 117, 18, 3, 197,
45, 117, 18, 3, 192, 194, 117, 18, 3, 211, 246, 117, 18, 3, 211, 253,
117, 18, 3, 194, 213, 117, 18, 3, 223, 229, 117, 18, 3, 234, 199, 117,
18, 3, 223, 114, 117, 18, 3, 197, 95, 117, 158, 207, 101, 117, 158, 198,
249, 207, 101, 117, 158, 58, 117, 158, 63, 117, 1, 199, 16, 117, 1, 199,
15, 117, 1, 199, 14, 117, 1, 199, 13, 117, 1, 199, 12, 117, 1, 199, 11,
117, 1, 199, 10, 117, 1, 207, 232, 199, 17, 117, 1, 207, 232, 199, 16,
117, 1, 207, 232, 199, 14, 117, 1, 207, 232, 199, 13, 117, 1, 207, 232,
199, 12, 117, 1, 207, 232, 199, 10, 19, 223, 80, 77, 45, 223, 80, 77, 40,
242, 200, 229, 15, 77, 40, 242, 200, 223, 80, 77, 37, 2, 27, 232, 247,
196, 27, 250, 249, 208, 1, 122, 247, 19, 196, 27, 250, 249, 208, 1, 122,
214, 64, 19, 242, 27, 19, 242, 26, 19, 242, 25, 19, 242, 24, 19, 242, 23,
19, 242, 22, 19, 242, 21, 19, 242, 20, 19, 242, 19, 19, 242, 18, 19, 242,
17, 19, 242, 16, 19, 242, 15, 19, 242, 14, 19, 242, 13, 19, 242, 12, 19,
242, 11, 19, 242, 10, 19, 242, 9, 19, 242, 8, 19, 242, 7, 19, 242, 6, 19,
242, 5, 19, 242, 4, 19, 242, 3, 19, 242, 2, 19, 242, 1, 19, 242, 0, 19,
241, 255, 19, 241, 254, 19, 241, 253, 19, 241, 252, 19, 241, 251, 19,
241, 250, 19, 241, 249, 19, 241, 248, 19, 241, 247, 19, 241, 246, 19,
241, 245, 19, 241, 244, 19, 241, 243, 19, 241, 242, 19, 241, 241, 19,
241, 240, 19, 241, 239, 19, 241, 238, 19, 241, 237, 19, 241, 236, 19,
241, 235, 19, 241, 234, 19, 241, 233, 19, 241, 232, 19, 241, 231, 19,
241, 230, 19, 241, 229, 19, 241, 228, 19, 241, 227, 19, 241, 226, 19,
241, 225, 19, 241, 224, 19, 241, 223, 19, 241, 222, 19, 241, 221, 19,
241, 220, 19, 241, 219, 19, 241, 218, 19, 241, 217, 19, 241, 216, 19,
241, 215, 19, 241, 214, 19, 241, 213, 19, 241, 212, 19, 241, 211, 19,
241, 210, 19, 241, 209, 19, 241, 208, 19, 241, 207, 19, 241, 206, 19,
241, 205, 19, 241, 204, 19, 241, 203, 19, 241, 202, 19, 241, 201, 19,
241, 200, 19, 241, 199, 19, 241, 198, 19, 241, 197, 19, 241, 196, 19,
241, 195, 19, 241, 194, 19, 241, 193, 19, 241, 192, 19, 241, 191, 19,
241, 190, 19, 241, 189, 19, 241, 188, 19, 241, 187, 19, 241, 186, 19,
241, 185, 19, 241, 184, 19, 241, 183, 19, 241, 182, 19, 241, 181, 19,
241, 180, 19, 241, 179, 19, 241, 178, 19, 241, 177, 19, 241, 176, 19,
241, 175, 19, 241, 174, 19, 241, 173, 19, 241, 172, 19, 241, 171, 19,
241, 170, 19, 241, 169, 19, 241, 168, 19, 241, 167, 19, 241, 166, 19,
241, 165, 19, 241, 164, 19, 241, 163, 19, 241, 162, 19, 241, 161, 19,
241, 160, 19, 241, 159, 19, 241, 158, 19, 241, 157, 19, 241, 156, 19,
241, 155, 19, 241, 154, 19, 241, 153, 19, 241, 152, 19, 241, 151, 19,
241, 150, 19, 241, 149, 19, 241, 148, 19, 241, 147, 19, 241, 146, 19,
241, 145, 19, 241, 144, 19, 241, 143, 19, 241, 142, 19, 241, 141, 19,
241, 140, 19, 241, 139, 19, 241, 138, 19, 241, 137, 19, 241, 136, 19,
241, 135, 19, 241, 134, 19, 241, 133, 19, 241, 132, 19, 241, 131, 19,
241, 130, 19, 241, 129, 19, 241, 128, 19, 241, 127, 19, 241, 126, 19,
241, 125, 19, 241, 124, 19, 241, 123, 19, 241, 122, 19, 241, 121, 19,
241, 120, 19, 241, 119, 19, 241, 118, 19, 241, 117, 19, 241, 116, 19,
241, 115, 19, 241, 114, 19, 241, 113, 19, 241, 112, 19, 241, 111, 19,
241, 110, 19, 241, 109, 19, 241, 108, 19, 241, 107, 19, 241, 106, 19,
241, 105, 19, 241, 104, 19, 241, 103, 19, 241, 102, 19, 241, 101, 19,
241, 100, 19, 241, 99, 19, 241, 98, 19, 241, 97, 19, 241, 96, 19, 241,
95, 19, 241, 94, 19, 241, 93, 19, 241, 92, 19, 241, 91, 19, 241, 90, 19,
241, 89, 19, 241, 88, 19, 241, 87, 19, 241, 86, 19, 241, 85, 19, 241, 84,
19, 241, 83, 19, 241, 82, 19, 241, 81, 19, 241, 80, 19, 241, 79, 19, 241,
78, 19, 241, 77, 19, 241, 76, 19, 241, 75, 19, 241, 74, 19, 241, 73, 19,
241, 72, 19, 241, 71, 19, 241, 70, 19, 241, 69, 19, 241, 68, 19, 241, 67,
19, 241, 66, 19, 241, 65, 19, 241, 64, 19, 241, 63, 19, 241, 62, 19, 241,
61, 19, 241, 60, 19, 241, 59, 19, 241, 58, 19, 241, 57, 19, 241, 56, 19,
241, 55, 19, 241, 54, 19, 241, 53, 19, 241, 52, 19, 241, 51, 19, 241, 50,
19, 241, 49, 19, 241, 48, 19, 241, 47, 19, 241, 46, 19, 241, 45, 19, 241,
44, 19, 241, 43, 19, 241, 42, 19, 241, 41, 19, 241, 40, 19, 241, 39, 19,
241, 38, 19, 241, 37, 19, 241, 36, 19, 241, 35, 19, 241, 34, 19, 241, 33,
19, 241, 32, 19, 241, 31, 19, 241, 30, 19, 241, 29, 19, 241, 28, 19, 241,
27, 19, 241, 26, 19, 241, 25, 19, 241, 24, 19, 241, 23, 19, 241, 22, 19,
241, 21, 19, 241, 20, 19, 241, 19, 19, 241, 18, 19, 241, 17, 19, 241, 16,
19, 241, 15, 19, 241, 14, 19, 241, 13, 19, 241, 12, 19, 241, 11, 19, 241,
10, 19, 241, 9, 19, 241, 8, 19, 241, 7, 19, 241, 6, 19, 241, 5, 19, 241,
4, 19, 241, 3, 19, 241, 2, 19, 241, 1, 19, 241, 0, 19, 240, 255, 19, 240,
254, 19, 240, 253, 19, 240, 252, 19, 240, 251, 19, 240, 250, 19, 240,
249, 19, 240, 248, 19, 240, 247, 19, 240, 246, 19, 240, 245, 19, 240,
244, 19, 240, 243, 19, 240, 242, 19, 240, 241, 19, 240, 240, 19, 240,
239, 19, 240, 238, 19, 240, 237, 19, 240, 236, 19, 240, 235, 19, 240,
234, 19, 240, 233, 19, 240, 232, 19, 240, 231, 19, 240, 230, 19, 240,
229, 19, 240, 228, 19, 240, 227, 19, 240, 226, 19, 240, 225, 19, 240,
224, 19, 240, 223, 19, 240, 222, 19, 240, 221, 19, 240, 220, 19, 240,
219, 19, 240, 218, 19, 240, 217, 19, 240, 216, 19, 240, 215, 19, 240,
214, 19, 240, 213, 19, 240, 212, 19, 240, 211, 19, 240, 210, 19, 240,
209, 19, 240, 208, 19, 240, 207, 19, 240, 206, 19, 240, 205, 19, 240,
204, 19, 240, 203, 19, 240, 202, 19, 240, 201, 19, 240, 200, 19, 240,
199, 19, 240, 198, 19, 240, 197, 19, 240, 196, 19, 240, 195, 19, 240,
194, 19, 240, 193, 19, 240, 192, 19, 240, 191, 19, 240, 190, 19, 240,
189, 19, 240, 188, 19, 240, 187, 19, 240, 186, 19, 240, 185, 19, 240,
184, 19, 240, 183, 19, 240, 182, 19, 240, 181, 19, 240, 180, 19, 240,
179, 19, 240, 178, 19, 240, 177, 19, 240, 176, 19, 240, 175, 19, 240,
174, 19, 240, 173, 19, 240, 172, 19, 240, 171, 19, 240, 170, 19, 240,
169, 19, 240, 168, 19, 240, 167, 19, 240, 166, 19, 240, 165, 19, 240,
164, 19, 240, 163, 19, 240, 162, 19, 240, 161, 19, 240, 160, 19, 240,
159, 19, 240, 158, 19, 240, 157, 19, 240, 156, 19, 240, 155, 19, 240,
154, 19, 240, 153, 19, 240, 152, 19, 240, 151, 19, 240, 150, 19, 240,
149, 19, 240, 148, 19, 240, 147, 19, 240, 146, 19, 240, 145, 19, 240,
144, 19, 240, 143, 19, 240, 142, 19, 240, 141, 19, 240, 140, 19, 240,
139, 19, 240, 138, 19, 240, 137, 19, 240, 136, 19, 240, 135, 19, 240,
134, 19, 240, 133, 19, 240, 132, 19, 240, 131, 19, 240, 130, 19, 240,
129, 19, 240, 128, 19, 240, 127, 19, 240, 126, 19, 240, 125, 19, 240,
124, 19, 240, 123, 19, 240, 122, 19, 240, 121, 19, 240, 120, 19, 240,
119, 19, 240, 118, 19, 240, 117, 19, 240, 116, 19, 240, 115, 19, 240,
114, 19, 240, 113, 19, 240, 112, 19, 240, 111, 19, 240, 110, 19, 240,
109, 19, 240, 108, 19, 240, 107, 19, 240, 106, 19, 240, 105, 19, 240,
104, 19, 240, 103, 19, 240, 102, 19, 240, 101, 19, 240, 100, 19, 240, 99,
19, 240, 98, 19, 240, 97, 19, 240, 96, 19, 240, 95, 19, 240, 94, 19, 240,
93, 19, 240, 92, 19, 240, 91, 19, 240, 90, 19, 240, 89, 19, 240, 88, 19,
240, 87, 19, 240, 86, 19, 240, 85, 19, 240, 84, 19, 240, 83, 19, 240, 82,
19, 240, 81, 19, 240, 80, 19, 240, 79, 19, 240, 78, 19, 240, 77, 19, 240,
76, 19, 240, 75, 19, 240, 74, 19, 240, 73, 19, 240, 72, 19, 240, 71, 19,
240, 70, 19, 240, 69, 19, 240, 68, 19, 240, 67, 19, 240, 66, 19, 240, 65,
19, 240, 64, 19, 240, 63, 19, 240, 62, 19, 240, 61, 19, 240, 60, 19, 240,
59, 19, 240, 58, 19, 240, 57, 19, 240, 56, 19, 240, 55, 19, 240, 54, 19,
240, 53, 19, 240, 52, 19, 240, 51, 19, 240, 50, 19, 240, 49, 19, 240, 48,
19, 240, 47, 19, 240, 46, 19, 240, 45, 19, 240, 44, 19, 240, 43, 19, 240,
42, 19, 240, 41, 19, 240, 40, 19, 240, 39, 19, 240, 38, 19, 240, 37, 19,
240, 36, 19, 240, 35, 19, 240, 34, 19, 240, 33, 19, 240, 32, 19, 240, 31,
19, 240, 30, 19, 240, 29, 19, 240, 28, 19, 240, 27, 19, 240, 26, 19, 240,
25, 19, 240, 24, 19, 240, 23, 19, 240, 22, 19, 240, 21, 19, 240, 20, 19,
240, 19, 19, 240, 18, 19, 240, 17, 19, 240, 16, 19, 240, 15, 19, 240, 14,
19, 240, 13, 19, 240, 12, 19, 240, 11, 19, 240, 10, 19, 240, 9, 19, 240,
8, 19, 240, 7, 19, 240, 6, 19, 240, 5, 19, 240, 4, 19, 240, 3, 19, 240,
2, 19, 240, 1, 19, 240, 0, 19, 239, 255, 19, 239, 254, 19, 239, 253, 19,
239, 252, 19, 239, 251, 19, 239, 250, 19, 239, 249, 19, 239, 248, 19,
239, 247, 19, 239, 246, 19, 239, 245, 19, 239, 244, 19, 239, 243, 19,
239, 242, 19, 239, 241, 19, 239, 240, 19, 239, 239, 19, 239, 238, 19,
239, 237, 19, 239, 236, 19, 239, 235, 19, 239, 234, 19, 239, 233, 19,
239, 232, 19, 239, 231, 19, 239, 230, 19, 239, 229, 19, 239, 228, 19,
239, 227, 19, 239, 226, 19, 239, 225, 19, 239, 224, 19, 239, 223, 19,
239, 222, 19, 239, 221, 19, 239, 220, 19, 239, 219, 19, 239, 218, 19,
239, 217, 19, 239, 216, 19, 239, 215, 19, 239, 214, 19, 239, 213, 19,
239, 212, 19, 239, 211, 19, 239, 210, 19, 239, 209, 19, 239, 208, 19,
239, 207, 19, 239, 206, 19, 239, 205, 19, 239, 204, 19, 239, 203, 19,
239, 202, 19, 239, 201, 19, 239, 200, 19, 239, 199, 19, 239, 198, 19,
239, 197, 19, 239, 196, 19, 239, 195, 19, 239, 194, 19, 239, 193, 19,
239, 192, 19, 239, 191, 19, 239, 190, 19, 239, 189, 19, 239, 188, 19,
239, 187, 19, 239, 186, 19, 239, 185, 19, 239, 184, 19, 239, 183, 19,
239, 182, 19, 239, 181, 19, 239, 180, 19, 239, 179, 19, 239, 178, 19,
239, 177, 19, 239, 176, 19, 239, 175, 19, 239, 174, 19, 239, 173, 19,
239, 172, 19, 239, 171, 19, 239, 170, 19, 239, 169, 19, 239, 168, 19,
239, 167, 19, 239, 166, 19, 239, 165, 19, 239, 164, 19, 239, 163, 19,
239, 162, 19, 239, 161, 19, 239, 160, 19, 239, 159, 19, 239, 158, 19,
239, 157, 19, 239, 156, 19, 239, 155, 19, 239, 154, 19, 239, 153, 19,
239, 152, 19, 239, 151, 19, 239, 150, 19, 239, 149, 19, 239, 148, 19,
239, 147, 19, 239, 146, 19, 239, 145, 19, 239, 144, 19, 239, 143, 19,
239, 142, 19, 239, 141, 19, 239, 140, 19, 239, 139, 19, 239, 138, 19,
239, 137, 19, 239, 136, 19, 239, 135, 19, 239, 134, 19, 239, 133, 19,
239, 132, 19, 239, 131, 19, 239, 130, 19, 239, 129, 19, 239, 128, 19,
239, 127, 19, 239, 126, 19, 239, 125, 19, 239, 124, 19, 239, 123, 19,
239, 122, 19, 239, 121, 19, 239, 120, 19, 239, 119, 19, 239, 118, 19,
239, 117, 19, 239, 116, 19, 239, 115, 19, 239, 114, 19, 239, 113, 19,
239, 112, 19, 239, 111, 19, 239, 110, 19, 239, 109, 19, 239, 108, 19,
239, 107, 19, 239, 106, 19, 239, 105, 19, 239, 104, 19, 239, 103, 19,
239, 102, 19, 239, 101, 19, 239, 100, 19, 239, 99, 19, 239, 98, 19, 239,
97, 19, 239, 96, 19, 239, 95, 19, 239, 94, 19, 239, 93, 19, 239, 92, 19,
239, 91, 19, 239, 90, 19, 239, 89, 19, 239, 88, 19, 239, 87, 19, 239, 86,
19, 239, 85, 19, 239, 84, 19, 239, 83, 19, 239, 82, 19, 239, 81, 19, 239,
80, 19, 239, 79, 19, 239, 78, 19, 239, 77, 19, 239, 76, 19, 239, 75, 19,
239, 74, 19, 239, 73, 19, 239, 72, 19, 239, 71, 19, 239, 70, 19, 239, 69,
19, 239, 68, 19, 239, 67, 19, 239, 66, 19, 239, 65, 19, 239, 64, 19, 239,
63, 19, 239, 62, 19, 239, 61, 19, 239, 60, 19, 239, 59, 19, 239, 58, 19,
239, 57, 19, 239, 56, 19, 239, 55, 19, 239, 54, 19, 239, 53, 19, 239, 52,
19, 239, 51, 19, 239, 50, 19, 239, 49, 19, 239, 48, 19, 239, 47, 19, 239,
46, 19, 239, 45, 19, 239, 44, 19, 239, 43, 19, 239, 42, 19, 239, 41, 19,
239, 40, 19, 239, 39, 19, 239, 38, 19, 239, 37, 19, 239, 36, 19, 239, 35,
19, 239, 34, 19, 239, 33, 19, 239, 32, 19, 239, 31, 19, 239, 30, 19, 239,
29, 19, 239, 28, 37, 2, 27, 246, 98, 37, 2, 27, 246, 97, 37, 2, 27, 246,
96, 37, 2, 27, 246, 95, 37, 2, 27, 246, 94, 37, 2, 27, 246, 93, 37, 2,
27, 246, 92, 37, 2, 27, 246, 91, 37, 2, 27, 246, 90, 37, 2, 27, 246, 89,
37, 2, 27, 246, 88, 37, 2, 27, 246, 87, 37, 2, 27, 246, 86, 37, 2, 27,
246, 85, 37, 2, 27, 246, 84, 37, 2, 27, 246, 83, 37, 2, 27, 246, 82, 37,
2, 27, 246, 81, 37, 2, 27, 246, 80, 37, 2, 27, 246, 79, 37, 2, 27, 246,
78, 37, 2, 27, 246, 77, 37, 2, 27, 246, 76, 37, 2, 27, 246, 75, 37, 2,
27, 246, 74, 37, 2, 27, 246, 73, 37, 2, 27, 246, 72, 37, 2, 27, 246, 71,
37, 2, 27, 246, 70, 37, 2, 27, 246, 69, 37, 2, 27, 246, 68, 37, 2, 27,
246, 67, 37, 2, 27, 246, 66, 37, 2, 27, 246, 65, 37, 2, 27, 246, 64, 37,
2, 27, 246, 63, 37, 2, 27, 246, 62, 37, 2, 27, 246, 61, 37, 2, 27, 246,
60, 37, 2, 27, 246, 59, 37, 2, 27, 246, 58, 37, 2, 27, 246, 57, 37, 2,
27, 246, 56, 37, 2, 27, 246, 55, 37, 2, 27, 246, 54, 37, 2, 27, 246, 53,
37, 2, 27, 246, 52, 37, 2, 27, 246, 51, 37, 2, 27, 246, 50, 37, 2, 27,
246, 49, 37, 2, 27, 246, 48, 37, 2, 27, 246, 47, 37, 2, 27, 246, 46, 37,
2, 27, 246, 45, 37, 2, 27, 246, 44, 37, 2, 27, 246, 43, 37, 2, 27, 246,
42, 37, 2, 27, 246, 41, 37, 2, 27, 246, 40, 37, 2, 27, 246, 39, 37, 2,
27, 246, 38, 37, 2, 27, 246, 37, 37, 2, 27, 246, 36, 37, 2, 27, 246, 35,
37, 2, 27, 246, 34, 37, 2, 27, 246, 33, 37, 2, 27, 246, 32, 37, 2, 27,
246, 31, 37, 2, 27, 246, 30, 37, 2, 27, 246, 29, 37, 2, 27, 246, 28, 37,
2, 27, 246, 27, 37, 2, 27, 246, 26, 37, 2, 27, 246, 25, 37, 2, 27, 246,
24, 37, 2, 27, 246, 23, 37, 2, 27, 246, 22, 37, 2, 27, 246, 21, 37, 2,
27, 246, 20, 37, 2, 27, 246, 19, 37, 2, 27, 246, 18, 37, 2, 27, 246, 17,
37, 2, 27, 246, 16, 37, 2, 27, 246, 15, 37, 2, 27, 246, 14, 37, 2, 27,
246, 13, 37, 2, 27, 246, 12, 37, 2, 27, 246, 11, 37, 2, 27, 246, 10, 37,
2, 27, 246, 9, 37, 2, 27, 246, 8, 37, 2, 27, 246, 7, 37, 2, 27, 246, 6,
37, 2, 27, 246, 5, 37, 2, 27, 246, 4, 37, 2, 27, 246, 3, 37, 2, 27, 246,
2, 37, 2, 27, 246, 1, 37, 2, 27, 246, 0, 37, 2, 27, 245, 255, 37, 2, 27,
245, 254, 37, 2, 27, 245, 253, 37, 2, 27, 245, 252, 37, 2, 27, 245, 251,
37, 2, 27, 245, 250, 37, 2, 27, 245, 249, 37, 2, 27, 245, 248, 37, 2, 27,
245, 247, 37, 2, 27, 245, 246, 37, 2, 27, 245, 245, 37, 2, 27, 245, 244,
37, 2, 27, 245, 243, 37, 2, 27, 245, 242, 37, 2, 27, 245, 241, 37, 2, 27,
245, 240, 37, 2, 27, 245, 239, 37, 2, 27, 245, 238, 37, 2, 27, 245, 237,
37, 2, 27, 245, 236, 37, 2, 27, 245, 235, 37, 2, 27, 245, 234, 37, 2, 27,
245, 233, 37, 2, 27, 245, 232, 37, 2, 27, 245, 231, 37, 2, 27, 245, 230,
37, 2, 27, 245, 229, 37, 2, 27, 245, 228, 37, 2, 27, 245, 227, 37, 2, 27,
245, 226, 37, 2, 27, 245, 225, 37, 2, 27, 245, 224, 37, 2, 27, 245, 223,
37, 2, 27, 245, 222, 37, 2, 27, 245, 221, 37, 2, 27, 245, 220, 37, 2, 27,
245, 219, 37, 2, 27, 245, 218, 37, 2, 27, 245, 217, 37, 2, 27, 245, 216,
37, 2, 27, 245, 215, 37, 2, 27, 245, 214, 37, 2, 27, 245, 213, 37, 2, 27,
245, 212, 37, 2, 27, 245, 211, 37, 2, 27, 245, 210, 37, 2, 27, 245, 209,
37, 2, 27, 245, 208, 37, 2, 27, 245, 207, 37, 2, 27, 245, 206, 37, 2, 27,
245, 205, 37, 2, 27, 245, 204, 37, 2, 27, 245, 203, 37, 2, 27, 245, 202,
37, 2, 27, 245, 201, 37, 2, 27, 245, 200, 37, 2, 27, 245, 199, 37, 2, 27,
245, 198, 37, 2, 27, 245, 197, 37, 2, 27, 245, 196, 37, 2, 27, 245, 195,
37, 2, 27, 245, 194, 37, 2, 27, 245, 193, 37, 2, 27, 245, 192, 37, 2, 27,
245, 191, 37, 2, 27, 245, 190, 37, 2, 27, 245, 189, 37, 2, 27, 245, 188,
37, 2, 27, 245, 187, 37, 2, 27, 245, 186, 37, 2, 27, 245, 185, 37, 2, 27,
245, 184, 37, 2, 27, 245, 183, 37, 2, 27, 245, 182, 37, 2, 27, 245, 181,
37, 2, 27, 245, 180, 37, 2, 27, 245, 179, 37, 2, 27, 245, 178, 37, 2, 27,
245, 177, 37, 2, 27, 245, 176, 37, 2, 27, 245, 175, 37, 2, 27, 245, 174,
37, 2, 27, 245, 173, 37, 2, 27, 245, 172, 37, 2, 27, 245, 171, 37, 2, 27,
245, 170, 37, 2, 27, 245, 169, 37, 2, 27, 245, 168, 37, 2, 27, 245, 167,
37, 2, 27, 245, 166, 37, 2, 27, 245, 165, 37, 2, 27, 245, 164, 37, 2, 27,
245, 163, 37, 2, 27, 245, 162, 37, 2, 27, 245, 161, 37, 2, 27, 245, 160,
37, 2, 27, 245, 159, 37, 2, 27, 245, 158, 37, 2, 27, 245, 157, 37, 2, 27,
245, 156, 37, 2, 27, 245, 155, 37, 2, 27, 245, 154, 37, 2, 27, 245, 153,
37, 2, 27, 245, 152, 37, 2, 27, 245, 151, 37, 2, 27, 245, 150, 37, 2, 27,
245, 149, 37, 2, 27, 245, 148, 37, 2, 27, 245, 147, 37, 2, 27, 245, 146,
37, 2, 27, 245, 145, 37, 2, 27, 245, 144, 37, 2, 27, 245, 143, 37, 2, 27,
245, 142, 37, 2, 27, 245, 141, 37, 2, 27, 245, 140, 37, 2, 27, 245, 139,
37, 2, 27, 245, 138, 37, 2, 27, 245, 137, 37, 2, 27, 245, 136, 37, 2, 27,
245, 135, 37, 2, 27, 245, 134, 37, 2, 27, 245, 133, 37, 2, 27, 245, 132,
37, 2, 27, 245, 131, 37, 2, 27, 245, 130, 37, 2, 27, 245, 129, 37, 2, 27,
245, 128, 37, 2, 27, 245, 127, 37, 2, 27, 245, 126, 37, 2, 27, 245, 125,
37, 2, 27, 245, 124, 37, 2, 27, 245, 123, 37, 2, 27, 245, 122, 37, 2, 27,
245, 121, 37, 2, 27, 245, 120, 37, 2, 27, 245, 119, 37, 2, 27, 245, 118,
37, 2, 27, 245, 117, 37, 2, 27, 245, 116, 37, 2, 27, 245, 115, 37, 2, 27,
245, 114, 37, 2, 27, 245, 113, 37, 2, 27, 245, 112, 37, 2, 27, 245, 111,
37, 2, 27, 245, 110, 37, 2, 27, 245, 109, 37, 2, 27, 245, 108, 37, 2, 27,
245, 107, 37, 2, 27, 245, 106, 37, 2, 27, 245, 105, 37, 2, 27, 245, 104,
37, 2, 27, 245, 103, 37, 2, 27, 245, 102, 37, 2, 27, 245, 101, 37, 2, 27,
245, 100, 37, 2, 27, 245, 99, 37, 2, 27, 245, 98, 37, 2, 27, 245, 97, 37,
2, 27, 245, 96, 37, 2, 27, 245, 95, 37, 2, 27, 245, 94, 37, 2, 27, 245,
93, 37, 2, 27, 245, 92, 37, 2, 27, 245, 91, 37, 2, 27, 245, 90, 37, 2,
27, 245, 89, 37, 2, 27, 245, 88, 37, 2, 27, 245, 87, 37, 2, 27, 245, 86,
37, 2, 27, 245, 85, 37, 2, 27, 245, 84, 37, 2, 27, 245, 83, 37, 2, 27,
245, 82, 37, 2, 27, 245, 81, 37, 2, 27, 245, 80, 37, 2, 27, 245, 79, 37,
2, 27, 245, 78, 37, 2, 27, 245, 77, 37, 2, 27, 245, 76, 37, 2, 27, 245,
75, 37, 2, 27, 245, 74, 37, 2, 27, 245, 73, 37, 2, 27, 245, 72, 37, 2,
27, 245, 71, 37, 2, 27, 245, 70, 37, 2, 27, 245, 69, 37, 2, 27, 245, 68,
37, 2, 27, 245, 67, 37, 2, 27, 245, 66, 37, 2, 27, 245, 65, 37, 2, 27,
245, 64, 37, 2, 27, 245, 63, 37, 2, 27, 245, 62, 37, 2, 27, 245, 61, 37,
2, 27, 245, 60, 37, 2, 27, 245, 59, 37, 2, 27, 245, 58, 37, 2, 27, 245,
57, 37, 2, 27, 245, 56, 37, 2, 27, 245, 55, 37, 2, 27, 245, 54, 37, 2,
27, 245, 53, 37, 2, 27, 245, 52, 37, 2, 27, 245, 51, 37, 2, 27, 245, 50,
37, 2, 27, 245, 49, 37, 2, 27, 245, 48, 37, 2, 27, 245, 47, 37, 2, 27,
245, 46, 37, 2, 27, 245, 45, 37, 2, 27, 245, 44, 37, 2, 27, 245, 43, 37,
2, 27, 245, 42, 37, 2, 27, 245, 41, 37, 2, 27, 245, 40, 37, 2, 27, 245,
39, 37, 2, 27, 245, 38, 37, 2, 27, 245, 37, 37, 2, 27, 245, 36, 37, 2,
27, 245, 35, 37, 2, 27, 245, 34, 37, 2, 27, 245, 33, 37, 2, 27, 245, 32,
37, 2, 27, 245, 31, 37, 2, 27, 245, 30, 37, 2, 27, 245, 29, 37, 2, 27,
245, 28, 37, 2, 27, 245, 27, 37, 2, 27, 245, 26, 37, 2, 27, 245, 25, 37,
2, 27, 245, 24, 37, 2, 27, 245, 23, 37, 2, 27, 245, 22, 37, 2, 27, 245,
21, 37, 2, 27, 245, 20, 37, 2, 27, 245, 19, 37, 2, 27, 245, 18, 37, 2,
27, 245, 17, 37, 2, 27, 245, 16, 37, 2, 27, 245, 15, 37, 2, 27, 245, 14,
37, 2, 27, 245, 13, 37, 2, 27, 245, 12, 37, 2, 27, 245, 11, 37, 2, 27,
245, 10, 37, 2, 27, 245, 9, 37, 2, 27, 245, 8, 37, 2, 27, 245, 7, 37, 2,
27, 245, 6, 37, 2, 27, 245, 5, 37, 2, 27, 245, 4, 37, 2, 27, 245, 3, 37,
2, 27, 245, 2, 37, 2, 27, 245, 1, 37, 2, 27, 245, 0, 37, 2, 27, 244, 255,
37, 2, 27, 244, 254, 37, 2, 27, 244, 253, 37, 2, 27, 244, 252, 37, 2, 27,
244, 251, 37, 2, 27, 244, 250, 37, 2, 27, 244, 249, 37, 2, 27, 244, 248,
37, 2, 27, 244, 247, 37, 2, 27, 244, 246, 37, 2, 27, 244, 245, 37, 2, 27,
244, 244, 37, 2, 27, 244, 243, 37, 2, 27, 244, 242, 37, 2, 27, 244, 241,
37, 2, 27, 244, 240, 37, 2, 27, 244, 239, 37, 2, 27, 244, 238, 37, 2, 27,
244, 237, 37, 2, 27, 244, 236, 37, 2, 27, 244, 235, 37, 2, 27, 244, 234,
37, 2, 27, 244, 233, 37, 2, 27, 244, 232, 37, 2, 27, 244, 231, 37, 2, 27,
244, 230, 37, 2, 27, 244, 229, 37, 2, 27, 244, 228, 37, 2, 27, 244, 227,
37, 2, 27, 244, 226, 37, 2, 27, 244, 225, 37, 2, 27, 244, 224, 37, 2, 27,
244, 223, 37, 2, 27, 244, 222, 37, 2, 27, 244, 221, 37, 2, 27, 244, 220,
37, 2, 27, 244, 219, 37, 2, 27, 244, 218, 37, 2, 27, 244, 217, 37, 2, 27,
244, 216, 37, 2, 27, 244, 215, 37, 2, 27, 244, 214, 37, 2, 27, 244, 213,
37, 2, 27, 244, 212, 37, 2, 27, 244, 211, 37, 2, 27, 244, 210, 37, 2, 27,
244, 209, 37, 2, 27, 244, 208, 37, 2, 27, 244, 207, 37, 2, 27, 244, 206,
37, 2, 27, 244, 205, 37, 2, 27, 244, 204, 37, 2, 27, 244, 203, 37, 2, 27,
244, 202, 37, 2, 27, 244, 201, 37, 2, 27, 244, 200, 37, 2, 27, 244, 199,
37, 2, 27, 244, 198, 37, 2, 27, 244, 197, 37, 2, 27, 244, 196, 37, 2, 27,
244, 195, 37, 2, 27, 244, 194, 37, 2, 27, 244, 193, 37, 2, 27, 244, 192,
37, 2, 27, 244, 191, 37, 2, 27, 244, 190, 37, 2, 27, 244, 189, 37, 2, 27,
244, 188, 37, 2, 27, 244, 187, 37, 2, 27, 244, 186, 37, 2, 27, 244, 185,
37, 2, 27, 244, 184, 37, 2, 27, 244, 183, 37, 2, 27, 244, 182, 37, 2, 27,
244, 181, 37, 2, 27, 244, 180, 37, 2, 27, 244, 179, 37, 2, 27, 244, 178,
37, 2, 27, 244, 177, 37, 2, 27, 244, 176, 37, 2, 27, 244, 175, 37, 2, 27,
244, 174, 37, 2, 27, 244, 173, 37, 2, 27, 244, 172, 37, 2, 27, 244, 171,
37, 2, 27, 244, 170, 37, 2, 27, 244, 169, 37, 2, 27, 244, 168, 37, 2, 27,
244, 167, 37, 2, 27, 244, 166, 37, 2, 27, 244, 165, 37, 2, 27, 244, 164,
37, 2, 27, 244, 163, 37, 2, 27, 244, 162, 37, 2, 27, 244, 161, 37, 2, 27,
244, 160, 37, 2, 27, 244, 159, 37, 2, 27, 244, 158, 37, 2, 27, 244, 157,
37, 2, 27, 244, 156, 37, 2, 27, 244, 155, 37, 2, 27, 244, 154, 37, 2, 27,
244, 153, 37, 2, 27, 244, 152, 37, 2, 27, 244, 151, 37, 2, 27, 244, 150,
37, 2, 27, 244, 149, 37, 2, 27, 244, 148, 37, 2, 27, 244, 147, 37, 2, 27,
244, 146, 37, 2, 27, 244, 145, 37, 2, 27, 244, 144, 37, 2, 27, 244, 143,
37, 2, 27, 244, 142, 37, 2, 27, 244, 141, 75, 1, 250, 112, 71, 229, 140,
1, 250, 112, 193, 69, 59, 1, 255, 33, 59, 1, 255, 32, 59, 1, 255, 31, 59,
1, 255, 27, 59, 1, 228, 96, 59, 1, 228, 95, 59, 1, 228, 94, 59, 1, 228,
93, 59, 1, 197, 182, 59, 1, 197, 181, 59, 1, 197, 180, 59, 1, 197, 179,
59, 1, 197, 178, 59, 1, 234, 251, 59, 1, 234, 250, 59, 1, 234, 249, 59,
1, 234, 248, 59, 1, 234, 247, 59, 1, 212, 114, 59, 1, 212, 113, 59, 1,
212, 112, 59, 1, 222, 173, 59, 1, 222, 170, 59, 1, 222, 169, 59, 1, 222,
168, 59, 1, 222, 167, 59, 1, 222, 166, 59, 1, 222, 165, 59, 1, 222, 164,
59, 1, 222, 163, 59, 1, 222, 172, 59, 1, 222, 171, 59, 1, 222, 162, 59,
1, 221, 203, 59, 1, 221, 202, 59, 1, 221, 201, 59, 1, 221, 200, 59, 1,
221, 199, 59, 1, 221, 198, 59, 1, 221, 197, 59, 1, 221, 196, 59, 1, 221,
32, 59, 1, 221, 31, 59, 1, 221, 30, 59, 1, 221, 29, 59, 1, 221, 28, 59,
1, 221, 27, 59, 1, 221, 26, 59, 1, 222, 56, 59, 1, 222, 55, 59, 1, 222,
54, 59, 1, 222, 53, 59, 1, 222, 52, 59, 1, 222, 51, 59, 1, 221, 112, 59,
1, 221, 111, 59, 1, 221, 110, 59, 1, 221, 109, 59, 1, 206, 100, 59, 1,
206, 99, 59, 1, 206, 98, 59, 1, 206, 97, 59, 1, 206, 96, 59, 1, 206, 95,
59, 1, 206, 94, 59, 1, 206, 93, 59, 1, 203, 124, 59, 1, 203, 123, 59, 1,
203, 122, 59, 1, 203, 121, 59, 1, 203, 120, 59, 1, 203, 119, 59, 1, 201,
183, 59, 1, 201, 182, 59, 1, 201, 181, 59, 1, 201, 180, 59, 1, 201, 179,
59, 1, 201, 178, 59, 1, 201, 177, 59, 1, 201, 176, 59, 1, 205, 222, 59,
1, 205, 221, 59, 1, 205, 220, 59, 1, 205, 219, 59, 1, 205, 218, 59, 1,
202, 211, 59, 1, 202, 210, 59, 1, 202, 209, 59, 1, 202, 208, 59, 1, 202,
207, 59, 1, 202, 206, 59, 1, 202, 205, 59, 1, 200, 180, 59, 1, 200, 179,
59, 1, 200, 178, 59, 1, 200, 177, 59, 1, 199, 127, 59, 1, 199, 126, 59,
1, 199, 125, 59, 1, 199, 124, 59, 1, 199, 123, 59, 1, 199, 122, 59, 1,
199, 121, 59, 1, 198, 44, 59, 1, 198, 43, 59, 1, 198, 42, 59, 1, 198, 41,
59, 1, 198, 40, 59, 1, 200, 78, 59, 1, 200, 77, 59, 1, 200, 76, 59, 1,
200, 75, 59, 1, 200, 74, 59, 1, 200, 73, 59, 1, 200, 72, 59, 1, 200, 71,
59, 1, 200, 70, 59, 1, 199, 36, 59, 1, 199, 35, 59, 1, 199, 34, 59, 1,
199, 33, 59, 1, 199, 32, 59, 1, 199, 31, 59, 1, 199, 30, 59, 1, 215, 96,
59, 1, 215, 95, 59, 1, 215, 94, 59, 1, 215, 93, 59, 1, 215, 92, 59, 1,
215, 91, 59, 1, 215, 90, 59, 1, 215, 89, 59, 1, 215, 88, 59, 1, 214, 59,
59, 1, 214, 58, 59, 1, 214, 57, 59, 1, 214, 56, 59, 1, 214, 55, 59, 1,
214, 54, 59, 1, 214, 53, 59, 1, 214, 52, 59, 1, 213, 21, 59, 1, 213, 20,
59, 1, 213, 19, 59, 1, 214, 213, 59, 1, 214, 212, 59, 1, 214, 211, 59, 1,
214, 210, 59, 1, 214, 209, 59, 1, 214, 208, 59, 1, 214, 207, 59, 1, 213,
141, 59, 1, 213, 140, 59, 1, 213, 139, 59, 1, 213, 138, 59, 1, 213, 137,
59, 1, 230, 112, 59, 1, 230, 109, 59, 1, 230, 108, 59, 1, 230, 107, 59,
1, 230, 106, 59, 1, 230, 105, 59, 1, 230, 104, 59, 1, 230, 103, 59, 1,
230, 102, 59, 1, 230, 111, 59, 1, 230, 110, 59, 1, 229, 177, 59, 1, 229,
176, 59, 1, 229, 175, 59, 1, 229, 174, 59, 1, 229, 173, 59, 1, 229, 172,
59, 1, 229, 171, 59, 1, 228, 180, 59, 1, 228, 179, 59, 1, 228, 178, 59,
1, 229, 254, 59, 1, 229, 253, 59, 1, 229, 252, 59, 1, 229, 251, 59, 1,
229, 250, 59, 1, 229, 249, 59, 1, 229, 248, 59, 1, 229, 42, 59, 1, 229,
41, 59, 1, 229, 40, 59, 1, 229, 39, 59, 1, 229, 38, 59, 1, 229, 37, 59,
1, 229, 36, 59, 1, 229, 35, 59, 1, 217, 227, 59, 1, 217, 226, 59, 1, 217,
225, 59, 1, 217, 224, 59, 1, 217, 223, 59, 1, 217, 222, 59, 1, 217, 221,
59, 1, 216, 174, 59, 1, 216, 173, 59, 1, 216, 172, 59, 1, 216, 171, 59,
1, 216, 170, 59, 1, 216, 169, 59, 1, 216, 168, 59, 1, 215, 240, 59, 1,
215, 239, 59, 1, 215, 238, 59, 1, 215, 237, 59, 1, 217, 47, 59, 1, 217,
46, 59, 1, 217, 45, 59, 1, 216, 90, 59, 1, 216, 89, 59, 1, 216, 88, 59,
1, 216, 87, 59, 1, 216, 86, 59, 1, 216, 85, 59, 1, 193, 137, 59, 1, 193,
136, 59, 1, 193, 135, 59, 1, 193, 134, 59, 1, 193, 133, 59, 1, 193, 130,
59, 1, 192, 213, 59, 1, 192, 212, 59, 1, 192, 211, 59, 1, 192, 210, 59,
1, 193, 0, 59, 1, 192, 255, 59, 1, 192, 254, 59, 1, 192, 253, 59, 1, 192,
252, 59, 1, 192, 251, 59, 1, 208, 75, 59, 1, 208, 74, 59, 1, 208, 73, 59,
1, 208, 72, 59, 1, 207, 150, 59, 1, 207, 149, 59, 1, 207, 148, 59, 1,
207, 147, 59, 1, 207, 146, 59, 1, 207, 145, 59, 1, 207, 144, 59, 1, 206,
217, 59, 1, 206, 216, 59, 1, 206, 215, 59, 1, 206, 214, 59, 1, 206, 213,
59, 1, 206, 212, 59, 1, 208, 6, 59, 1, 208, 5, 59, 1, 208, 4, 59, 1, 208,
3, 59, 1, 207, 54, 59, 1, 207, 53, 59, 1, 207, 52, 59, 1, 207, 51, 59, 1,
207, 50, 59, 1, 207, 49, 59, 1, 194, 168, 59, 1, 194, 167, 59, 1, 194,
166, 59, 1, 194, 165, 59, 1, 194, 164, 59, 1, 194, 71, 59, 1, 194, 70,
59, 1, 194, 69, 59, 1, 194, 68, 59, 1, 194, 67, 59, 1, 194, 110, 59, 1,
194, 109, 59, 1, 194, 108, 59, 1, 194, 107, 59, 1, 194, 35, 59, 1, 194,
34, 59, 1, 194, 33, 59, 1, 194, 32, 59, 1, 194, 31, 59, 1, 194, 30, 59,
1, 194, 29, 59, 1, 215, 148, 59, 1, 215, 147, 229, 140, 1, 2, 194, 72,
229, 140, 1, 2, 194, 111, 229, 140, 1, 2, 194, 36, 75, 1, 2, 194, 72, 75,
1, 2, 194, 111, 75, 1, 2, 194, 36, 75, 1, 2, 215, 151, 45, 244, 140, 45,
244, 139, 45, 244, 138, 45, 244, 137, 45, 244, 136, 45, 244, 135, 45,
244, 134, 45, 244, 133, 45, 244, 132, 45, 244, 131, 45, 244, 130, 45,
244, 129, 45, 244, 128, 45, 244, 127, 45, 244, 126, 45, 244, 125, 45,
244, 124, 45, 244, 123, 45, 244, 122, 45, 244, 121, 45, 244, 120, 45,
244, 119, 45, 244, 118, 45, 244, 117, 45, 244, 116, 45, 244, 115, 45,
244, 114, 45, 244, 113, 45, 244, 112, 45, 244, 111, 45, 244, 110, 45,
244, 109, 45, 244, 108, 45, 244, 107, 45, 244, 106, 45, 244, 105, 45,
244, 104, 45, 244, 103, 45, 244, 102, 45, 244, 101, 45, 244, 100, 45,
244, 99, 45, 244, 98, 45, 244, 97, 45, 244, 96, 45, 244, 95, 45, 244, 94,
45, 244, 93, 45, 244, 92, 45, 244, 91, 45, 244, 90, 45, 244, 89, 45, 244,
88, 45, 244, 87, 45, 244, 86, 45, 244, 85, 45, 244, 84, 45, 244, 83, 45,
244, 82, 45, 244, 81, 45, 244, 80, 45, 244, 79, 45, 244, 78, 45, 244, 77,
45, 244, 76, 45, 244, 75, 45, 244, 74, 45, 244, 73, 45, 244, 72, 45, 244,
71, 45, 244, 70, 45, 244, 69, 45, 244, 68, 45, 244, 67, 45, 244, 66, 45,
244, 65, 45, 244, 64, 45, 244, 63, 45, 244, 62, 45, 244, 61, 45, 244, 60,
45, 244, 59, 45, 244, 58, 45, 244, 57, 45, 244, 56, 45, 244, 55, 45, 244,
54, 45, 244, 53, 45, 244, 52, 45, 244, 51, 45, 244, 50, 45, 244, 49, 45,
244, 48, 45, 244, 47, 45, 244, 46, 45, 244, 45, 45, 244, 44, 45, 244, 43,
45, 244, 42, 45, 244, 41, 45, 244, 40, 45, 244, 39, 45, 244, 38, 45, 244,
37, 45, 244, 36, 45, 244, 35, 45, 244, 34, 45, 244, 33, 45, 244, 32, 45,
244, 31, 45, 244, 30, 45, 244, 29, 45, 244, 28, 45, 244, 27, 45, 244, 26,
45, 244, 25, 45, 244, 24, 45, 244, 23, 45, 244, 22, 45, 244, 21, 45, 244,
20, 45, 244, 19, 45, 244, 18, 45, 244, 17, 45, 244, 16, 45, 244, 15, 45,
244, 14, 45, 244, 13, 45, 244, 12, 45, 244, 11, 45, 244, 10, 45, 244, 9,
45, 244, 8, 45, 244, 7, 45, 244, 6, 45, 244, 5, 45, 244, 4, 45, 244, 3,
45, 244, 2, 45, 244, 1, 45, 244, 0, 45, 243, 255, 45, 243, 254, 45, 243,
253, 45, 243, 252, 45, 243, 251, 45, 243, 250, 45, 243, 249, 45, 243,
248, 45, 243, 247, 45, 243, 246, 45, 243, 245, 45, 243, 244, 45, 243,
243, 45, 243, 242, 45, 243, 241, 45, 243, 240, 45, 243, 239, 45, 243,
238, 45, 243, 237, 45, 243, 236, 45, 243, 235, 45, 243, 234, 45, 243,
233, 45, 243, 232, 45, 243, 231, 45, 243, 230, 45, 243, 229, 45, 243,
228, 45, 243, 227, 45, 243, 226, 45, 243, 225, 45, 243, 224, 45, 243,
223, 45, 243, 222, 45, 243, 221, 45, 243, 220, 45, 243, 219, 45, 243,
218, 45, 243, 217, 45, 243, 216, 45, 243, 215, 45, 243, 214, 45, 243,
213, 45, 243, 212, 45, 243, 211, 45, 243, 210, 45, 243, 209, 45, 243,
208, 45, 243, 207, 45, 243, 206, 45, 243, 205, 45, 243, 204, 45, 243,
203, 45, 243, 202, 45, 243, 201, 45, 243, 200, 45, 243, 199, 45, 243,
198, 45, 243, 197, 45, 243, 196, 45, 243, 195, 45, 243, 194, 45, 243,
193, 45, 243, 192, 45, 243, 191, 45, 243, 190, 45, 243, 189, 45, 243,
188, 45, 243, 187, 45, 243, 186, 45, 243, 185, 45, 243, 184, 45, 243,
183, 45, 243, 182, 45, 243, 181, 45, 243, 180, 45, 243, 179, 45, 243,
178, 45, 243, 177, 45, 243, 176, 45, 243, 175, 45, 243, 174, 45, 243,
173, 45, 243, 172, 45, 243, 171, 45, 243, 170, 45, 243, 169, 45, 243,
168, 45, 243, 167, 45, 243, 166, 45, 243, 165, 45, 243, 164, 45, 243,
163, 45, 243, 162, 45, 243, 161, 45, 243, 160, 45, 243, 159, 45, 243,
158, 45, 243, 157, 45, 243, 156, 45, 243, 155, 45, 243, 154, 45, 243,
153, 45, 243, 152, 45, 243, 151, 45, 243, 150, 45, 243, 149, 45, 243,
148, 45, 243, 147, 45, 243, 146, 45, 243, 145, 45, 243, 144, 45, 243,
143, 45, 243, 142, 45, 243, 141, 45, 243, 140, 45, 243, 139, 45, 243,
138, 45, 243, 137, 45, 243, 136, 45, 243, 135, 45, 243, 134, 45, 243,
133, 45, 243, 132, 45, 243, 131, 45, 243, 130, 45, 243, 129, 45, 243,
128, 45, 243, 127, 45, 243, 126, 45, 243, 125, 45, 243, 124, 45, 243,
123, 45, 243, 122, 45, 243, 121, 45, 243, 120, 45, 243, 119, 45, 243,
118, 45, 243, 117, 45, 243, 116, 45, 243, 115, 45, 243, 114, 45, 243,
113, 45, 243, 112, 45, 243, 111, 45, 243, 110, 45, 243, 109, 45, 243,
108, 45, 243, 107, 45, 243, 106, 45, 243, 105, 45, 243, 104, 45, 243,
103, 45, 243, 102, 45, 243, 101, 45, 243, 100, 45, 243, 99, 45, 243, 98,
45, 243, 97, 45, 243, 96, 45, 243, 95, 45, 243, 94, 45, 243, 93, 45, 243,
92, 45, 243, 91, 45, 243, 90, 45, 243, 89, 45, 243, 88, 45, 243, 87, 45,
243, 86, 45, 243, 85, 45, 243, 84, 45, 243, 83, 45, 243, 82, 45, 243, 81,
45, 243, 80, 45, 243, 79, 45, 243, 78, 45, 243, 77, 45, 243, 76, 45, 243,
75, 45, 243, 74, 45, 243, 73, 45, 243, 72, 45, 243, 71, 45, 243, 70, 45,
243, 69, 45, 243, 68, 45, 243, 67, 45, 243, 66, 45, 243, 65, 45, 243, 64,
45, 243, 63, 45, 243, 62, 45, 243, 61, 45, 243, 60, 45, 243, 59, 45, 243,
58, 45, 243, 57, 45, 243, 56, 45, 243, 55, 45, 243, 54, 45, 243, 53, 45,
243, 52, 45, 243, 51, 45, 243, 50, 45, 243, 49, 45, 243, 48, 45, 243, 47,
45, 243, 46, 45, 243, 45, 45, 243, 44, 45, 243, 43, 45, 243, 42, 45, 243,
41, 45, 243, 40, 45, 243, 39, 45, 243, 38, 45, 243, 37, 45, 243, 36, 45,
243, 35, 45, 243, 34, 45, 243, 33, 45, 243, 32, 45, 243, 31, 45, 243, 30,
45, 243, 29, 45, 243, 28, 45, 243, 27, 45, 243, 26, 45, 243, 25, 45, 243,
24, 45, 243, 23, 45, 243, 22, 45, 243, 21, 45, 243, 20, 45, 243, 19, 45,
243, 18, 45, 243, 17, 45, 243, 16, 45, 243, 15, 45, 243, 14, 45, 243, 13,
45, 243, 12, 45, 243, 11, 45, 243, 10, 45, 243, 9, 45, 243, 8, 45, 243,
7, 45, 243, 6, 45, 243, 5, 45, 243, 4, 45, 243, 3, 45, 243, 2, 45, 243,
1, 121, 1, 230, 124, 121, 1, 193, 223, 121, 1, 211, 93, 121, 1, 200, 228,
121, 1, 233, 163, 121, 1, 222, 184, 121, 1, 165, 121, 1, 249, 226, 121,
1, 238, 95, 121, 1, 196, 236, 121, 1, 232, 44, 121, 1, 150, 121, 1, 211,
94, 215, 151, 121, 1, 238, 96, 206, 158, 121, 1, 233, 164, 215, 151, 121,
1, 222, 185, 218, 236, 121, 1, 208, 112, 206, 158, 121, 1, 199, 242, 121,
1, 202, 246, 237, 41, 121, 1, 237, 41, 121, 1, 221, 140, 121, 1, 202,
246, 223, 65, 121, 1, 229, 132, 121, 1, 219, 223, 121, 1, 207, 157, 121,
1, 218, 236, 121, 1, 215, 151, 121, 1, 223, 65, 121, 1, 206, 158, 121, 1,
218, 237, 215, 151, 121, 1, 215, 152, 218, 236, 121, 1, 223, 66, 218,
236, 121, 1, 206, 159, 223, 65, 121, 1, 218, 237, 4, 236, 114, 121, 1,
215, 152, 4, 236, 114, 121, 1, 223, 66, 4, 236, 114, 121, 1, 223, 66, 4,
236, 112, 223, 146, 26, 58, 121, 1, 206, 159, 4, 236, 114, 121, 1, 206,
159, 4, 78, 63, 121, 1, 218, 237, 206, 158, 121, 1, 215, 152, 206, 158,
121, 1, 223, 66, 206, 158, 121, 1, 206, 159, 206, 158, 121, 1, 218, 237,
215, 152, 206, 158, 121, 1, 215, 152, 218, 237, 206, 158, 121, 1, 223,
66, 218, 237, 206, 158, 121, 1, 206, 159, 223, 66, 206, 158, 121, 1, 223,
66, 206, 159, 4, 236, 114, 121, 1, 223, 66, 215, 151, 121, 1, 223, 66,
215, 152, 206, 158, 121, 1, 206, 159, 200, 228, 121, 1, 206, 159, 200,
229, 150, 121, 1, 206, 159, 211, 93, 121, 1, 206, 159, 211, 94, 150, 121,
1, 200, 229, 206, 158, 121, 1, 200, 229, 208, 112, 206, 158, 121, 1, 194,
202, 121, 1, 194, 83, 121, 1, 194, 203, 150, 121, 1, 206, 159, 215, 151,
121, 1, 206, 159, 218, 236, 121, 1, 222, 185, 208, 112, 206, 158, 121, 1,
232, 45, 208, 112, 206, 158, 121, 1, 206, 159, 222, 184, 121, 1, 206,
159, 222, 185, 150, 121, 1, 64, 121, 1, 202, 246, 211, 106, 121, 1, 212,
26, 121, 1, 74, 121, 1, 250, 164, 121, 1, 70, 121, 1, 71, 121, 1, 223,
251, 121, 1, 203, 195, 70, 121, 1, 197, 95, 121, 1, 234, 171, 121, 1,
202, 246, 234, 157, 121, 1, 207, 29, 70, 121, 1, 202, 246, 234, 171, 121,
1, 184, 70, 121, 1, 193, 69, 121, 1, 68, 121, 1, 233, 230, 121, 1, 193,
171, 121, 1, 124, 215, 151, 121, 1, 184, 68, 121, 1, 207, 29, 68, 121, 1,
197, 97, 121, 1, 202, 246, 68, 121, 1, 211, 191, 121, 1, 211, 106, 121,
1, 211, 130, 121, 1, 194, 169, 121, 1, 194, 36, 121, 1, 194, 72, 121, 1,
194, 98, 121, 1, 194, 2, 121, 1, 215, 49, 68, 121, 1, 215, 49, 74, 121,
1, 215, 49, 70, 121, 1, 215, 49, 64, 121, 1, 210, 122, 250, 224, 121, 1,
210, 122, 250, 241, 121, 1, 202, 246, 234, 88, 121, 1, 202, 246, 250,
224, 121, 1, 202, 246, 211, 211, 121, 1, 118, 218, 236, 121, 251, 87, 46,
229, 5, 205, 213, 121, 251, 87, 216, 162, 229, 5, 205, 213, 121, 251, 87,
51, 229, 5, 205, 213, 121, 251, 87, 132, 84, 205, 213, 121, 251, 87, 216,
162, 84, 205, 213, 121, 251, 87, 139, 84, 205, 213, 121, 251, 87, 250,
14, 205, 213, 121, 251, 87, 250, 14, 220, 19, 205, 213, 121, 251, 87,
250, 14, 200, 120, 121, 251, 87, 250, 14, 200, 147, 121, 251, 87, 250,
14, 234, 253, 128, 121, 251, 87, 250, 14, 228, 97, 128, 121, 251, 87,
250, 14, 200, 121, 128, 121, 251, 87, 139, 251, 129, 121, 251, 87, 139,
199, 107, 251, 129, 121, 251, 87, 139, 230, 210, 121, 251, 87, 139, 184,
230, 210, 121, 251, 87, 139, 236, 114, 121, 251, 87, 139, 242, 130, 121,
251, 87, 139, 219, 175, 121, 251, 87, 139, 194, 124, 121, 251, 87, 139,
196, 105, 121, 251, 87, 132, 251, 129, 121, 251, 87, 132, 199, 107, 251,
129, 121, 251, 87, 132, 230, 210, 121, 251, 87, 132, 184, 230, 210, 121,
251, 87, 132, 236, 114, 121, 251, 87, 132, 242, 130, 121, 251, 87, 132,
219, 175, 121, 251, 87, 132, 194, 124, 121, 251, 87, 132, 196, 105, 121,
251, 87, 132, 54, 121, 3, 185, 4, 238, 183, 121, 199, 200, 1, 205, 189,
121, 55, 77, 121, 209, 38, 242, 198, 232, 71, 201, 238, 203, 182, 232,
135, 1, 211, 113, 203, 182, 232, 135, 238, 249, 211, 113, 203, 182, 232,
135, 142, 201, 253, 203, 182, 232, 135, 130, 201, 253, 69, 35, 16, 209,
55, 69, 35, 16, 237, 187, 69, 35, 16, 210, 126, 69, 35, 16, 211, 102,
234, 128, 69, 35, 16, 211, 102, 236, 210, 69, 35, 16, 196, 141, 234, 128,
69, 35, 16, 196, 141, 236, 210, 69, 35, 16, 222, 78, 69, 35, 16, 200,
245, 69, 35, 16, 210, 237, 69, 35, 16, 192, 220, 69, 35, 16, 192, 221,
236, 210, 69, 35, 16, 221, 51, 69, 35, 16, 250, 159, 234, 128, 69, 35,
16, 233, 198, 234, 128, 69, 35, 16, 200, 43, 69, 35, 16, 222, 26, 69, 35,
16, 250, 148, 69, 35, 16, 250, 149, 236, 210, 69, 35, 16, 200, 252, 69,
35, 16, 199, 179, 69, 35, 16, 211, 222, 250, 110, 69, 35, 16, 230, 237,
250, 110, 69, 35, 16, 209, 54, 69, 35, 16, 246, 108, 69, 35, 16, 196,
130, 69, 35, 16, 223, 87, 250, 110, 69, 35, 16, 222, 28, 250, 110, 69,
35, 16, 222, 27, 250, 110, 69, 35, 16, 206, 3, 69, 35, 16, 210, 227, 69,
35, 16, 202, 7, 250, 152, 69, 35, 16, 211, 101, 250, 110, 69, 35, 16,
196, 140, 250, 110, 69, 35, 16, 250, 153, 250, 110, 69, 35, 16, 250, 146,
69, 35, 16, 221, 130, 69, 35, 16, 207, 164, 69, 35, 16, 210, 49, 250,
110, 69, 35, 16, 199, 80, 69, 35, 16, 250, 220, 69, 35, 16, 205, 192, 69,
35, 16, 201, 0, 250, 110, 69, 35, 16, 201, 0, 216, 241, 202, 5, 69, 35,
16, 211, 96, 250, 110, 69, 35, 16, 199, 218, 69, 35, 16, 220, 6, 69, 35,
16, 235, 20, 69, 35, 16, 198, 187, 69, 35, 16, 200, 11, 69, 35, 16, 221,
54, 69, 35, 16, 250, 159, 233, 198, 214, 192, 69, 35, 16, 232, 79, 250,
110, 69, 35, 16, 223, 203, 69, 35, 16, 198, 156, 250, 110, 69, 35, 16,
222, 81, 198, 155, 69, 35, 16, 210, 156, 69, 35, 16, 209, 59, 69, 35, 16,
221, 89, 69, 35, 16, 242, 180, 250, 110, 69, 35, 16, 208, 27, 69, 35, 16,
210, 240, 250, 110, 69, 35, 16, 210, 238, 250, 110, 69, 35, 16, 228, 47,
69, 35, 16, 215, 60, 69, 35, 16, 210, 104, 69, 35, 16, 221, 90, 251, 3,
69, 35, 16, 198, 156, 251, 3, 69, 35, 16, 201, 232, 69, 35, 16, 230, 196,
69, 35, 16, 223, 87, 214, 192, 69, 35, 16, 211, 222, 214, 192, 69, 35,
16, 211, 102, 214, 192, 69, 35, 16, 210, 103, 69, 35, 16, 221, 74, 69,
35, 16, 210, 102, 69, 35, 16, 221, 53, 69, 35, 16, 210, 157, 214, 192,
69, 35, 16, 222, 27, 214, 193, 250, 190, 69, 35, 16, 222, 28, 214, 193,
250, 190, 69, 35, 16, 192, 218, 69, 35, 16, 250, 149, 214, 192, 69, 35,
16, 250, 150, 200, 253, 214, 192, 69, 35, 16, 192, 219, 69, 35, 16, 221,
52, 69, 35, 16, 234, 123, 69, 35, 16, 246, 109, 69, 35, 16, 216, 133,
223, 86, 69, 35, 16, 196, 141, 214, 192, 69, 35, 16, 210, 49, 214, 192,
69, 35, 16, 209, 60, 214, 192, 69, 35, 16, 211, 218, 69, 35, 16, 250,
177, 69, 35, 16, 218, 247, 69, 35, 16, 210, 238, 214, 192, 69, 35, 16,
210, 240, 214, 192, 69, 35, 16, 233, 236, 210, 239, 69, 35, 16, 220, 206,
69, 35, 16, 250, 178, 69, 35, 16, 198, 156, 214, 192, 69, 35, 16, 234,
126, 69, 35, 16, 201, 0, 214, 192, 69, 35, 16, 200, 246, 69, 35, 16, 242,
180, 214, 192, 69, 35, 16, 234, 38, 69, 35, 16, 205, 193, 214, 192, 69,
35, 16, 193, 188, 221, 130, 69, 35, 16, 198, 153, 69, 35, 16, 209, 61,
69, 35, 16, 198, 157, 69, 35, 16, 198, 154, 69, 35, 16, 209, 58, 69, 35,
16, 198, 152, 69, 35, 16, 209, 57, 69, 35, 16, 230, 236, 69, 35, 16, 250,
102, 69, 35, 16, 233, 236, 250, 102, 69, 35, 16, 211, 96, 214, 192, 69,
35, 16, 199, 217, 233, 249, 69, 35, 16, 199, 217, 233, 197, 69, 35, 16,
199, 219, 250, 154, 69, 35, 16, 199, 211, 222, 136, 250, 145, 69, 35, 16,
222, 80, 69, 35, 16, 234, 75, 69, 35, 16, 193, 27, 222, 77, 69, 35, 16,
193, 27, 250, 190, 69, 35, 16, 202, 6, 69, 35, 16, 221, 131, 250, 190,
69, 35, 16, 236, 211, 250, 110, 69, 35, 16, 221, 55, 250, 110, 69, 35,
16, 221, 55, 251, 3, 69, 35, 16, 221, 55, 214, 192, 69, 35, 16, 250, 153,
214, 192, 69, 35, 16, 250, 155, 69, 35, 16, 236, 210, 69, 35, 16, 198,
168, 69, 35, 16, 200, 1, 69, 35, 16, 221, 78, 69, 35, 16, 220, 11, 234,
68, 242, 170, 69, 35, 16, 220, 11, 235, 21, 242, 171, 69, 35, 16, 220,
11, 198, 171, 242, 171, 69, 35, 16, 220, 11, 200, 13, 242, 171, 69, 35,
16, 220, 11, 223, 198, 242, 170, 69, 35, 16, 230, 237, 214, 193, 250,
190, 69, 35, 16, 230, 237, 210, 228, 250, 98, 69, 35, 16, 230, 237, 210,
228, 237, 45, 69, 35, 16, 236, 235, 69, 35, 16, 236, 236, 210, 228, 250,
99, 222, 77, 69, 35, 16, 236, 236, 210, 228, 250, 99, 250, 190, 69, 35,
16, 236, 236, 210, 228, 237, 45, 69, 35, 16, 198, 176, 69, 35, 16, 250,
103, 69, 35, 16, 223, 205, 69, 35, 16, 237, 2, 69, 35, 16, 251, 74, 209,
181, 250, 104, 69, 35, 16, 251, 74, 250, 101, 69, 35, 16, 251, 74, 250,
104, 69, 35, 16, 251, 74, 216, 235, 69, 35, 16, 251, 74, 216, 246, 69,
35, 16, 251, 74, 230, 238, 69, 35, 16, 251, 74, 230, 235, 69, 35, 16,
251, 74, 209, 181, 230, 238, 69, 35, 16, 217, 116, 209, 67, 228, 45, 69,
35, 16, 217, 116, 251, 5, 209, 67, 228, 45, 69, 35, 16, 217, 116, 237,
44, 228, 45, 69, 35, 16, 217, 116, 251, 5, 237, 44, 228, 45, 69, 35, 16,
217, 116, 198, 163, 228, 45, 69, 35, 16, 217, 116, 198, 177, 69, 35, 16,
217, 116, 200, 6, 228, 45, 69, 35, 16, 217, 116, 200, 6, 220, 15, 228,
45, 69, 35, 16, 217, 116, 220, 15, 228, 45, 69, 35, 16, 217, 116, 209,
229, 228, 45, 69, 35, 16, 223, 94, 200, 36, 228, 46, 69, 35, 16, 250,
150, 200, 36, 228, 46, 69, 35, 16, 233, 67, 200, 3, 69, 35, 16, 233, 67,
216, 46, 69, 35, 16, 233, 67, 236, 241, 69, 35, 16, 217, 116, 196, 134,
228, 45, 69, 35, 16, 217, 116, 209, 66, 228, 45, 69, 35, 16, 217, 116,
209, 229, 200, 6, 228, 45, 69, 35, 16, 230, 232, 215, 152, 250, 154, 69,
35, 16, 230, 232, 215, 152, 236, 209, 69, 35, 16, 234, 86, 222, 136, 232,
79, 195, 231, 69, 35, 16, 223, 204, 69, 35, 16, 223, 202, 69, 35, 16,
232, 79, 250, 111, 237, 43, 228, 44, 69, 35, 16, 232, 79, 237, 0, 166,
69, 35, 16, 232, 79, 237, 0, 215, 60, 69, 35, 16, 232, 79, 215, 54, 228,
45, 69, 35, 16, 232, 79, 237, 0, 237, 16, 69, 35, 16, 232, 79, 203, 12,
236, 255, 237, 16, 69, 35, 16, 232, 79, 237, 0, 222, 57, 69, 35, 16, 232,
79, 237, 0, 192, 8, 69, 35, 16, 232, 79, 237, 0, 214, 61, 222, 77, 69,
35, 16, 232, 79, 237, 0, 214, 61, 250, 190, 69, 35, 16, 232, 79, 217,
167, 242, 172, 236, 241, 69, 35, 16, 232, 79, 217, 167, 242, 172, 216,
46, 69, 35, 16, 233, 12, 203, 12, 242, 172, 196, 133, 69, 35, 16, 232,
79, 203, 12, 242, 172, 201, 1, 69, 35, 16, 232, 79, 214, 195, 69, 35, 16,
242, 173, 191, 231, 69, 35, 16, 242, 173, 221, 129, 69, 35, 16, 242, 173,
202, 151, 69, 35, 16, 232, 79, 228, 97, 193, 26, 200, 7, 69, 35, 16, 232,
79, 234, 87, 250, 179, 69, 35, 16, 193, 26, 198, 164, 69, 35, 16, 236,
249, 198, 164, 69, 35, 16, 236, 249, 200, 7, 69, 35, 16, 236, 249, 250,
156, 235, 21, 236, 138, 69, 35, 16, 236, 249, 216, 44, 200, 12, 236, 138,
69, 35, 16, 236, 249, 236, 232, 233, 210, 236, 138, 69, 35, 16, 236, 249,
198, 174, 211, 228, 236, 138, 69, 35, 16, 193, 26, 250, 156, 235, 21,
236, 138, 69, 35, 16, 193, 26, 216, 44, 200, 12, 236, 138, 69, 35, 16,
193, 26, 236, 232, 233, 210, 236, 138, 69, 35, 16, 193, 26, 198, 174,
211, 228, 236, 138, 69, 35, 16, 231, 140, 236, 248, 69, 35, 16, 231, 140,
193, 25, 69, 35, 16, 237, 1, 250, 156, 216, 134, 69, 35, 16, 237, 1, 250,
156, 217, 20, 69, 35, 16, 237, 1, 236, 210, 69, 35, 16, 237, 1, 199, 209,
69, 35, 16, 203, 85, 199, 209, 69, 35, 16, 203, 85, 199, 210, 236, 193,
69, 35, 16, 203, 85, 199, 210, 198, 165, 69, 35, 16, 203, 85, 199, 210,
199, 255, 69, 35, 16, 203, 85, 250, 70, 69, 35, 16, 203, 85, 250, 71,
236, 193, 69, 35, 16, 203, 85, 250, 71, 198, 165, 69, 35, 16, 203, 85,
250, 71, 199, 255, 69, 35, 16, 236, 233, 231, 121, 69, 35, 16, 236, 240,
211, 130, 69, 35, 16, 201, 248, 69, 35, 16, 250, 95, 166, 69, 35, 16,
250, 95, 195, 231, 69, 35, 16, 250, 95, 231, 233, 69, 35, 16, 250, 95,
237, 16, 69, 35, 16, 250, 95, 222, 57, 69, 35, 16, 250, 95, 192, 8, 69,
35, 16, 250, 95, 214, 60, 69, 35, 16, 222, 27, 214, 193, 216, 245, 69,
35, 16, 222, 28, 214, 193, 216, 245, 69, 35, 16, 222, 27, 214, 193, 222,
77, 69, 35, 16, 222, 28, 214, 193, 222, 77, 69, 35, 16, 221, 131, 222,
77, 69, 35, 16, 230, 237, 214, 193, 222, 77, 35, 16, 203, 74, 248, 189,
35, 16, 55, 248, 189, 35, 16, 52, 248, 189, 35, 16, 207, 169, 52, 248,
189, 35, 16, 237, 184, 248, 189, 35, 16, 203, 195, 248, 189, 35, 16, 46,
207, 199, 57, 35, 16, 51, 207, 199, 57, 35, 16, 207, 199, 236, 111, 35,
16, 237, 228, 205, 196, 35, 16, 238, 1, 246, 223, 35, 16, 205, 196, 35,
16, 242, 56, 35, 16, 207, 197, 232, 255, 35, 16, 207, 197, 232, 254, 35,
16, 207, 197, 232, 253, 35, 16, 233, 22, 35, 16, 233, 23, 63, 35, 16,
247, 152, 77, 35, 16, 247, 9, 35, 16, 247, 166, 35, 16, 186, 35, 16, 211,
206, 202, 28, 35, 16, 197, 219, 202, 28, 35, 16, 199, 155, 202, 28, 35,
16, 232, 118, 202, 28, 35, 16, 232, 213, 202, 28, 35, 16, 203, 40, 202,
28, 35, 16, 203, 38, 232, 96, 35, 16, 232, 116, 232, 96, 35, 16, 232, 45,
242, 99, 35, 16, 232, 45, 242, 100, 211, 134, 250, 250, 35, 16, 232, 45,
242, 100, 211, 134, 248, 172, 35, 16, 247, 53, 242, 99, 35, 16, 233, 164,
242, 99, 35, 16, 233, 164, 242, 100, 211, 134, 250, 250, 35, 16, 233,
164, 242, 100, 211, 134, 248, 172, 35, 16, 235, 68, 242, 98, 35, 16, 235,
68, 242, 97, 35, 16, 215, 216, 217, 44, 207, 180, 35, 16, 55, 204, 25,
35, 16, 55, 232, 195, 35, 16, 232, 196, 197, 41, 35, 16, 232, 196, 235,
96, 35, 16, 215, 43, 197, 41, 35, 16, 215, 43, 235, 96, 35, 16, 204, 26,
197, 41, 35, 16, 204, 26, 235, 96, 35, 16, 208, 168, 158, 204, 25, 35,
16, 208, 168, 158, 232, 195, 35, 16, 242, 35, 199, 84, 35, 16, 238, 122,
199, 84, 35, 16, 211, 134, 250, 250, 35, 16, 211, 134, 248, 172, 35, 16,
208, 149, 250, 250, 35, 16, 208, 149, 248, 172, 35, 16, 215, 219, 207,
180, 35, 16, 194, 73, 207, 180, 35, 16, 138, 207, 180, 35, 16, 208, 168,
207, 180, 35, 16, 234, 144, 207, 180, 35, 16, 203, 34, 207, 180, 35, 16,
199, 181, 207, 180, 35, 16, 203, 24, 207, 180, 35, 16, 90, 228, 163, 197,
237, 207, 180, 35, 16, 193, 224, 213, 101, 35, 16, 102, 213, 101, 35, 16,
242, 131, 193, 224, 213, 101, 35, 16, 50, 213, 102, 194, 75, 35, 16, 50,
213, 102, 247, 248, 35, 16, 198, 186, 213, 102, 130, 194, 75, 35, 16,
198, 186, 213, 102, 130, 247, 248, 35, 16, 198, 186, 213, 102, 46, 194,
75, 35, 16, 198, 186, 213, 102, 46, 247, 248, 35, 16, 198, 186, 213, 102,
51, 194, 75, 35, 16, 198, 186, 213, 102, 51, 247, 248, 35, 16, 198, 186,
213, 102, 142, 194, 75, 35, 16, 198, 186, 213, 102, 142, 247, 248, 35,
16, 198, 186, 213, 102, 130, 51, 194, 75, 35, 16, 198, 186, 213, 102,
130, 51, 247, 248, 35, 16, 216, 30, 213, 102, 194, 75, 35, 16, 216, 30,
213, 102, 247, 248, 35, 16, 198, 183, 213, 102, 142, 194, 75, 35, 16,
198, 183, 213, 102, 142, 247, 248, 35, 16, 210, 231, 213, 101, 35, 16,
195, 245, 213, 101, 35, 16, 213, 102, 247, 248, 35, 16, 212, 239, 213,
101, 35, 16, 242, 68, 213, 102, 194, 75, 35, 16, 242, 68, 213, 102, 247,
248, 35, 16, 247, 150, 35, 16, 194, 73, 213, 105, 35, 16, 138, 213, 105,
35, 16, 208, 168, 213, 105, 35, 16, 234, 144, 213, 105, 35, 16, 203, 34,
213, 105, 35, 16, 199, 181, 213, 105, 35, 16, 203, 24, 213, 105, 35, 16,
90, 228, 163, 197, 237, 213, 105, 35, 16, 38, 201, 255, 35, 16, 38, 202,
113, 201, 255, 35, 16, 38, 198, 194, 35, 16, 38, 198, 193, 35, 16, 38,
198, 192, 35, 16, 232, 238, 198, 194, 35, 16, 232, 238, 198, 193, 35, 16,
232, 238, 198, 192, 35, 16, 38, 250, 5, 236, 114, 35, 16, 38, 232, 205,
35, 16, 38, 232, 204, 35, 16, 38, 232, 203, 35, 16, 38, 232, 202, 35, 16,
38, 232, 201, 35, 16, 248, 100, 248, 120, 35, 16, 234, 80, 248, 120, 35,
16, 248, 100, 199, 113, 35, 16, 234, 80, 199, 113, 35, 16, 248, 100, 202,
237, 35, 16, 234, 80, 202, 237, 35, 16, 248, 100, 210, 58, 35, 16, 234,
80, 210, 58, 35, 16, 38, 251, 143, 35, 16, 38, 202, 32, 35, 16, 38, 200,
18, 35, 16, 38, 202, 33, 35, 16, 38, 217, 131, 35, 16, 38, 217, 130, 35,
16, 38, 251, 142, 35, 16, 38, 219, 54, 35, 16, 250, 83, 197, 41, 35, 16,
250, 83, 235, 96, 35, 16, 38, 236, 130, 35, 16, 38, 207, 77, 35, 16, 38,
232, 184, 35, 16, 38, 202, 233, 35, 16, 38, 248, 78, 35, 16, 38, 55, 199,
0, 35, 16, 38, 198, 170, 199, 0, 35, 16, 207, 83, 35, 16, 201, 166, 35,
16, 192, 155, 35, 16, 210, 50, 35, 16, 216, 226, 35, 16, 232, 130, 35,
16, 238, 195, 35, 16, 237, 102, 35, 16, 230, 227, 213, 106, 203, 4, 35,
16, 230, 227, 213, 106, 213, 143, 203, 4, 35, 16, 198, 224, 35, 16, 198,
9, 35, 16, 223, 121, 198, 9, 35, 16, 198, 10, 203, 4, 35, 16, 198, 10,
197, 41, 35, 16, 211, 151, 201, 207, 35, 16, 211, 151, 201, 204, 35, 16,
211, 151, 201, 203, 35, 16, 211, 151, 201, 202, 35, 16, 211, 151, 201,
201, 35, 16, 211, 151, 201, 200, 35, 16, 211, 151, 201, 199, 35, 16, 211,
151, 201, 198, 35, 16, 211, 151, 201, 197, 35, 16, 211, 151, 201, 206,
35, 16, 211, 151, 201, 205, 35, 16, 230, 10, 35, 16, 214, 206, 35, 16,
234, 80, 80, 201, 244, 35, 16, 237, 95, 203, 4, 35, 16, 38, 142, 247,
180, 35, 16, 38, 130, 247, 180, 35, 16, 38, 230, 23, 35, 16, 38, 202,
223, 209, 235, 35, 16, 210, 173, 77, 35, 16, 210, 173, 130, 77, 35, 16,
138, 210, 173, 77, 35, 16, 231, 8, 197, 41, 35, 16, 231, 8, 235, 96, 35,
16, 4, 232, 237, 35, 16, 237, 211, 35, 16, 237, 212, 251, 8, 35, 16, 217,
94, 35, 16, 219, 75, 35, 16, 247, 147, 35, 16, 204, 184, 194, 75, 35, 16,
204, 184, 247, 248, 35, 16, 216, 116, 35, 16, 216, 117, 247, 248, 35, 16,
204, 178, 194, 75, 35, 16, 204, 178, 247, 248, 35, 16, 232, 62, 194, 75,
35, 16, 232, 62, 247, 248, 35, 16, 219, 76, 210, 131, 207, 180, 35, 16,
219, 76, 223, 195, 207, 180, 35, 16, 247, 148, 207, 180, 35, 16, 204,
184, 207, 180, 35, 16, 216, 117, 207, 180, 35, 16, 204, 178, 207, 180,
35, 16, 200, 32, 210, 129, 238, 153, 209, 77, 210, 130, 35, 16, 200, 32,
210, 129, 238, 153, 209, 77, 223, 194, 35, 16, 200, 32, 210, 129, 238,
153, 209, 77, 210, 131, 236, 220, 35, 16, 200, 32, 223, 193, 238, 153,
209, 77, 210, 130, 35, 16, 200, 32, 223, 193, 238, 153, 209, 77, 223,
194, 35, 16, 200, 32, 223, 193, 238, 153, 209, 77, 223, 195, 236, 220,
35, 16, 200, 32, 223, 193, 238, 153, 209, 77, 223, 195, 236, 219, 35, 16,
200, 32, 223, 193, 238, 153, 209, 77, 223, 195, 236, 218, 35, 16, 238,
186, 35, 16, 230, 199, 247, 53, 242, 99, 35, 16, 230, 199, 233, 164, 242,
99, 35, 16, 50, 249, 226, 35, 16, 196, 10, 35, 16, 209, 195, 35, 16, 242,
89, 35, 16, 205, 249, 35, 16, 242, 94, 35, 16, 198, 242, 35, 16, 209,
163, 35, 16, 209, 164, 232, 187, 35, 16, 205, 250, 232, 187, 35, 16, 198,
243, 207, 177, 35, 16, 210, 112, 201, 156, 35, 16, 221, 186, 247, 53,
242, 99, 35, 16, 221, 186, 234, 80, 80, 210, 42, 35, 16, 221, 186, 52,
213, 105, 35, 16, 221, 186, 207, 249, 77, 35, 16, 221, 186, 194, 73, 213,
105, 35, 16, 221, 186, 138, 213, 105, 35, 16, 221, 186, 208, 168, 213,
106, 202, 0, 235, 96, 35, 16, 221, 186, 208, 168, 213, 106, 202, 0, 197,
41, 35, 16, 221, 186, 234, 144, 213, 106, 202, 0, 235, 96, 35, 16, 221,
186, 234, 144, 213, 106, 202, 0, 197, 41, 35, 16, 221, 186, 232, 196, 57,
33, 195, 251, 213, 109, 201, 52, 33, 195, 251, 213, 109, 201, 41, 33,
195, 251, 213, 109, 201, 31, 33, 195, 251, 213, 109, 201, 24, 33, 195,
251, 213, 109, 201, 16, 33, 195, 251, 213, 109, 201, 10, 33, 195, 251,
213, 109, 201, 9, 33, 195, 251, 213, 109, 201, 8, 33, 195, 251, 213, 109,
201, 7, 33, 195, 251, 213, 109, 201, 51, 33, 195, 251, 213, 109, 201, 50,
33, 195, 251, 213, 109, 201, 49, 33, 195, 251, 213, 109, 201, 48, 33,
195, 251, 213, 109, 201, 47, 33, 195, 251, 213, 109, 201, 46, 33, 195,
251, 213, 109, 201, 45, 33, 195, 251, 213, 109, 201, 44, 33, 195, 251,
213, 109, 201, 43, 33, 195, 251, 213, 109, 201, 42, 33, 195, 251, 213,
109, 201, 40, 33, 195, 251, 213, 109, 201, 39, 33, 195, 251, 213, 109,
201, 38, 33, 195, 251, 213, 109, 201, 37, 33, 195, 251, 213, 109, 201,
36, 33, 195, 251, 213, 109, 201, 15, 33, 195, 251, 213, 109, 201, 14, 33,
195, 251, 213, 109, 201, 13, 33, 195, 251, 213, 109, 201, 12, 33, 195,
251, 213, 109, 201, 11, 33, 223, 144, 213, 109, 201, 52, 33, 223, 144,
213, 109, 201, 41, 33, 223, 144, 213, 109, 201, 24, 33, 223, 144, 213,
109, 201, 16, 33, 223, 144, 213, 109, 201, 9, 33, 223, 144, 213, 109,
201, 8, 33, 223, 144, 213, 109, 201, 50, 33, 223, 144, 213, 109, 201, 49,
33, 223, 144, 213, 109, 201, 48, 33, 223, 144, 213, 109, 201, 47, 33,
223, 144, 213, 109, 201, 44, 33, 223, 144, 213, 109, 201, 43, 33, 223,
144, 213, 109, 201, 42, 33, 223, 144, 213, 109, 201, 37, 33, 223, 144,
213, 109, 201, 36, 33, 223, 144, 213, 109, 201, 35, 33, 223, 144, 213,
109, 201, 34, 33, 223, 144, 213, 109, 201, 33, 33, 223, 144, 213, 109,
201, 32, 33, 223, 144, 213, 109, 201, 30, 33, 223, 144, 213, 109, 201,
29, 33, 223, 144, 213, 109, 201, 28, 33, 223, 144, 213, 109, 201, 27, 33,
223, 144, 213, 109, 201, 26, 33, 223, 144, 213, 109, 201, 25, 33, 223,
144, 213, 109, 201, 23, 33, 223, 144, 213, 109, 201, 22, 33, 223, 144,
213, 109, 201, 21, 33, 223, 144, 213, 109, 201, 20, 33, 223, 144, 213,
109, 201, 19, 33, 223, 144, 213, 109, 201, 18, 33, 223, 144, 213, 109,
201, 17, 33, 223, 144, 213, 109, 201, 15, 33, 223, 144, 213, 109, 201,
14, 33, 223, 144, 213, 109, 201, 13, 33, 223, 144, 213, 109, 201, 12, 33,
223, 144, 213, 109, 201, 11, 38, 33, 35, 198, 166, 38, 33, 35, 200, 0,
38, 33, 35, 210, 142, 33, 35, 220, 10, 217, 91, 212, 234, 192, 76, 217,
91, 212, 234, 101, 217, 91, 212, 234, 104, 217, 91, 212, 234, 133, 217,
91, 212, 234, 134, 217, 91, 212, 234, 151, 217, 91, 212, 234, 170, 217,
91, 212, 234, 179, 217, 91, 212, 234, 174, 217, 91, 212, 234, 182, 217,
91, 212, 234, 200, 30, 217, 91, 212, 234, 234, 111, 217, 91, 212, 234,
197, 244, 217, 91, 212, 234, 199, 186, 217, 91, 212, 234, 232, 113, 217,
91, 212, 234, 233, 7, 217, 91, 212, 234, 203, 35, 217, 91, 212, 234, 204,
143, 217, 91, 212, 234, 234, 145, 217, 91, 212, 234, 214, 13, 216, 45,
39, 234, 189, 236, 234, 39, 229, 228, 234, 189, 236, 234, 39, 228, 167,
234, 189, 236, 234, 39, 234, 188, 229, 229, 236, 234, 39, 234, 188, 228,
166, 236, 234, 39, 234, 189, 200, 2, 39, 246, 137, 200, 2, 39, 232, 71,
242, 130, 200, 2, 39, 216, 108, 200, 2, 39, 248, 184, 200, 2, 39, 222,
45, 202, 236, 200, 2, 39, 238, 244, 200, 2, 39, 250, 56, 200, 2, 39, 211,
169, 200, 2, 39, 247, 158, 211, 125, 200, 2, 39, 237, 97, 211, 164, 236,
185, 200, 2, 39, 236, 182, 200, 2, 39, 192, 226, 200, 2, 39, 223, 181,
200, 2, 39, 210, 152, 200, 2, 39, 208, 2, 200, 2, 39, 239, 0, 200, 2, 39,
229, 26, 248, 252, 200, 2, 39, 194, 155, 200, 2, 39, 232, 159, 200, 2,
39, 251, 111, 200, 2, 39, 207, 212, 200, 2, 39, 207, 184, 200, 2, 39,
234, 187, 200, 2, 39, 222, 217, 200, 2, 39, 238, 251, 200, 2, 39, 234,
78, 200, 2, 39, 235, 33, 200, 2, 39, 246, 104, 200, 2, 39, 237, 107, 200,
2, 39, 28, 207, 183, 200, 2, 39, 211, 68, 200, 2, 39, 220, 14, 200, 2,
39, 242, 82, 200, 2, 39, 221, 174, 200, 2, 39, 231, 182, 200, 2, 39, 201,
219, 200, 2, 39, 209, 26, 200, 2, 39, 232, 70, 200, 2, 39, 207, 185, 200,
2, 39, 220, 55, 211, 164, 216, 81, 200, 2, 39, 207, 181, 200, 2, 39, 230,
247, 115, 217, 24, 200, 2, 39, 234, 81, 200, 2, 39, 201, 233, 200, 2, 39,
230, 202, 200, 2, 39, 234, 71, 200, 2, 39, 210, 200, 200, 2, 39, 207, 70,
200, 2, 39, 232, 185, 200, 2, 39, 196, 132, 211, 164, 194, 133, 200, 2,
39, 239, 5, 200, 2, 39, 217, 43, 200, 2, 39, 233, 237, 200, 2, 39, 197,
52, 200, 2, 39, 236, 221, 200, 2, 39, 242, 84, 216, 4, 200, 2, 39, 230,
178, 200, 2, 39, 231, 183, 223, 190, 200, 2, 39, 217, 103, 200, 2, 39,
251, 137, 200, 2, 39, 234, 97, 200, 2, 39, 235, 100, 200, 2, 39, 194,
131, 200, 2, 39, 203, 69, 200, 2, 39, 223, 154, 200, 2, 39, 237, 64, 200,
2, 39, 237, 189, 200, 2, 39, 236, 217, 200, 2, 39, 233, 201, 200, 2, 39,
204, 139, 200, 2, 39, 201, 237, 200, 2, 39, 230, 25, 200, 2, 39, 242, 30,
200, 2, 39, 242, 79, 200, 2, 39, 233, 76, 200, 2, 39, 251, 75, 200, 2,
39, 242, 29, 200, 2, 39, 211, 212, 199, 225, 196, 108, 200, 2, 39, 236,
243, 200, 2, 39, 220, 172, 200, 2, 39, 232, 122, 238, 210, 207, 38, 197,
55, 17, 101, 238, 210, 207, 38, 197, 55, 17, 104, 238, 210, 207, 38, 197,
55, 17, 133, 238, 210, 207, 38, 197, 55, 17, 134, 238, 210, 207, 38, 197,
55, 17, 151, 238, 210, 207, 38, 197, 55, 17, 170, 238, 210, 207, 38, 197,
55, 17, 179, 238, 210, 207, 38, 197, 55, 17, 174, 238, 210, 207, 38, 197,
55, 17, 182, 238, 210, 207, 38, 200, 26, 17, 101, 238, 210, 207, 38, 200,
26, 17, 104, 238, 210, 207, 38, 200, 26, 17, 133, 238, 210, 207, 38, 200,
26, 17, 134, 238, 210, 207, 38, 200, 26, 17, 151, 238, 210, 207, 38, 200,
26, 17, 170, 238, 210, 207, 38, 200, 26, 17, 179, 238, 210, 207, 38, 200,
26, 17, 174, 238, 210, 207, 38, 200, 26, 17, 182, 149, 200, 130, 122,
101, 149, 200, 130, 122, 104, 149, 200, 130, 122, 133, 149, 200, 130,
122, 134, 149, 200, 130, 122, 151, 200, 130, 122, 101, 200, 130, 122,
151, 13, 28, 6, 64, 13, 28, 6, 249, 226, 13, 28, 6, 247, 52, 13, 28, 6,
238, 95, 13, 28, 6, 71, 13, 28, 6, 233, 163, 13, 28, 6, 232, 44, 13, 28,
6, 230, 124, 13, 28, 6, 70, 13, 28, 6, 223, 65, 13, 28, 6, 222, 184, 13,
28, 6, 165, 13, 28, 6, 218, 236, 13, 28, 6, 215, 151, 13, 28, 6, 74, 13,
28, 6, 211, 93, 13, 28, 6, 208, 247, 13, 28, 6, 150, 13, 28, 6, 206, 158,
13, 28, 6, 200, 228, 13, 28, 6, 68, 13, 28, 6, 196, 236, 13, 28, 6, 194,
202, 13, 28, 6, 193, 223, 13, 28, 6, 193, 148, 13, 28, 6, 192, 155, 13,
28, 2, 64, 13, 28, 2, 249, 226, 13, 28, 2, 247, 52, 13, 28, 2, 238, 95,
13, 28, 2, 71, 13, 28, 2, 233, 163, 13, 28, 2, 232, 44, 13, 28, 2, 230,
124, 13, 28, 2, 70, 13, 28, 2, 223, 65, 13, 28, 2, 222, 184, 13, 28, 2,
165, 13, 28, 2, 218, 236, 13, 28, 2, 215, 151, 13, 28, 2, 74, 13, 28, 2,
211, 93, 13, 28, 2, 208, 247, 13, 28, 2, 150, 13, 28, 2, 206, 158, 13,
28, 2, 200, 228, 13, 28, 2, 68, 13, 28, 2, 196, 236, 13, 28, 2, 194, 202,
13, 28, 2, 193, 223, 13, 28, 2, 193, 148, 13, 28, 2, 192, 155, 13, 43, 6,
64, 13, 43, 6, 249, 226, 13, 43, 6, 247, 52, 13, 43, 6, 238, 95, 13, 43,
6, 71, 13, 43, 6, 233, 163, 13, 43, 6, 232, 44, 13, 43, 6, 230, 124, 13,
43, 6, 70, 13, 43, 6, 223, 65, 13, 43, 6, 222, 184, 13, 43, 6, 165, 13,
43, 6, 218, 236, 13, 43, 6, 215, 151, 13, 43, 6, 74, 13, 43, 6, 211, 93,
13, 43, 6, 208, 247, 13, 43, 6, 150, 13, 43, 6, 206, 158, 13, 43, 6, 200,
228, 13, 43, 6, 68, 13, 43, 6, 196, 236, 13, 43, 6, 194, 202, 13, 43, 6,
193, 223, 13, 43, 6, 193, 148, 13, 43, 6, 192, 155, 13, 43, 2, 64, 13,
43, 2, 249, 226, 13, 43, 2, 247, 52, 13, 43, 2, 238, 95, 13, 43, 2, 71,
13, 43, 2, 233, 163, 13, 43, 2, 232, 44, 13, 43, 2, 70, 13, 43, 2, 223,
65, 13, 43, 2, 222, 184, 13, 43, 2, 165, 13, 43, 2, 218, 236, 13, 43, 2,
215, 151, 13, 43, 2, 74, 13, 43, 2, 211, 93, 13, 43, 2, 208, 247, 13, 43,
2, 150, 13, 43, 2, 206, 158, 13, 43, 2, 200, 228, 13, 43, 2, 68, 13, 43,
2, 196, 236, 13, 43, 2, 194, 202, 13, 43, 2, 193, 223, 13, 43, 2, 193,
148, 13, 43, 2, 192, 155, 13, 28, 43, 6, 64, 13, 28, 43, 6, 249, 226, 13,
28, 43, 6, 247, 52, 13, 28, 43, 6, 238, 95, 13, 28, 43, 6, 71, 13, 28,
43, 6, 233, 163, 13, 28, 43, 6, 232, 44, 13, 28, 43, 6, 230, 124, 13, 28,
43, 6, 70, 13, 28, 43, 6, 223, 65, 13, 28, 43, 6, 222, 184, 13, 28, 43,
6, 165, 13, 28, 43, 6, 218, 236, 13, 28, 43, 6, 215, 151, 13, 28, 43, 6,
74, 13, 28, 43, 6, 211, 93, 13, 28, 43, 6, 208, 247, 13, 28, 43, 6, 150,
13, 28, 43, 6, 206, 158, 13, 28, 43, 6, 200, 228, 13, 28, 43, 6, 68, 13,
28, 43, 6, 196, 236, 13, 28, 43, 6, 194, 202, 13, 28, 43, 6, 193, 223,
13, 28, 43, 6, 193, 148, 13, 28, 43, 6, 192, 155, 13, 28, 43, 2, 64, 13,
28, 43, 2, 249, 226, 13, 28, 43, 2, 247, 52, 13, 28, 43, 2, 238, 95, 13,
28, 43, 2, 71, 13, 28, 43, 2, 233, 163, 13, 28, 43, 2, 232, 44, 13, 28,
43, 2, 230, 124, 13, 28, 43, 2, 70, 13, 28, 43, 2, 223, 65, 13, 28, 43,
2, 222, 184, 13, 28, 43, 2, 165, 13, 28, 43, 2, 218, 236, 13, 28, 43, 2,
215, 151, 13, 28, 43, 2, 74, 13, 28, 43, 2, 211, 93, 13, 28, 43, 2, 208,
247, 13, 28, 43, 2, 150, 13, 28, 43, 2, 206, 158, 13, 28, 43, 2, 200,
228, 13, 28, 43, 2, 68, 13, 28, 43, 2, 196, 236, 13, 28, 43, 2, 194, 202,
13, 28, 43, 2, 193, 223, 13, 28, 43, 2, 193, 148, 13, 28, 43, 2, 192,
155, 13, 27, 6, 64, 13, 27, 6, 247, 52, 13, 27, 6, 238, 95, 13, 27, 6,
232, 44, 13, 27, 6, 223, 65, 13, 27, 6, 222, 184, 13, 27, 6, 215, 151,
13, 27, 6, 74, 13, 27, 6, 211, 93, 13, 27, 6, 208, 247, 13, 27, 6, 206,
158, 13, 27, 6, 200, 228, 13, 27, 6, 68, 13, 27, 6, 196, 236, 13, 27, 6,
194, 202, 13, 27, 6, 193, 223, 13, 27, 6, 193, 148, 13, 27, 6, 192, 155,
13, 27, 2, 64, 13, 27, 2, 249, 226, 13, 27, 2, 247, 52, 13, 27, 2, 238,
95, 13, 27, 2, 233, 163, 13, 27, 2, 230, 124, 13, 27, 2, 70, 13, 27, 2,
223, 65, 13, 27, 2, 222, 184, 13, 27, 2, 165, 13, 27, 2, 218, 236, 13,
27, 2, 215, 151, 13, 27, 2, 211, 93, 13, 27, 2, 208, 247, 13, 27, 2, 150,
13, 27, 2, 206, 158, 13, 27, 2, 200, 228, 13, 27, 2, 68, 13, 27, 2, 196,
236, 13, 27, 2, 194, 202, 13, 27, 2, 193, 223, 13, 27, 2, 193, 148, 13,
27, 2, 192, 155, 13, 28, 27, 6, 64, 13, 28, 27, 6, 249, 226, 13, 28, 27,
6, 247, 52, 13, 28, 27, 6, 238, 95, 13, 28, 27, 6, 71, 13, 28, 27, 6,
233, 163, 13, 28, 27, 6, 232, 44, 13, 28, 27, 6, 230, 124, 13, 28, 27, 6,
70, 13, 28, 27, 6, 223, 65, 13, 28, 27, 6, 222, 184, 13, 28, 27, 6, 165,
13, 28, 27, 6, 218, 236, 13, 28, 27, 6, 215, 151, 13, 28, 27, 6, 74, 13,
28, 27, 6, 211, 93, 13, 28, 27, 6, 208, 247, 13, 28, 27, 6, 150, 13, 28,
27, 6, 206, 158, 13, 28, 27, 6, 200, 228, 13, 28, 27, 6, 68, 13, 28, 27,
6, 196, 236, 13, 28, 27, 6, 194, 202, 13, 28, 27, 6, 193, 223, 13, 28,
27, 6, 193, 148, 13, 28, 27, 6, 192, 155, 13, 28, 27, 2, 64, 13, 28, 27,
2, 249, 226, 13, 28, 27, 2, 247, 52, 13, 28, 27, 2, 238, 95, 13, 28, 27,
2, 71, 13, 28, 27, 2, 233, 163, 13, 28, 27, 2, 232, 44, 13, 28, 27, 2,
230, 124, 13, 28, 27, 2, 70, 13, 28, 27, 2, 223, 65, 13, 28, 27, 2, 222,
184, 13, 28, 27, 2, 165, 13, 28, 27, 2, 218, 236, 13, 28, 27, 2, 215,
151, 13, 28, 27, 2, 74, 13, 28, 27, 2, 211, 93, 13, 28, 27, 2, 208, 247,
13, 28, 27, 2, 150, 13, 28, 27, 2, 206, 158, 13, 28, 27, 2, 200, 228, 13,
28, 27, 2, 68, 13, 28, 27, 2, 196, 236, 13, 28, 27, 2, 194, 202, 13, 28,
27, 2, 193, 223, 13, 28, 27, 2, 193, 148, 13, 28, 27, 2, 192, 155, 13,
232, 106, 6, 64, 13, 232, 106, 6, 249, 226, 13, 232, 106, 6, 238, 95, 13,
232, 106, 6, 71, 13, 232, 106, 6, 233, 163, 13, 232, 106, 6, 232, 44, 13,
232, 106, 6, 223, 65, 13, 232, 106, 6, 222, 184, 13, 232, 106, 6, 165,
13, 232, 106, 6, 218, 236, 13, 232, 106, 6, 215, 151, 13, 232, 106, 6,
74, 13, 232, 106, 6, 211, 93, 13, 232, 106, 6, 208, 247, 13, 232, 106, 6,
206, 158, 13, 232, 106, 6, 200, 228, 13, 232, 106, 6, 68, 13, 232, 106,
6, 196, 236, 13, 232, 106, 6, 194, 202, 13, 232, 106, 6, 193, 223, 13,
232, 106, 6, 193, 148, 13, 232, 106, 2, 64, 13, 232, 106, 2, 249, 226,
13, 232, 106, 2, 247, 52, 13, 232, 106, 2, 238, 95, 13, 232, 106, 2, 71,
13, 232, 106, 2, 233, 163, 13, 232, 106, 2, 232, 44, 13, 232, 106, 2,
230, 124, 13, 232, 106, 2, 70, 13, 232, 106, 2, 223, 65, 13, 232, 106, 2,
222, 184, 13, 232, 106, 2, 165, 13, 232, 106, 2, 218, 236, 13, 232, 106,
2, 215, 151, 13, 232, 106, 2, 74, 13, 232, 106, 2, 211, 93, 13, 232, 106,
2, 208, 247, 13, 232, 106, 2, 150, 13, 232, 106, 2, 206, 158, 13, 232,
106, 2, 200, 228, 13, 232, 106, 2, 68, 13, 232, 106, 2, 196, 236, 13,
232, 106, 2, 194, 202, 13, 232, 106, 2, 193, 223, 13, 232, 106, 2, 193,
148, 13, 232, 106, 2, 192, 155, 13, 235, 102, 6, 64, 13, 235, 102, 6,
249, 226, 13, 235, 102, 6, 238, 95, 13, 235, 102, 6, 71, 13, 235, 102, 6,
233, 163, 13, 235, 102, 6, 232, 44, 13, 235, 102, 6, 70, 13, 235, 102, 6,
223, 65, 13, 235, 102, 6, 222, 184, 13, 235, 102, 6, 165, 13, 235, 102,
6, 218, 236, 13, 235, 102, 6, 74, 13, 235, 102, 6, 206, 158, 13, 235,
102, 6, 200, 228, 13, 235, 102, 6, 68, 13, 235, 102, 6, 196, 236, 13,
235, 102, 6, 194, 202, 13, 235, 102, 6, 193, 223, 13, 235, 102, 6, 193,
148, 13, 235, 102, 2, 64, 13, 235, 102, 2, 249, 226, 13, 235, 102, 2,
247, 52, 13, 235, 102, 2, 238, 95, 13, 235, 102, 2, 71, 13, 235, 102, 2,
233, 163, 13, 235, 102, 2, 232, 44, 13, 235, 102, 2, 230, 124, 13, 235,
102, 2, 70, 13, 235, 102, 2, 223, 65, 13, 235, 102, 2, 222, 184, 13, 235,
102, 2, 165, 13, 235, 102, 2, 218, 236, 13, 235, 102, 2, 215, 151, 13,
235, 102, 2, 74, 13, 235, 102, 2, 211, 93, 13, 235, 102, 2, 208, 247, 13,
235, 102, 2, 150, 13, 235, 102, 2, 206, 158, 13, 235, 102, 2, 200, 228,
13, 235, 102, 2, 68, 13, 235, 102, 2, 196, 236, 13, 235, 102, 2, 194,
202, 13, 235, 102, 2, 193, 223, 13, 235, 102, 2, 193, 148, 13, 235, 102,
2, 192, 155, 13, 28, 232, 106, 6, 64, 13, 28, 232, 106, 6, 249, 226, 13,
28, 232, 106, 6, 247, 52, 13, 28, 232, 106, 6, 238, 95, 13, 28, 232, 106,
6, 71, 13, 28, 232, 106, 6, 233, 163, 13, 28, 232, 106, 6, 232, 44, 13,
28, 232, 106, 6, 230, 124, 13, 28, 232, 106, 6, 70, 13, 28, 232, 106, 6,
223, 65, 13, 28, 232, 106, 6, 222, 184, 13, 28, 232, 106, 6, 165, 13, 28,
232, 106, 6, 218, 236, 13, 28, 232, 106, 6, 215, 151, 13, 28, 232, 106,
6, 74, 13, 28, 232, 106, 6, 211, 93, 13, 28, 232, 106, 6, 208, 247, 13,
28, 232, 106, 6, 150, 13, 28, 232, 106, 6, 206, 158, 13, 28, 232, 106, 6,
200, 228, 13, 28, 232, 106, 6, 68, 13, 28, 232, 106, 6, 196, 236, 13, 28,
232, 106, 6, 194, 202, 13, 28, 232, 106, 6, 193, 223, 13, 28, 232, 106,
6, 193, 148, 13, 28, 232, 106, 6, 192, 155, 13, 28, 232, 106, 2, 64, 13,
28, 232, 106, 2, 249, 226, 13, 28, 232, 106, 2, 247, 52, 13, 28, 232,
106, 2, 238, 95, 13, 28, 232, 106, 2, 71, 13, 28, 232, 106, 2, 233, 163,
13, 28, 232, 106, 2, 232, 44, 13, 28, 232, 106, 2, 230, 124, 13, 28, 232,
106, 2, 70, 13, 28, 232, 106, 2, 223, 65, 13, 28, 232, 106, 2, 222, 184,
13, 28, 232, 106, 2, 165, 13, 28, 232, 106, 2, 218, 236, 13, 28, 232,
106, 2, 215, 151, 13, 28, 232, 106, 2, 74, 13, 28, 232, 106, 2, 211, 93,
13, 28, 232, 106, 2, 208, 247, 13, 28, 232, 106, 2, 150, 13, 28, 232,
106, 2, 206, 158, 13, 28, 232, 106, 2, 200, 228, 13, 28, 232, 106, 2, 68,
13, 28, 232, 106, 2, 196, 236, 13, 28, 232, 106, 2, 194, 202, 13, 28,
232, 106, 2, 193, 223, 13, 28, 232, 106, 2, 193, 148, 13, 28, 232, 106,
2, 192, 155, 13, 49, 6, 64, 13, 49, 6, 249, 226, 13, 49, 6, 247, 52, 13,
49, 6, 238, 95, 13, 49, 6, 71, 13, 49, 6, 233, 163, 13, 49, 6, 232, 44,
13, 49, 6, 230, 124, 13, 49, 6, 70, 13, 49, 6, 223, 65, 13, 49, 6, 222,
184, 13, 49, 6, 165, 13, 49, 6, 218, 236, 13, 49, 6, 215, 151, 13, 49, 6,
74, 13, 49, 6, 211, 93, 13, 49, 6, 208, 247, 13, 49, 6, 150, 13, 49, 6,
206, 158, 13, 49, 6, 200, 228, 13, 49, 6, 68, 13, 49, 6, 196, 236, 13,
49, 6, 194, 202, 13, 49, 6, 193, 223, 13, 49, 6, 193, 148, 13, 49, 6,
192, 155, 13, 49, 2, 64, 13, 49, 2, 249, 226, 13, 49, 2, 247, 52, 13, 49,
2, 238, 95, 13, 49, 2, 71, 13, 49, 2, 233, 163, 13, 49, 2, 232, 44, 13,
49, 2, 230, 124, 13, 49, 2, 70, 13, 49, 2, 223, 65, 13, 49, 2, 222, 184,
13, 49, 2, 165, 13, 49, 2, 218, 236, 13, 49, 2, 215, 151, 13, 49, 2, 74,
13, 49, 2, 211, 93, 13, 49, 2, 208, 247, 13, 49, 2, 150, 13, 49, 2, 206,
158, 13, 49, 2, 200, 228, 13, 49, 2, 68, 13, 49, 2, 196, 236, 13, 49, 2,
194, 202, 13, 49, 2, 193, 223, 13, 49, 2, 193, 148, 13, 49, 2, 192, 155,
13, 49, 28, 6, 64, 13, 49, 28, 6, 249, 226, 13, 49, 28, 6, 247, 52, 13,
49, 28, 6, 238, 95, 13, 49, 28, 6, 71, 13, 49, 28, 6, 233, 163, 13, 49,
28, 6, 232, 44, 13, 49, 28, 6, 230, 124, 13, 49, 28, 6, 70, 13, 49, 28,
6, 223, 65, 13, 49, 28, 6, 222, 184, 13, 49, 28, 6, 165, 13, 49, 28, 6,
218, 236, 13, 49, 28, 6, 215, 151, 13, 49, 28, 6, 74, 13, 49, 28, 6, 211,
93, 13, 49, 28, 6, 208, 247, 13, 49, 28, 6, 150, 13, 49, 28, 6, 206, 158,
13, 49, 28, 6, 200, 228, 13, 49, 28, 6, 68, 13, 49, 28, 6, 196, 236, 13,
49, 28, 6, 194, 202, 13, 49, 28, 6, 193, 223, 13, 49, 28, 6, 193, 148,
13, 49, 28, 6, 192, 155, 13, 49, 28, 2, 64, 13, 49, 28, 2, 249, 226, 13,
49, 28, 2, 247, 52, 13, 49, 28, 2, 238, 95, 13, 49, 28, 2, 71, 13, 49,
28, 2, 233, 163, 13, 49, 28, 2, 232, 44, 13, 49, 28, 2, 230, 124, 13, 49,
28, 2, 70, 13, 49, 28, 2, 223, 65, 13, 49, 28, 2, 222, 184, 13, 49, 28,
2, 165, 13, 49, 28, 2, 218, 236, 13, 49, 28, 2, 215, 151, 13, 49, 28, 2,
74, 13, 49, 28, 2, 211, 93, 13, 49, 28, 2, 208, 247, 13, 49, 28, 2, 150,
13, 49, 28, 2, 206, 158, 13, 49, 28, 2, 200, 228, 13, 49, 28, 2, 68, 13,
49, 28, 2, 196, 236, 13, 49, 28, 2, 194, 202, 13, 49, 28, 2, 193, 223,
13, 49, 28, 2, 193, 148, 13, 49, 28, 2, 192, 155, 13, 49, 43, 6, 64, 13,
49, 43, 6, 249, 226, 13, 49, 43, 6, 247, 52, 13, 49, 43, 6, 238, 95, 13,
49, 43, 6, 71, 13, 49, 43, 6, 233, 163, 13, 49, 43, 6, 232, 44, 13, 49,
43, 6, 230, 124, 13, 49, 43, 6, 70, 13, 49, 43, 6, 223, 65, 13, 49, 43,
6, 222, 184, 13, 49, 43, 6, 165, 13, 49, 43, 6, 218, 236, 13, 49, 43, 6,
215, 151, 13, 49, 43, 6, 74, 13, 49, 43, 6, 211, 93, 13, 49, 43, 6, 208,
247, 13, 49, 43, 6, 150, 13, 49, 43, 6, 206, 158, 13, 49, 43, 6, 200,
228, 13, 49, 43, 6, 68, 13, 49, 43, 6, 196, 236, 13, 49, 43, 6, 194, 202,
13, 49, 43, 6, 193, 223, 13, 49, 43, 6, 193, 148, 13, 49, 43, 6, 192,
155, 13, 49, 43, 2, 64, 13, 49, 43, 2, 249, 226, 13, 49, 43, 2, 247, 52,
13, 49, 43, 2, 238, 95, 13, 49, 43, 2, 71, 13, 49, 43, 2, 233, 163, 13,
49, 43, 2, 232, 44, 13, 49, 43, 2, 230, 124, 13, 49, 43, 2, 70, 13, 49,
43, 2, 223, 65, 13, 49, 43, 2, 222, 184, 13, 49, 43, 2, 165, 13, 49, 43,
2, 218, 236, 13, 49, 43, 2, 215, 151, 13, 49, 43, 2, 74, 13, 49, 43, 2,
211, 93, 13, 49, 43, 2, 208, 247, 13, 49, 43, 2, 150, 13, 49, 43, 2, 206,
158, 13, 49, 43, 2, 200, 228, 13, 49, 43, 2, 68, 13, 49, 43, 2, 196, 236,
13, 49, 43, 2, 194, 202, 13, 49, 43, 2, 193, 223, 13, 49, 43, 2, 193,
148, 13, 49, 43, 2, 192, 155, 13, 49, 28, 43, 6, 64, 13, 49, 28, 43, 6,
249, 226, 13, 49, 28, 43, 6, 247, 52, 13, 49, 28, 43, 6, 238, 95, 13, 49,
28, 43, 6, 71, 13, 49, 28, 43, 6, 233, 163, 13, 49, 28, 43, 6, 232, 44,
13, 49, 28, 43, 6, 230, 124, 13, 49, 28, 43, 6, 70, 13, 49, 28, 43, 6,
223, 65, 13, 49, 28, 43, 6, 222, 184, 13, 49, 28, 43, 6, 165, 13, 49, 28,
43, 6, 218, 236, 13, 49, 28, 43, 6, 215, 151, 13, 49, 28, 43, 6, 74, 13,
49, 28, 43, 6, 211, 93, 13, 49, 28, 43, 6, 208, 247, 13, 49, 28, 43, 6,
150, 13, 49, 28, 43, 6, 206, 158, 13, 49, 28, 43, 6, 200, 228, 13, 49,
28, 43, 6, 68, 13, 49, 28, 43, 6, 196, 236, 13, 49, 28, 43, 6, 194, 202,
13, 49, 28, 43, 6, 193, 223, 13, 49, 28, 43, 6, 193, 148, 13, 49, 28, 43,
6, 192, 155, 13, 49, 28, 43, 2, 64, 13, 49, 28, 43, 2, 249, 226, 13, 49,
28, 43, 2, 247, 52, 13, 49, 28, 43, 2, 238, 95, 13, 49, 28, 43, 2, 71,
13, 49, 28, 43, 2, 233, 163, 13, 49, 28, 43, 2, 232, 44, 13, 49, 28, 43,
2, 230, 124, 13, 49, 28, 43, 2, 70, 13, 49, 28, 43, 2, 223, 65, 13, 49,
28, 43, 2, 222, 184, 13, 49, 28, 43, 2, 165, 13, 49, 28, 43, 2, 218, 236,
13, 49, 28, 43, 2, 215, 151, 13, 49, 28, 43, 2, 74, 13, 49, 28, 43, 2,
211, 93, 13, 49, 28, 43, 2, 208, 247, 13, 49, 28, 43, 2, 150, 13, 49, 28,
43, 2, 206, 158, 13, 49, 28, 43, 2, 200, 228, 13, 49, 28, 43, 2, 68, 13,
49, 28, 43, 2, 196, 236, 13, 49, 28, 43, 2, 194, 202, 13, 49, 28, 43, 2,
193, 223, 13, 49, 28, 43, 2, 193, 148, 13, 49, 28, 43, 2, 192, 155, 13,
216, 41, 6, 64, 13, 216, 41, 6, 249, 226, 13, 216, 41, 6, 247, 52, 13,
216, 41, 6, 238, 95, 13, 216, 41, 6, 71, 13, 216, 41, 6, 233, 163, 13,
216, 41, 6, 232, 44, 13, 216, 41, 6, 230, 124, 13, 216, 41, 6, 70, 13,
216, 41, 6, 223, 65, 13, 216, 41, 6, 222, 184, 13, 216, 41, 6, 165, 13,
216, 41, 6, 218, 236, 13, 216, 41, 6, 215, 151, 13, 216, 41, 6, 74, 13,
216, 41, 6, 211, 93, 13, 216, 41, 6, 208, 247, 13, 216, 41, 6, 150, 13,
216, 41, 6, 206, 158, 13, 216, 41, 6, 200, 228, 13, 216, 41, 6, 68, 13,
216, 41, 6, 196, 236, 13, 216, 41, 6, 194, 202, 13, 216, 41, 6, 193, 223,
13, 216, 41, 6, 193, 148, 13, 216, 41, 6, 192, 155, 13, 216, 41, 2, 64,
13, 216, 41, 2, 249, 226, 13, 216, 41, 2, 247, 52, 13, 216, 41, 2, 238,
95, 13, 216, 41, 2, 71, 13, 216, 41, 2, 233, 163, 13, 216, 41, 2, 232,
44, 13, 216, 41, 2, 230, 124, 13, 216, 41, 2, 70, 13, 216, 41, 2, 223,
65, 13, 216, 41, 2, 222, 184, 13, 216, 41, 2, 165, 13, 216, 41, 2, 218,
236, 13, 216, 41, 2, 215, 151, 13, 216, 41, 2, 74, 13, 216, 41, 2, 211,
93, 13, 216, 41, 2, 208, 247, 13, 216, 41, 2, 150, 13, 216, 41, 2, 206,
158, 13, 216, 41, 2, 200, 228, 13, 216, 41, 2, 68, 13, 216, 41, 2, 196,
236, 13, 216, 41, 2, 194, 202, 13, 216, 41, 2, 193, 223, 13, 216, 41, 2,
193, 148, 13, 216, 41, 2, 192, 155, 13, 43, 2, 236, 113, 70, 13, 43, 2,
236, 113, 223, 65, 13, 28, 6, 250, 252, 13, 28, 6, 248, 63, 13, 28, 6,
231, 204, 13, 28, 6, 237, 76, 13, 28, 6, 234, 32, 13, 28, 6, 192, 75, 13,
28, 6, 233, 240, 13, 28, 6, 199, 206, 13, 28, 6, 223, 111, 13, 28, 6,
222, 106, 13, 28, 6, 220, 90, 13, 28, 6, 215, 241, 13, 28, 6, 213, 22,
13, 28, 6, 193, 196, 13, 28, 6, 211, 214, 13, 28, 6, 210, 51, 13, 28, 6,
207, 153, 13, 28, 6, 199, 207, 109, 13, 28, 6, 203, 99, 13, 28, 6, 200,
100, 13, 28, 6, 197, 34, 13, 28, 6, 210, 77, 13, 28, 6, 242, 215, 13, 28,
6, 209, 62, 13, 28, 6, 211, 216, 13, 28, 215, 79, 13, 28, 2, 250, 252,
13, 28, 2, 248, 63, 13, 28, 2, 231, 204, 13, 28, 2, 237, 76, 13, 28, 2,
234, 32, 13, 28, 2, 192, 75, 13, 28, 2, 233, 240, 13, 28, 2, 199, 206,
13, 28, 2, 223, 111, 13, 28, 2, 222, 106, 13, 28, 2, 220, 90, 13, 28, 2,
215, 241, 13, 28, 2, 213, 22, 13, 28, 2, 193, 196, 13, 28, 2, 211, 214,
13, 28, 2, 210, 51, 13, 28, 2, 207, 153, 13, 28, 2, 52, 203, 99, 13, 28,
2, 203, 99, 13, 28, 2, 200, 100, 13, 28, 2, 197, 34, 13, 28, 2, 210, 77,
13, 28, 2, 242, 215, 13, 28, 2, 209, 62, 13, 28, 2, 211, 216, 13, 28,
210, 222, 236, 244, 13, 28, 234, 33, 109, 13, 28, 199, 207, 109, 13, 28,
222, 107, 109, 13, 28, 210, 78, 109, 13, 28, 207, 154, 109, 13, 28, 210,
52, 109, 13, 43, 6, 250, 252, 13, 43, 6, 248, 63, 13, 43, 6, 231, 204,
13, 43, 6, 237, 76, 13, 43, 6, 234, 32, 13, 43, 6, 192, 75, 13, 43, 6,
233, 240, 13, 43, 6, 199, 206, 13, 43, 6, 223, 111, 13, 43, 6, 222, 106,
13, 43, 6, 220, 90, 13, 43, 6, 215, 241, 13, 43, 6, 213, 22, 13, 43, 6,
193, 196, 13, 43, 6, 211, 214, 13, 43, 6, 210, 51, 13, 43, 6, 207, 153,
13, 43, 6, 199, 207, 109, 13, 43, 6, 203, 99, 13, 43, 6, 200, 100, 13,
43, 6, 197, 34, 13, 43, 6, 210, 77, 13, 43, 6, 242, 215, 13, 43, 6, 209,
62, 13, 43, 6, 211, 216, 13, 43, 215, 79, 13, 43, 2, 250, 252, 13, 43, 2,
248, 63, 13, 43, 2, 231, 204, 13, 43, 2, 237, 76, 13, 43, 2, 234, 32, 13,
43, 2, 192, 75, 13, 43, 2, 233, 240, 13, 43, 2, 199, 206, 13, 43, 2, 223,
111, 13, 43, 2, 222, 106, 13, 43, 2, 220, 90, 13, 43, 2, 215, 241, 13,
43, 2, 213, 22, 13, 43, 2, 193, 196, 13, 43, 2, 211, 214, 13, 43, 2, 210,
51, 13, 43, 2, 207, 153, 13, 43, 2, 52, 203, 99, 13, 43, 2, 203, 99, 13,
43, 2, 200, 100, 13, 43, 2, 197, 34, 13, 43, 2, 210, 77, 13, 43, 2, 242,
215, 13, 43, 2, 209, 62, 13, 43, 2, 211, 216, 13, 43, 210, 222, 236, 244,
13, 43, 234, 33, 109, 13, 43, 199, 207, 109, 13, 43, 222, 107, 109, 13,
43, 210, 78, 109, 13, 43, 207, 154, 109, 13, 43, 210, 52, 109, 13, 28,
43, 6, 250, 252, 13, 28, 43, 6, 248, 63, 13, 28, 43, 6, 231, 204, 13, 28,
43, 6, 237, 76, 13, 28, 43, 6, 234, 32, 13, 28, 43, 6, 192, 75, 13, 28,
43, 6, 233, 240, 13, 28, 43, 6, 199, 206, 13, 28, 43, 6, 223, 111, 13,
28, 43, 6, 222, 106, 13, 28, 43, 6, 220, 90, 13, 28, 43, 6, 215, 241, 13,
28, 43, 6, 213, 22, 13, 28, 43, 6, 193, 196, 13, 28, 43, 6, 211, 214, 13,
28, 43, 6, 210, 51, 13, 28, 43, 6, 207, 153, 13, 28, 43, 6, 199, 207,
109, 13, 28, 43, 6, 203, 99, 13, 28, 43, 6, 200, 100, 13, 28, 43, 6, 197,
34, 13, 28, 43, 6, 210, 77, 13, 28, 43, 6, 242, 215, 13, 28, 43, 6, 209,
62, 13, 28, 43, 6, 211, 216, 13, 28, 43, 215, 79, 13, 28, 43, 2, 250,
252, 13, 28, 43, 2, 248, 63, 13, 28, 43, 2, 231, 204, 13, 28, 43, 2, 237,
76, 13, 28, 43, 2, 234, 32, 13, 28, 43, 2, 192, 75, 13, 28, 43, 2, 233,
240, 13, 28, 43, 2, 199, 206, 13, 28, 43, 2, 223, 111, 13, 28, 43, 2,
222, 106, 13, 28, 43, 2, 220, 90, 13, 28, 43, 2, 215, 241, 13, 28, 43, 2,
213, 22, 13, 28, 43, 2, 193, 196, 13, 28, 43, 2, 211, 214, 13, 28, 43, 2,
210, 51, 13, 28, 43, 2, 207, 153, 13, 28, 43, 2, 52, 203, 99, 13, 28, 43,
2, 203, 99, 13, 28, 43, 2, 200, 100, 13, 28, 43, 2, 197, 34, 13, 28, 43,
2, 210, 77, 13, 28, 43, 2, 242, 215, 13, 28, 43, 2, 209, 62, 13, 28, 43,
2, 211, 216, 13, 28, 43, 210, 222, 236, 244, 13, 28, 43, 234, 33, 109,
13, 28, 43, 199, 207, 109, 13, 28, 43, 222, 107, 109, 13, 28, 43, 210,
78, 109, 13, 28, 43, 207, 154, 109, 13, 28, 43, 210, 52, 109, 13, 49, 28,
6, 250, 252, 13, 49, 28, 6, 248, 63, 13, 49, 28, 6, 231, 204, 13, 49, 28,
6, 237, 76, 13, 49, 28, 6, 234, 32, 13, 49, 28, 6, 192, 75, 13, 49, 28,
6, 233, 240, 13, 49, 28, 6, 199, 206, 13, 49, 28, 6, 223, 111, 13, 49,
28, 6, 222, 106, 13, 49, 28, 6, 220, 90, 13, 49, 28, 6, 215, 241, 13, 49,
28, 6, 213, 22, 13, 49, 28, 6, 193, 196, 13, 49, 28, 6, 211, 214, 13, 49,
28, 6, 210, 51, 13, 49, 28, 6, 207, 153, 13, 49, 28, 6, 199, 207, 109,
13, 49, 28, 6, 203, 99, 13, 49, 28, 6, 200, 100, 13, 49, 28, 6, 197, 34,
13, 49, 28, 6, 210, 77, 13, 49, 28, 6, 242, 215, 13, 49, 28, 6, 209, 62,
13, 49, 28, 6, 211, 216, 13, 49, 28, 215, 79, 13, 49, 28, 2, 250, 252,
13, 49, 28, 2, 248, 63, 13, 49, 28, 2, 231, 204, 13, 49, 28, 2, 237, 76,
13, 49, 28, 2, 234, 32, 13, 49, 28, 2, 192, 75, 13, 49, 28, 2, 233, 240,
13, 49, 28, 2, 199, 206, 13, 49, 28, 2, 223, 111, 13, 49, 28, 2, 222,
106, 13, 49, 28, 2, 220, 90, 13, 49, 28, 2, 215, 241, 13, 49, 28, 2, 213,
22, 13, 49, 28, 2, 193, 196, 13, 49, 28, 2, 211, 214, 13, 49, 28, 2, 210,
51, 13, 49, 28, 2, 207, 153, 13, 49, 28, 2, 52, 203, 99, 13, 49, 28, 2,
203, 99, 13, 49, 28, 2, 200, 100, 13, 49, 28, 2, 197, 34, 13, 49, 28, 2,
210, 77, 13, 49, 28, 2, 242, 215, 13, 49, 28, 2, 209, 62, 13, 49, 28, 2,
211, 216, 13, 49, 28, 210, 222, 236, 244, 13, 49, 28, 234, 33, 109, 13,
49, 28, 199, 207, 109, 13, 49, 28, 222, 107, 109, 13, 49, 28, 210, 78,
109, 13, 49, 28, 207, 154, 109, 13, 49, 28, 210, 52, 109, 13, 49, 28, 43,
6, 250, 252, 13, 49, 28, 43, 6, 248, 63, 13, 49, 28, 43, 6, 231, 204, 13,
49, 28, 43, 6, 237, 76, 13, 49, 28, 43, 6, 234, 32, 13, 49, 28, 43, 6,
192, 75, 13, 49, 28, 43, 6, 233, 240, 13, 49, 28, 43, 6, 199, 206, 13,
49, 28, 43, 6, 223, 111, 13, 49, 28, 43, 6, 222, 106, 13, 49, 28, 43, 6,
220, 90, 13, 49, 28, 43, 6, 215, 241, 13, 49, 28, 43, 6, 213, 22, 13, 49,
28, 43, 6, 193, 196, 13, 49, 28, 43, 6, 211, 214, 13, 49, 28, 43, 6, 210,
51, 13, 49, 28, 43, 6, 207, 153, 13, 49, 28, 43, 6, 199, 207, 109, 13,
49, 28, 43, 6, 203, 99, 13, 49, 28, 43, 6, 200, 100, 13, 49, 28, 43, 6,
197, 34, 13, 49, 28, 43, 6, 210, 77, 13, 49, 28, 43, 6, 242, 215, 13, 49,
28, 43, 6, 209, 62, 13, 49, 28, 43, 6, 211, 216, 13, 49, 28, 43, 215, 79,
13, 49, 28, 43, 2, 250, 252, 13, 49, 28, 43, 2, 248, 63, 13, 49, 28, 43,
2, 231, 204, 13, 49, 28, 43, 2, 237, 76, 13, 49, 28, 43, 2, 234, 32, 13,
49, 28, 43, 2, 192, 75, 13, 49, 28, 43, 2, 233, 240, 13, 49, 28, 43, 2,
199, 206, 13, 49, 28, 43, 2, 223, 111, 13, 49, 28, 43, 2, 222, 106, 13,
49, 28, 43, 2, 220, 90, 13, 49, 28, 43, 2, 215, 241, 13, 49, 28, 43, 2,
213, 22, 13, 49, 28, 43, 2, 193, 196, 13, 49, 28, 43, 2, 211, 214, 13,
49, 28, 43, 2, 210, 51, 13, 49, 28, 43, 2, 207, 153, 13, 49, 28, 43, 2,
52, 203, 99, 13, 49, 28, 43, 2, 203, 99, 13, 49, 28, 43, 2, 200, 100, 13,
49, 28, 43, 2, 197, 34, 13, 49, 28, 43, 2, 210, 77, 13, 49, 28, 43, 2,
242, 215, 13, 49, 28, 43, 2, 209, 62, 13, 49, 28, 43, 2, 211, 216, 13,
49, 28, 43, 210, 222, 236, 244, 13, 49, 28, 43, 234, 33, 109, 13, 49, 28,
43, 199, 207, 109, 13, 49, 28, 43, 222, 107, 109, 13, 49, 28, 43, 210,
78, 109, 13, 49, 28, 43, 207, 154, 109, 13, 49, 28, 43, 210, 52, 109, 13,
28, 6, 236, 238, 13, 28, 2, 236, 238, 13, 28, 17, 192, 76, 13, 28, 17,
101, 13, 28, 17, 104, 13, 28, 17, 133, 13, 28, 17, 134, 13, 28, 17, 151,
13, 28, 17, 170, 13, 28, 17, 179, 13, 28, 17, 174, 13, 28, 17, 182, 13,
235, 102, 17, 192, 76, 13, 235, 102, 17, 101, 13, 235, 102, 17, 104, 13,
235, 102, 17, 133, 13, 235, 102, 17, 134, 13, 235, 102, 17, 151, 13, 235,
102, 17, 170, 13, 235, 102, 17, 179, 13, 235, 102, 17, 174, 13, 235, 102,
17, 182, 13, 49, 17, 192, 76, 13, 49, 17, 101, 13, 49, 17, 104, 13, 49,
17, 133, 13, 49, 17, 134, 13, 49, 17, 151, 13, 49, 17, 170, 13, 49, 17,
179, 13, 49, 17, 174, 13, 49, 17, 182, 13, 49, 28, 17, 192, 76, 13, 49,
28, 17, 101, 13, 49, 28, 17, 104, 13, 49, 28, 17, 133, 13, 49, 28, 17,
134, 13, 49, 28, 17, 151, 13, 49, 28, 17, 170, 13, 49, 28, 17, 179, 13,
49, 28, 17, 174, 13, 49, 28, 17, 182, 13, 216, 41, 17, 192, 76, 13, 216,
41, 17, 101, 13, 216, 41, 17, 104, 13, 216, 41, 17, 133, 13, 216, 41, 17,
134, 13, 216, 41, 17, 151, 13, 216, 41, 17, 170, 13, 216, 41, 17, 179,
13, 216, 41, 17, 174, 13, 216, 41, 17, 182, 23, 146, 223, 176, 23, 230,
59, 223, 176, 23, 230, 55, 223, 176, 23, 230, 44, 223, 176, 23, 230, 48,
223, 176, 23, 230, 61, 223, 176, 23, 146, 140, 248, 74, 23, 230, 59, 140,
248, 74, 23, 146, 171, 197, 69, 140, 248, 74, 23, 146, 140, 208, 39, 221,
116, 23, 146, 140, 238, 144, 23, 146, 140, 229, 144, 23, 146, 140, 229,
145, 219, 52, 23, 230, 59, 140, 229, 146, 23, 146, 140, 216, 160, 23,
230, 59, 140, 216, 160, 23, 146, 140, 85, 248, 74, 23, 146, 140, 85, 208,
39, 221, 115, 23, 146, 140, 85, 229, 144, 23, 146, 140, 130, 85, 229,
144, 23, 146, 140, 229, 145, 85, 197, 41, 23, 146, 140, 85, 239, 10, 23,
146, 140, 85, 239, 11, 140, 248, 74, 23, 146, 140, 85, 239, 11, 85, 248,
74, 23, 146, 140, 85, 239, 11, 238, 144, 23, 146, 140, 85, 239, 11, 229,
144, 23, 146, 140, 85, 238, 179, 23, 230, 59, 140, 85, 238, 179, 23, 146,
85, 248, 75, 136, 223, 176, 23, 146, 140, 248, 75, 136, 216, 160, 23,
146, 140, 85, 199, 147, 23, 230, 59, 140, 85, 199, 147, 23, 146, 140, 85,
201, 230, 171, 248, 74, 23, 146, 140, 85, 248, 75, 171, 201, 229, 23,
146, 140, 85, 171, 248, 74, 23, 146, 140, 85, 229, 145, 202, 115, 171,
203, 110, 23, 146, 140, 130, 85, 229, 145, 171, 203, 110, 23, 146, 140,
130, 85, 229, 145, 171, 239, 10, 23, 146, 140, 229, 145, 85, 130, 171,
203, 110, 23, 146, 140, 85, 130, 202, 115, 171, 232, 123, 23, 146, 140,
85, 171, 238, 144, 23, 146, 140, 85, 171, 242, 129, 23, 146, 140, 85,
171, 229, 13, 23, 146, 140, 85, 171, 229, 144, 23, 146, 171, 248, 61,
140, 85, 201, 229, 23, 146, 140, 85, 239, 11, 171, 203, 110, 23, 146,
140, 85, 239, 11, 171, 203, 111, 239, 10, 23, 146, 140, 85, 239, 11, 171,
203, 111, 248, 74, 23, 146, 85, 171, 229, 14, 140, 197, 41, 23, 146, 140,
171, 229, 14, 85, 197, 41, 23, 146, 140, 85, 239, 11, 229, 145, 171, 203,
110, 23, 146, 140, 85, 238, 180, 171, 203, 110, 23, 146, 140, 85, 239,
11, 171, 232, 123, 23, 146, 140, 85, 239, 11, 238, 145, 171, 232, 123,
23, 146, 85, 171, 238, 145, 140, 197, 41, 23, 146, 140, 171, 238, 145,
85, 197, 41, 23, 146, 85, 171, 47, 140, 197, 41, 23, 146, 85, 171, 47,
140, 229, 144, 23, 146, 140, 171, 250, 206, 211, 126, 85, 197, 41, 23,
146, 140, 171, 250, 206, 223, 191, 85, 197, 41, 23, 146, 140, 171, 47,
85, 197, 41, 23, 146, 140, 85, 171, 239, 11, 229, 144, 23, 146, 140, 85,
171, 250, 206, 211, 125, 23, 146, 140, 85, 171, 250, 205, 23, 146, 85,
171, 250, 206, 211, 126, 140, 197, 41, 23, 146, 85, 171, 250, 206, 211,
126, 140, 238, 179, 23, 146, 85, 171, 250, 206, 140, 197, 41, 23, 146,
140, 171, 229, 14, 85, 229, 144, 23, 230, 50, 232, 119, 232, 235, 23,
230, 50, 232, 119, 232, 236, 248, 74, 23, 230, 50, 232, 119, 232, 236,
229, 144, 23, 230, 50, 232, 119, 232, 236, 239, 10, 23, 230, 50, 232,
119, 232, 236, 239, 11, 202, 124, 23, 230, 57, 232, 119, 232, 236, 239,
10, 23, 146, 232, 119, 232, 236, 239, 11, 248, 74, 23, 230, 48, 232, 119,
232, 236, 239, 10, 23, 230, 50, 232, 214, 232, 236, 202, 114, 23, 230,
50, 229, 223, 232, 214, 232, 236, 202, 114, 23, 230, 50, 232, 214, 232,
236, 202, 115, 232, 119, 248, 74, 23, 230, 50, 229, 223, 232, 214, 232,
236, 202, 115, 232, 119, 248, 74, 23, 230, 50, 232, 214, 232, 236, 202,
115, 248, 74, 23, 230, 50, 229, 223, 232, 214, 232, 236, 202, 115, 248,
74, 23, 230, 50, 232, 214, 232, 236, 202, 115, 171, 232, 123, 23, 230,
55, 232, 214, 232, 236, 202, 114, 23, 230, 55, 232, 214, 232, 236, 202,
115, 211, 183, 23, 230, 48, 232, 214, 232, 236, 202, 115, 211, 183, 23,
230, 44, 232, 214, 232, 236, 202, 114, 23, 230, 50, 232, 214, 232, 236,
202, 115, 229, 144, 23, 230, 50, 232, 214, 232, 236, 202, 115, 229, 145,
171, 203, 110, 23, 230, 50, 232, 214, 232, 236, 202, 115, 229, 145, 213,
143, 199, 147, 23, 230, 49, 23, 230, 50, 248, 61, 211, 41, 233, 83, 23,
230, 50, 229, 222, 23, 230, 50, 171, 203, 110, 23, 230, 50, 229, 223,
171, 203, 110, 23, 230, 50, 171, 248, 74, 23, 230, 50, 171, 232, 123, 23,
230, 50, 202, 125, 140, 171, 203, 110, 23, 230, 50, 202, 125, 246, 137,
23, 230, 50, 202, 125, 246, 138, 171, 203, 110, 23, 230, 50, 202, 125,
246, 138, 171, 203, 111, 248, 74, 23, 230, 50, 202, 125, 219, 146, 23,
230, 56, 23, 230, 57, 171, 203, 110, 23, 230, 57, 213, 143, 199, 147, 23,
230, 57, 171, 232, 123, 23, 230, 46, 238, 140, 23, 230, 45, 23, 230, 55,
211, 183, 23, 230, 54, 23, 230, 55, 211, 184, 171, 203, 110, 23, 230, 55,
171, 203, 110, 23, 230, 55, 211, 184, 213, 143, 199, 147, 23, 230, 55,
213, 143, 199, 147, 23, 230, 55, 211, 184, 171, 232, 123, 23, 230, 55,
171, 232, 123, 23, 230, 53, 211, 183, 23, 230, 52, 23, 230, 58, 23, 230,
43, 23, 230, 44, 171, 203, 110, 23, 230, 44, 213, 143, 199, 147, 23, 230,
44, 171, 232, 123, 23, 230, 48, 211, 183, 23, 230, 48, 211, 184, 171,
232, 123, 23, 230, 47, 23, 230, 48, 202, 236, 23, 230, 48, 211, 184, 171,
203, 110, 23, 230, 48, 171, 203, 110, 23, 230, 48, 211, 184, 213, 143,
199, 147, 23, 230, 48, 213, 143, 199, 147, 23, 230, 48, 171, 203, 111,
198, 231, 223, 176, 23, 230, 48, 171, 248, 61, 85, 207, 81, 23, 230, 60,
23, 146, 140, 85, 207, 81, 23, 230, 59, 140, 85, 207, 81, 23, 230, 48,
140, 85, 207, 81, 23, 230, 61, 140, 85, 207, 81, 23, 230, 48, 219, 146,
23, 146, 140, 85, 207, 82, 248, 74, 23, 146, 140, 85, 207, 82, 239, 10,
23, 230, 48, 140, 85, 207, 82, 239, 10, 23, 146, 219, 147, 235, 96, 23,
146, 219, 147, 142, 207, 76, 201, 229, 23, 146, 219, 147, 142, 207, 76,
238, 129, 23, 146, 219, 147, 142, 211, 136, 242, 129, 23, 146, 219, 147,
197, 41, 23, 146, 171, 197, 69, 219, 147, 197, 41, 23, 230, 59, 219, 147,
197, 41, 23, 230, 44, 219, 147, 197, 41, 23, 230, 61, 219, 147, 197, 41,
23, 146, 219, 147, 208, 39, 221, 116, 23, 146, 219, 147, 248, 74, 23,
146, 219, 147, 198, 232, 199, 147, 23, 146, 219, 147, 199, 147, 23, 230,
48, 219, 147, 199, 147, 23, 146, 219, 147, 140, 199, 147, 23, 230, 48,
219, 147, 140, 199, 147, 23, 230, 61, 219, 147, 140, 171, 140, 171, 211,
125, 23, 230, 61, 219, 147, 140, 171, 140, 199, 147, 23, 146, 219, 147,
223, 176, 23, 230, 59, 219, 147, 223, 176, 23, 230, 48, 219, 147, 223,
176, 23, 230, 61, 219, 147, 223, 176, 23, 146, 140, 85, 219, 146, 23,
230, 59, 140, 85, 219, 146, 23, 230, 48, 140, 85, 219, 146, 23, 230, 48,
207, 81, 23, 230, 61, 140, 85, 219, 146, 23, 146, 140, 85, 238, 184, 219,
146, 23, 230, 59, 140, 85, 238, 184, 219, 146, 23, 146, 207, 82, 235, 96,
23, 230, 48, 207, 82, 142, 140, 171, 229, 15, 216, 160, 23, 230, 61, 207,
82, 142, 85, 171, 140, 238, 183, 23, 146, 207, 82, 197, 41, 23, 146, 207,
82, 208, 39, 221, 116, 23, 146, 207, 82, 219, 146, 23, 230, 59, 207, 82,
219, 146, 23, 230, 44, 207, 82, 219, 146, 23, 230, 61, 207, 82, 219, 146,
23, 146, 207, 82, 216, 160, 23, 146, 207, 82, 85, 239, 10, 23, 146, 207,
82, 85, 208, 39, 221, 115, 23, 146, 207, 82, 223, 176, 23, 146, 207, 82,
199, 147, 23, 230, 46, 207, 82, 199, 147, 23, 146, 140, 207, 82, 219,
146, 23, 230, 59, 140, 207, 82, 219, 146, 23, 230, 53, 140, 207, 82, 219,
147, 211, 211, 23, 230, 46, 140, 207, 82, 219, 147, 211, 125, 23, 230,
46, 140, 207, 82, 219, 147, 223, 190, 23, 230, 46, 140, 207, 82, 219,
147, 197, 68, 23, 230, 55, 140, 207, 82, 219, 146, 23, 230, 48, 140, 207,
82, 219, 146, 23, 230, 61, 140, 207, 82, 219, 147, 211, 125, 23, 230, 61,
140, 207, 82, 219, 146, 23, 146, 85, 235, 96, 23, 230, 48, 216, 160, 23,
146, 85, 197, 41, 23, 230, 59, 85, 197, 41, 23, 146, 85, 208, 39, 221,
116, 23, 146, 85, 130, 171, 203, 110, 23, 230, 46, 85, 199, 147, 23, 146,
85, 171, 219, 146, 23, 146, 85, 219, 146, 23, 146, 85, 207, 82, 219, 146,
23, 230, 59, 85, 207, 82, 219, 146, 23, 230, 53, 85, 207, 82, 219, 147,
211, 211, 23, 230, 55, 85, 207, 82, 219, 146, 23, 230, 48, 85, 207, 82,
219, 146, 23, 230, 61, 85, 207, 82, 219, 147, 211, 125, 23, 230, 61, 85,
207, 82, 219, 147, 223, 190, 23, 230, 61, 85, 207, 82, 219, 146, 23, 230,
59, 85, 207, 82, 219, 147, 248, 74, 23, 230, 57, 85, 207, 82, 219, 147,
239, 10, 23, 230, 57, 85, 207, 82, 219, 147, 239, 11, 203, 110, 23, 230,
46, 85, 207, 82, 219, 147, 239, 11, 211, 125, 23, 230, 46, 85, 207, 82,
219, 147, 239, 11, 223, 190, 23, 230, 46, 85, 207, 82, 219, 147, 239, 10,
23, 230, 48, 140, 229, 144, 23, 146, 140, 171, 203, 110, 23, 230, 48,
140, 171, 203, 110, 23, 146, 140, 171, 203, 111, 171, 237, 10, 23, 146,
140, 171, 203, 111, 171, 239, 10, 23, 146, 140, 171, 203, 111, 171, 248,
74, 23, 146, 140, 171, 203, 111, 140, 248, 74, 23, 146, 140, 171, 203,
111, 247, 191, 248, 74, 23, 146, 140, 171, 203, 111, 140, 229, 146, 23,
146, 140, 171, 232, 124, 140, 201, 229, 23, 146, 140, 171, 232, 124, 140,
248, 74, 23, 146, 140, 171, 128, 23, 146, 140, 171, 238, 140, 23, 146,
140, 171, 238, 132, 171, 223, 145, 23, 230, 57, 140, 171, 238, 132, 171,
223, 145, 23, 146, 140, 171, 238, 132, 171, 197, 68, 23, 146, 140, 171,
242, 130, 23, 230, 55, 140, 199, 147, 23, 230, 55, 140, 171, 211, 183,
23, 230, 48, 140, 171, 211, 183, 23, 230, 48, 140, 171, 220, 72, 23, 230,
48, 140, 199, 147, 23, 230, 48, 140, 171, 202, 236, 23, 230, 61, 140,
171, 211, 125, 23, 230, 61, 140, 171, 223, 190, 23, 230, 61, 140, 199,
147, 23, 146, 199, 147, 23, 146, 171, 229, 222, 23, 146, 171, 203, 111,
237, 10, 23, 146, 171, 203, 111, 239, 10, 23, 146, 171, 203, 111, 248,
74, 23, 146, 171, 232, 123, 23, 146, 171, 248, 61, 140, 216, 160, 23,
146, 171, 248, 61, 85, 207, 81, 23, 146, 171, 248, 61, 207, 82, 219, 146,
23, 146, 171, 197, 69, 103, 232, 235, 23, 146, 171, 136, 103, 232, 235,
23, 146, 171, 197, 69, 112, 232, 235, 23, 146, 171, 197, 69, 232, 119,
232, 235, 23, 146, 171, 136, 232, 119, 208, 39, 221, 115, 23, 230, 51,
23, 146, 229, 222, 23, 198, 233, 203, 73, 23, 198, 233, 215, 215, 23,
198, 233, 248, 60, 23, 230, 215, 203, 73, 23, 230, 215, 215, 215, 23,
230, 215, 248, 60, 23, 201, 213, 203, 73, 23, 201, 213, 215, 215, 23,
201, 213, 248, 60, 23, 247, 132, 203, 73, 23, 247, 132, 215, 215, 23,
247, 132, 248, 60, 23, 206, 210, 203, 73, 23, 206, 210, 215, 215, 23,
206, 210, 248, 60, 23, 201, 96, 201, 5, 23, 201, 96, 248, 60, 23, 202,
102, 220, 73, 203, 73, 23, 202, 102, 2, 203, 73, 23, 202, 102, 220, 73,
215, 215, 23, 202, 102, 2, 215, 215, 23, 202, 102, 204, 161, 23, 232,
186, 220, 73, 203, 73, 23, 232, 186, 2, 203, 73, 23, 232, 186, 220, 73,
215, 215, 23, 232, 186, 2, 215, 215, 23, 232, 186, 204, 161, 23, 202,
102, 232, 186, 250, 246, 23, 215, 253, 130, 142, 220, 72, 23, 215, 253,
130, 142, 202, 236, 23, 215, 253, 130, 204, 161, 23, 215, 253, 142, 204,
161, 23, 215, 253, 130, 142, 250, 247, 220, 72, 23, 215, 253, 130, 142,
250, 247, 202, 236, 23, 215, 253, 203, 111, 115, 203, 111, 205, 238, 23,
215, 252, 232, 241, 239, 0, 23, 215, 254, 232, 241, 239, 0, 23, 215, 252,
203, 74, 201, 230, 202, 236, 23, 215, 252, 203, 74, 201, 230, 217, 30,
23, 215, 252, 203, 74, 201, 230, 220, 72, 23, 215, 252, 203, 74, 201,
230, 220, 70, 23, 215, 252, 203, 74, 193, 248, 232, 189, 23, 215, 252,
55, 201, 229, 23, 215, 252, 55, 193, 248, 232, 189, 23, 215, 252, 55,
250, 246, 23, 215, 252, 55, 250, 247, 193, 248, 232, 189, 23, 215, 252,
238, 183, 23, 215, 252, 198, 170, 201, 230, 216, 0, 23, 215, 252, 198,
170, 193, 248, 232, 189, 23, 215, 252, 198, 170, 250, 246, 23, 215, 252,
198, 170, 250, 247, 193, 248, 232, 189, 23, 215, 252, 248, 79, 202, 236,
23, 215, 252, 248, 79, 217, 30, 23, 215, 252, 248, 79, 220, 72, 23, 215,
252, 238, 224, 202, 236, 23, 215, 252, 238, 224, 217, 30, 23, 215, 252,
238, 224, 220, 72, 23, 215, 252, 238, 224, 207, 14, 23, 215, 252, 242,
244, 202, 236, 23, 215, 252, 242, 244, 217, 30, 23, 215, 252, 242, 244,
220, 72, 23, 215, 252, 105, 202, 236, 23, 215, 252, 105, 217, 30, 23,
215, 252, 105, 220, 72, 23, 215, 252, 192, 21, 202, 236, 23, 215, 252,
192, 21, 217, 30, 23, 215, 252, 192, 21, 220, 72, 23, 215, 252, 210, 176,
202, 236, 23, 215, 252, 210, 176, 217, 30, 23, 215, 252, 210, 176, 220,
72, 23, 198, 200, 207, 12, 203, 73, 23, 198, 200, 207, 12, 235, 106, 23,
198, 200, 207, 12, 250, 246, 23, 198, 200, 207, 13, 203, 73, 23, 198,
200, 207, 13, 235, 106, 23, 198, 200, 207, 13, 250, 246, 23, 198, 200,
204, 43, 23, 198, 200, 250, 93, 202, 133, 203, 73, 23, 198, 200, 250, 93,
202, 133, 235, 106, 23, 198, 200, 250, 93, 202, 133, 198, 169, 23, 215,
255, 249, 240, 202, 236, 23, 215, 255, 249, 240, 217, 30, 23, 215, 255,
249, 240, 220, 72, 23, 215, 255, 249, 240, 220, 70, 23, 215, 255, 198,
227, 202, 236, 23, 215, 255, 198, 227, 217, 30, 23, 215, 255, 198, 227,
220, 72, 23, 215, 255, 198, 227, 220, 70, 23, 215, 255, 248, 61, 249,
240, 202, 236, 23, 215, 255, 248, 61, 249, 240, 217, 30, 23, 215, 255,
248, 61, 249, 240, 220, 72, 23, 215, 255, 248, 61, 249, 240, 220, 70, 23,
215, 255, 248, 61, 198, 227, 202, 236, 23, 215, 255, 248, 61, 198, 227,
217, 30, 23, 215, 255, 248, 61, 198, 227, 220, 72, 23, 215, 255, 248, 61,
198, 227, 220, 70, 23, 215, 254, 203, 74, 201, 230, 202, 236, 23, 215,
254, 203, 74, 201, 230, 217, 30, 23, 215, 254, 203, 74, 201, 230, 220,
72, 23, 215, 254, 203, 74, 201, 230, 220, 70, 23, 215, 254, 203, 74, 193,
248, 232, 189, 23, 215, 254, 55, 201, 229, 23, 215, 254, 55, 193, 248,
232, 189, 23, 215, 254, 55, 250, 246, 23, 215, 254, 55, 250, 247, 193,
248, 232, 189, 23, 215, 254, 238, 183, 23, 215, 254, 198, 170, 201, 230,
216, 0, 23, 215, 254, 198, 170, 193, 248, 232, 189, 23, 215, 254, 198,
170, 250, 247, 216, 0, 23, 215, 254, 198, 170, 250, 247, 193, 248, 232,
189, 23, 215, 254, 248, 78, 23, 215, 254, 238, 224, 202, 236, 23, 215,
254, 238, 224, 217, 30, 23, 215, 254, 238, 224, 220, 72, 23, 215, 254,
242, 243, 23, 215, 254, 105, 202, 236, 23, 215, 254, 105, 217, 30, 23,
215, 254, 105, 220, 72, 23, 215, 254, 192, 21, 202, 236, 23, 215, 254,
192, 21, 217, 30, 23, 215, 254, 192, 21, 220, 72, 23, 215, 254, 210, 176,
202, 236, 23, 215, 254, 210, 176, 217, 30, 23, 215, 254, 210, 176, 220,
72, 23, 198, 201, 207, 13, 203, 73, 23, 198, 201, 207, 13, 235, 106, 23,
198, 201, 207, 13, 250, 246, 23, 198, 201, 207, 12, 203, 73, 23, 198,
201, 207, 12, 235, 106, 23, 198, 201, 207, 12, 250, 246, 23, 198, 201,
204, 43, 23, 215, 252, 238, 132, 208, 168, 202, 236, 23, 215, 252, 238,
132, 208, 168, 217, 30, 23, 215, 252, 238, 132, 208, 168, 220, 72, 23,
215, 252, 238, 132, 208, 168, 220, 70, 23, 215, 252, 238, 132, 230, 75,
202, 236, 23, 215, 252, 238, 132, 230, 75, 217, 30, 23, 215, 252, 238,
132, 230, 75, 220, 72, 23, 215, 252, 238, 132, 230, 75, 220, 70, 23, 215,
252, 238, 132, 199, 153, 242, 131, 202, 236, 23, 215, 252, 238, 132, 199,
153, 242, 131, 217, 30, 23, 215, 252, 228, 165, 202, 236, 23, 215, 252,
228, 165, 217, 30, 23, 215, 252, 228, 165, 220, 72, 23, 215, 252, 219,
70, 202, 236, 23, 215, 252, 219, 70, 217, 30, 23, 215, 252, 219, 70, 220,
72, 23, 215, 252, 219, 70, 2, 235, 106, 23, 215, 252, 194, 125, 238, 132,
55, 202, 236, 23, 215, 252, 194, 125, 238, 132, 55, 217, 30, 23, 215,
252, 194, 125, 238, 132, 55, 220, 72, 23, 215, 252, 194, 125, 238, 132,
198, 170, 202, 236, 23, 215, 252, 194, 125, 238, 132, 198, 170, 217, 30,
23, 215, 252, 194, 125, 238, 132, 198, 170, 220, 72, 23, 215, 252, 238,
132, 199, 216, 201, 229, 23, 215, 252, 238, 130, 238, 184, 202, 236, 23,
215, 252, 238, 130, 238, 184, 217, 30, 23, 207, 12, 203, 73, 23, 207, 12,
235, 106, 23, 207, 12, 250, 248, 23, 215, 252, 204, 43, 23, 215, 252,
238, 132, 229, 136, 232, 88, 194, 151, 23, 215, 252, 228, 165, 229, 136,
232, 88, 194, 151, 23, 215, 252, 219, 70, 229, 136, 232, 88, 194, 151,
23, 215, 252, 194, 125, 229, 136, 232, 88, 194, 151, 23, 207, 12, 203,
74, 229, 136, 232, 88, 194, 151, 23, 207, 12, 55, 229, 136, 232, 88, 194,
151, 23, 207, 12, 250, 247, 229, 136, 232, 88, 194, 151, 23, 215, 252,
238, 132, 229, 136, 242, 224, 23, 215, 252, 228, 165, 229, 136, 242, 224,
23, 215, 252, 219, 70, 229, 136, 242, 224, 23, 215, 252, 194, 125, 229,
136, 242, 224, 23, 207, 12, 203, 74, 229, 136, 242, 224, 23, 207, 12, 55,
229, 136, 242, 224, 23, 207, 12, 250, 247, 229, 136, 242, 224, 23, 215,
252, 194, 125, 237, 11, 210, 203, 202, 236, 23, 215, 252, 194, 125, 237,
11, 210, 203, 217, 30, 23, 215, 252, 194, 125, 237, 11, 210, 203, 220,
72, 23, 215, 254, 238, 132, 229, 136, 246, 147, 202, 236, 23, 215, 254,
238, 132, 229, 136, 246, 147, 220, 72, 23, 215, 254, 228, 165, 229, 136,
246, 147, 2, 235, 106, 23, 215, 254, 228, 165, 229, 136, 246, 147, 220,
73, 235, 106, 23, 215, 254, 228, 165, 229, 136, 246, 147, 2, 198, 169,
23, 215, 254, 228, 165, 229, 136, 246, 147, 220, 73, 198, 169, 23, 215,
254, 219, 70, 229, 136, 246, 147, 2, 203, 73, 23, 215, 254, 219, 70, 229,
136, 246, 147, 220, 73, 203, 73, 23, 215, 254, 219, 70, 229, 136, 246,
147, 2, 235, 106, 23, 215, 254, 219, 70, 229, 136, 246, 147, 220, 73,
235, 106, 23, 215, 254, 194, 125, 229, 136, 246, 147, 202, 236, 23, 215,
254, 194, 125, 229, 136, 246, 147, 220, 72, 23, 207, 13, 203, 74, 229,
136, 246, 146, 23, 207, 13, 55, 229, 136, 246, 146, 23, 207, 13, 250,
247, 229, 136, 246, 146, 23, 215, 254, 238, 132, 229, 136, 232, 183, 202,
236, 23, 215, 254, 238, 132, 229, 136, 232, 183, 220, 72, 23, 215, 254,
228, 165, 229, 136, 232, 183, 2, 235, 106, 23, 215, 254, 228, 165, 229,
136, 232, 183, 220, 73, 235, 106, 23, 215, 254, 228, 165, 229, 136, 232,
183, 198, 170, 2, 198, 169, 23, 215, 254, 228, 165, 229, 136, 232, 183,
198, 170, 220, 73, 198, 169, 23, 215, 254, 219, 70, 229, 136, 232, 183,
2, 203, 73, 23, 215, 254, 219, 70, 229, 136, 232, 183, 220, 73, 203, 73,
23, 215, 254, 219, 70, 229, 136, 232, 183, 2, 235, 106, 23, 215, 254,
219, 70, 229, 136, 232, 183, 220, 73, 235, 106, 23, 215, 254, 194, 125,
229, 136, 232, 183, 202, 236, 23, 215, 254, 194, 125, 229, 136, 232, 183,
220, 72, 23, 207, 13, 203, 74, 229, 136, 232, 182, 23, 207, 13, 55, 229,
136, 232, 182, 23, 207, 13, 250, 247, 229, 136, 232, 182, 23, 215, 254,
238, 132, 202, 236, 23, 215, 254, 238, 132, 217, 30, 23, 215, 254, 238,
132, 220, 72, 23, 215, 254, 238, 132, 220, 70, 23, 215, 254, 238, 132,
242, 42, 23, 215, 254, 228, 165, 202, 236, 23, 215, 254, 219, 70, 202,
236, 23, 215, 254, 194, 125, 202, 224, 23, 215, 254, 194, 125, 202, 236,
23, 215, 254, 194, 125, 220, 72, 23, 207, 13, 203, 73, 23, 207, 13, 235,
106, 23, 207, 13, 250, 246, 23, 215, 254, 204, 44, 210, 235, 23, 215,
252, 250, 93, 242, 131, 2, 203, 73, 23, 215, 252, 250, 93, 242, 131, 217,
31, 203, 73, 23, 215, 252, 250, 93, 242, 131, 2, 235, 106, 23, 215, 252,
250, 93, 242, 131, 217, 31, 235, 106, 23, 215, 254, 250, 93, 242, 131,
229, 136, 194, 152, 2, 203, 73, 23, 215, 254, 250, 93, 242, 131, 229,
136, 194, 152, 217, 31, 203, 73, 23, 215, 254, 250, 93, 242, 131, 229,
136, 194, 152, 220, 73, 203, 73, 23, 215, 254, 250, 93, 242, 131, 229,
136, 194, 152, 2, 235, 106, 23, 215, 254, 250, 93, 242, 131, 229, 136,
194, 152, 217, 31, 235, 106, 23, 215, 254, 250, 93, 242, 131, 229, 136,
194, 152, 220, 73, 235, 106, 23, 215, 252, 193, 248, 242, 131, 232, 88,
203, 73, 23, 215, 252, 193, 248, 242, 131, 232, 88, 235, 106, 23, 215,
254, 193, 248, 242, 131, 229, 136, 194, 152, 203, 73, 23, 215, 254, 193,
248, 242, 131, 229, 136, 194, 152, 235, 106, 23, 215, 252, 232, 241, 242,
128, 203, 73, 23, 215, 252, 232, 241, 242, 128, 235, 106, 23, 215, 254,
232, 241, 242, 128, 229, 136, 194, 152, 203, 73, 23, 215, 254, 232, 241,
242, 128, 229, 136, 194, 152, 235, 106, 23, 235, 22, 250, 78, 202, 236,
23, 235, 22, 250, 78, 220, 72, 23, 235, 22, 233, 61, 23, 235, 22, 202,
239, 23, 235, 22, 200, 23, 23, 235, 22, 207, 213, 23, 235, 22, 203, 80,
23, 235, 22, 203, 81, 250, 246, 23, 235, 22, 233, 213, 211, 137, 199, 84,
23, 235, 22, 230, 225, 23, 229, 245, 23, 229, 246, 207, 86, 23, 229, 246,
215, 252, 201, 229, 23, 229, 246, 215, 252, 199, 87, 23, 229, 246, 215,
254, 201, 229, 23, 229, 246, 215, 252, 238, 131, 23, 229, 246, 215, 254,
238, 131, 23, 229, 246, 216, 1, 242, 130, 23, 233, 92, 236, 205, 209,
160, 213, 113, 232, 124, 199, 85, 23, 233, 92, 236, 205, 209, 160, 213,
113, 130, 211, 164, 235, 96, 23, 233, 92, 236, 205, 209, 160, 213, 113,
130, 211, 164, 142, 199, 85, 23, 233, 179, 201, 230, 197, 41, 23, 233,
179, 201, 230, 214, 178, 23, 233, 179, 201, 230, 235, 96, 23, 235, 80,
233, 179, 214, 179, 235, 96, 23, 235, 80, 233, 179, 142, 214, 178, 23,
235, 80, 233, 179, 130, 214, 178, 23, 235, 80, 233, 179, 214, 179, 197,
41, 23, 232, 141, 214, 178, 23, 232, 141, 239, 0, 23, 232, 141, 193, 251,
23, 233, 174, 211, 183, 23, 233, 174, 202, 101, 23, 233, 174, 242, 83,
23, 233, 182, 247, 239, 203, 73, 23, 233, 182, 247, 239, 215, 215, 23,
233, 174, 138, 211, 183, 23, 233, 174, 194, 64, 211, 183, 23, 233, 174,
138, 242, 83, 23, 233, 174, 194, 62, 216, 0, 23, 233, 182, 194, 45, 23,
233, 175, 197, 41, 23, 233, 175, 235, 96, 23, 233, 175, 232, 169, 23,
233, 177, 201, 229, 23, 233, 177, 201, 230, 235, 106, 23, 233, 177, 201,
230, 250, 246, 23, 233, 178, 201, 229, 23, 233, 178, 201, 230, 235, 106,
23, 233, 178, 201, 230, 250, 246, 23, 233, 177, 238, 129, 23, 233, 178,
238, 129, 23, 233, 177, 242, 125, 23, 242, 239, 209, 41, 23, 242, 239,
214, 178, 23, 242, 239, 201, 143, 23, 200, 24, 242, 239, 229, 155, 23,
200, 24, 242, 239, 216, 160, 23, 200, 24, 242, 239, 219, 52, 23, 234,
191, 23, 213, 113, 214, 178, 23, 213, 113, 239, 0, 23, 213, 113, 193,
249, 23, 213, 113, 194, 59, 23, 251, 53, 247, 225, 211, 125, 23, 251, 53,
201, 142, 223, 190, 23, 251, 53, 247, 227, 2, 207, 11, 23, 251, 53, 201,
144, 2, 207, 11, 23, 247, 152, 223, 162, 23, 247, 152, 233, 202, 23, 216,
5, 242, 84, 214, 178, 23, 216, 5, 242, 84, 232, 123, 23, 216, 5, 242, 84,
239, 0, 23, 216, 5, 202, 231, 23, 216, 5, 202, 232, 193, 251, 23, 216, 5,
202, 232, 211, 183, 23, 216, 5, 232, 84, 23, 216, 5, 232, 85, 193, 251,
23, 216, 5, 232, 85, 211, 183, 23, 216, 5, 211, 184, 242, 130, 23, 216,
5, 211, 184, 232, 123, 23, 216, 5, 211, 184, 193, 251, 23, 216, 5, 211,
184, 211, 118, 23, 216, 5, 211, 184, 211, 119, 193, 251, 23, 216, 5, 211,
184, 211, 119, 193, 77, 23, 216, 5, 211, 184, 207, 242, 23, 216, 5, 211,
184, 207, 243, 193, 251, 23, 216, 5, 211, 184, 207, 243, 193, 77, 23,
216, 5, 221, 160, 23, 216, 5, 221, 161, 232, 123, 23, 216, 5, 221, 161,
193, 251, 23, 216, 5, 200, 23, 23, 216, 5, 200, 24, 232, 123, 23, 216, 5,
200, 24, 201, 143, 23, 219, 160, 209, 103, 199, 26, 23, 219, 162, 106,
136, 197, 38, 23, 219, 162, 113, 136, 219, 47, 23, 216, 5, 238, 222, 23,
216, 5, 193, 250, 203, 73, 23, 216, 5, 193, 250, 235, 106, 23, 199, 1,
201, 249, 211, 126, 233, 63, 23, 199, 1, 219, 205, 219, 159, 23, 199, 1,
199, 74, 248, 61, 219, 159, 23, 199, 1, 199, 74, 198, 231, 223, 146, 216,
4, 23, 199, 1, 223, 146, 216, 5, 207, 213, 23, 199, 1, 215, 251, 251, 78,
242, 240, 23, 199, 1, 246, 138, 201, 249, 211, 125, 23, 199, 1, 246, 138,
223, 146, 216, 4, 23, 200, 52, 23, 200, 53, 216, 0, 23, 200, 53, 211,
212, 199, 0, 23, 200, 53, 211, 212, 199, 1, 216, 0, 23, 200, 53, 211,
212, 219, 159, 23, 200, 53, 211, 212, 219, 160, 216, 0, 23, 200, 53, 247,
255, 219, 159, 23, 215, 252, 223, 45, 23, 215, 254, 223, 45, 23, 214,
205, 23, 230, 86, 23, 233, 205, 23, 203, 177, 229, 143, 202, 134, 23,
203, 177, 229, 143, 209, 158, 23, 194, 150, 203, 177, 229, 143, 216, 3,
23, 232, 181, 203, 177, 229, 143, 216, 3, 23, 203, 177, 199, 86, 232, 89,
194, 156, 23, 198, 238, 201, 230, 201, 217, 23, 198, 238, 238, 130, 248,
78, 23, 198, 239, 197, 223, 23, 113, 247, 214, 199, 86, 232, 89, 229,
143, 222, 227, 23, 219, 187, 242, 43, 23, 219, 187, 220, 1, 23, 219, 187,
220, 0, 23, 219, 187, 219, 255, 23, 219, 187, 219, 254, 23, 219, 187,
219, 253, 23, 219, 187, 219, 252, 23, 219, 187, 219, 251, 23, 232, 240,
23, 219, 101, 202, 160, 23, 219, 102, 202, 160, 23, 219, 104, 229, 218,
23, 219, 104, 194, 60, 23, 219, 104, 237, 63, 23, 219, 104, 229, 246,
214, 205, 23, 219, 104, 198, 240, 23, 219, 104, 219, 186, 236, 237, 23,
242, 38, 23, 232, 71, 201, 238, 23, 204, 180, 23, 242, 47, 23, 210, 230,
23, 232, 250, 216, 67, 23, 232, 250, 216, 66, 23, 232, 250, 216, 65, 23,
232, 250, 216, 64, 23, 232, 250, 216, 63, 23, 207, 15, 216, 67, 23, 207,
15, 216, 66, 23, 207, 15, 216, 65, 23, 207, 15, 216, 64, 23, 207, 15,
216, 63, 23, 207, 15, 216, 62, 23, 207, 15, 216, 61, 23, 207, 15, 216,
60, 23, 207, 15, 216, 74, 23, 207, 15, 216, 73, 23, 207, 15, 216, 72, 23,
207, 15, 216, 71, 23, 207, 15, 216, 70, 23, 207, 15, 216, 69, 23, 207,
15, 216, 68, 38, 131, 1, 249, 227, 38, 131, 1, 247, 110, 38, 131, 1, 196,
121, 38, 131, 1, 231, 13, 38, 131, 1, 236, 141, 38, 131, 1, 193, 38, 38,
131, 1, 192, 55, 38, 131, 1, 192, 81, 38, 131, 1, 223, 69, 38, 131, 1,
88, 223, 69, 38, 131, 1, 70, 38, 131, 1, 236, 162, 38, 131, 1, 222, 127,
38, 131, 1, 219, 139, 38, 131, 1, 215, 155, 38, 131, 1, 215, 46, 38, 131,
1, 211, 196, 38, 131, 1, 209, 185, 38, 131, 1, 207, 72, 38, 131, 1, 202,
241, 38, 131, 1, 197, 251, 38, 131, 1, 197, 88, 38, 131, 1, 232, 92, 38,
131, 1, 229, 198, 38, 131, 1, 203, 167, 38, 131, 1, 198, 97, 38, 131, 1,
242, 174, 38, 131, 1, 204, 64, 38, 131, 1, 193, 47, 38, 131, 1, 193, 49,
38, 131, 1, 193, 82, 38, 131, 1, 192, 214, 38, 131, 1, 2, 192, 179, 38,
131, 1, 193, 1, 38, 131, 1, 223, 110, 2, 192, 179, 38, 131, 1, 248, 28,
192, 179, 38, 131, 1, 223, 110, 248, 28, 192, 179, 38, 131, 1, 232, 216,
212, 180, 209, 48, 89, 1, 172, 212, 180, 209, 48, 89, 1, 198, 118, 212,
180, 209, 48, 89, 1, 213, 43, 212, 180, 209, 48, 89, 1, 189, 212, 180,
209, 48, 89, 1, 144, 212, 180, 209, 48, 89, 1, 181, 212, 180, 209, 48,
89, 1, 193, 209, 212, 180, 209, 48, 89, 1, 213, 210, 212, 180, 209, 48,
89, 1, 247, 19, 212, 180, 209, 48, 89, 1, 177, 212, 180, 209, 48, 89, 1,
188, 212, 180, 209, 48, 89, 1, 192, 112, 212, 180, 209, 48, 89, 1, 215,
3, 212, 180, 209, 48, 89, 1, 213, 30, 212, 180, 209, 48, 89, 1, 160, 212,
180, 209, 48, 89, 1, 238, 0, 212, 180, 209, 48, 89, 1, 212, 201, 212,
180, 209, 48, 89, 1, 213, 88, 212, 180, 209, 48, 89, 1, 196, 157, 212,
180, 209, 48, 89, 1, 213, 24, 212, 180, 209, 48, 89, 1, 197, 215, 212,
180, 209, 48, 89, 1, 233, 97, 212, 180, 209, 48, 89, 1, 167, 212, 180,
209, 48, 89, 1, 208, 239, 212, 180, 209, 48, 89, 1, 168, 212, 180, 209,
48, 89, 1, 213, 90, 212, 180, 209, 48, 89, 1, 166, 212, 180, 209, 48, 89,
1, 193, 164, 212, 180, 209, 48, 89, 1, 213, 92, 212, 180, 209, 48, 89, 1,
236, 158, 212, 180, 209, 48, 89, 1, 213, 91, 212, 180, 209, 48, 89, 1,
230, 89, 212, 180, 209, 48, 89, 1, 216, 98, 212, 180, 209, 48, 89, 1,
209, 234, 212, 180, 209, 48, 89, 1, 231, 233, 212, 180, 209, 48, 89, 1,
207, 3, 212, 180, 209, 48, 89, 1, 64, 212, 180, 209, 48, 89, 1, 252, 33,
212, 180, 209, 48, 89, 1, 70, 212, 180, 209, 48, 89, 1, 68, 212, 180,
209, 48, 89, 1, 74, 212, 180, 209, 48, 89, 1, 211, 194, 212, 180, 209,
48, 89, 1, 71, 212, 180, 209, 48, 89, 1, 234, 171, 212, 180, 209, 48, 89,
1, 194, 202, 212, 180, 209, 48, 89, 199, 9, 212, 180, 209, 48, 89, 199,
5, 212, 180, 209, 48, 89, 199, 6, 212, 180, 209, 48, 89, 199, 3, 212,
180, 209, 48, 89, 199, 4, 212, 180, 209, 48, 89, 199, 7, 212, 180, 209,
48, 89, 199, 8, 212, 180, 209, 48, 89, 3, 39, 210, 116, 212, 180, 209,
48, 89, 3, 39, 199, 194, 212, 180, 209, 48, 89, 3, 39, 219, 103, 212,
180, 209, 48, 89, 3, 39, 250, 198, 212, 180, 209, 48, 89, 3, 39, 223,
122, 212, 180, 209, 48, 89, 3, 193, 172, 193, 171, 212, 180, 209, 48, 89,
5, 219, 250, 212, 180, 209, 48, 89, 17, 192, 76, 212, 180, 209, 48, 89,
17, 101, 212, 180, 209, 48, 89, 17, 104, 212, 180, 209, 48, 89, 17, 133,
212, 180, 209, 48, 89, 17, 134, 212, 180, 209, 48, 89, 17, 151, 212, 180,
209, 48, 89, 17, 170, 212, 180, 209, 48, 89, 17, 179, 212, 180, 209, 48,
89, 17, 174, 212, 180, 209, 48, 89, 17, 182, 212, 180, 209, 48, 89, 219,
92, 212, 196, 212, 180, 209, 48, 89, 47, 247, 19, 194, 148, 1, 252, 33,
194, 148, 1, 64, 194, 148, 1, 249, 3, 194, 148, 1, 247, 19, 194, 148, 1,
238, 0, 194, 148, 1, 231, 233, 194, 148, 1, 168, 194, 148, 1, 210, 94,
194, 148, 1, 177, 194, 148, 1, 181, 194, 148, 1, 166, 194, 148, 1, 189,
194, 148, 1, 199, 240, 194, 148, 1, 233, 97, 194, 148, 1, 188, 194, 148,
1, 204, 64, 194, 148, 1, 223, 62, 194, 148, 1, 192, 112, 194, 148, 1,
194, 169, 194, 148, 1, 196, 157, 194, 148, 1, 160, 194, 148, 1, 74, 194,
148, 1, 250, 8, 194, 148, 1, 167, 194, 148, 1, 172, 194, 148, 1, 221,
250, 194, 148, 1, 144, 194, 148, 1, 71, 194, 148, 1, 70, 194, 148, 1,
214, 165, 194, 148, 1, 68, 194, 148, 1, 219, 130, 194, 148, 1, 198, 118,
194, 148, 1, 198, 223, 194, 148, 1, 211, 201, 194, 148, 1, 251, 248, 194,
148, 1, 250, 214, 194, 148, 1, 223, 164, 194, 148, 1, 211, 211, 194, 148,
1, 234, 88, 194, 148, 1, 251, 249, 194, 148, 1, 212, 201, 194, 148, 1,
197, 100, 194, 148, 1, 193, 13, 194, 148, 158, 198, 18, 194, 148, 158,
198, 17, 194, 148, 158, 221, 101, 194, 148, 158, 221, 100, 194, 148, 17,
192, 76, 194, 148, 17, 101, 194, 148, 17, 104, 194, 148, 17, 133, 194,
148, 17, 134, 194, 148, 17, 151, 194, 148, 17, 170, 194, 148, 17, 179,
194, 148, 17, 174, 194, 148, 17, 182, 194, 148, 214, 73, 57, 83, 82, 5,
218, 235, 221, 204, 83, 82, 5, 218, 231, 160, 83, 82, 5, 218, 229, 221,
33, 83, 82, 5, 218, 105, 222, 48, 83, 82, 5, 218, 75, 222, 57, 83, 82, 5,
218, 94, 221, 88, 83, 82, 5, 218, 122, 221, 113, 83, 82, 5, 217, 247,
221, 20, 83, 82, 5, 218, 226, 194, 72, 83, 82, 5, 218, 224, 194, 169, 83,
82, 5, 218, 222, 193, 244, 83, 82, 5, 218, 44, 194, 100, 83, 82, 5, 218,
52, 194, 111, 83, 82, 5, 218, 56, 194, 17, 83, 82, 5, 218, 125, 194, 36,
83, 82, 5, 217, 232, 193, 240, 83, 82, 5, 218, 27, 194, 98, 83, 82, 5,
218, 109, 193, 228, 83, 82, 5, 218, 121, 193, 230, 83, 82, 5, 218, 31,
193, 229, 83, 82, 5, 218, 220, 216, 120, 83, 82, 5, 218, 218, 217, 160,
83, 82, 5, 218, 216, 215, 209, 83, 82, 5, 218, 111, 217, 5, 83, 82, 5,
218, 76, 216, 55, 83, 82, 5, 218, 16, 215, 234, 83, 82, 5, 217, 237, 215,
228, 83, 82, 5, 218, 214, 248, 41, 83, 82, 5, 218, 211, 249, 3, 83, 82,
5, 218, 209, 247, 124, 83, 82, 5, 218, 20, 248, 108, 83, 82, 5, 218, 73,
248, 123, 83, 82, 5, 218, 67, 247, 206, 83, 82, 5, 218, 32, 247, 220, 83,
82, 5, 218, 199, 70, 83, 82, 5, 218, 197, 64, 83, 82, 5, 218, 195, 68,
83, 82, 5, 218, 7, 234, 171, 83, 82, 5, 218, 70, 71, 83, 82, 5, 218, 5,
211, 194, 83, 82, 5, 218, 23, 74, 83, 82, 5, 218, 33, 234, 150, 83, 82,
5, 218, 39, 223, 190, 83, 82, 5, 218, 35, 223, 190, 83, 82, 5, 217, 231,
250, 224, 83, 82, 5, 217, 248, 234, 88, 83, 82, 5, 218, 184, 203, 125,
83, 82, 5, 218, 182, 188, 83, 82, 5, 218, 180, 201, 184, 83, 82, 5, 218,
8, 205, 205, 83, 82, 5, 218, 54, 205, 223, 83, 82, 5, 218, 34, 202, 183,
83, 82, 5, 218, 91, 202, 212, 83, 82, 5, 217, 230, 203, 118, 83, 82, 5,
218, 170, 219, 209, 83, 82, 5, 218, 168, 177, 83, 82, 5, 218, 166, 219,
36, 83, 82, 5, 218, 86, 220, 32, 83, 82, 5, 218, 97, 220, 42, 83, 82, 5,
218, 116, 219, 73, 83, 82, 5, 218, 17, 219, 107, 83, 82, 5, 218, 60, 184,
220, 42, 83, 82, 5, 218, 192, 237, 16, 83, 82, 5, 218, 189, 238, 0, 83,
82, 5, 218, 186, 235, 62, 83, 82, 5, 218, 81, 237, 101, 83, 82, 5, 217,
246, 236, 120, 83, 82, 5, 217, 245, 236, 146, 83, 82, 5, 218, 178, 199,
128, 83, 82, 5, 218, 175, 189, 83, 82, 5, 218, 173, 198, 45, 83, 82, 5,
218, 79, 200, 56, 83, 82, 5, 218, 115, 200, 79, 83, 82, 5, 218, 66, 198,
254, 83, 82, 5, 218, 101, 155, 83, 82, 5, 218, 164, 223, 20, 83, 82, 5,
218, 161, 223, 62, 83, 82, 5, 218, 159, 222, 214, 83, 82, 5, 218, 13,
223, 39, 83, 82, 5, 218, 57, 223, 41, 83, 82, 5, 218, 10, 222, 223, 83,
82, 5, 218, 107, 222, 233, 83, 82, 5, 217, 251, 184, 222, 233, 83, 82, 5,
218, 157, 193, 22, 83, 82, 5, 218, 154, 168, 83, 82, 5, 218, 152, 192,
214, 83, 82, 5, 218, 61, 193, 66, 83, 82, 5, 218, 90, 193, 69, 83, 82, 5,
218, 29, 192, 235, 83, 82, 5, 218, 49, 193, 1, 83, 82, 5, 218, 148, 233,
11, 83, 82, 5, 218, 146, 233, 97, 83, 82, 5, 218, 144, 232, 77, 83, 82,
5, 218, 92, 233, 40, 83, 82, 5, 218, 95, 233, 47, 83, 82, 5, 218, 37,
232, 152, 83, 82, 5, 218, 82, 232, 164, 83, 82, 5, 217, 229, 232, 76, 83,
82, 5, 218, 69, 233, 68, 83, 82, 5, 218, 142, 214, 20, 83, 82, 5, 218,
140, 215, 61, 83, 82, 5, 218, 138, 212, 230, 83, 82, 5, 218, 53, 214,
196, 83, 82, 5, 218, 1, 213, 130, 83, 82, 5, 217, 250, 229, 178, 83, 82,
5, 218, 133, 144, 83, 82, 5, 217, 240, 228, 181, 83, 82, 5, 218, 136,
229, 225, 83, 82, 5, 218, 74, 229, 255, 83, 82, 5, 218, 131, 229, 16, 83,
82, 5, 218, 30, 229, 43, 83, 82, 5, 218, 87, 229, 224, 83, 82, 5, 218,
42, 229, 9, 83, 82, 5, 218, 117, 229, 148, 83, 82, 5, 218, 40, 230, 65,
83, 82, 5, 218, 83, 228, 164, 83, 82, 5, 218, 118, 229, 208, 83, 82, 5,
217, 233, 229, 19, 83, 82, 5, 218, 124, 228, 177, 83, 82, 5, 218, 80,
214, 130, 83, 82, 5, 218, 129, 214, 144, 83, 82, 5, 218, 88, 214, 127,
83, 82, 5, 218, 55, 214, 138, 83, 82, 5, 218, 24, 214, 139, 83, 82, 5,
218, 14, 214, 128, 83, 82, 5, 218, 50, 214, 129, 83, 82, 5, 218, 11, 214,
143, 83, 82, 5, 218, 43, 214, 126, 83, 82, 5, 218, 84, 184, 214, 139, 83,
82, 5, 218, 64, 184, 214, 128, 83, 82, 5, 217, 243, 184, 214, 129, 83,
82, 5, 218, 15, 231, 46, 83, 82, 5, 218, 59, 231, 233, 83, 82, 5, 218, 2,
230, 186, 83, 82, 5, 217, 236, 231, 150, 83, 82, 5, 218, 4, 230, 172, 83,
82, 5, 218, 3, 230, 182, 83, 82, 5, 217, 242, 214, 149, 83, 82, 5, 218,
113, 214, 86, 83, 82, 5, 217, 249, 214, 75, 83, 82, 5, 218, 102, 210, 51,
83, 82, 5, 218, 71, 166, 83, 82, 5, 218, 120, 209, 51, 83, 82, 5, 218,
89, 210, 168, 83, 82, 5, 218, 119, 210, 181, 83, 82, 5, 218, 68, 209,
172, 83, 82, 5, 218, 104, 209, 198, 83, 82, 5, 218, 25, 217, 67, 83, 82,
5, 218, 108, 217, 82, 83, 82, 5, 218, 48, 217, 61, 83, 82, 5, 218, 123,
217, 74, 83, 82, 5, 217, 238, 217, 74, 83, 82, 5, 218, 98, 217, 75, 83,
82, 5, 217, 254, 217, 62, 83, 82, 5, 217, 252, 217, 63, 83, 82, 5, 217,
239, 217, 55, 83, 82, 5, 218, 9, 184, 217, 75, 83, 82, 5, 218, 65, 184,
217, 62, 83, 82, 5, 218, 28, 184, 217, 63, 83, 82, 5, 218, 38, 221, 61,
83, 82, 5, 218, 78, 221, 69, 83, 82, 5, 218, 96, 221, 57, 83, 82, 5, 218,
127, 221, 64, 83, 82, 5, 218, 62, 221, 65, 83, 82, 5, 218, 58, 221, 59,
83, 82, 5, 218, 12, 221, 60, 83, 82, 5, 218, 46, 231, 167, 83, 82, 5,
218, 114, 231, 175, 83, 82, 5, 218, 22, 231, 162, 83, 82, 5, 218, 77,
231, 171, 83, 82, 5, 218, 63, 231, 172, 83, 82, 5, 218, 99, 231, 163, 83,
82, 5, 218, 100, 231, 165, 83, 82, 5, 217, 255, 167, 83, 82, 5, 218, 47,
214, 240, 83, 82, 5, 218, 41, 214, 255, 83, 82, 5, 218, 45, 214, 222, 83,
82, 5, 217, 235, 214, 246, 83, 82, 5, 218, 51, 214, 247, 83, 82, 5, 218,
103, 214, 227, 83, 82, 5, 218, 106, 214, 231, 83, 82, 5, 218, 18, 214, 0,
83, 82, 5, 217, 234, 213, 226, 83, 82, 5, 218, 21, 213, 247, 83, 82, 5,
218, 36, 213, 230, 83, 82, 5, 217, 244, 196, 39, 83, 82, 5, 217, 241,
196, 157, 83, 82, 5, 218, 19, 194, 223, 83, 82, 5, 217, 253, 196, 118,
83, 82, 5, 218, 85, 196, 123, 83, 82, 5, 218, 26, 195, 236, 83, 82, 5,
218, 93, 195, 252, 83, 82, 5, 218, 6, 212, 174, 83, 82, 5, 218, 112, 212,
194, 83, 82, 5, 218, 0, 212, 156, 83, 82, 5, 218, 72, 212, 186, 83, 82,
5, 218, 110, 212, 163, 83, 82, 17, 101, 83, 82, 17, 104, 83, 82, 17, 133,
83, 82, 17, 134, 83, 82, 17, 151, 83, 82, 17, 170, 83, 82, 17, 179, 83,
82, 17, 174, 83, 82, 17, 182, 83, 82, 38, 31, 200, 54, 83, 82, 38, 31,
200, 25, 83, 82, 38, 31, 228, 160, 83, 82, 38, 31, 199, 163, 83, 82, 38,
31, 200, 31, 199, 163, 83, 82, 38, 31, 228, 163, 199, 163, 83, 82, 38,
31, 216, 123, 251, 116, 6, 1, 251, 14, 251, 116, 6, 1, 237, 253, 251,
116, 6, 1, 220, 182, 251, 116, 6, 1, 216, 136, 251, 116, 6, 1, 249, 3,
251, 116, 6, 1, 203, 68, 251, 116, 6, 1, 210, 181, 251, 116, 6, 1, 248,
49, 251, 116, 6, 1, 167, 251, 116, 6, 1, 71, 251, 116, 6, 1, 233, 97,
251, 116, 6, 1, 70, 251, 116, 6, 1, 74, 251, 116, 6, 1, 237, 40, 251,
116, 6, 1, 193, 23, 251, 116, 6, 1, 194, 119, 251, 116, 6, 1, 212, 230,
251, 116, 6, 1, 222, 139, 251, 116, 6, 1, 168, 251, 116, 6, 1, 68, 251,
116, 6, 1, 223, 11, 251, 116, 6, 1, 242, 215, 251, 116, 6, 1, 144, 251,
116, 6, 1, 208, 237, 251, 116, 6, 1, 231, 233, 251, 116, 6, 1, 212, 201,
251, 116, 6, 1, 198, 45, 251, 116, 6, 1, 214, 65, 251, 116, 6, 1, 196,
157, 251, 116, 6, 1, 221, 250, 251, 116, 6, 1, 231, 172, 251, 116, 6, 1,
192, 101, 251, 116, 6, 1, 221, 60, 251, 116, 6, 1, 204, 64, 251, 116, 2,
1, 251, 14, 251, 116, 2, 1, 237, 253, 251, 116, 2, 1, 220, 182, 251, 116,
2, 1, 216, 136, 251, 116, 2, 1, 249, 3, 251, 116, 2, 1, 203, 68, 251,
116, 2, 1, 210, 181, 251, 116, 2, 1, 248, 49, 251, 116, 2, 1, 167, 251,
116, 2, 1, 71, 251, 116, 2, 1, 233, 97, 251, 116, 2, 1, 70, 251, 116, 2,
1, 74, 251, 116, 2, 1, 237, 40, 251, 116, 2, 1, 193, 23, 251, 116, 2, 1,
194, 119, 251, 116, 2, 1, 212, 230, 251, 116, 2, 1, 222, 139, 251, 116,
2, 1, 168, 251, 116, 2, 1, 68, 251, 116, 2, 1, 223, 11, 251, 116, 2, 1,
242, 215, 251, 116, 2, 1, 144, 251, 116, 2, 1, 208, 237, 251, 116, 2, 1,
231, 233, 251, 116, 2, 1, 212, 201, 251, 116, 2, 1, 198, 45, 251, 116, 2,
1, 214, 65, 251, 116, 2, 1, 196, 157, 251, 116, 2, 1, 221, 250, 251, 116,
2, 1, 231, 172, 251, 116, 2, 1, 192, 101, 251, 116, 2, 1, 221, 60, 251,
116, 2, 1, 204, 64, 251, 116, 251, 15, 219, 250, 251, 116, 18, 219, 250,
251, 116, 231, 146, 77, 251, 116, 230, 66, 251, 116, 116, 216, 75, 251,
116, 231, 147, 116, 216, 75, 251, 116, 212, 241, 251, 116, 215, 48, 77,
251, 116, 17, 192, 76, 251, 116, 17, 101, 251, 116, 17, 104, 251, 116,
17, 133, 251, 116, 17, 134, 251, 116, 17, 151, 251, 116, 17, 170, 251,
116, 17, 179, 251, 116, 17, 174, 251, 116, 17, 182, 251, 116, 88, 233,
204, 77, 251, 116, 88, 208, 159, 77, 223, 174, 137, 31, 101, 223, 174,
137, 31, 104, 223, 174, 137, 31, 133, 223, 174, 137, 31, 134, 223, 174,
137, 31, 151, 223, 174, 137, 31, 170, 223, 174, 137, 31, 179, 223, 174,
137, 31, 174, 223, 174, 137, 31, 182, 223, 174, 137, 31, 200, 30, 223,
174, 137, 31, 197, 239, 223, 174, 137, 31, 199, 184, 223, 174, 137, 31,
232, 126, 223, 174, 137, 31, 233, 3, 223, 174, 137, 31, 203, 25, 223,
174, 137, 31, 204, 140, 223, 174, 137, 31, 234, 137, 223, 174, 137, 31,
214, 11, 223, 174, 137, 31, 90, 228, 162, 223, 174, 137, 31, 103, 228,
162, 223, 174, 137, 31, 112, 228, 162, 223, 174, 137, 31, 232, 119, 228,
162, 223, 174, 137, 31, 232, 214, 228, 162, 223, 174, 137, 31, 203, 41,
228, 162, 223, 174, 137, 31, 204, 146, 228, 162, 223, 174, 137, 31, 234,
148, 228, 162, 223, 174, 137, 31, 214, 16, 228, 162, 223, 174, 137, 31,
90, 180, 223, 174, 137, 31, 103, 180, 223, 174, 137, 31, 112, 180, 223,
174, 137, 31, 232, 119, 180, 223, 174, 137, 31, 232, 214, 180, 223, 174,
137, 31, 203, 41, 180, 223, 174, 137, 31, 204, 146, 180, 223, 174, 137,
31, 234, 148, 180, 223, 174, 137, 31, 214, 16, 180, 223, 174, 137, 31,
200, 31, 180, 223, 174, 137, 31, 197, 240, 180, 223, 174, 137, 31, 199,
185, 180, 223, 174, 137, 31, 232, 127, 180, 223, 174, 137, 31, 233, 4,
180, 223, 174, 137, 31, 203, 26, 180, 223, 174, 137, 31, 204, 141, 180,
223, 174, 137, 31, 234, 138, 180, 223, 174, 137, 31, 214, 12, 180, 223,
174, 137, 31, 220, 100, 223, 174, 137, 31, 220, 99, 223, 174, 137, 220,
101, 77, 223, 174, 137, 31, 222, 94, 223, 174, 137, 31, 222, 93, 223,
174, 137, 31, 209, 111, 101, 223, 174, 137, 31, 209, 111, 104, 223, 174,
137, 31, 209, 111, 133, 223, 174, 137, 31, 209, 111, 134, 223, 174, 137,
31, 209, 111, 151, 223, 174, 137, 31, 209, 111, 170, 223, 174, 137, 31,
209, 111, 179, 223, 174, 137, 31, 209, 111, 174, 223, 174, 137, 31, 209,
111, 182, 223, 174, 137, 209, 230, 223, 174, 137, 232, 109, 90, 208, 167,
223, 174, 137, 232, 109, 90, 230, 78, 223, 174, 137, 232, 109, 112, 208,
165, 223, 174, 137, 206, 186, 77, 223, 174, 137, 31, 250, 249, 101, 223,
174, 137, 31, 250, 249, 104, 223, 174, 137, 31, 250, 249, 200, 31, 180,
223, 174, 137, 250, 249, 220, 101, 77, 211, 132, 137, 31, 101, 211, 132,
137, 31, 104, 211, 132, 137, 31, 133, 211, 132, 137, 31, 134, 211, 132,
137, 31, 151, 211, 132, 137, 31, 170, 211, 132, 137, 31, 179, 211, 132,
137, 31, 174, 211, 132, 137, 31, 182, 211, 132, 137, 31, 200, 30, 211,
132, 137, 31, 197, 239, 211, 132, 137, 31, 199, 184, 211, 132, 137, 31,
232, 126, 211, 132, 137, 31, 233, 3, 211, 132, 137, 31, 203, 25, 211,
132, 137, 31, 204, 140, 211, 132, 137, 31, 234, 137, 211, 132, 137, 31,
214, 11, 211, 132, 137, 31, 90, 228, 162, 211, 132, 137, 31, 103, 228,
162, 211, 132, 137, 31, 112, 228, 162, 211, 132, 137, 31, 232, 119, 228,
162, 211, 132, 137, 31, 232, 214, 228, 162, 211, 132, 137, 31, 203, 41,
228, 162, 211, 132, 137, 31, 204, 146, 228, 162, 211, 132, 137, 31, 234,
148, 228, 162, 211, 132, 137, 31, 214, 16, 228, 162, 211, 132, 137, 31,
90, 180, 211, 132, 137, 31, 103, 180, 211, 132, 137, 31, 112, 180, 211,
132, 137, 31, 232, 119, 180, 211, 132, 137, 31, 232, 214, 180, 211, 132,
137, 31, 203, 41, 180, 211, 132, 137, 31, 204, 146, 180, 211, 132, 137,
31, 234, 148, 180, 211, 132, 137, 31, 214, 16, 180, 211, 132, 137, 31,
200, 31, 180, 211, 132, 137, 31, 197, 240, 180, 211, 132, 137, 31, 199,
185, 180, 211, 132, 137, 31, 232, 127, 180, 211, 132, 137, 31, 233, 4,
180, 211, 132, 137, 31, 203, 26, 180, 211, 132, 137, 31, 204, 141, 180,
211, 132, 137, 31, 234, 138, 180, 211, 132, 137, 31, 214, 12, 180, 211,
132, 137, 217, 120, 211, 132, 137, 250, 249, 31, 104, 211, 132, 137, 250,
249, 31, 133, 211, 132, 137, 250, 249, 31, 134, 211, 132, 137, 250, 249,
31, 151, 211, 132, 137, 250, 249, 31, 170, 211, 132, 137, 250, 249, 31,
179, 211, 132, 137, 250, 249, 31, 174, 211, 132, 137, 250, 249, 31, 182,
211, 132, 137, 250, 249, 31, 200, 30, 211, 132, 137, 250, 249, 31, 232,
119, 228, 162, 211, 132, 137, 250, 249, 31, 203, 41, 228, 162, 211, 132,
137, 250, 249, 31, 103, 180, 211, 132, 137, 250, 249, 31, 200, 31, 180,
211, 132, 137, 232, 109, 90, 230, 78, 211, 132, 137, 232, 109, 90, 203,
29, 9, 13, 251, 26, 9, 13, 248, 96, 9, 13, 223, 37, 9, 13, 237, 227, 9,
13, 194, 119, 9, 13, 192, 103, 9, 13, 230, 89, 9, 13, 200, 151, 9, 13,
193, 64, 9, 13, 222, 139, 9, 13, 220, 94, 9, 13, 217, 26, 9, 13, 213,
123, 9, 13, 205, 201, 9, 13, 251, 57, 9, 13, 233, 34, 9, 13, 206, 86, 9,
13, 208, 232, 9, 13, 207, 221, 9, 13, 204, 8, 9, 13, 200, 49, 9, 13, 199,
220, 9, 13, 221, 245, 9, 13, 199, 232, 9, 13, 237, 250, 9, 13, 192, 106,
9, 13, 231, 79, 9, 13, 236, 113, 248, 96, 9, 13, 236, 113, 213, 123, 9,
13, 236, 113, 233, 34, 9, 13, 236, 113, 208, 232, 9, 13, 88, 248, 96, 9,
13, 88, 223, 37, 9, 13, 88, 229, 220, 9, 13, 88, 230, 89, 9, 13, 88, 193,
64, 9, 13, 88, 222, 139, 9, 13, 88, 220, 94, 9, 13, 88, 217, 26, 9, 13,
88, 213, 123, 9, 13, 88, 205, 201, 9, 13, 88, 251, 57, 9, 13, 88, 233,
34, 9, 13, 88, 206, 86, 9, 13, 88, 208, 232, 9, 13, 88, 204, 8, 9, 13,
88, 200, 49, 9, 13, 88, 199, 220, 9, 13, 88, 221, 245, 9, 13, 88, 237,
250, 9, 13, 88, 231, 79, 9, 13, 200, 146, 223, 37, 9, 13, 200, 146, 230,
89, 9, 13, 200, 146, 193, 64, 9, 13, 200, 146, 220, 94, 9, 13, 200, 146,
213, 123, 9, 13, 200, 146, 205, 201, 9, 13, 200, 146, 251, 57, 9, 13,
200, 146, 206, 86, 9, 13, 200, 146, 208, 232, 9, 13, 200, 146, 204, 8, 9,
13, 200, 146, 221, 245, 9, 13, 200, 146, 237, 250, 9, 13, 200, 146, 231,
79, 9, 13, 200, 146, 236, 113, 213, 123, 9, 13, 200, 146, 236, 113, 208,
232, 9, 13, 201, 216, 248, 96, 9, 13, 201, 216, 223, 37, 9, 13, 201, 216,
229, 220, 9, 13, 201, 216, 230, 89, 9, 13, 201, 216, 200, 151, 9, 13,
201, 216, 193, 64, 9, 13, 201, 216, 222, 139, 9, 13, 201, 216, 217, 26,
9, 13, 201, 216, 213, 123, 9, 13, 201, 216, 205, 201, 9, 13, 201, 216,
251, 57, 9, 13, 201, 216, 233, 34, 9, 13, 201, 216, 206, 86, 9, 13, 201,
216, 208, 232, 9, 13, 201, 216, 204, 8, 9, 13, 201, 216, 200, 49, 9, 13,
201, 216, 199, 220, 9, 13, 201, 216, 221, 245, 9, 13, 201, 216, 237, 250,
9, 13, 201, 216, 192, 106, 9, 13, 201, 216, 231, 79, 9, 13, 201, 216,
236, 113, 248, 96, 9, 13, 201, 216, 236, 113, 233, 34, 9, 13, 219, 68,
251, 26, 9, 13, 219, 68, 248, 96, 9, 13, 219, 68, 223, 37, 9, 13, 219,
68, 237, 227, 9, 13, 219, 68, 229, 220, 9, 13, 219, 68, 194, 119, 9, 13,
219, 68, 192, 103, 9, 13, 219, 68, 230, 89, 9, 13, 219, 68, 200, 151, 9,
13, 219, 68, 193, 64, 9, 13, 219, 68, 220, 94, 9, 13, 219, 68, 217, 26,
9, 13, 219, 68, 213, 123, 9, 13, 219, 68, 205, 201, 9, 13, 219, 68, 251,
57, 9, 13, 219, 68, 233, 34, 9, 13, 219, 68, 206, 86, 9, 13, 219, 68,
208, 232, 9, 13, 219, 68, 207, 221, 9, 13, 219, 68, 204, 8, 9, 13, 219,
68, 200, 49, 9, 13, 219, 68, 199, 220, 9, 13, 219, 68, 221, 245, 9, 13,
219, 68, 199, 232, 9, 13, 219, 68, 237, 250, 9, 13, 219, 68, 192, 106, 9,
13, 219, 68, 231, 79, 9, 13, 235, 102, 248, 96, 9, 13, 235, 102, 223, 37,
9, 13, 235, 102, 237, 227, 9, 13, 235, 102, 194, 119, 9, 13, 235, 102,
192, 103, 9, 13, 235, 102, 230, 89, 9, 13, 235, 102, 200, 151, 9, 13,
235, 102, 193, 64, 9, 13, 235, 102, 220, 94, 9, 13, 235, 102, 217, 26, 9,
13, 235, 102, 213, 123, 9, 13, 235, 102, 205, 201, 9, 13, 235, 102, 251,
57, 9, 13, 235, 102, 233, 34, 9, 13, 235, 102, 206, 86, 9, 13, 235, 102,
208, 232, 9, 13, 235, 102, 207, 221, 9, 13, 235, 102, 204, 8, 9, 13, 235,
102, 200, 49, 9, 13, 235, 102, 199, 220, 9, 13, 235, 102, 221, 245, 9,
13, 235, 102, 199, 232, 9, 13, 235, 102, 237, 250, 9, 13, 235, 102, 192,
106, 9, 13, 235, 102, 231, 79, 9, 13, 211, 174, 91, 4, 176, 4, 200, 102,
9, 13, 211, 174, 176, 4, 237, 227, 217, 182, 120, 234, 186, 194, 52, 217,
182, 120, 202, 171, 194, 52, 217, 182, 120, 194, 91, 194, 52, 217, 182,
120, 178, 194, 52, 217, 182, 120, 207, 237, 235, 84, 217, 182, 120, 230,
201, 235, 84, 217, 182, 120, 62, 235, 84, 217, 182, 120, 90, 80, 243, 0,
217, 182, 120, 103, 80, 243, 0, 217, 182, 120, 112, 80, 243, 0, 217, 182,
120, 232, 119, 80, 243, 0, 217, 182, 120, 232, 214, 80, 243, 0, 217, 182,
120, 203, 41, 80, 243, 0, 217, 182, 120, 204, 146, 80, 243, 0, 217, 182,
120, 234, 148, 80, 243, 0, 217, 182, 120, 214, 16, 80, 243, 0, 217, 182,
120, 90, 80, 248, 208, 217, 182, 120, 103, 80, 248, 208, 217, 182, 120,
112, 80, 248, 208, 217, 182, 120, 232, 119, 80, 248, 208, 217, 182, 120,
232, 214, 80, 248, 208, 217, 182, 120, 203, 41, 80, 248, 208, 217, 182,
120, 204, 146, 80, 248, 208, 217, 182, 120, 234, 148, 80, 248, 208, 217,
182, 120, 214, 16, 80, 248, 208, 217, 182, 120, 90, 80, 242, 127, 217,
182, 120, 103, 80, 242, 127, 217, 182, 120, 112, 80, 242, 127, 217, 182,
120, 232, 119, 80, 242, 127, 217, 182, 120, 232, 214, 80, 242, 127, 217,
182, 120, 203, 41, 80, 242, 127, 217, 182, 120, 204, 146, 80, 242, 127,
217, 182, 120, 234, 148, 80, 242, 127, 217, 182, 120, 214, 16, 80, 242,
127, 217, 182, 120, 209, 210, 217, 182, 120, 211, 160, 217, 182, 120,
248, 209, 217, 182, 120, 242, 169, 217, 182, 120, 202, 112, 217, 182,
120, 201, 125, 217, 182, 120, 249, 250, 217, 182, 120, 194, 43, 217, 182,
120, 222, 226, 217, 182, 120, 248, 252, 191, 191, 120, 229, 5, 248, 252,
191, 191, 120, 229, 3, 191, 191, 120, 229, 2, 191, 191, 120, 229, 1, 191,
191, 120, 229, 0, 191, 191, 120, 228, 255, 191, 191, 120, 228, 254, 191,
191, 120, 228, 253, 191, 191, 120, 228, 252, 191, 191, 120, 228, 251,
191, 191, 120, 228, 250, 191, 191, 120, 228, 249, 191, 191, 120, 228,
248, 191, 191, 120, 228, 247, 191, 191, 120, 228, 246, 191, 191, 120,
228, 245, 191, 191, 120, 228, 244, 191, 191, 120, 228, 243, 191, 191,
120, 228, 242, 191, 191, 120, 228, 241, 191, 191, 120, 228, 240, 191,
191, 120, 228, 239, 191, 191, 120, 228, 238, 191, 191, 120, 228, 237,
191, 191, 120, 228, 236, 191, 191, 120, 228, 235, 191, 191, 120, 228,
234, 191, 191, 120, 228, 233, 191, 191, 120, 228, 232, 191, 191, 120,
228, 231, 191, 191, 120, 228, 230, 191, 191, 120, 228, 229, 191, 191,
120, 228, 228, 191, 191, 120, 228, 227, 191, 191, 120, 228, 226, 191,
191, 120, 228, 225, 191, 191, 120, 228, 224, 191, 191, 120, 228, 223,
191, 191, 120, 228, 222, 191, 191, 120, 228, 221, 191, 191, 120, 228,
220, 191, 191, 120, 228, 219, 191, 191, 120, 228, 218, 191, 191, 120,
228, 217, 191, 191, 120, 228, 216, 191, 191, 120, 228, 215, 191, 191,
120, 228, 214, 191, 191, 120, 228, 213, 191, 191, 120, 228, 212, 191,
191, 120, 228, 211, 191, 191, 120, 84, 248, 252, 191, 191, 120, 196, 104,
191, 191, 120, 196, 103, 191, 191, 120, 196, 102, 191, 191, 120, 196,
101, 191, 191, 120, 196, 100, 191, 191, 120, 196, 99, 191, 191, 120, 196,
98, 191, 191, 120, 196, 97, 191, 191, 120, 196, 96, 191, 191, 120, 196,
95, 191, 191, 120, 196, 94, 191, 191, 120, 196, 93, 191, 191, 120, 196,
92, 191, 191, 120, 196, 91, 191, 191, 120, 196, 90, 191, 191, 120, 196,
89, 191, 191, 120, 196, 88, 191, 191, 120, 196, 87, 191, 191, 120, 196,
86, 191, 191, 120, 196, 85, 191, 191, 120, 196, 84, 191, 191, 120, 196,
83, 191, 191, 120, 196, 82, 191, 191, 120, 196, 81, 191, 191, 120, 196,
80, 191, 191, 120, 196, 79, 191, 191, 120, 196, 78, 191, 191, 120, 196,
77, 191, 191, 120, 196, 76, 191, 191, 120, 196, 75, 191, 191, 120, 196,
74, 191, 191, 120, 196, 73, 191, 191, 120, 196, 72, 191, 191, 120, 196,
71, 191, 191, 120, 196, 70, 191, 191, 120, 196, 69, 191, 191, 120, 196,
68, 191, 191, 120, 196, 67, 191, 191, 120, 196, 66, 191, 191, 120, 196,
65, 191, 191, 120, 196, 64, 191, 191, 120, 196, 63, 191, 191, 120, 196,
62, 191, 191, 120, 196, 61, 191, 191, 120, 196, 60, 191, 191, 120, 196,
59, 191, 191, 120, 196, 58, 191, 191, 120, 196, 57, 191, 191, 120, 196,
56, 209, 220, 246, 216, 248, 252, 209, 220, 246, 216, 251, 136, 80, 202,
157, 209, 220, 246, 216, 103, 80, 202, 157, 209, 220, 246, 216, 112, 80,
202, 157, 209, 220, 246, 216, 232, 119, 80, 202, 157, 209, 220, 246, 216,
232, 214, 80, 202, 157, 209, 220, 246, 216, 203, 41, 80, 202, 157, 209,
220, 246, 216, 204, 146, 80, 202, 157, 209, 220, 246, 216, 234, 148, 80,
202, 157, 209, 220, 246, 216, 214, 16, 80, 202, 157, 209, 220, 246, 216,
200, 31, 80, 202, 157, 209, 220, 246, 216, 223, 60, 80, 202, 157, 209,
220, 246, 216, 221, 123, 80, 202, 157, 209, 220, 246, 216, 208, 161, 80,
202, 157, 209, 220, 246, 216, 221, 177, 80, 202, 157, 209, 220, 246, 216,
251, 136, 80, 229, 231, 209, 220, 246, 216, 103, 80, 229, 231, 209, 220,
246, 216, 112, 80, 229, 231, 209, 220, 246, 216, 232, 119, 80, 229, 231,
209, 220, 246, 216, 232, 214, 80, 229, 231, 209, 220, 246, 216, 203, 41,
80, 229, 231, 209, 220, 246, 216, 204, 146, 80, 229, 231, 209, 220, 246,
216, 234, 148, 80, 229, 231, 209, 220, 246, 216, 214, 16, 80, 229, 231,
209, 220, 246, 216, 200, 31, 80, 229, 231, 209, 220, 246, 216, 223, 60,
80, 229, 231, 209, 220, 246, 216, 221, 123, 80, 229, 231, 209, 220, 246,
216, 208, 161, 80, 229, 231, 209, 220, 246, 216, 221, 177, 80, 229, 231,
209, 220, 246, 216, 207, 237, 222, 226, 209, 220, 246, 216, 251, 136, 80,
237, 3, 209, 220, 246, 216, 103, 80, 237, 3, 209, 220, 246, 216, 112, 80,
237, 3, 209, 220, 246, 216, 232, 119, 80, 237, 3, 209, 220, 246, 216,
232, 214, 80, 237, 3, 209, 220, 246, 216, 203, 41, 80, 237, 3, 209, 220,
246, 216, 204, 146, 80, 237, 3, 209, 220, 246, 216, 234, 148, 80, 237, 3,
209, 220, 246, 216, 214, 16, 80, 237, 3, 209, 220, 246, 216, 200, 31, 80,
237, 3, 209, 220, 246, 216, 223, 60, 80, 237, 3, 209, 220, 246, 216, 221,
123, 80, 237, 3, 209, 220, 246, 216, 208, 161, 80, 237, 3, 209, 220, 246,
216, 221, 177, 80, 237, 3, 209, 220, 246, 216, 60, 222, 226, 209, 220,
246, 216, 251, 136, 80, 242, 69, 209, 220, 246, 216, 103, 80, 242, 69,
209, 220, 246, 216, 112, 80, 242, 69, 209, 220, 246, 216, 232, 119, 80,
242, 69, 209, 220, 246, 216, 232, 214, 80, 242, 69, 209, 220, 246, 216,
203, 41, 80, 242, 69, 209, 220, 246, 216, 204, 146, 80, 242, 69, 209,
220, 246, 216, 234, 148, 80, 242, 69, 209, 220, 246, 216, 214, 16, 80,
242, 69, 209, 220, 246, 216, 200, 31, 80, 242, 69, 209, 220, 246, 216,
223, 60, 80, 242, 69, 209, 220, 246, 216, 221, 123, 80, 242, 69, 209,
220, 246, 216, 208, 161, 80, 242, 69, 209, 220, 246, 216, 221, 177, 80,
242, 69, 209, 220, 246, 216, 62, 222, 226, 209, 220, 246, 216, 232, 150,
209, 220, 246, 216, 198, 146, 209, 220, 246, 216, 198, 135, 209, 220,
246, 216, 198, 132, 209, 220, 246, 216, 198, 131, 209, 220, 246, 216,
198, 130, 209, 220, 246, 216, 198, 129, 209, 220, 246, 216, 198, 128,
209, 220, 246, 216, 198, 127, 209, 220, 246, 216, 198, 126, 209, 220,
246, 216, 198, 145, 209, 220, 246, 216, 198, 144, 209, 220, 246, 216,
198, 143, 209, 220, 246, 216, 198, 142, 209, 220, 246, 216, 198, 141,
209, 220, 246, 216, 198, 140, 209, 220, 246, 216, 198, 139, 209, 220,
246, 216, 198, 138, 209, 220, 246, 216, 198, 137, 209, 220, 246, 216,
198, 136, 209, 220, 246, 216, 198, 134, 209, 220, 246, 216, 198, 133, 17,
192, 77, 232, 71, 201, 238, 17, 192, 77, 242, 38, 17, 90, 242, 38, 17,
103, 242, 38, 17, 112, 242, 38, 17, 232, 119, 242, 38, 17, 232, 214, 242,
38, 17, 203, 41, 242, 38, 17, 204, 146, 242, 38, 17, 234, 148, 242, 38,
17, 214, 16, 242, 38, 236, 213, 47, 49, 17, 192, 76, 236, 213, 214, 199,
47, 49, 17, 192, 76, 47, 192, 77, 4, 203, 4, 47, 250, 182, 54, 47, 236,
127, 3, 4, 211, 115, 248, 247, 125, 8, 6, 1, 64, 125, 8, 6, 1, 249, 226,
125, 8, 6, 1, 247, 52, 125, 8, 6, 1, 238, 95, 125, 8, 6, 1, 71, 125, 8,
6, 1, 233, 163, 125, 8, 6, 1, 232, 44, 125, 8, 6, 1, 230, 124, 125, 8, 6,
1, 70, 125, 8, 6, 1, 223, 65, 125, 8, 6, 1, 222, 184, 125, 8, 6, 1, 165,
125, 8, 6, 1, 218, 236, 125, 8, 6, 1, 215, 151, 125, 8, 6, 1, 74, 125, 8,
6, 1, 211, 93, 125, 8, 6, 1, 208, 247, 125, 8, 6, 1, 150, 125, 8, 6, 1,
206, 158, 125, 8, 6, 1, 200, 228, 125, 8, 6, 1, 68, 125, 8, 6, 1, 196,
236, 125, 8, 6, 1, 194, 202, 125, 8, 6, 1, 193, 223, 125, 8, 6, 1, 193,
148, 125, 8, 6, 1, 192, 155, 198, 237, 204, 2, 247, 164, 8, 6, 1, 206,
158, 47, 43, 8, 6, 1, 247, 52, 47, 43, 8, 6, 1, 150, 47, 246, 159, 47,
193, 225, 238, 228, 109, 108, 8, 6, 1, 64, 108, 8, 6, 1, 249, 226, 108,
8, 6, 1, 247, 52, 108, 8, 6, 1, 238, 95, 108, 8, 6, 1, 71, 108, 8, 6, 1,
233, 163, 108, 8, 6, 1, 232, 44, 108, 8, 6, 1, 230, 124, 108, 8, 6, 1,
70, 108, 8, 6, 1, 223, 65, 108, 8, 6, 1, 222, 184, 108, 8, 6, 1, 165,
108, 8, 6, 1, 218, 236, 108, 8, 6, 1, 215, 151, 108, 8, 6, 1, 74, 108, 8,
6, 1, 211, 93, 108, 8, 6, 1, 208, 247, 108, 8, 6, 1, 150, 108, 8, 6, 1,
206, 158, 108, 8, 6, 1, 200, 228, 108, 8, 6, 1, 68, 108, 8, 6, 1, 196,
236, 108, 8, 6, 1, 194, 202, 108, 8, 6, 1, 193, 223, 108, 8, 6, 1, 193,
148, 108, 8, 6, 1, 192, 155, 108, 228, 148, 108, 215, 175, 108, 205, 225,
108, 202, 95, 108, 209, 132, 108, 194, 112, 214, 199, 47, 8, 6, 1, 64,
214, 199, 47, 8, 6, 1, 249, 226, 214, 199, 47, 8, 6, 1, 247, 52, 214,
199, 47, 8, 6, 1, 238, 95, 214, 199, 47, 8, 6, 1, 71, 214, 199, 47, 8, 6,
1, 233, 163, 214, 199, 47, 8, 6, 1, 232, 44, 214, 199, 47, 8, 6, 1, 230,
124, 214, 199, 47, 8, 6, 1, 70, 214, 199, 47, 8, 6, 1, 223, 65, 214, 199,
47, 8, 6, 1, 222, 184, 214, 199, 47, 8, 6, 1, 165, 214, 199, 47, 8, 6, 1,
218, 236, 214, 199, 47, 8, 6, 1, 215, 151, 214, 199, 47, 8, 6, 1, 74,
214, 199, 47, 8, 6, 1, 211, 93, 214, 199, 47, 8, 6, 1, 208, 247, 214,
199, 47, 8, 6, 1, 150, 214, 199, 47, 8, 6, 1, 206, 158, 214, 199, 47, 8,
6, 1, 200, 228, 214, 199, 47, 8, 6, 1, 68, 214, 199, 47, 8, 6, 1, 196,
236, 214, 199, 47, 8, 6, 1, 194, 202, 214, 199, 47, 8, 6, 1, 193, 223,
214, 199, 47, 8, 6, 1, 193, 148, 214, 199, 47, 8, 6, 1, 192, 155, 208,
39, 217, 54, 57, 208, 39, 217, 51, 57, 208, 39, 215, 246, 57, 47, 246,
182, 47, 247, 53, 4, 211, 115, 248, 247, 47, 228, 167, 233, 0, 214, 199,
108, 8, 6, 1, 64, 214, 199, 108, 8, 6, 1, 249, 226, 214, 199, 108, 8, 6,
1, 247, 52, 214, 199, 108, 8, 6, 1, 238, 95, 214, 199, 108, 8, 6, 1, 71,
214, 199, 108, 8, 6, 1, 233, 163, 214, 199, 108, 8, 6, 1, 232, 44, 214,
199, 108, 8, 6, 1, 230, 124, 214, 199, 108, 8, 6, 1, 70, 214, 199, 108,
8, 6, 1, 223, 65, 214, 199, 108, 8, 6, 1, 222, 184, 214, 199, 108, 8, 6,
1, 165, 214, 199, 108, 8, 6, 1, 218, 236, 214, 199, 108, 8, 6, 1, 215,
151, 214, 199, 108, 8, 6, 1, 74, 214, 199, 108, 8, 6, 1, 211, 93, 214,
199, 108, 8, 6, 1, 208, 247, 214, 199, 108, 8, 6, 1, 150, 214, 199, 108,
8, 6, 1, 206, 158, 214, 199, 108, 8, 6, 1, 200, 228, 214, 199, 108, 8, 6,
1, 68, 214, 199, 108, 8, 6, 1, 196, 236, 214, 199, 108, 8, 6, 1, 194,
202, 214, 199, 108, 8, 6, 1, 193, 223, 214, 199, 108, 8, 6, 1, 193, 148,
214, 199, 108, 8, 6, 1, 192, 155, 238, 180, 214, 199, 108, 8, 6, 1, 211,
93, 214, 199, 108, 228, 51, 214, 199, 108, 166, 214, 199, 108, 188, 214,
199, 108, 251, 238, 214, 199, 108, 194, 112, 50, 236, 166, 108, 242, 111,
108, 238, 235, 108, 232, 99, 108, 228, 42, 108, 214, 176, 108, 214, 167,
108, 211, 231, 108, 202, 178, 108, 130, 4, 233, 204, 77, 108, 195, 226,
108, 112, 238, 95, 108, 205, 212, 205, 231, 108, 103, 222, 184, 108, 232,
119, 222, 184, 108, 234, 148, 222, 184, 108, 232, 214, 209, 192, 101,
108, 204, 146, 209, 192, 101, 108, 197, 228, 209, 192, 104, 108, 203, 26,
211, 93, 108, 90, 228, 163, 197, 240, 211, 93, 108, 8, 2, 1, 238, 95,
108, 230, 2, 108, 230, 1, 108, 229, 170, 108, 219, 61, 108, 203, 144,
108, 197, 96, 108, 195, 249, 217, 107, 194, 9, 109, 207, 229, 223, 173,
16, 1, 64, 207, 229, 223, 173, 16, 1, 249, 226, 207, 229, 223, 173, 16,
1, 247, 52, 207, 229, 223, 173, 16, 1, 238, 95, 207, 229, 223, 173, 16,
1, 71, 207, 229, 223, 173, 16, 1, 233, 163, 207, 229, 223, 173, 16, 1,
232, 44, 207, 229, 223, 173, 16, 1, 230, 124, 207, 229, 223, 173, 16, 1,
70, 207, 229, 223, 173, 16, 1, 223, 65, 207, 229, 223, 173, 16, 1, 222,
184, 207, 229, 223, 173, 16, 1, 165, 207, 229, 223, 173, 16, 1, 218, 236,
207, 229, 223, 173, 16, 1, 215, 151, 207, 229, 223, 173, 16, 1, 74, 207,
229, 223, 173, 16, 1, 211, 93, 207, 229, 223, 173, 16, 1, 208, 247, 207,
229, 223, 173, 16, 1, 150, 207, 229, 223, 173, 16, 1, 206, 158, 207, 229,
223, 173, 16, 1, 200, 228, 207, 229, 223, 173, 16, 1, 68, 207, 229, 223,
173, 16, 1, 196, 236, 207, 229, 223, 173, 16, 1, 194, 202, 207, 229, 223,
173, 16, 1, 193, 223, 207, 229, 223, 173, 16, 1, 193, 148, 207, 229, 223,
173, 16, 1, 192, 155, 50, 229, 140, 229, 29, 108, 75, 221, 96, 108, 75,
188, 108, 12, 197, 59, 225, 242, 108, 12, 197, 59, 225, 246, 108, 12,
197, 59, 225, 254, 108, 75, 237, 116, 108, 12, 197, 59, 226, 5, 108, 12,
197, 59, 225, 248, 108, 12, 197, 59, 225, 220, 108, 12, 197, 59, 225,
247, 108, 12, 197, 59, 226, 4, 108, 12, 197, 59, 225, 234, 108, 12, 197,
59, 225, 227, 108, 12, 197, 59, 225, 236, 108, 12, 197, 59, 226, 1, 108,
12, 197, 59, 225, 243, 108, 12, 197, 59, 226, 3, 108, 12, 197, 59, 225,
235, 108, 12, 197, 59, 226, 2, 108, 12, 197, 59, 225, 221, 108, 12, 197,
59, 225, 226, 108, 12, 197, 59, 225, 219, 108, 12, 197, 59, 225, 249,
108, 12, 197, 59, 225, 251, 108, 12, 197, 59, 225, 229, 108, 12, 197, 59,
225, 240, 108, 12, 197, 59, 225, 238, 108, 12, 197, 59, 226, 8, 108, 12,
197, 59, 226, 7, 108, 12, 197, 59, 225, 217, 108, 12, 197, 59, 225, 244,
108, 12, 197, 59, 226, 6, 108, 12, 197, 59, 225, 253, 108, 12, 197, 59,
225, 239, 108, 12, 197, 59, 225, 218, 108, 12, 197, 59, 225, 241, 108,
12, 197, 59, 225, 223, 108, 12, 197, 59, 225, 222, 108, 12, 197, 59, 225,
252, 108, 12, 197, 59, 225, 230, 108, 12, 197, 59, 225, 232, 108, 12,
197, 59, 225, 233, 108, 12, 197, 59, 225, 225, 108, 12, 197, 59, 226, 0,
108, 12, 197, 59, 225, 250, 108, 12, 197, 59, 225, 216, 198, 237, 204, 2,
247, 164, 12, 197, 59, 225, 231, 198, 237, 204, 2, 247, 164, 12, 197, 59,
226, 7, 198, 237, 204, 2, 247, 164, 12, 197, 59, 226, 5, 198, 237, 204,
2, 247, 164, 12, 197, 59, 225, 245, 198, 237, 204, 2, 247, 164, 12, 197,
59, 225, 228, 198, 237, 204, 2, 247, 164, 12, 197, 59, 225, 241, 198,
237, 204, 2, 247, 164, 12, 197, 59, 225, 224, 198, 237, 204, 2, 247, 164,
12, 197, 59, 225, 255, 198, 237, 204, 2, 247, 164, 12, 197, 59, 225, 237,
47, 228, 39, 251, 110, 47, 228, 39, 251, 141, 207, 7, 16, 39, 232, 77,
207, 7, 16, 39, 219, 36, 207, 7, 16, 39, 203, 178, 207, 7, 16, 39, 193,
196, 207, 7, 16, 39, 203, 161, 207, 7, 16, 39, 247, 7, 238, 106, 232,
162, 242, 84, 197, 81, 214, 32, 4, 202, 16, 201, 118, 136, 216, 8, 201,
117, 242, 115, 250, 27, 235, 35, 201, 116, 136, 247, 111, 208, 40, 247,
143, 250, 27, 214, 31, 194, 130, 194, 124, 195, 242, 216, 128, 194, 114,
234, 190, 231, 7, 233, 220, 234, 190, 231, 7, 250, 232, 234, 190, 231, 7,
250, 46, 231, 7, 4, 216, 252, 214, 177, 216, 30, 109, 194, 116, 238, 194,
216, 30, 109, 232, 226, 208, 168, 216, 30, 109, 194, 116, 231, 42, 216,
30, 109, 232, 71, 216, 30, 109, 194, 144, 231, 42, 216, 30, 109, 220, 66,
208, 168, 216, 30, 109, 194, 144, 238, 194, 216, 30, 109, 238, 194, 216,
29, 214, 177, 216, 30, 4, 233, 91, 232, 226, 208, 168, 216, 30, 4, 233,
91, 220, 66, 208, 168, 216, 30, 4, 233, 91, 232, 71, 216, 30, 4, 233, 91,
201, 124, 4, 233, 91, 231, 3, 202, 19, 203, 200, 202, 19, 199, 212, 60,
235, 70, 62, 201, 123, 62, 201, 124, 4, 2, 242, 75, 62, 201, 124, 248,
93, 242, 75, 62, 201, 124, 248, 93, 242, 76, 4, 208, 41, 242, 76, 4, 208,
41, 242, 76, 4, 202, 218, 242, 76, 4, 219, 192, 242, 76, 4, 198, 241,
232, 163, 194, 53, 247, 225, 233, 91, 228, 202, 236, 134, 200, 158, 247,
87, 242, 223, 205, 203, 233, 214, 198, 195, 237, 109, 198, 195, 211, 41,
198, 195, 247, 12, 228, 202, 210, 135, 198, 29, 242, 227, 247, 228, 207,
20, 229, 169, 201, 121, 247, 228, 234, 194, 80, 217, 171, 234, 194, 80,
207, 139, 229, 203, 232, 119, 220, 38, 242, 74, 217, 139, 220, 37, 233,
72, 220, 37, 220, 38, 232, 170, 223, 191, 194, 52, 215, 186, 199, 22,
250, 7, 230, 218, 217, 14, 194, 128, 200, 119, 220, 5, 248, 204, 210, 0,
207, 237, 250, 144, 230, 201, 250, 144, 210, 174, 210, 178, 242, 228,
201, 221, 230, 71, 202, 252, 80, 209, 236, 217, 41, 211, 212, 247, 207,
209, 144, 220, 16, 207, 140, 238, 200, 207, 140, 248, 217, 238, 238, 207,
139, 238, 134, 26, 207, 139, 202, 2, 247, 177, 202, 156, 247, 156, 232,
97, 232, 93, 207, 45, 201, 71, 209, 147, 237, 205, 212, 2, 201, 90, 232,
94, 203, 170, 232, 225, 247, 6, 4, 201, 63, 237, 52, 202, 198, 228, 50,
238, 198, 204, 20, 228, 49, 228, 50, 238, 198, 235, 99, 238, 237, 242,
186, 161, 246, 233, 219, 88, 238, 125, 229, 18, 209, 149, 203, 184, 248,
73, 247, 173, 209, 150, 80, 232, 151, 238, 236, 232, 140, 26, 221, 124,
200, 67, 194, 39, 230, 40, 206, 70, 247, 190, 26, 238, 148, 194, 49, 231,
11, 242, 58, 231, 11, 198, 150, 235, 77, 248, 104, 215, 226, 242, 91,
248, 104, 215, 225, 248, 255, 247, 189, 232, 140, 26, 221, 125, 4, 209,
221, 247, 190, 4, 209, 165, 238, 225, 209, 167, 207, 141, 193, 255, 209,
106, 248, 10, 247, 5, 223, 59, 242, 176, 198, 195, 233, 55, 242, 175,
232, 228, 232, 229, 202, 154, 248, 215, 210, 219, 209, 166, 239, 18, 248,
217, 200, 123, 198, 195, 238, 180, 232, 200, 210, 1, 237, 106, 223, 50,
236, 126, 246, 205, 201, 220, 194, 53, 242, 202, 216, 30, 196, 25, 246,
124, 205, 244, 206, 18, 230, 224, 246, 226, 229, 234, 4, 199, 74, 211,
212, 199, 225, 220, 28, 247, 183, 80, 232, 174, 216, 130, 217, 37, 207,
208, 207, 141, 35, 222, 0, 4, 223, 58, 201, 191, 216, 164, 219, 228, 202,
250, 238, 243, 221, 118, 248, 119, 250, 57, 35, 213, 100, 248, 119, 237,
58, 35, 213, 100, 232, 244, 232, 103, 251, 114, 199, 115, 246, 206, 228,
204, 233, 21, 194, 79, 207, 33, 242, 61, 232, 220, 209, 183, 26, 232,
224, 216, 164, 215, 250, 246, 247, 242, 134, 229, 241, 250, 66, 211, 45,
198, 249, 230, 18, 242, 120, 200, 22, 199, 116, 242, 106, 247, 216, 210,
128, 250, 64, 196, 35, 231, 207, 236, 206, 229, 137, 202, 243, 217, 216,
248, 23, 231, 208, 236, 252, 247, 176, 232, 176, 209, 220, 246, 214, 35,
213, 105, 215, 216, 35, 213, 100, 206, 2, 230, 169, 35, 221, 255, 198,
125, 196, 13, 35, 205, 236, 206, 192, 203, 215, 4, 206, 21, 200, 27, 208,
60, 26, 248, 217, 203, 15, 26, 203, 15, 247, 200, 248, 174, 26, 229, 11,
242, 229, 232, 206, 202, 217, 206, 193, 201, 95, 202, 118, 217, 37, 198,
151, 228, 205, 208, 61, 250, 233, 232, 148, 206, 206, 232, 148, 201, 66,
194, 96, 219, 197, 230, 244, 208, 62, 216, 16, 208, 62, 246, 217, 238,
191, 248, 171, 26, 248, 217, 195, 241, 233, 10, 229, 32, 201, 250, 26,
248, 217, 228, 50, 229, 32, 201, 250, 26, 209, 43, 200, 165, 200, 27,
211, 64, 26, 248, 217, 202, 219, 246, 222, 216, 9, 246, 245, 248, 122, 4,
197, 81, 247, 113, 239, 1, 228, 194, 247, 111, 242, 114, 237, 62, 228,
194, 247, 112, 242, 104, 247, 112, 237, 54, 237, 55, 223, 89, 215, 44,
210, 226, 202, 30, 228, 194, 247, 112, 228, 194, 4, 231, 191, 211, 249,
247, 112, 223, 50, 209, 155, 211, 248, 233, 219, 209, 155, 211, 248, 228,
203, 248, 198, 249, 252, 200, 37, 217, 216, 228, 199, 219, 53, 228, 199,
238, 241, 201, 234, 205, 243, 237, 65, 201, 234, 233, 80, 223, 70, 220,
78, 223, 50, 246, 195, 233, 219, 246, 195, 62, 210, 148, 60, 210, 148,
194, 122, 62, 232, 206, 194, 122, 60, 232, 206, 207, 19, 60, 207, 19,
220, 176, 248, 238, 208, 60, 26, 203, 147, 247, 181, 26, 54, 250, 228,
234, 94, 73, 232, 215, 197, 204, 234, 94, 73, 232, 215, 197, 201, 234,
94, 73, 232, 215, 197, 199, 234, 94, 73, 232, 215, 197, 197, 234, 94, 73,
232, 215, 197, 195, 208, 22, 216, 6, 211, 103, 194, 130, 247, 117, 238,
205, 199, 108, 219, 245, 208, 64, 246, 193, 235, 84, 238, 189, 194, 82,
202, 226, 202, 224, 228, 204, 208, 34, 230, 250, 204, 6, 216, 49, 207,
23, 242, 213, 236, 134, 210, 14, 247, 218, 234, 115, 212, 5, 202, 133,
204, 1, 247, 116, 250, 186, 229, 17, 220, 167, 248, 102, 232, 224, 198,
150, 232, 224, 247, 226, 198, 6, 230, 16, 242, 214, 248, 255, 242, 214,
232, 87, 248, 255, 242, 214, 248, 13, 210, 150, 221, 107, 209, 171, 235,
74, 246, 249, 248, 243, 246, 249, 236, 125, 216, 7, 233, 91, 238, 206,
233, 91, 199, 109, 233, 91, 208, 65, 233, 91, 246, 194, 233, 91, 235, 85,
233, 91, 202, 116, 194, 82, 228, 205, 233, 91, 216, 50, 233, 91, 236,
135, 233, 91, 210, 15, 233, 91, 232, 91, 233, 91, 230, 68, 233, 91, 194,
26, 233, 91, 248, 117, 233, 91, 211, 21, 233, 91, 210, 15, 213, 112, 210,
194, 209, 92, 242, 197, 233, 173, 233, 181, 234, 193, 213, 112, 216, 4,
199, 0, 62, 130, 209, 188, 248, 250, 223, 176, 62, 142, 209, 188, 248,
250, 223, 176, 62, 46, 209, 188, 248, 250, 223, 176, 62, 51, 209, 188,
248, 250, 223, 176, 232, 218, 230, 63, 57, 194, 122, 230, 63, 57, 211,
232, 230, 63, 57, 199, 146, 130, 57, 199, 146, 142, 57, 242, 105, 230,
38, 57, 211, 184, 230, 38, 57, 238, 174, 194, 22, 230, 18, 233, 176, 214,
204, 200, 226, 223, 40, 235, 79, 221, 180, 248, 26, 194, 22, 242, 77,
209, 23, 230, 42, 209, 145, 217, 148, 203, 207, 250, 22, 203, 207, 229,
154, 203, 207, 194, 22, 206, 37, 194, 22, 247, 199, 232, 146, 247, 79,
223, 191, 203, 91, 247, 78, 223, 191, 203, 91, 247, 171, 231, 23, 217,
160, 194, 23, 233, 69, 217, 161, 26, 194, 24, 229, 26, 230, 37, 103, 217,
6, 229, 26, 230, 37, 103, 194, 21, 229, 26, 230, 37, 209, 180, 211, 247,
194, 24, 4, 247, 97, 234, 191, 247, 144, 4, 196, 114, 210, 117, 4, 247,
230, 230, 86, 217, 161, 4, 230, 183, 210, 52, 217, 143, 217, 161, 4, 198,
14, 211, 224, 217, 160, 211, 224, 194, 23, 248, 254, 239, 2, 194, 7, 209,
97, 223, 50, 211, 242, 223, 50, 230, 249, 231, 54, 248, 255, 250, 212,
233, 186, 251, 16, 251, 17, 216, 39, 223, 196, 203, 10, 223, 165, 237,
51, 210, 116, 230, 177, 237, 210, 219, 158, 215, 69, 209, 179, 233, 92,
217, 104, 230, 85, 248, 192, 209, 182, 200, 247, 210, 7, 221, 161, 77,
219, 53, 219, 235, 207, 81, 231, 148, 201, 240, 221, 160, 247, 182, 238,
209, 4, 229, 233, 194, 103, 248, 113, 229, 233, 247, 136, 229, 233, 103,
229, 231, 202, 152, 229, 233, 230, 193, 229, 233, 229, 234, 4, 54, 247,
224, 229, 233, 230, 201, 229, 233, 193, 62, 229, 233, 209, 24, 229, 233,
229, 234, 4, 207, 141, 207, 162, 229, 231, 229, 234, 237, 106, 237, 5,
204, 34, 4, 41, 78, 223, 145, 234, 119, 152, 247, 109, 250, 211, 109,
247, 208, 202, 255, 109, 242, 49, 109, 202, 127, 201, 73, 109, 235, 70,
237, 186, 109, 210, 8, 80, 209, 172, 232, 188, 248, 38, 236, 167, 109,
202, 144, 248, 215, 199, 166, 248, 215, 62, 232, 175, 228, 163, 209, 186,
109, 216, 54, 248, 236, 238, 137, 233, 206, 87, 236, 127, 57, 238, 196,
246, 215, 248, 197, 4, 193, 60, 57, 248, 197, 4, 236, 127, 57, 248, 197,
4, 233, 222, 57, 248, 197, 4, 209, 143, 57, 216, 54, 4, 194, 47, 242,
253, 4, 197, 30, 198, 191, 26, 193, 60, 57, 205, 215, 210, 115, 239, 23,
247, 142, 216, 118, 232, 180, 236, 192, 211, 167, 236, 198, 235, 30, 232,
251, 232, 160, 211, 184, 232, 251, 232, 160, 211, 62, 4, 238, 142, 211,
62, 233, 84, 197, 41, 246, 255, 200, 64, 246, 255, 246, 216, 223, 176,
242, 253, 4, 197, 30, 198, 190, 242, 253, 4, 235, 92, 198, 190, 248, 194,
242, 252, 242, 90, 209, 19, 207, 9, 209, 19, 210, 250, 201, 230, 206,
200, 198, 182, 206, 200, 247, 204, 200, 163, 220, 33, 213, 103, 213, 104,
4, 237, 105, 238, 208, 242, 84, 247, 205, 211, 184, 247, 205, 230, 201,
247, 205, 247, 224, 247, 205, 211, 162, 247, 205, 247, 202, 215, 63, 248,
240, 205, 228, 217, 7, 200, 42, 207, 251, 211, 60, 233, 52, 217, 216,
206, 17, 250, 183, 209, 44, 251, 122, 219, 55, 242, 237, 217, 19, 211,
124, 198, 199, 223, 187, 198, 199, 211, 69, 234, 246, 109, 223, 184, 234,
52, 234, 53, 4, 235, 92, 61, 58, 242, 84, 217, 177, 4, 219, 46, 232, 206,
242, 84, 217, 177, 4, 208, 39, 232, 206, 211, 184, 217, 177, 4, 208, 39,
232, 206, 211, 184, 217, 177, 4, 219, 46, 232, 206, 209, 152, 209, 153,
228, 208, 214, 172, 216, 83, 210, 60, 216, 83, 210, 61, 4, 94, 61, 250,
27, 220, 28, 196, 38, 216, 82, 216, 83, 210, 61, 211, 250, 213, 143, 216,
83, 210, 59, 250, 184, 4, 248, 182, 246, 247, 246, 248, 4, 232, 197, 196,
35, 246, 247, 200, 39, 208, 55, 196, 34, 232, 244, 209, 78, 209, 162,
201, 252, 209, 120, 248, 121, 197, 224, 94, 250, 73, 242, 86, 94, 26,
114, 211, 184, 242, 131, 250, 73, 242, 86, 94, 26, 114, 211, 184, 242,
131, 250, 74, 4, 47, 90, 211, 110, 242, 86, 235, 92, 26, 197, 30, 211,
184, 242, 131, 250, 73, 250, 182, 235, 92, 26, 197, 30, 211, 184, 242,
131, 250, 73, 132, 247, 140, 109, 139, 247, 140, 109, 202, 149, 4, 246,
240, 111, 202, 148, 202, 149, 4, 90, 202, 174, 194, 124, 202, 149, 4,
112, 202, 174, 194, 123, 248, 164, 234, 119, 209, 212, 220, 23, 217, 189,
231, 11, 207, 96, 217, 189, 231, 11, 219, 99, 4, 223, 157, 210, 154, 242,
84, 219, 99, 4, 222, 1, 222, 1, 219, 98, 211, 184, 219, 98, 248, 86, 248,
87, 4, 246, 240, 111, 247, 203, 219, 166, 109, 208, 56, 247, 72, 248,
253, 4, 114, 61, 58, 234, 80, 4, 114, 61, 58, 211, 212, 4, 233, 204, 122,
4, 46, 51, 61, 58, 202, 182, 4, 94, 61, 58, 198, 249, 4, 197, 30, 61, 58,
213, 143, 90, 197, 69, 234, 146, 109, 221, 254, 200, 30, 223, 151, 16,
39, 8, 6, 219, 234, 223, 151, 16, 39, 8, 2, 219, 234, 223, 151, 16, 39,
212, 235, 223, 151, 16, 39, 201, 5, 223, 151, 16, 39, 8, 219, 234, 232,
231, 234, 119, 198, 244, 193, 253, 230, 69, 212, 218, 26, 247, 210, 229,
33, 209, 242, 216, 163, 200, 40, 238, 164, 248, 217, 203, 41, 209, 190,
202, 20, 4, 85, 236, 114, 223, 50, 16, 39, 248, 99, 198, 180, 234, 96,
60, 50, 247, 72, 62, 50, 247, 72, 220, 73, 207, 237, 242, 130, 220, 73,
247, 224, 242, 130, 220, 73, 211, 162, 237, 4, 220, 73, 247, 224, 237, 4,
2, 211, 162, 237, 4, 2, 247, 224, 237, 4, 197, 40, 207, 237, 198, 185,
235, 95, 207, 237, 198, 185, 197, 40, 2, 207, 237, 198, 185, 235, 95, 2,
207, 237, 198, 185, 106, 51, 204, 50, 62, 242, 130, 113, 51, 204, 50, 62,
242, 130, 47, 238, 184, 209, 176, 238, 184, 209, 177, 4, 230, 75, 63,
238, 184, 209, 176, 213, 107, 46, 204, 183, 4, 112, 236, 111, 213, 107,
51, 204, 183, 4, 112, 236, 111, 16, 39, 217, 121, 246, 102, 62, 8, 238,
183, 87, 8, 238, 183, 246, 142, 238, 183, 211, 220, 109, 235, 98, 80,
210, 179, 222, 157, 216, 22, 200, 255, 217, 2, 4, 214, 16, 247, 159, 247,
178, 80, 228, 113, 242, 88, 233, 92, 90, 212, 11, 242, 88, 233, 92, 103,
212, 11, 242, 88, 233, 92, 112, 212, 11, 242, 88, 233, 92, 232, 119, 212,
11, 242, 88, 233, 92, 232, 214, 212, 11, 242, 88, 233, 92, 203, 41, 212,
11, 242, 88, 233, 92, 204, 146, 212, 11, 242, 88, 233, 92, 234, 148, 212,
11, 242, 88, 233, 92, 214, 16, 212, 11, 242, 88, 233, 92, 200, 31, 212,
11, 242, 88, 233, 92, 234, 112, 212, 11, 242, 88, 233, 92, 197, 245, 212,
11, 242, 88, 233, 92, 211, 204, 242, 88, 233, 92, 197, 218, 242, 88, 233,
92, 199, 152, 242, 88, 233, 92, 232, 115, 242, 88, 233, 92, 232, 212,
242, 88, 233, 92, 203, 37, 242, 88, 233, 92, 204, 145, 242, 88, 233, 92,
234, 147, 242, 88, 233, 92, 214, 15, 242, 88, 233, 92, 200, 29, 242, 88,
233, 92, 234, 110, 242, 88, 233, 92, 197, 243, 51, 202, 148, 51, 202,
149, 4, 90, 202, 174, 194, 124, 51, 202, 149, 4, 112, 202, 174, 194, 123,
247, 104, 247, 105, 4, 202, 174, 194, 123, 207, 79, 248, 86, 247, 205,
246, 238, 217, 145, 242, 87, 60, 203, 11, 26, 238, 181, 213, 143, 209,
248, 229, 25, 217, 161, 223, 191, 247, 81, 201, 137, 219, 227, 202, 253,
211, 164, 202, 107, 237, 191, 201, 119, 202, 136, 202, 137, 194, 104,
222, 215, 217, 161, 237, 209, 46, 230, 63, 200, 42, 207, 251, 200, 42,
207, 252, 4, 211, 61, 51, 230, 63, 200, 42, 207, 251, 62, 198, 230, 200,
41, 60, 198, 230, 200, 41, 200, 42, 211, 212, 198, 249, 80, 216, 79, 242,
109, 216, 83, 210, 60, 248, 253, 80, 234, 52, 202, 26, 234, 52, 234, 53,
4, 219, 192, 232, 167, 234, 52, 210, 155, 136, 202, 26, 234, 52, 219,
165, 210, 249, 60, 209, 19, 106, 46, 210, 153, 106, 46, 248, 211, 210,
154, 106, 46, 232, 121, 210, 154, 106, 46, 211, 54, 106, 46, 238, 199,
46, 193, 247, 230, 62, 163, 211, 232, 230, 63, 57, 208, 39, 230, 63, 4,
232, 236, 202, 126, 207, 168, 208, 39, 230, 63, 4, 232, 236, 202, 126,
207, 168, 199, 146, 130, 57, 207, 168, 199, 146, 142, 57, 207, 168, 196,
37, 230, 62, 207, 168, 230, 63, 4, 85, 232, 241, 233, 192, 208, 39, 230,
63, 4, 210, 224, 248, 61, 85, 26, 207, 82, 232, 235, 62, 142, 209, 188,
46, 230, 63, 223, 176, 203, 109, 62, 46, 209, 188, 223, 176, 203, 109,
62, 51, 209, 188, 223, 176, 203, 109, 60, 46, 209, 188, 223, 176, 203,
109, 60, 51, 209, 188, 223, 176, 60, 46, 209, 188, 248, 250, 223, 176,
60, 51, 209, 188, 248, 250, 223, 176, 203, 109, 62, 130, 209, 188, 223,
176, 203, 109, 62, 142, 209, 188, 223, 176, 203, 109, 60, 130, 209, 188,
223, 176, 203, 109, 60, 142, 209, 188, 223, 176, 60, 130, 209, 188, 248,
250, 223, 176, 60, 142, 209, 188, 248, 250, 223, 176, 60, 229, 233, 237,
50, 239, 23, 222, 0, 26, 216, 6, 112, 214, 181, 239, 22, 209, 93, 209,
196, 247, 1, 60, 230, 26, 204, 2, 232, 180, 236, 192, 62, 230, 26, 204,
2, 232, 180, 236, 192, 202, 198, 204, 2, 232, 180, 236, 192, 200, 115,
246, 199, 194, 42, 221, 255, 90, 247, 73, 216, 6, 103, 247, 73, 216, 6,
112, 247, 73, 216, 6, 198, 221, 40, 210, 115, 239, 23, 230, 26, 236, 192,
205, 231, 209, 94, 228, 43, 233, 52, 228, 43, 211, 167, 236, 199, 228,
43, 236, 140, 4, 199, 244, 236, 140, 4, 199, 245, 26, 210, 44, 236, 140,
4, 210, 44, 232, 105, 4, 210, 44, 232, 105, 4, 199, 88, 232, 105, 4, 250,
225, 193, 223, 60, 232, 160, 232, 160, 211, 184, 232, 160, 246, 216, 140,
236, 176, 246, 216, 232, 251, 247, 173, 232, 251, 247, 14, 234, 90, 213,
105, 234, 90, 213, 106, 211, 61, 234, 90, 213, 106, 211, 67, 213, 105,
213, 106, 211, 61, 213, 106, 211, 67, 234, 90, 236, 139, 234, 90, 211,
61, 234, 90, 211, 59, 236, 139, 211, 61, 211, 59, 194, 134, 202, 133,
213, 106, 211, 67, 202, 133, 247, 0, 211, 67, 237, 50, 194, 51, 216, 115,
217, 93, 211, 113, 242, 86, 51, 26, 46, 204, 183, 250, 73, 246, 240, 193,
223, 223, 182, 232, 153, 203, 21, 109, 237, 104, 232, 153, 203, 21, 109,
239, 24, 40, 222, 1, 207, 34, 214, 172, 211, 62, 4, 47, 199, 244, 201,
242, 242, 252, 237, 239, 221, 124, 219, 159, 202, 147, 229, 246, 223,
191, 203, 91, 112, 208, 13, 58, 112, 208, 13, 63, 112, 208, 13, 220, 28,
112, 208, 13, 207, 101, 46, 202, 144, 247, 122, 51, 202, 144, 247, 122,
103, 202, 144, 247, 121, 112, 202, 144, 247, 121, 46, 199, 166, 247, 122,
51, 199, 166, 247, 122, 46, 250, 211, 247, 122, 51, 250, 211, 247, 122,
216, 34, 247, 122, 219, 193, 216, 34, 247, 122, 219, 193, 216, 33, 248,
213, 105, 4, 248, 212, 248, 213, 27, 193, 223, 248, 213, 105, 4, 27, 193,
223, 248, 213, 28, 27, 193, 223, 248, 213, 105, 4, 28, 27, 193, 223, 152,
242, 244, 77, 248, 213, 105, 4, 28, 242, 243, 194, 6, 217, 141, 216, 11,
232, 72, 199, 24, 198, 226, 202, 9, 80, 219, 207, 203, 92, 80, 223, 51,
215, 248, 230, 197, 233, 91, 230, 197, 233, 92, 4, 202, 230, 233, 173,
233, 92, 4, 200, 60, 80, 222, 217, 202, 230, 233, 92, 4, 211, 184, 216,
4, 202, 230, 233, 92, 4, 211, 184, 216, 5, 26, 202, 230, 233, 173, 202,
230, 233, 92, 4, 211, 184, 216, 5, 26, 242, 51, 201, 72, 202, 230, 233,
92, 4, 211, 184, 216, 5, 26, 199, 106, 233, 173, 202, 230, 233, 92, 4,
230, 74, 202, 230, 233, 92, 4, 228, 207, 194, 44, 233, 91, 202, 230, 233,
92, 4, 202, 230, 233, 173, 233, 92, 206, 7, 237, 84, 232, 151, 207, 211,
233, 91, 202, 230, 233, 92, 4, 229, 232, 233, 173, 202, 230, 233, 92, 4,
201, 119, 202, 229, 233, 91, 214, 179, 233, 91, 233, 194, 233, 91, 197,
75, 233, 91, 233, 92, 4, 242, 51, 201, 72, 210, 146, 233, 91, 239, 15,
233, 91, 239, 16, 233, 91, 221, 159, 233, 91, 233, 92, 199, 149, 41, 221,
160, 221, 159, 233, 92, 4, 202, 230, 233, 173, 221, 159, 233, 92, 4, 242,
84, 233, 173, 233, 92, 4, 201, 192, 199, 0, 233, 92, 4, 201, 192, 199, 1,
26, 194, 44, 233, 181, 233, 92, 4, 201, 192, 199, 1, 26, 199, 106, 233,
173, 236, 200, 233, 91, 194, 4, 233, 91, 250, 203, 233, 91, 209, 142,
233, 91, 238, 166, 233, 91, 210, 119, 233, 91, 233, 92, 4, 219, 72, 80,
198, 162, 236, 200, 247, 77, 207, 211, 233, 91, 232, 83, 233, 92, 4, 211,
184, 216, 4, 250, 201, 233, 91, 233, 45, 233, 91, 194, 105, 233, 91, 202,
254, 233, 91, 199, 68, 233, 91, 230, 198, 233, 91, 219, 56, 238, 166,
233, 91, 233, 92, 4, 211, 184, 216, 4, 228, 152, 233, 91, 233, 92, 4,
211, 184, 216, 5, 26, 242, 51, 201, 72, 233, 92, 205, 233, 223, 191, 233,
46, 250, 34, 233, 91, 232, 172, 233, 91, 202, 255, 233, 91, 236, 167,
233, 91, 233, 92, 194, 39, 216, 4, 233, 92, 4, 217, 34, 217, 106, 230,
197, 246, 194, 233, 92, 4, 202, 230, 233, 173, 246, 194, 233, 92, 4, 200,
60, 80, 222, 217, 202, 230, 246, 194, 233, 92, 4, 211, 184, 216, 4, 202,
230, 246, 194, 233, 92, 4, 229, 232, 233, 173, 246, 194, 233, 92, 4, 193,
245, 202, 231, 221, 159, 246, 194, 233, 92, 4, 242, 84, 233, 173, 209,
142, 246, 194, 233, 91, 238, 166, 246, 194, 233, 91, 194, 105, 246, 194,
233, 91, 202, 248, 232, 83, 233, 91, 202, 248, 202, 230, 233, 91, 197,
36, 233, 91, 233, 92, 4, 207, 32, 233, 173, 233, 92, 4, 213, 143, 230,
241, 231, 125, 233, 92, 4, 211, 232, 231, 125, 210, 117, 247, 179, 237,
99, 205, 204, 216, 49, 229, 236, 216, 49, 202, 150, 216, 49, 230, 29,
210, 117, 208, 37, 90, 230, 62, 210, 117, 208, 37, 247, 191, 230, 38,
223, 191, 246, 144, 210, 117, 232, 82, 210, 117, 4, 209, 142, 233, 91,
210, 117, 4, 232, 161, 230, 37, 178, 194, 91, 209, 188, 220, 37, 202,
171, 194, 91, 209, 188, 220, 37, 178, 234, 186, 209, 188, 220, 37, 202,
171, 234, 186, 209, 188, 220, 37, 163, 178, 194, 91, 209, 188, 220, 37,
163, 202, 171, 194, 91, 209, 188, 220, 37, 163, 178, 234, 186, 209, 188,
220, 37, 163, 202, 171, 234, 186, 209, 188, 220, 37, 178, 194, 91, 209,
188, 196, 19, 220, 37, 202, 171, 194, 91, 209, 188, 196, 19, 220, 37,
178, 234, 186, 209, 188, 196, 19, 220, 37, 202, 171, 234, 186, 209, 188,
196, 19, 220, 37, 87, 178, 194, 91, 209, 188, 196, 19, 220, 37, 87, 202,
171, 194, 91, 209, 188, 196, 19, 220, 37, 87, 178, 234, 186, 209, 188,
196, 19, 220, 37, 87, 202, 171, 234, 186, 209, 188, 196, 19, 220, 37,
178, 194, 91, 209, 188, 247, 118, 202, 171, 194, 91, 209, 188, 247, 118,
178, 234, 186, 209, 188, 247, 118, 202, 171, 234, 186, 209, 188, 247,
118, 87, 178, 194, 91, 209, 188, 247, 118, 87, 202, 171, 194, 91, 209,
188, 247, 118, 87, 178, 234, 186, 209, 188, 247, 118, 87, 202, 171, 234,
186, 209, 188, 247, 118, 229, 24, 208, 152, 50, 211, 150, 229, 24, 208,
152, 50, 211, 151, 223, 191, 60, 202, 106, 202, 191, 208, 152, 50, 211,
150, 202, 191, 208, 152, 50, 211, 151, 223, 191, 60, 202, 106, 114, 207,
39, 197, 30, 207, 39, 94, 207, 39, 235, 92, 207, 39, 27, 34, 233, 243,
211, 150, 87, 27, 34, 233, 243, 211, 150, 34, 211, 184, 233, 243, 211,
150, 87, 34, 211, 184, 233, 243, 211, 150, 87, 250, 230, 211, 150, 201,
75, 250, 230, 211, 150, 49, 87, 55, 163, 242, 39, 208, 142, 122, 211,
150, 49, 87, 55, 242, 39, 208, 142, 122, 211, 150, 49, 87, 132, 55, 242,
39, 208, 142, 122, 211, 150, 87, 223, 131, 211, 150, 49, 223, 131, 211,
150, 87, 49, 223, 131, 211, 150, 196, 53, 87, 202, 189, 196, 53, 87, 207,
169, 202, 189, 242, 242, 247, 216, 207, 169, 242, 242, 247, 216, 207, 39,
229, 215, 202, 4, 219, 96, 208, 44, 246, 217, 229, 151, 198, 213, 229,
151, 198, 214, 4, 247, 107, 213, 112, 198, 213, 216, 233, 152, 208, 45,
202, 10, 198, 211, 198, 212, 246, 217, 247, 82, 211, 208, 247, 82, 198,
158, 247, 83, 201, 238, 216, 119, 250, 234, 232, 232, 234, 72, 209, 180,
246, 217, 211, 208, 209, 180, 246, 217, 200, 89, 211, 208, 200, 89, 249,
251, 211, 208, 249, 251, 207, 244, 196, 115, 237, 80, 198, 149, 250, 67,
219, 63, 198, 220, 216, 42, 216, 10, 208, 43, 201, 89, 208, 43, 216, 10,
247, 13, 251, 94, 198, 210, 203, 220, 207, 6, 202, 142, 229, 5, 198, 217,
219, 195, 84, 198, 217, 219, 195, 239, 2, 57, 209, 180, 246, 201, 207,
162, 219, 195, 198, 182, 232, 207, 211, 212, 209, 154, 236, 118, 213,
143, 234, 58, 57, 202, 228, 109, 213, 143, 202, 228, 109, 209, 18, 219,
148, 223, 191, 223, 79, 209, 232, 109, 236, 147, 213, 111, 219, 148, 109,
209, 148, 194, 130, 109, 213, 127, 194, 130, 109, 248, 37, 213, 143, 248,
36, 248, 35, 216, 10, 248, 35, 210, 170, 213, 143, 210, 169, 242, 205,
238, 175, 217, 1, 109, 194, 20, 109, 207, 178, 248, 255, 109, 199, 25,
194, 130, 242, 81, 203, 175, 248, 167, 248, 165, 210, 208, 238, 242, 238,
123, 248, 232, 242, 110, 46, 219, 26, 198, 186, 4, 207, 7, 238, 222, 209,
81, 57, 47, 223, 165, 202, 172, 247, 170, 109, 231, 22, 109, 238, 214,
26, 220, 84, 202, 255, 251, 140, 203, 198, 248, 231, 248, 85, 248, 86,
248, 109, 209, 232, 80, 194, 3, 212, 8, 57, 203, 198, 198, 159, 201, 188,
211, 58, 229, 147, 200, 33, 228, 151, 234, 114, 230, 70, 26, 193, 253,
203, 233, 211, 237, 235, 67, 216, 14, 208, 44, 198, 222, 216, 17, 247,
215, 197, 40, 216, 130, 251, 50, 197, 40, 251, 50, 197, 40, 2, 251, 50,
2, 251, 50, 213, 116, 251, 50, 251, 51, 237, 64, 251, 51, 250, 80, 206,
16, 211, 208, 232, 232, 234, 72, 236, 250, 219, 96, 210, 212, 203, 220,
205, 237, 216, 17, 205, 237, 246, 228, 203, 1, 232, 167, 206, 11, 203,
17, 249, 253, 207, 137, 210, 45, 198, 149, 207, 33, 203, 18, 156, 16, 39,
208, 148, 156, 16, 39, 251, 52, 156, 16, 39, 232, 231, 156, 16, 39, 234,
189, 156, 16, 39, 194, 129, 156, 16, 39, 250, 133, 156, 16, 39, 250, 134,
207, 231, 156, 16, 39, 250, 134, 207, 230, 156, 16, 39, 250, 134, 196, 2,
156, 16, 39, 250, 134, 196, 1, 156, 16, 39, 196, 16, 156, 16, 39, 196,
15, 156, 16, 39, 196, 14, 156, 16, 39, 201, 130, 156, 16, 39, 210, 69,
201, 130, 156, 16, 39, 60, 201, 130, 156, 16, 39, 217, 0, 201, 161, 156,
16, 39, 217, 0, 201, 160, 156, 16, 39, 217, 0, 201, 159, 156, 16, 39,
242, 133, 156, 16, 39, 206, 55, 156, 16, 39, 214, 3, 156, 16, 39, 196, 0,
156, 16, 39, 195, 255, 156, 16, 39, 207, 41, 206, 55, 156, 16, 39, 207,
41, 206, 54, 156, 16, 39, 230, 245, 156, 16, 39, 203, 88, 156, 16, 39,
223, 102, 211, 157, 156, 16, 39, 223, 102, 211, 156, 156, 16, 39, 238,
188, 80, 223, 101, 156, 16, 39, 207, 227, 80, 223, 101, 156, 16, 39, 238,
233, 211, 157, 156, 16, 39, 223, 100, 211, 157, 156, 16, 39, 201, 162,
80, 238, 232, 156, 16, 39, 238, 188, 80, 238, 232, 156, 16, 39, 238, 188,
80, 238, 231, 156, 16, 39, 238, 233, 250, 176, 156, 16, 39, 206, 56, 80,
238, 233, 250, 176, 156, 16, 39, 201, 162, 80, 206, 56, 80, 238, 232,
156, 16, 39, 196, 109, 156, 16, 39, 199, 81, 211, 157, 156, 16, 39, 220,
41, 211, 157, 156, 16, 39, 250, 175, 211, 157, 156, 16, 39, 201, 162, 80,
250, 174, 156, 16, 39, 206, 56, 80, 250, 174, 156, 16, 39, 201, 162, 80,
206, 56, 80, 250, 174, 156, 16, 39, 196, 17, 80, 250, 174, 156, 16, 39,
207, 227, 80, 250, 174, 156, 16, 39, 207, 227, 80, 250, 173, 156, 16, 39,
207, 226, 156, 16, 39, 207, 225, 156, 16, 39, 207, 224, 156, 16, 39, 207,
223, 156, 16, 39, 251, 11, 156, 16, 39, 251, 10, 156, 16, 39, 217, 132,
156, 16, 39, 206, 62, 156, 16, 39, 250, 72, 156, 16, 39, 207, 255, 156,
16, 39, 207, 254, 156, 16, 39, 249, 255, 156, 16, 39, 248, 3, 211, 157,
156, 16, 39, 200, 110, 156, 16, 39, 200, 109, 156, 16, 39, 208, 154, 219,
184, 156, 16, 39, 247, 196, 156, 16, 39, 247, 195, 156, 16, 39, 247, 194,
156, 16, 39, 250, 243, 156, 16, 39, 211, 236, 156, 16, 39, 202, 129, 156,
16, 39, 199, 79, 156, 16, 39, 230, 165, 156, 16, 39, 194, 117, 156, 16,
39, 209, 141, 156, 16, 39, 246, 252, 156, 16, 39, 198, 1, 156, 16, 39,
246, 219, 216, 23, 156, 16, 39, 205, 247, 80, 222, 219, 156, 16, 39, 247,
10, 156, 16, 39, 198, 179, 156, 16, 39, 202, 17, 198, 179, 156, 16, 39,
219, 95, 156, 16, 39, 202, 203, 156, 16, 39, 197, 19, 156, 16, 39, 228,
205, 235, 45, 156, 16, 39, 250, 48, 156, 16, 39, 209, 150, 250, 48, 156,
16, 39, 247, 145, 156, 16, 39, 209, 140, 247, 145, 156, 16, 39, 250, 240,
156, 16, 39, 201, 225, 201, 111, 201, 224, 156, 16, 39, 201, 225, 201,
111, 201, 223, 156, 16, 39, 201, 158, 156, 16, 39, 209, 113, 156, 16, 39,
236, 187, 156, 16, 39, 236, 189, 156, 16, 39, 236, 188, 156, 16, 39, 209,
27, 156, 16, 39, 209, 16, 156, 16, 39, 238, 173, 156, 16, 39, 238, 172,
156, 16, 39, 238, 171, 156, 16, 39, 238, 170, 156, 16, 39, 238, 169, 156,
16, 39, 251, 25, 156, 16, 39, 248, 168, 80, 217, 113, 156, 16, 39, 248,
168, 80, 196, 143, 156, 16, 39, 207, 176, 156, 16, 39, 228, 197, 156, 16,
39, 214, 31, 156, 16, 39, 237, 173, 156, 16, 39, 216, 37, 156, 16, 39,
138, 235, 82, 156, 16, 39, 138, 211, 128, 60, 220, 23, 223, 85, 51, 198,
185, 60, 197, 40, 223, 85, 51, 198, 185, 60, 207, 96, 223, 85, 51, 198,
185, 60, 235, 95, 223, 85, 51, 198, 185, 60, 202, 248, 2, 242, 130, 217,
31, 28, 62, 242, 130, 28, 62, 242, 130, 87, 62, 242, 130, 196, 53, 87,
62, 242, 130, 233, 185, 87, 62, 242, 130, 62, 242, 131, 238, 254, 60, 2,
242, 130, 207, 9, 200, 111, 60, 199, 76, 202, 106, 60, 202, 248, 2, 202,
106, 152, 62, 202, 106, 217, 31, 62, 202, 106, 28, 62, 202, 106, 87, 62,
202, 106, 196, 53, 87, 62, 202, 106, 233, 185, 87, 62, 202, 106, 62, 50,
238, 254, 60, 196, 53, 2, 202, 106, 62, 50, 238, 254, 60, 217, 31, 202,
106, 50, 200, 111, 60, 199, 76, 237, 4, 60, 196, 53, 2, 237, 4, 60, 217,
31, 2, 237, 4, 62, 237, 5, 238, 254, 60, 196, 53, 2, 237, 4, 62, 237, 5,
238, 254, 60, 217, 31, 237, 4, 237, 5, 200, 111, 60, 199, 76, 219, 43,
60, 196, 53, 2, 219, 43, 60, 217, 31, 2, 219, 43, 62, 219, 44, 238, 254,
60, 2, 219, 43, 199, 195, 33, 238, 183, 152, 33, 238, 183, 217, 31, 33,
238, 183, 28, 33, 238, 183, 196, 53, 28, 33, 238, 183, 196, 53, 87, 33,
238, 183, 233, 185, 87, 33, 238, 183, 199, 195, 206, 51, 152, 206, 51,
217, 31, 206, 51, 28, 206, 51, 87, 206, 51, 196, 53, 87, 206, 51, 233,
185, 87, 206, 51, 152, 232, 214, 202, 122, 250, 37, 217, 31, 232, 214,
202, 122, 250, 37, 28, 232, 214, 202, 122, 250, 37, 87, 232, 214, 202,
122, 250, 37, 196, 53, 87, 232, 214, 202, 122, 250, 37, 233, 185, 87,
232, 214, 202, 122, 250, 37, 152, 203, 41, 202, 122, 250, 37, 217, 31,
203, 41, 202, 122, 250, 37, 28, 203, 41, 202, 122, 250, 37, 87, 203, 41,
202, 122, 250, 37, 196, 53, 87, 203, 41, 202, 122, 250, 37, 233, 185, 87,
203, 41, 202, 122, 250, 37, 152, 234, 148, 202, 122, 250, 37, 217, 31,
234, 148, 202, 122, 250, 37, 28, 234, 148, 202, 122, 250, 37, 87, 234,
148, 202, 122, 250, 37, 196, 53, 87, 234, 148, 202, 122, 250, 37, 152,
112, 209, 190, 60, 202, 19, 217, 31, 112, 209, 190, 60, 202, 19, 112,
209, 190, 60, 202, 19, 217, 31, 112, 209, 190, 209, 254, 202, 19, 152,
232, 119, 209, 190, 60, 202, 19, 217, 31, 232, 119, 209, 190, 60, 202,
19, 232, 119, 209, 190, 60, 202, 19, 217, 31, 232, 119, 209, 190, 209,
254, 202, 19, 207, 169, 152, 232, 119, 209, 190, 209, 254, 202, 19, 152,
232, 214, 209, 190, 60, 202, 19, 87, 232, 214, 209, 190, 60, 202, 19,
217, 31, 203, 41, 209, 190, 60, 202, 19, 87, 203, 41, 209, 190, 60, 202,
19, 203, 41, 209, 190, 209, 254, 202, 19, 217, 31, 234, 148, 209, 190,
60, 202, 19, 87, 234, 148, 209, 190, 60, 202, 19, 196, 53, 87, 234, 148,
209, 190, 60, 202, 19, 87, 234, 148, 209, 190, 209, 254, 202, 19, 152,
197, 245, 209, 190, 60, 202, 19, 87, 197, 245, 209, 190, 60, 202, 19, 87,
197, 245, 209, 190, 209, 254, 202, 19, 47, 198, 185, 214, 199, 47, 198,
185, 47, 202, 106, 214, 199, 47, 202, 106, 220, 73, 211, 162, 242, 130,
220, 73, 193, 62, 242, 130, 220, 73, 230, 201, 242, 130, 220, 73, 209,
24, 242, 130, 220, 73, 247, 133, 242, 130, 220, 73, 207, 237, 202, 106,
220, 73, 247, 224, 202, 106, 220, 73, 211, 162, 202, 106, 220, 73, 193,
62, 202, 106, 220, 73, 230, 201, 202, 106, 220, 73, 209, 24, 202, 106,
220, 73, 247, 133, 202, 106, 114, 61, 4, 2, 198, 186, 250, 77, 197, 30,
61, 4, 2, 198, 186, 250, 77, 94, 61, 4, 2, 198, 186, 250, 77, 235, 92,
61, 4, 2, 198, 186, 250, 77, 114, 61, 4, 217, 31, 198, 186, 250, 77, 197,
30, 61, 4, 217, 31, 198, 186, 250, 77, 94, 61, 4, 217, 31, 198, 186, 250,
77, 235, 92, 61, 4, 217, 31, 198, 186, 250, 77, 114, 61, 4, 220, 73, 198,
186, 250, 77, 197, 30, 61, 4, 220, 73, 198, 186, 250, 77, 94, 61, 4, 220,
73, 198, 186, 250, 77, 235, 92, 61, 4, 220, 73, 198, 186, 250, 77, 114,
61, 4, 2, 234, 24, 250, 77, 197, 30, 61, 4, 2, 234, 24, 250, 77, 94, 61,
4, 2, 234, 24, 250, 77, 235, 92, 61, 4, 2, 234, 24, 250, 77, 114, 61, 4,
234, 24, 250, 77, 197, 30, 61, 4, 234, 24, 250, 77, 94, 61, 4, 234, 24,
250, 77, 235, 92, 61, 4, 234, 24, 250, 77, 87, 114, 61, 4, 234, 24, 250,
77, 87, 197, 30, 61, 4, 234, 24, 250, 77, 87, 94, 61, 4, 234, 24, 250,
77, 87, 235, 92, 61, 4, 234, 24, 250, 77, 87, 114, 61, 4, 220, 73, 234,
24, 250, 77, 87, 197, 30, 61, 4, 220, 73, 234, 24, 250, 77, 87, 94, 61,
4, 220, 73, 234, 24, 250, 77, 87, 235, 92, 61, 4, 220, 73, 234, 24, 250,
77, 114, 198, 184, 61, 4, 215, 50, 204, 48, 197, 30, 198, 184, 61, 4,
215, 50, 204, 48, 94, 198, 184, 61, 4, 215, 50, 204, 48, 235, 92, 198,
184, 61, 4, 215, 50, 204, 48, 114, 198, 184, 61, 4, 217, 31, 204, 48,
197, 30, 198, 184, 61, 4, 217, 31, 204, 48, 94, 198, 184, 61, 4, 217, 31,
204, 48, 235, 92, 198, 184, 61, 4, 217, 31, 204, 48, 114, 198, 184, 61,
4, 28, 204, 48, 197, 30, 198, 184, 61, 4, 28, 204, 48, 94, 198, 184, 61,
4, 28, 204, 48, 235, 92, 198, 184, 61, 4, 28, 204, 48, 114, 198, 184, 61,
4, 87, 204, 48, 197, 30, 198, 184, 61, 4, 87, 204, 48, 94, 198, 184, 61,
4, 87, 204, 48, 235, 92, 198, 184, 61, 4, 87, 204, 48, 114, 198, 184, 61,
4, 196, 53, 87, 204, 48, 197, 30, 198, 184, 61, 4, 196, 53, 87, 204, 48,
94, 198, 184, 61, 4, 196, 53, 87, 204, 48, 235, 92, 198, 184, 61, 4, 196,
53, 87, 204, 48, 114, 232, 239, 54, 197, 30, 232, 239, 54, 94, 232, 239,
54, 235, 92, 232, 239, 54, 114, 108, 54, 197, 30, 108, 54, 94, 108, 54,
235, 92, 108, 54, 114, 239, 25, 54, 197, 30, 239, 25, 54, 94, 239, 25,
54, 235, 92, 239, 25, 54, 114, 87, 239, 25, 54, 197, 30, 87, 239, 25, 54,
94, 87, 239, 25, 54, 235, 92, 87, 239, 25, 54, 114, 87, 54, 197, 30, 87,
54, 94, 87, 54, 235, 92, 87, 54, 114, 49, 54, 197, 30, 49, 54, 94, 49,
54, 235, 92, 49, 54, 178, 194, 91, 49, 54, 178, 234, 186, 49, 54, 202,
171, 234, 186, 49, 54, 202, 171, 194, 91, 49, 54, 46, 51, 49, 54, 130,
142, 49, 54, 194, 63, 114, 152, 173, 54, 194, 63, 197, 30, 152, 173, 54,
194, 63, 94, 152, 173, 54, 194, 63, 235, 92, 152, 173, 54, 194, 63, 178,
194, 91, 152, 173, 54, 194, 63, 178, 234, 186, 152, 173, 54, 194, 63,
202, 171, 234, 186, 152, 173, 54, 194, 63, 202, 171, 194, 91, 152, 173,
54, 194, 63, 114, 173, 54, 194, 63, 197, 30, 173, 54, 194, 63, 94, 173,
54, 194, 63, 235, 92, 173, 54, 194, 63, 178, 194, 91, 173, 54, 194, 63,
178, 234, 186, 173, 54, 194, 63, 202, 171, 234, 186, 173, 54, 194, 63,
202, 171, 194, 91, 173, 54, 194, 63, 114, 217, 31, 173, 54, 194, 63, 197,
30, 217, 31, 173, 54, 194, 63, 94, 217, 31, 173, 54, 194, 63, 235, 92,
217, 31, 173, 54, 194, 63, 178, 194, 91, 217, 31, 173, 54, 194, 63, 178,
234, 186, 217, 31, 173, 54, 194, 63, 202, 171, 234, 186, 217, 31, 173,
54, 194, 63, 202, 171, 194, 91, 217, 31, 173, 54, 194, 63, 114, 87, 173,
54, 194, 63, 197, 30, 87, 173, 54, 194, 63, 94, 87, 173, 54, 194, 63,
235, 92, 87, 173, 54, 194, 63, 178, 194, 91, 87, 173, 54, 194, 63, 178,
234, 186, 87, 173, 54, 194, 63, 202, 171, 234, 186, 87, 173, 54, 194, 63,
202, 171, 194, 91, 87, 173, 54, 194, 63, 114, 196, 53, 87, 173, 54, 194,
63, 197, 30, 196, 53, 87, 173, 54, 194, 63, 94, 196, 53, 87, 173, 54,
194, 63, 235, 92, 196, 53, 87, 173, 54, 194, 63, 178, 194, 91, 196, 53,
87, 173, 54, 194, 63, 178, 234, 186, 196, 53, 87, 173, 54, 194, 63, 202,
171, 234, 186, 196, 53, 87, 173, 54, 194, 63, 202, 171, 194, 91, 196, 53,
87, 173, 54, 114, 198, 186, 250, 77, 197, 30, 198, 186, 250, 77, 94, 198,
186, 250, 77, 235, 92, 198, 186, 250, 77, 114, 62, 61, 194, 41, 198, 186,
250, 77, 197, 30, 62, 61, 194, 41, 198, 186, 250, 77, 94, 62, 61, 194,
41, 198, 186, 250, 77, 235, 92, 62, 61, 194, 41, 198, 186, 250, 77, 114,
61, 4, 213, 107, 200, 147, 197, 30, 61, 4, 213, 107, 200, 147, 94, 61, 4,
213, 107, 200, 147, 235, 92, 61, 4, 213, 107, 200, 147, 87, 61, 204, 49,
194, 61, 101, 87, 61, 204, 49, 194, 61, 103, 199, 188, 87, 61, 204, 49,
194, 61, 90, 230, 78, 87, 61, 204, 49, 194, 61, 90, 199, 191, 114, 247,
185, 62, 54, 94, 247, 188, 204, 51, 62, 54, 114, 198, 249, 204, 51, 62,
54, 94, 198, 249, 204, 51, 62, 54, 114, 220, 22, 62, 54, 94, 207, 95, 62,
54, 114, 207, 95, 62, 54, 94, 220, 22, 62, 54, 114, 248, 251, 204, 50,
62, 54, 94, 248, 251, 204, 50, 62, 54, 114, 232, 86, 204, 50, 62, 54, 94,
232, 86, 204, 50, 62, 54, 62, 61, 204, 49, 194, 61, 101, 62, 61, 204, 49,
194, 61, 103, 199, 188, 61, 209, 188, 197, 30, 199, 216, 178, 194, 90,
61, 209, 188, 94, 199, 216, 238, 128, 202, 171, 194, 90, 47, 238, 184,
232, 133, 4, 232, 119, 236, 111, 47, 238, 184, 232, 133, 4, 103, 236,
111, 47, 238, 184, 232, 132, 46, 138, 242, 131, 4, 232, 119, 236, 111,
46, 138, 242, 131, 4, 112, 236, 111, 46, 138, 242, 131, 4, 103, 236, 111,
46, 138, 242, 131, 4, 236, 114, 46, 138, 242, 130, 235, 93, 233, 84, 128,
235, 93, 233, 84, 213, 107, 128, 235, 93, 233, 84, 229, 15, 4, 236, 114,
235, 93, 233, 84, 213, 107, 229, 15, 4, 236, 114, 210, 3, 232, 235, 62,
229, 233, 247, 133, 229, 233, 210, 2, 230, 62, 192, 17, 233, 91, 216, 53,
233, 91, 233, 92, 4, 199, 212, 214, 187, 233, 91, 199, 193, 233, 91, 233,
92, 4, 229, 244, 207, 43, 233, 91, 228, 172, 233, 91, 3, 80, 199, 225,
228, 207, 246, 254, 217, 49, 230, 62, 208, 39, 248, 253, 80, 230, 62,
220, 27, 232, 219, 207, 100, 232, 219, 230, 36, 230, 63, 4, 140, 26, 85,
232, 236, 238, 179, 228, 97, 219, 53, 192, 228, 230, 63, 57, 233, 92, 4,
238, 204, 230, 18, 242, 73, 233, 91, 215, 39, 233, 91, 207, 32, 211, 212,
199, 225, 232, 183, 220, 59, 235, 73, 233, 91, 218, 246, 233, 91, 233,
92, 211, 40, 202, 222, 233, 91, 233, 92, 4, 90, 233, 180, 208, 38, 230,
197, 233, 92, 4, 202, 20, 233, 173, 230, 197, 233, 92, 4, 90, 220, 73,
26, 90, 2, 233, 181, 233, 92, 4, 232, 241, 238, 207, 242, 84, 219, 159,
204, 157, 233, 92, 4, 201, 6, 238, 207, 216, 4, 202, 230, 233, 92, 4,
202, 230, 233, 174, 26, 230, 63, 238, 207, 216, 4, 233, 92, 4, 211, 184,
216, 5, 195, 237, 203, 209, 233, 92, 4, 233, 196, 229, 245, 209, 110,
194, 23, 247, 153, 211, 39, 130, 199, 26, 204, 186, 209, 98, 217, 161,
223, 191, 197, 253, 216, 19, 242, 175, 203, 168, 210, 117, 236, 131, 246,
198, 222, 209, 233, 26, 216, 78, 210, 141, 193, 252, 194, 130, 209, 178,
230, 41, 236, 173, 217, 106, 194, 55, 232, 175, 235, 68, 4, 235, 66, 242,
91, 231, 10, 198, 25, 231, 11, 202, 119, 230, 252, 214, 182, 207, 102,
232, 226, 209, 232, 217, 37, 205, 212, 209, 232, 217, 37, 199, 192, 209,
232, 217, 37, 247, 172, 231, 5, 217, 117, 250, 65, 197, 58, 238, 139,
201, 240, 220, 169, 201, 250, 26, 248, 217, 202, 197, 232, 167, 236, 198,
238, 187, 249, 242, 238, 155, 248, 244, 209, 147, 246, 202, 248, 230,
247, 156, 230, 201, 206, 60, 204, 41, 211, 26, 80, 232, 151, 201, 189,
232, 194, 234, 162, 231, 12, 80, 216, 129, 210, 175, 221, 154, 211, 22,
235, 50, 232, 128, 238, 237, 200, 139, 247, 173, 242, 182, 247, 178, 4,
202, 119, 238, 149, 4, 201, 222, 242, 57, 247, 137, 210, 43, 209, 102,
238, 122, 80, 217, 40, 206, 35, 246, 230, 232, 151, 220, 36, 230, 200,
217, 152, 216, 30, 247, 5, 248, 233, 202, 230, 233, 92, 4, 202, 230, 233,
174, 26, 112, 229, 231, 193, 76, 233, 91, 202, 230, 233, 92, 4, 200, 65,
233, 92, 4, 210, 219, 228, 209, 26, 210, 219, 230, 18, 233, 92, 4, 197,
62, 233, 174, 26, 194, 121, 216, 4, 211, 116, 233, 91, 232, 98, 233, 91,
214, 10, 236, 196, 233, 91, 233, 92, 4, 209, 218, 233, 173, 206, 23, 220,
178, 242, 60, 230, 248, 229, 149, 247, 200, 232, 196, 203, 207, 238, 201,
219, 163, 233, 91, 205, 235, 198, 13, 197, 60, 233, 91, 234, 196, 235,
58, 248, 170, 204, 27, 211, 105, 232, 111, 233, 91, 247, 74, 237, 98,
230, 234, 219, 142, 207, 155, 203, 170, 202, 100, 231, 24, 233, 91, 192,
83, 233, 91, 229, 226, 206, 8, 200, 227, 238, 190, 222, 116, 219, 134,
210, 177, 229, 141, 210, 225, 208, 63, 219, 105, 216, 21, 216, 165, 248,
239, 201, 77, 217, 162, 236, 137, 202, 242, 211, 133, 211, 161, 203, 9,
232, 198, 211, 95, 248, 111, 248, 2, 205, 216, 230, 170, 236, 134, 209,
87, 246, 232, 234, 94, 242, 28, 207, 237, 230, 86, 234, 94, 242, 28, 238,
138, 230, 86, 234, 94, 242, 28, 248, 219, 234, 94, 242, 28, 62, 230, 86,
247, 207, 220, 16, 232, 149, 198, 251, 201, 109, 201, 104, 206, 82, 196,
51, 234, 194, 4, 229, 235, 251, 62, 216, 15, 194, 77, 217, 144, 194, 77,
217, 39, 250, 92, 217, 39, 220, 16, 242, 236, 194, 102, 238, 147, 206,
56, 204, 45, 248, 59, 247, 173, 231, 190, 211, 200, 233, 73, 194, 158,
247, 75, 217, 100, 235, 77, 228, 50, 238, 157, 247, 123, 200, 68, 202,
22, 210, 116, 221, 126, 210, 116, 237, 114, 210, 116, 233, 92, 4, 216,
48, 251, 112, 242, 206, 211, 224, 251, 112, 248, 115, 210, 116, 210, 117,
4, 229, 240, 210, 117, 223, 191, 202, 1, 207, 24, 210, 117, 242, 93, 210,
117, 223, 191, 219, 58, 209, 159, 217, 192, 233, 75, 196, 146, 216, 249,
234, 109, 231, 141, 192, 6, 247, 163, 211, 162, 229, 233, 248, 24, 246,
226, 205, 248, 231, 4, 242, 60, 202, 200, 207, 237, 231, 36, 234, 52,
232, 230, 223, 14, 209, 12, 210, 42, 200, 10, 198, 35, 210, 101, 236,
194, 236, 148, 55, 229, 214, 242, 33, 251, 154, 232, 232, 233, 190, 198,
253, 247, 145, 217, 190, 219, 26, 219, 59, 247, 189, 202, 120, 80, 199,
162, 248, 218, 80, 193, 89, 206, 82, 210, 6, 200, 59, 248, 116, 247, 134,
248, 175, 207, 35, 80, 210, 251, 248, 194, 80, 202, 203, 202, 121, 207,
253, 215, 33, 250, 226, 214, 179, 242, 225, 221, 176, 214, 179, 242, 225,
208, 160, 214, 179, 242, 225, 207, 25, 214, 179, 242, 225, 248, 5, 214,
179, 242, 225, 221, 122, 214, 179, 242, 225, 210, 192, 62, 242, 225, 221,
123, 207, 16, 232, 125, 237, 94, 60, 242, 225, 221, 123, 207, 16, 232,
125, 237, 94, 214, 179, 242, 225, 221, 123, 207, 16, 232, 125, 237, 94,
62, 242, 225, 221, 177, 207, 16, 214, 12, 237, 94, 62, 242, 225, 208,
161, 207, 16, 214, 12, 237, 94, 62, 242, 225, 207, 26, 207, 16, 214, 12,
237, 94, 62, 242, 225, 248, 6, 207, 16, 214, 12, 237, 94, 62, 242, 225,
221, 123, 207, 16, 214, 12, 237, 94, 62, 242, 225, 210, 193, 207, 16,
214, 12, 237, 94, 60, 242, 225, 221, 177, 207, 16, 214, 12, 237, 94, 60,
242, 225, 208, 161, 207, 16, 214, 12, 237, 94, 60, 242, 225, 207, 26,
207, 16, 214, 12, 237, 94, 60, 242, 225, 248, 6, 207, 16, 214, 12, 237,
94, 60, 242, 225, 221, 123, 207, 16, 214, 12, 237, 94, 60, 242, 225, 210,
193, 207, 16, 214, 12, 237, 94, 214, 179, 242, 225, 221, 177, 207, 16,
214, 12, 237, 94, 214, 179, 242, 225, 208, 161, 207, 16, 214, 12, 237,
94, 214, 179, 242, 225, 207, 26, 207, 16, 214, 12, 237, 94, 214, 179,
242, 225, 248, 6, 207, 16, 214, 12, 237, 94, 214, 179, 242, 225, 221,
123, 207, 16, 214, 12, 237, 94, 214, 179, 242, 225, 210, 193, 207, 16,
214, 12, 237, 94, 62, 242, 225, 221, 123, 207, 16, 90, 228, 163, 199,
183, 237, 94, 60, 242, 225, 221, 123, 207, 16, 90, 228, 163, 199, 183,
237, 94, 214, 179, 242, 225, 221, 123, 207, 16, 90, 228, 163, 199, 183,
237, 94, 62, 242, 225, 163, 221, 176, 62, 242, 225, 163, 208, 160, 62,
242, 225, 163, 207, 25, 62, 242, 225, 163, 248, 5, 62, 242, 225, 163,
221, 122, 62, 242, 225, 163, 210, 192, 60, 242, 225, 163, 221, 176, 60,
242, 225, 163, 208, 160, 60, 242, 225, 163, 207, 25, 60, 242, 225, 163,
248, 5, 60, 242, 225, 163, 221, 122, 60, 242, 225, 163, 210, 192, 214,
179, 242, 225, 163, 221, 176, 214, 179, 242, 225, 163, 208, 160, 214,
179, 242, 225, 163, 207, 25, 214, 179, 242, 225, 163, 248, 5, 214, 179,
242, 225, 163, 221, 122, 214, 179, 242, 225, 163, 210, 192, 62, 242, 225,
221, 123, 207, 16, 103, 228, 163, 197, 236, 237, 94, 60, 242, 225, 221,
123, 207, 16, 103, 228, 163, 197, 236, 237, 94, 214, 179, 242, 225, 221,
123, 207, 16, 103, 228, 163, 197, 236, 237, 94, 62, 242, 225, 221, 177,
207, 16, 103, 228, 163, 204, 141, 237, 94, 62, 242, 225, 208, 161, 207,
16, 103, 228, 163, 204, 141, 237, 94, 62, 242, 225, 207, 26, 207, 16,
103, 228, 163, 204, 141, 237, 94, 62, 242, 225, 248, 6, 207, 16, 103,
228, 163, 204, 141, 237, 94, 62, 242, 225, 221, 123, 207, 16, 103, 228,
163, 204, 141, 237, 94, 62, 242, 225, 210, 193, 207, 16, 103, 228, 163,
204, 141, 237, 94, 60, 242, 225, 221, 177, 207, 16, 103, 228, 163, 204,
141, 237, 94, 60, 242, 225, 208, 161, 207, 16, 103, 228, 163, 204, 141,
237, 94, 60, 242, 225, 207, 26, 207, 16, 103, 228, 163, 204, 141, 237,
94, 60, 242, 225, 248, 6, 207, 16, 103, 228, 163, 204, 141, 237, 94, 60,
242, 225, 221, 123, 207, 16, 103, 228, 163, 204, 141, 237, 94, 60, 242,
225, 210, 193, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 221, 177, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 208, 161, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 207, 26, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 248, 6, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 221, 123, 207, 16, 103, 228, 163, 204, 141, 237, 94, 214, 179, 242,
225, 210, 193, 207, 16, 103, 228, 163, 204, 141, 237, 94, 62, 242, 225,
221, 123, 207, 16, 112, 228, 163, 233, 8, 237, 94, 60, 242, 225, 221,
123, 207, 16, 112, 228, 163, 233, 8, 237, 94, 214, 179, 242, 225, 221,
123, 207, 16, 112, 228, 163, 233, 8, 237, 94, 62, 242, 225, 234, 25, 60,
242, 225, 234, 25, 214, 179, 242, 225, 234, 25, 62, 242, 225, 234, 26,
207, 16, 214, 12, 237, 94, 60, 242, 225, 234, 26, 207, 16, 214, 12, 237,
94, 214, 179, 242, 225, 234, 26, 207, 16, 214, 12, 237, 94, 62, 242, 225,
221, 120, 62, 242, 225, 221, 119, 62, 242, 225, 221, 121, 60, 242, 225,
221, 120, 60, 242, 225, 221, 119, 60, 242, 225, 221, 121, 193, 194, 207,
237, 231, 143, 193, 194, 207, 237, 217, 154, 193, 194, 207, 237, 234,
115, 193, 194, 207, 237, 228, 204, 193, 194, 207, 237, 242, 254, 193,
194, 207, 237, 246, 229, 193, 194, 207, 237, 202, 192, 193, 194, 60, 231,
143, 193, 194, 60, 217, 154, 193, 194, 60, 234, 115, 193, 194, 60, 228,
204, 193, 194, 60, 242, 254, 193, 194, 60, 246, 229, 193, 194, 60, 202,
192, 248, 216, 203, 206, 211, 205, 201, 64, 247, 141, 203, 180, 199, 172,
206, 37, 235, 72, 80, 247, 229, 251, 118, 248, 202, 201, 251, 192, 242,
221, 157, 210, 245, 247, 201, 217, 191, 194, 147, 210, 4, 214, 184, 236,
126, 207, 80, 209, 224, 246, 112, 208, 11, 249, 237, 236, 168, 220, 84,
248, 200, 216, 130, 229, 210, 251, 139, 184, 235, 67, 242, 52, 246, 204,
206, 6, 205, 230, 220, 168, 128, 216, 105, 194, 51, 209, 208, 204, 138,
214, 202, 221, 117, 247, 120, 216, 7, 198, 203, 198, 250, 229, 238, 209,
233, 207, 40, 232, 168, 194, 5, 248, 102, 242, 59, 209, 146, 209, 223,
194, 16, 233, 42, 250, 221, 229, 233, 219, 17, 210, 140, 228, 171, 247,
222, 248, 87, 210, 135, 211, 221, 232, 194, 200, 128, 232, 155, 200, 66,
175, 204, 135, 175, 204, 105, 175, 204, 134, 175, 204, 90, 175, 204, 119,
175, 204, 104, 175, 204, 133, 175, 204, 82, 175, 204, 112, 175, 204, 96,
175, 204, 126, 175, 204, 89, 175, 204, 118, 175, 204, 103, 175, 204, 132,
175, 204, 78, 175, 204, 108, 175, 204, 93, 175, 204, 122, 175, 204, 85,
175, 204, 99, 175, 204, 129, 175, 204, 81, 175, 204, 111, 175, 204, 95,
175, 204, 125, 175, 204, 88, 175, 204, 117, 175, 204, 102, 175, 204, 131,
175, 204, 76, 175, 204, 106, 175, 204, 91, 175, 204, 120, 175, 204, 83,
175, 204, 113, 175, 204, 97, 175, 204, 127, 175, 204, 79, 175, 204, 109,
175, 204, 123, 175, 204, 86, 175, 204, 115, 175, 204, 100, 175, 204, 130,
175, 204, 77, 175, 204, 107, 175, 204, 92, 175, 204, 121, 175, 204, 84,
175, 204, 114, 175, 204, 98, 175, 204, 128, 175, 204, 80, 175, 204, 110,
175, 204, 94, 175, 204, 124, 175, 204, 87, 175, 204, 116, 175, 204, 101,
106, 46, 175, 237, 11, 106, 85, 46, 115, 106, 246, 137, 106, 46, 175,
237, 11, 106, 85, 46, 115, 106, 207, 101, 106, 46, 175, 237, 11, 113, 85,
46, 115, 106, 246, 137, 106, 46, 175, 237, 11, 113, 85, 46, 115, 106,
207, 101, 106, 46, 175, 237, 11, 113, 46, 115, 106, 246, 137, 106, 51,
175, 237, 11, 113, 85, 46, 115, 113, 246, 137, 106, 51, 175, 237, 11,
113, 85, 46, 115, 113, 207, 101, 106, 51, 175, 237, 11, 106, 85, 46, 115,
113, 246, 137, 106, 51, 175, 237, 11, 106, 85, 46, 115, 113, 207, 101,
106, 51, 175, 237, 11, 106, 46, 115, 113, 246, 137, 106, 51, 175, 237,
11, 106, 85, 46, 115, 113, 85, 207, 101, 106, 51, 175, 237, 11, 106, 246,
138, 115, 106, 85, 207, 101, 106, 51, 175, 237, 11, 106, 46, 115, 106,
85, 207, 101, 106, 51, 175, 237, 11, 106, 246, 138, 115, 113, 85, 207,
101, 106, 51, 175, 237, 11, 106, 46, 115, 113, 85, 207, 101, 106, 51,
175, 237, 11, 106, 246, 138, 115, 113, 207, 101, 106, 46, 175, 237, 11,
113, 246, 138, 115, 113, 85, 207, 101, 106, 46, 175, 237, 11, 113, 46,
115, 113, 85, 207, 101, 106, 46, 175, 237, 11, 113, 246, 138, 115, 106,
85, 207, 101, 106, 46, 175, 237, 11, 113, 46, 115, 106, 85, 207, 101,
106, 46, 175, 237, 11, 113, 246, 138, 115, 106, 207, 101, 106, 46, 175,
237, 11, 113, 85, 46, 115, 106, 85, 207, 101, 113, 51, 175, 237, 11, 106,
85, 46, 115, 106, 246, 137, 113, 51, 175, 237, 11, 106, 85, 46, 115, 106,
207, 101, 113, 51, 175, 237, 11, 113, 85, 46, 115, 106, 246, 137, 113,
51, 175, 237, 11, 113, 85, 46, 115, 106, 207, 101, 113, 51, 175, 237, 11,
113, 46, 115, 106, 246, 137, 113, 46, 175, 237, 11, 113, 85, 46, 115,
113, 246, 137, 113, 46, 175, 237, 11, 113, 85, 46, 115, 113, 207, 101,
113, 46, 175, 237, 11, 106, 85, 46, 115, 113, 246, 137, 113, 46, 175,
237, 11, 106, 85, 46, 115, 113, 207, 101, 113, 46, 175, 237, 11, 106, 46,
115, 113, 246, 137, 113, 46, 175, 237, 11, 106, 85, 46, 115, 113, 85,
207, 101, 113, 46, 175, 237, 11, 106, 246, 138, 115, 106, 85, 207, 101,
113, 46, 175, 237, 11, 106, 46, 115, 106, 85, 207, 101, 113, 46, 175,
237, 11, 106, 246, 138, 115, 113, 85, 207, 101, 113, 46, 175, 237, 11,
106, 46, 115, 113, 85, 207, 101, 113, 46, 175, 237, 11, 106, 246, 138,
115, 113, 207, 101, 113, 51, 175, 237, 11, 113, 246, 138, 115, 113, 85,
207, 101, 113, 51, 175, 237, 11, 113, 46, 115, 113, 85, 207, 101, 113,
51, 175, 237, 11, 113, 246, 138, 115, 106, 85, 207, 101, 113, 51, 175,
237, 11, 113, 46, 115, 106, 85, 207, 101, 113, 51, 175, 237, 11, 113,
246, 138, 115, 106, 207, 101, 113, 51, 175, 237, 11, 113, 85, 46, 115,
106, 85, 207, 101, 113, 26, 51, 26, 106, 198, 182, 112, 208, 166, 247,
238, 46, 26, 106, 26, 51, 198, 182, 112, 208, 166, 247, 238, 113, 26, 46,
26, 106, 198, 182, 112, 208, 166, 247, 238, 46, 26, 113, 26, 51, 198,
182, 112, 208, 166, 247, 238, 46, 198, 182, 90, 208, 168, 247, 238, 113,
198, 182, 90, 208, 168, 247, 238, 51, 198, 182, 90, 208, 168, 247, 238,
106, 198, 182, 90, 208, 168, 247, 238, 84, 90, 234, 144, 247, 236, 84,
90, 234, 144, 247, 235, 84, 90, 234, 144, 247, 234, 84, 90, 234, 144,
247, 233, 84, 90, 234, 144, 247, 232, 84, 90, 234, 144, 247, 231, 229, 5,
90, 234, 144, 247, 236, 229, 5, 90, 234, 144, 247, 235, 229, 5, 90, 234,
144, 247, 234, 229, 5, 90, 234, 144, 247, 233, 229, 5, 90, 234, 144, 247,
232, 229, 5, 90, 234, 144, 247, 231, 46, 26, 106, 90, 234, 144, 247, 238,
46, 26, 113, 90, 234, 144, 247, 238, 51, 26, 113, 90, 234, 144, 247, 238,
51, 26, 106, 90, 234, 144, 247, 238, 113, 26, 106, 90, 234, 144, 247,
238, 229, 5, 90, 234, 144, 247, 237, 113, 90, 208, 168, 247, 238, 113,
112, 234, 142, 247, 238, 113, 232, 214, 234, 142, 247, 238, 113, 112,
208, 166, 247, 238, 113, 204, 146, 234, 142, 247, 238, 51, 90, 208, 168,
247, 238, 51, 112, 234, 142, 247, 238, 51, 232, 214, 234, 142, 247, 238,
51, 112, 208, 166, 247, 238, 51, 204, 146, 234, 142, 247, 238, 46, 138,
217, 31, 204, 52, 51, 138, 217, 31, 204, 52, 113, 138, 217, 31, 204, 52,
106, 138, 217, 31, 204, 52, 223, 123, 217, 31, 204, 52, 113, 138, 175,
26, 106, 138, 223, 123, 217, 31, 204, 52, 113, 138, 223, 123, 217, 31,
204, 53, 26, 106, 138, 247, 238, 46, 138, 223, 123, 217, 31, 204, 53, 26,
51, 138, 247, 238, 242, 242, 247, 217, 232, 249, 223, 123, 242, 242, 247,
217, 232, 249, 87, 229, 5, 232, 249, 113, 46, 115, 106, 51, 232, 249,
113, 51, 115, 106, 46, 232, 249, 113, 26, 106, 198, 182, 138, 247, 238,
46, 26, 51, 198, 182, 138, 247, 238, 113, 46, 198, 182, 217, 31, 204, 52,
113, 51, 198, 182, 217, 31, 204, 52, 106, 51, 198, 182, 217, 31, 204, 52,
106, 46, 198, 182, 217, 31, 204, 52, 105, 119, 152, 237, 11, 113, 246,
138, 115, 85, 220, 28, 105, 119, 152, 237, 11, 113, 246, 138, 115, 85,
207, 101, 105, 119, 152, 237, 11, 85, 46, 115, 106, 246, 137, 105, 119,
152, 237, 11, 85, 51, 115, 106, 246, 137, 105, 119, 152, 237, 11, 113,
246, 138, 115, 85, 46, 115, 106, 246, 137, 105, 119, 152, 237, 11, 113,
246, 138, 115, 85, 51, 115, 106, 246, 137, 105, 119, 152, 237, 11, 85,
46, 115, 106, 246, 138, 115, 85, 207, 101, 105, 119, 152, 237, 11, 85,
46, 115, 113, 246, 138, 115, 85, 207, 101, 105, 119, 152, 237, 11, 113,
246, 138, 115, 85, 46, 26, 85, 51, 115, 106, 246, 137, 105, 119, 152,
237, 11, 113, 246, 138, 115, 85, 51, 26, 85, 46, 115, 106, 246, 137, 105,
119, 152, 237, 11, 113, 246, 138, 115, 85, 51, 115, 106, 246, 138, 115,
85, 220, 28, 105, 119, 152, 237, 11, 113, 246, 138, 115, 85, 46, 115,
106, 246, 138, 115, 85, 207, 101, 105, 119, 152, 237, 11, 85, 46, 115,
113, 246, 138, 115, 85, 51, 115, 106, 246, 137, 105, 119, 152, 237, 11,
85, 51, 115, 113, 246, 138, 115, 85, 46, 115, 106, 246, 137, 105, 119,
152, 237, 11, 237, 4, 105, 119, 152, 229, 5, 4, 84, 111, 250, 76, 209,
189, 223, 123, 242, 244, 77, 46, 138, 206, 192, 217, 160, 51, 138, 206,
192, 217, 160, 223, 123, 235, 92, 61, 4, 199, 74, 220, 18, 114, 61, 26,
113, 26, 106, 90, 234, 144, 247, 238, 94, 61, 26, 113, 26, 106, 90, 234,
144, 247, 238, 235, 92, 61, 26, 51, 90, 234, 144, 247, 238, 197, 30, 61,
26, 51, 90, 234, 144, 247, 238, 46, 138, 232, 160, 51, 138, 232, 160,
195, 244, 33, 238, 183, 51, 211, 184, 108, 236, 114, 214, 199, 237, 11,
238, 183, 214, 199, 237, 11, 85, 51, 115, 106, 246, 137, 214, 199, 237,
11, 237, 4, 62, 87, 206, 52, 4, 207, 7, 238, 222, 46, 199, 192, 62, 51,
209, 188, 223, 176, 85, 199, 192, 62, 51, 209, 188, 223, 176, 51, 199,
192, 62, 51, 209, 188, 223, 176, 214, 199, 108, 208, 159, 77, 201, 250,
233, 0, 201, 250, 233, 1, 4, 250, 89, 208, 38, 201, 250, 233, 1, 220, 35,
220, 28, 201, 250, 233, 1, 220, 35, 207, 101, 201, 250, 233, 1, 4, 235,
79, 62, 197, 40, 242, 220, 205, 197, 17, 192, 76, 205, 197, 17, 101, 205,
197, 17, 104, 205, 197, 17, 133, 205, 197, 17, 134, 205, 197, 17, 151,
205, 197, 17, 170, 205, 197, 17, 179, 205, 197, 17, 174, 205, 197, 17,
182, 12, 15, 228, 38, 12, 15, 228, 37, 12, 15, 228, 36, 12, 15, 228, 35,
12, 15, 228, 34, 12, 15, 228, 33, 12, 15, 228, 32, 12, 15, 228, 31, 12,
15, 228, 30, 12, 15, 228, 29, 12, 15, 228, 28, 12, 15, 228, 27, 12, 15,
228, 26, 12, 15, 228, 25, 12, 15, 228, 24, 12, 15, 228, 23, 12, 15, 228,
22, 12, 15, 228, 21, 12, 15, 228, 20, 12, 15, 228, 19, 12, 15, 228, 18,
12, 15, 228, 17, 12, 15, 228, 16, 12, 15, 228, 15, 12, 15, 228, 14, 12,
15, 228, 13, 12, 15, 228, 12, 12, 15, 228, 11, 12, 15, 228, 10, 12, 15,
228, 9, 12, 15, 228, 8, 12, 15, 228, 7, 12, 15, 228, 6, 12, 15, 228, 5,
12, 15, 228, 4, 12, 15, 228, 3, 12, 15, 228, 2, 12, 15, 228, 1, 12, 15,
228, 0, 12, 15, 227, 255, 12, 15, 227, 254, 12, 15, 227, 253, 12, 15,
227, 252, 12, 15, 227, 251, 12, 15, 227, 250, 12, 15, 227, 249, 12, 15,
227, 248, 12, 15, 227, 247, 12, 15, 227, 246, 12, 15, 227, 245, 12, 15,
227, 244, 12, 15, 227, 243, 12, 15, 227, 242, 12, 15, 227, 241, 12, 15,
227, 240, 12, 15, 227, 239, 12, 15, 227, 238, 12, 15, 227, 237, 12, 15,
227, 236, 12, 15, 227, 235, 12, 15, 227, 234, 12, 15, 227, 233, 12, 15,
227, 232, 12, 15, 227, 231, 12, 15, 227, 230, 12, 15, 227, 229, 12, 15,
227, 228, 12, 15, 227, 227, 12, 15, 227, 226, 12, 15, 227, 225, 12, 15,
227, 224, 12, 15, 227, 223, 12, 15, 227, 222, 12, 15, 227, 221, 12, 15,
227, 220, 12, 15, 227, 219, 12, 15, 227, 218, 12, 15, 227, 217, 12, 15,
227, 216, 12, 15, 227, 215, 12, 15, 227, 214, 12, 15, 227, 213, 12, 15,
227, 212, 12, 15, 227, 211, 12, 15, 227, 210, 12, 15, 227, 209, 12, 15,
227, 208, 12, 15, 227, 207, 12, 15, 227, 206, 12, 15, 227, 205, 12, 15,
227, 204, 12, 15, 227, 203, 12, 15, 227, 202, 12, 15, 227, 201, 12, 15,
227, 200, 12, 15, 227, 199, 12, 15, 227, 198, 12, 15, 227, 197, 12, 15,
227, 196, 12, 15, 227, 195, 12, 15, 227, 194, 12, 15, 227, 193, 12, 15,
227, 192, 12, 15, 227, 191, 12, 15, 227, 190, 12, 15, 227, 189, 12, 15,
227, 188, 12, 15, 227, 187, 12, 15, 227, 186, 12, 15, 227, 185, 12, 15,
227, 184, 12, 15, 227, 183, 12, 15, 227, 182, 12, 15, 227, 181, 12, 15,
227, 180, 12, 15, 227, 179, 12, 15, 227, 178, 12, 15, 227, 177, 12, 15,
227, 176, 12, 15, 227, 175, 12, 15, 227, 174, 12, 15, 227, 173, 12, 15,
227, 172, 12, 15, 227, 171, 12, 15, 227, 170, 12, 15, 227, 169, 12, 15,
227, 168, 12, 15, 227, 167, 12, 15, 227, 166, 12, 15, 227, 165, 12, 15,
227, 164, 12, 15, 227, 163, 12, 15, 227, 162, 12, 15, 227, 161, 12, 15,
227, 160, 12, 15, 227, 159, 12, 15, 227, 158, 12, 15, 227, 157, 12, 15,
227, 156, 12, 15, 227, 155, 12, 15, 227, 154, 12, 15, 227, 153, 12, 15,
227, 152, 12, 15, 227, 151, 12, 15, 227, 150, 12, 15, 227, 149, 12, 15,
227, 148, 12, 15, 227, 147, 12, 15, 227, 146, 12, 15, 227, 145, 12, 15,
227, 144, 12, 15, 227, 143, 12, 15, 227, 142, 12, 15, 227, 141, 12, 15,
227, 140, 12, 15, 227, 139, 12, 15, 227, 138, 12, 15, 227, 137, 12, 15,
227, 136, 12, 15, 227, 135, 12, 15, 227, 134, 12, 15, 227, 133, 12, 15,
227, 132, 12, 15, 227, 131, 12, 15, 227, 130, 12, 15, 227, 129, 12, 15,
227, 128, 12, 15, 227, 127, 12, 15, 227, 126, 12, 15, 227, 125, 12, 15,
227, 124, 12, 15, 227, 123, 12, 15, 227, 122, 12, 15, 227, 121, 12, 15,
227, 120, 12, 15, 227, 119, 12, 15, 227, 118, 12, 15, 227, 117, 12, 15,
227, 116, 12, 15, 227, 115, 12, 15, 227, 114, 12, 15, 227, 113, 12, 15,
227, 112, 12, 15, 227, 111, 12, 15, 227, 110, 12, 15, 227, 109, 12, 15,
227, 108, 12, 15, 227, 107, 12, 15, 227, 106, 12, 15, 227, 105, 12, 15,
227, 104, 12, 15, 227, 103, 12, 15, 227, 102, 12, 15, 227, 101, 12, 15,
227, 100, 12, 15, 227, 99, 12, 15, 227, 98, 12, 15, 227, 97, 12, 15, 227,
96, 12, 15, 227, 95, 12, 15, 227, 94, 12, 15, 227, 93, 12, 15, 227, 92,
12, 15, 227, 91, 12, 15, 227, 90, 12, 15, 227, 89, 12, 15, 227, 88, 12,
15, 227, 87, 12, 15, 227, 86, 12, 15, 227, 85, 12, 15, 227, 84, 12, 15,
227, 83, 12, 15, 227, 82, 12, 15, 227, 81, 12, 15, 227, 80, 12, 15, 227,
79, 12, 15, 227, 78, 12, 15, 227, 77, 12, 15, 227, 76, 12, 15, 227, 75,
12, 15, 227, 74, 12, 15, 227, 73, 12, 15, 227, 72, 12, 15, 227, 71, 12,
15, 227, 70, 12, 15, 227, 69, 12, 15, 227, 68, 12, 15, 227, 67, 12, 15,
227, 66, 12, 15, 227, 65, 12, 15, 227, 64, 12, 15, 227, 63, 12, 15, 227,
62, 12, 15, 227, 61, 12, 15, 227, 60, 12, 15, 227, 59, 12, 15, 227, 58,
12, 15, 227, 57, 12, 15, 227, 56, 12, 15, 227, 55, 12, 15, 227, 54, 12,
15, 227, 53, 12, 15, 227, 52, 12, 15, 227, 51, 12, 15, 227, 50, 12, 15,
227, 49, 12, 15, 227, 48, 12, 15, 227, 47, 12, 15, 227, 46, 12, 15, 227,
45, 12, 15, 227, 44, 12, 15, 227, 43, 12, 15, 227, 42, 12, 15, 227, 41,
12, 15, 227, 40, 12, 15, 227, 39, 12, 15, 227, 38, 12, 15, 227, 37, 12,
15, 227, 36, 12, 15, 227, 35, 12, 15, 227, 34, 12, 15, 227, 33, 12, 15,
227, 32, 12, 15, 227, 31, 12, 15, 227, 30, 12, 15, 227, 29, 12, 15, 227,
28, 12, 15, 227, 27, 12, 15, 227, 26, 12, 15, 227, 25, 12, 15, 227, 24,
12, 15, 227, 23, 12, 15, 227, 22, 12, 15, 227, 21, 12, 15, 227, 20, 12,
15, 227, 19, 12, 15, 227, 18, 12, 15, 227, 17, 12, 15, 227, 16, 12, 15,
227, 15, 12, 15, 227, 14, 12, 15, 227, 13, 12, 15, 227, 12, 12, 15, 227,
11, 12, 15, 227, 10, 12, 15, 227, 9, 12, 15, 227, 8, 12, 15, 227, 7, 12,
15, 227, 6, 12, 15, 227, 5, 12, 15, 227, 4, 12, 15, 227, 3, 12, 15, 227,
2, 12, 15, 227, 1, 12, 15, 227, 0, 12, 15, 226, 255, 12, 15, 226, 254,
12, 15, 226, 253, 12, 15, 226, 252, 12, 15, 226, 251, 12, 15, 226, 250,
12, 15, 226, 249, 12, 15, 226, 248, 12, 15, 226, 247, 12, 15, 226, 246,
12, 15, 226, 245, 12, 15, 226, 244, 12, 15, 226, 243, 12, 15, 226, 242,
12, 15, 226, 241, 12, 15, 226, 240, 12, 15, 226, 239, 12, 15, 226, 238,
12, 15, 226, 237, 12, 15, 226, 236, 12, 15, 226, 235, 12, 15, 226, 234,
12, 15, 226, 233, 12, 15, 226, 232, 12, 15, 226, 231, 12, 15, 226, 230,
12, 15, 226, 229, 12, 15, 226, 228, 12, 15, 226, 227, 12, 15, 226, 226,
12, 15, 226, 225, 12, 15, 226, 224, 12, 15, 226, 223, 12, 15, 226, 222,
12, 15, 226, 221, 12, 15, 226, 220, 12, 15, 226, 219, 12, 15, 226, 218,
12, 15, 226, 217, 12, 15, 226, 216, 12, 15, 226, 215, 12, 15, 226, 214,
12, 15, 226, 213, 12, 15, 226, 212, 12, 15, 226, 211, 12, 15, 226, 210,
12, 15, 226, 209, 12, 15, 226, 208, 12, 15, 226, 207, 12, 15, 226, 206,
12, 15, 226, 205, 12, 15, 226, 204, 12, 15, 226, 203, 12, 15, 226, 202,
12, 15, 226, 201, 12, 15, 226, 200, 12, 15, 226, 199, 12, 15, 226, 198,
12, 15, 226, 197, 12, 15, 226, 196, 12, 15, 226, 195, 12, 15, 226, 194,
12, 15, 226, 193, 12, 15, 226, 192, 12, 15, 226, 191, 12, 15, 226, 190,
12, 15, 226, 189, 12, 15, 226, 188, 12, 15, 226, 187, 12, 15, 226, 186,
12, 15, 226, 185, 12, 15, 226, 184, 12, 15, 226, 183, 12, 15, 226, 182,
12, 15, 226, 181, 12, 15, 226, 180, 12, 15, 226, 179, 12, 15, 226, 178,
12, 15, 226, 177, 12, 15, 226, 176, 12, 15, 226, 175, 12, 15, 226, 174,
12, 15, 226, 173, 12, 15, 226, 172, 12, 15, 226, 171, 12, 15, 226, 170,
12, 15, 226, 169, 12, 15, 226, 168, 12, 15, 226, 167, 12, 15, 226, 166,
12, 15, 226, 165, 12, 15, 226, 164, 12, 15, 226, 163, 12, 15, 226, 162,
12, 15, 226, 161, 12, 15, 226, 160, 12, 15, 226, 159, 12, 15, 226, 158,
12, 15, 226, 157, 12, 15, 226, 156, 12, 15, 226, 155, 12, 15, 226, 154,
12, 15, 226, 153, 12, 15, 226, 152, 12, 15, 226, 151, 12, 15, 226, 150,
12, 15, 226, 149, 12, 15, 226, 148, 12, 15, 226, 147, 12, 15, 226, 146,
12, 15, 226, 145, 12, 15, 226, 144, 12, 15, 226, 143, 12, 15, 226, 142,
12, 15, 226, 141, 12, 15, 226, 140, 12, 15, 226, 139, 12, 15, 226, 138,
12, 15, 226, 137, 12, 15, 226, 136, 12, 15, 226, 135, 12, 15, 226, 134,
12, 15, 226, 133, 12, 15, 226, 132, 12, 15, 226, 131, 12, 15, 226, 130,
12, 15, 226, 129, 12, 15, 226, 128, 12, 15, 226, 127, 12, 15, 226, 126,
12, 15, 226, 125, 12, 15, 226, 124, 12, 15, 226, 123, 12, 15, 226, 122,
12, 15, 226, 121, 12, 15, 226, 120, 12, 15, 226, 119, 12, 15, 226, 118,
12, 15, 226, 117, 12, 15, 226, 116, 12, 15, 226, 115, 12, 15, 226, 114,
12, 15, 226, 113, 12, 15, 226, 112, 12, 15, 226, 111, 12, 15, 226, 110,
12, 15, 226, 109, 12, 15, 226, 108, 12, 15, 226, 107, 12, 15, 226, 106,
12, 15, 226, 105, 12, 15, 226, 104, 12, 15, 226, 103, 12, 15, 226, 102,
12, 15, 226, 101, 12, 15, 226, 100, 12, 15, 226, 99, 12, 15, 226, 98, 12,
15, 226, 97, 12, 15, 226, 96, 12, 15, 226, 95, 12, 15, 226, 94, 12, 15,
226, 93, 12, 15, 226, 92, 12, 15, 226, 91, 12, 15, 226, 90, 12, 15, 226,
89, 12, 15, 226, 88, 12, 15, 226, 87, 12, 15, 226, 86, 12, 15, 226, 85,
12, 15, 226, 84, 12, 15, 226, 83, 12, 15, 226, 82, 12, 15, 226, 81, 12,
15, 226, 80, 12, 15, 226, 79, 12, 15, 226, 78, 12, 15, 226, 77, 12, 15,
226, 76, 12, 15, 226, 75, 12, 15, 226, 74, 12, 15, 226, 73, 12, 15, 226,
72, 12, 15, 226, 71, 12, 15, 226, 70, 12, 15, 226, 69, 12, 15, 226, 68,
12, 15, 226, 67, 12, 15, 226, 66, 12, 15, 226, 65, 12, 15, 226, 64, 12,
15, 226, 63, 12, 15, 226, 62, 12, 15, 226, 61, 12, 15, 226, 60, 12, 15,
226, 59, 12, 15, 226, 58, 12, 15, 226, 57, 12, 15, 226, 56, 12, 15, 226,
55, 12, 15, 226, 54, 12, 15, 226, 53, 12, 15, 226, 52, 12, 15, 226, 51,
12, 15, 226, 50, 12, 15, 226, 49, 12, 15, 226, 48, 12, 15, 226, 47, 12,
15, 226, 46, 12, 15, 226, 45, 12, 15, 226, 44, 12, 15, 226, 43, 12, 15,
226, 42, 12, 15, 226, 41, 12, 15, 226, 40, 12, 15, 226, 39, 12, 15, 226,
38, 12, 15, 226, 37, 12, 15, 226, 36, 12, 15, 226, 35, 12, 15, 226, 34,
12, 15, 226, 33, 12, 15, 226, 32, 12, 15, 226, 31, 12, 15, 226, 30, 12,
15, 226, 29, 12, 15, 226, 28, 12, 15, 226, 27, 12, 15, 226, 26, 12, 15,
226, 25, 12, 15, 226, 24, 12, 15, 226, 23, 12, 15, 226, 22, 12, 15, 226,
21, 12, 15, 226, 20, 12, 15, 226, 19, 12, 15, 226, 18, 12, 15, 226, 17,
12, 15, 226, 16, 12, 15, 226, 15, 12, 15, 226, 14, 12, 15, 226, 13, 12,
15, 226, 12, 12, 15, 226, 11, 12, 15, 226, 10, 12, 15, 226, 9, 220, 79,
200, 155, 190, 202, 160, 190, 233, 204, 77, 190, 208, 142, 77, 190, 31,
57, 190, 236, 127, 57, 190, 210, 133, 57, 190, 250, 229, 190, 250, 147,
190, 46, 210, 230, 190, 51, 210, 230, 190, 250, 37, 190, 102, 57, 190,
242, 38, 190, 228, 110, 190, 232, 71, 201, 238, 190, 202, 189, 190, 17,
192, 76, 190, 17, 101, 190, 17, 104, 190, 17, 133, 190, 17, 134, 190, 17,
151, 190, 17, 170, 190, 17, 179, 190, 17, 174, 190, 17, 182, 190, 242,
47, 190, 204, 180, 190, 219, 240, 57, 190, 234, 30, 57, 190, 230, 204,
57, 190, 208, 159, 77, 190, 242, 36, 250, 26, 190, 8, 6, 1, 64, 190, 8,
6, 1, 249, 226, 190, 8, 6, 1, 247, 52, 190, 8, 6, 1, 238, 95, 190, 8, 6,
1, 71, 190, 8, 6, 1, 233, 163, 190, 8, 6, 1, 232, 44, 190, 8, 6, 1, 230,
124, 190, 8, 6, 1, 70, 190, 8, 6, 1, 223, 65, 190, 8, 6, 1, 222, 184,
190, 8, 6, 1, 165, 190, 8, 6, 1, 218, 236, 190, 8, 6, 1, 215, 151, 190,
8, 6, 1, 74, 190, 8, 6, 1, 211, 93, 190, 8, 6, 1, 208, 247, 190, 8, 6, 1,
150, 190, 8, 6, 1, 206, 158, 190, 8, 6, 1, 200, 228, 190, 8, 6, 1, 68,
190, 8, 6, 1, 196, 236, 190, 8, 6, 1, 194, 202, 190, 8, 6, 1, 193, 223,
190, 8, 6, 1, 193, 148, 190, 8, 6, 1, 192, 155, 190, 46, 50, 186, 190,
207, 169, 202, 189, 190, 51, 50, 186, 190, 242, 122, 251, 143, 190, 132,
219, 175, 190, 230, 211, 251, 143, 190, 8, 2, 1, 64, 190, 8, 2, 1, 249,
226, 190, 8, 2, 1, 247, 52, 190, 8, 2, 1, 238, 95, 190, 8, 2, 1, 71, 190,
8, 2, 1, 233, 163, 190, 8, 2, 1, 232, 44, 190, 8, 2, 1, 230, 124, 190, 8,
2, 1, 70, 190, 8, 2, 1, 223, 65, 190, 8, 2, 1, 222, 184, 190, 8, 2, 1,
165, 190, 8, 2, 1, 218, 236, 190, 8, 2, 1, 215, 151, 190, 8, 2, 1, 74,
190, 8, 2, 1, 211, 93, 190, 8, 2, 1, 208, 247, 190, 8, 2, 1, 150, 190, 8,
2, 1, 206, 158, 190, 8, 2, 1, 200, 228, 190, 8, 2, 1, 68, 190, 8, 2, 1,
196, 236, 190, 8, 2, 1, 194, 202, 190, 8, 2, 1, 193, 223, 190, 8, 2, 1,
193, 148, 190, 8, 2, 1, 192, 155, 190, 46, 238, 138, 186, 190, 84, 219,
175, 190, 51, 238, 138, 186, 190, 199, 90, 246, 242, 200, 155, 65, 205,
110, 65, 205, 99, 65, 205, 88, 65, 205, 76, 65, 205, 65, 65, 205, 54, 65,
205, 43, 65, 205, 32, 65, 205, 21, 65, 205, 13, 65, 205, 12, 65, 205, 11,
65, 205, 10, 65, 205, 8, 65, 205, 7, 65, 205, 6, 65, 205, 5, 65, 205, 4,
65, 205, 3, 65, 205, 2, 65, 205, 1, 65, 205, 0, 65, 204, 255, 65, 204,
253, 65, 204, 252, 65, 204, 251, 65, 204, 250, 65, 204, 249, 65, 204,
248, 65, 204, 247, 65, 204, 246, 65, 204, 245, 65, 204, 244, 65, 204,
242, 65, 204, 241, 65, 204, 240, 65, 204, 239, 65, 204, 238, 65, 204,
237, 65, 204, 236, 65, 204, 235, 65, 204, 234, 65, 204, 233, 65, 204,
231, 65, 204, 230, 65, 204, 229, 65, 204, 228, 65, 204, 227, 65, 204,
226, 65, 204, 225, 65, 204, 224, 65, 204, 223, 65, 204, 222, 65, 204,
220, 65, 204, 219, 65, 204, 218, 65, 204, 217, 65, 204, 216, 65, 204,
215, 65, 204, 214, 65, 204, 213, 65, 204, 212, 65, 204, 211, 65, 204,
209, 65, 204, 208, 65, 204, 207, 65, 204, 206, 65, 204, 205, 65, 204,
204, 65, 204, 203, 65, 204, 202, 65, 204, 201, 65, 204, 200, 65, 204,
198, 65, 204, 197, 65, 204, 196, 65, 204, 195, 65, 204, 194, 65, 204,
193, 65, 204, 192, 65, 204, 191, 65, 204, 190, 65, 204, 189, 65, 205,
186, 65, 205, 185, 65, 205, 184, 65, 205, 183, 65, 205, 182, 65, 205,
181, 65, 205, 180, 65, 205, 179, 65, 205, 178, 65, 205, 177, 65, 205,
175, 65, 205, 174, 65, 205, 173, 65, 205, 172, 65, 205, 171, 65, 205,
170, 65, 205, 169, 65, 205, 168, 65, 205, 167, 65, 205, 166, 65, 205,
164, 65, 205, 163, 65, 205, 162, 65, 205, 161, 65, 205, 160, 65, 205,
159, 65, 205, 158, 65, 205, 157, 65, 205, 156, 65, 205, 155, 65, 205,
153, 65, 205, 152, 65, 205, 151, 65, 205, 150, 65, 205, 149, 65, 205,
148, 65, 205, 147, 65, 205, 146, 65, 205, 145, 65, 205, 144, 65, 205,
142, 65, 205, 141, 65, 205, 140, 65, 205, 139, 65, 205, 138, 65, 205,
137, 65, 205, 136, 65, 205, 135, 65, 205, 134, 65, 205, 133, 65, 205,
131, 65, 205, 130, 65, 205, 129, 65, 205, 128, 65, 205, 127, 65, 205,
126, 65, 205, 125, 65, 205, 124, 65, 205, 123, 65, 205, 122, 65, 205,
120, 65, 205, 119, 65, 205, 118, 65, 205, 117, 65, 205, 116, 65, 205,
115, 65, 205, 114, 65, 205, 113, 65, 205, 112, 65, 205, 111, 65, 205,
109, 65, 205, 108, 65, 205, 107, 65, 205, 106, 65, 205, 105, 65, 205,
104, 65, 205, 103, 65, 205, 102, 65, 205, 101, 65, 205, 100, 65, 205, 98,
65, 205, 97, 65, 205, 96, 65, 205, 95, 65, 205, 94, 65, 205, 93, 65, 205,
92, 65, 205, 91, 65, 205, 90, 65, 205, 89, 65, 205, 87, 65, 205, 86, 65,
205, 85, 65, 205, 84, 65, 205, 83, 65, 205, 82, 65, 205, 81, 65, 205, 80,
65, 205, 79, 65, 205, 78, 65, 205, 75, 65, 205, 74, 65, 205, 73, 65, 205,
72, 65, 205, 71, 65, 205, 70, 65, 205, 69, 65, 205, 68, 65, 205, 67, 65,
205, 66, 65, 205, 64, 65, 205, 63, 65, 205, 62, 65, 205, 61, 65, 205, 60,
65, 205, 59, 65, 205, 58, 65, 205, 57, 65, 205, 56, 65, 205, 55, 65, 205,
53, 65, 205, 52, 65, 205, 51, 65, 205, 50, 65, 205, 49, 65, 205, 48, 65,
205, 47, 65, 205, 46, 65, 205, 45, 65, 205, 44, 65, 205, 42, 65, 205, 41,
65, 205, 40, 65, 205, 39, 65, 205, 38, 65, 205, 37, 65, 205, 36, 65, 205,
35, 65, 205, 34, 65, 205, 33, 65, 205, 31, 65, 205, 30, 65, 205, 29, 65,
205, 28, 65, 205, 27, 65, 205, 26, 65, 205, 25, 65, 205, 24, 65, 205, 23,
65, 205, 22, 65, 205, 20, 65, 205, 19, 65, 205, 18, 65, 205, 17, 65, 205,
16, 65, 205, 15, 65, 205, 14, 212, 238, 212, 240, 202, 15, 80, 229, 242,
202, 193, 202, 15, 80, 199, 244, 201, 186, 234, 80, 80, 199, 244, 233,
232, 234, 80, 80, 198, 208, 234, 42, 234, 66, 234, 67, 251, 134, 251,
135, 251, 23, 248, 89, 248, 246, 247, 130, 246, 100, 200, 161, 229, 5,
200, 161, 228, 186, 200, 166, 219, 176, 233, 38, 214, 177, 219, 175, 234,
80, 80, 219, 175, 219, 224, 213, 204, 234, 45, 219, 176, 200, 161, 84,
200, 161, 194, 225, 232, 136, 233, 38, 233, 15, 246, 203, 207, 172, 238,
202, 203, 232, 211, 125, 219, 97, 101, 202, 212, 203, 232, 223, 190, 219,
97, 192, 76, 203, 125, 237, 180, 219, 166, 234, 1, 236, 157, 237, 47,
238, 243, 101, 237, 169, 237, 47, 238, 243, 104, 237, 168, 237, 47, 238,
243, 133, 237, 167, 237, 47, 238, 243, 134, 237, 166, 214, 199, 251, 134,
215, 67, 200, 254, 223, 253, 201, 2, 234, 80, 80, 198, 209, 247, 238,
233, 239, 246, 241, 246, 243, 234, 80, 80, 217, 30, 234, 43, 201, 151,
201, 169, 234, 1, 234, 2, 223, 165, 204, 166, 134, 232, 251, 204, 165,
232, 81, 223, 165, 204, 166, 133, 230, 194, 204, 165, 230, 191, 223, 165,
204, 166, 104, 207, 248, 204, 165, 206, 224, 223, 165, 204, 166, 101,
197, 55, 204, 165, 197, 10, 202, 163, 237, 86, 237, 88, 211, 65, 246, 99,
211, 67, 139, 212, 7, 209, 104, 229, 8, 247, 155, 210, 123, 229, 202,
247, 169, 213, 143, 247, 155, 229, 202, 215, 28, 223, 176, 223, 178, 214,
170, 219, 175, 214, 197, 202, 15, 80, 205, 191, 250, 106, 202, 92, 234,
80, 80, 205, 191, 250, 106, 234, 4, 246, 100, 200, 162, 204, 151, 229, 5,
200, 162, 204, 151, 228, 183, 246, 100, 200, 162, 4, 222, 196, 229, 5,
200, 162, 4, 222, 196, 228, 184, 219, 176, 200, 162, 204, 151, 84, 200,
162, 204, 151, 194, 224, 210, 222, 219, 176, 232, 123, 210, 222, 219,
176, 235, 96, 209, 219, 210, 222, 219, 176, 248, 245, 210, 222, 219, 176,
197, 41, 209, 213, 207, 169, 219, 176, 233, 38, 207, 169, 223, 176, 207,
151, 203, 74, 203, 232, 104, 203, 71, 202, 94, 203, 74, 203, 232, 133,
203, 70, 202, 93, 237, 47, 238, 243, 201, 210, 237, 164, 209, 89, 197, 9,
101, 209, 89, 197, 7, 209, 50, 209, 89, 197, 9, 104, 209, 89, 197, 6,
209, 49, 204, 152, 198, 207, 202, 12, 201, 193, 246, 242, 246, 99, 246,
177, 216, 244, 194, 155, 215, 169, 202, 15, 80, 230, 179, 250, 106, 202,
15, 80, 209, 68, 250, 106, 202, 162, 234, 80, 80, 230, 179, 250, 106,
234, 80, 80, 209, 68, 250, 106, 234, 40, 202, 15, 80, 201, 210, 202, 178,
203, 74, 230, 216, 246, 100, 223, 124, 204, 69, 203, 74, 246, 100, 223,
124, 205, 239, 238, 243, 204, 162, 223, 124, 238, 163, 201, 211, 200, 15,
202, 35, 211, 175, 200, 243, 242, 37, 211, 142, 209, 90, 216, 243, 209,
201, 250, 143, 209, 83, 242, 37, 250, 160, 215, 16, 203, 134, 8, 6, 1,
231, 84, 8, 2, 1, 231, 84, 246, 120, 251, 2, 200, 248, 201, 157, 242, 48,
203, 16, 220, 28, 222, 115, 1, 219, 126, 220, 77, 1, 232, 165, 232, 156,
220, 77, 1, 232, 165, 233, 50, 220, 77, 1, 207, 55, 220, 77, 1, 219, 107,
86, 122, 247, 250, 203, 205, 231, 47, 216, 193, 207, 159, 30, 123, 193,
43, 30, 123, 193, 39, 30, 123, 202, 70, 30, 123, 193, 44, 232, 58, 232,
57, 232, 56, 215, 171, 191, 233, 191, 234, 191, 236, 219, 40, 207, 63,
219, 42, 207, 65, 210, 184, 219, 39, 207, 62, 213, 174, 216, 95, 194, 38,
219, 41, 207, 64, 232, 80, 210, 183, 194, 97, 234, 104, 232, 68, 216,
167, 211, 212, 197, 11, 109, 216, 167, 237, 186, 109, 114, 198, 184, 61,
4, 55, 84, 111, 94, 198, 184, 61, 4, 55, 84, 111, 11, 5, 223, 80, 77,
195, 225, 195, 114, 195, 46, 195, 35, 195, 24, 195, 13, 195, 2, 194, 247,
194, 236, 195, 224, 195, 213, 195, 202, 195, 191, 195, 180, 195, 169,
195, 158, 209, 105, 232, 136, 39, 84, 51, 62, 219, 247, 186, 247, 57,
211, 159, 77, 247, 209, 191, 235, 10, 3, 212, 248, 200, 19, 10, 3, 212,
248, 136, 212, 248, 247, 90, 136, 247, 89, 217, 36, 6, 1, 230, 124, 217,
36, 6, 1, 214, 167, 217, 36, 2, 1, 230, 124, 217, 36, 2, 1, 214, 167, 59,
1, 234, 252, 69, 35, 16, 232, 79, 203, 12, 242, 172, 196, 133, 195, 147,
195, 136, 195, 125, 195, 113, 195, 102, 195, 91, 195, 80, 195, 69, 195,
58, 195, 50, 195, 49, 195, 48, 195, 47, 195, 45, 195, 44, 195, 43, 195,
42, 195, 41, 195, 40, 195, 39, 195, 38, 195, 37, 195, 36, 195, 34, 195,
33, 195, 32, 195, 31, 195, 30, 195, 29, 195, 28, 195, 27, 195, 26, 195,
25, 195, 23, 195, 22, 195, 21, 195, 20, 195, 19, 195, 18, 195, 17, 195,
16, 195, 15, 195, 14, 195, 12, 195, 11, 195, 10, 195, 9, 195, 8, 195, 7,
195, 6, 195, 5, 195, 4, 195, 3, 195, 1, 195, 0, 194, 255, 194, 254, 194,
253, 194, 252, 194, 251, 194, 250, 194, 249, 194, 248, 194, 246, 194,
245, 194, 244, 194, 243, 194, 242, 194, 241, 194, 240, 194, 239, 194,
238, 194, 237, 194, 235, 194, 234, 194, 233, 194, 232, 194, 231, 194,
230, 194, 229, 194, 228, 194, 227, 194, 226, 195, 223, 195, 222, 195,
221, 195, 220, 195, 219, 195, 218, 195, 217, 195, 216, 195, 215, 195,
214, 195, 212, 195, 211, 195, 210, 195, 209, 195, 208, 195, 207, 195,
206, 195, 205, 195, 204, 195, 203, 195, 201, 195, 200, 195, 199, 195,
198, 195, 197, 195, 196, 195, 195, 195, 194, 195, 193, 195, 192, 195,
190, 195, 189, 195, 188, 195, 187, 195, 186, 195, 185, 195, 184, 195,
183, 195, 182, 195, 181, 195, 179, 195, 178, 195, 177, 195, 176, 195,
175, 195, 174, 195, 173, 195, 172, 195, 171, 195, 170, 195, 168, 195,
167, 195, 166, 195, 165, 195, 164, 195, 163, 195, 162, 195, 161, 195,
160, 195, 159, 195, 157, 195, 156, 195, 155, 195, 154, 195, 153, 195,
152, 195, 151, 195, 150, 195, 149, 195, 148, 195, 146, 195, 145, 195,
144, 195, 143, 195, 142, 195, 141, 195, 140, 195, 139, 195, 138, 195,
137, 195, 135, 195, 134, 195, 133, 195, 132, 195, 131, 195, 130, 195,
129, 195, 128, 195, 127, 195, 126, 195, 124, 195, 123, 195, 122, 195,
121, 195, 120, 195, 119, 195, 118, 195, 117, 195, 116, 195, 115, 195,
112, 195, 111, 195, 110, 195, 109, 195, 108, 195, 107, 195, 106, 195,
105, 195, 104, 195, 103, 195, 101, 195, 100, 195, 99, 195, 98, 195, 97,
195, 96, 195, 95, 195, 94, 195, 93, 195, 92, 195, 90, 195, 89, 195, 88,
195, 87, 195, 86, 195, 85, 195, 84, 195, 83, 195, 82, 195, 81, 195, 79,
195, 78, 195, 77, 195, 76, 195, 75, 195, 74, 195, 73, 195, 72, 195, 71,
195, 70, 195, 68, 195, 67, 195, 66, 195, 65, 195, 64, 195, 63, 195, 62,
195, 61, 195, 60, 195, 59, 195, 57, 195, 56, 195, 55, 195, 54, 195, 53,
195, 52, 195, 51, 221, 254, 31, 57, 221, 254, 250, 37, 221, 254, 17, 192,
76, 221, 254, 17, 101, 221, 254, 17, 104, 221, 254, 17, 133, 221, 254,
17, 134, 221, 254, 17, 151, 221, 254, 17, 170, 221, 254, 17, 179, 221,
254, 17, 174, 221, 254, 17, 182, 8, 6, 1, 41, 4, 217, 215, 26, 230, 210,
8, 2, 1, 41, 4, 217, 215, 26, 230, 210, 8, 6, 1, 228, 97, 4, 217, 215,
26, 230, 210, 8, 2, 1, 228, 97, 4, 217, 215, 26, 230, 210, 8, 6, 1, 124,
4, 217, 215, 26, 230, 210, 8, 2, 1, 124, 4, 217, 215, 26, 230, 210, 8, 6,
1, 234, 253, 4, 84, 219, 176, 63, 8, 2, 1, 234, 253, 4, 84, 219, 176, 63,
8, 6, 1, 234, 253, 4, 84, 219, 176, 248, 84, 26, 230, 210, 8, 2, 1, 234,
253, 4, 84, 219, 176, 248, 84, 26, 230, 210, 8, 6, 1, 234, 253, 4, 84,
219, 176, 248, 84, 26, 251, 129, 8, 2, 1, 234, 253, 4, 84, 219, 176, 248,
84, 26, 251, 129, 8, 6, 1, 185, 4, 84, 219, 176, 63, 8, 2, 1, 185, 4, 84,
219, 176, 63, 8, 6, 1, 185, 4, 84, 219, 176, 248, 84, 26, 230, 210, 8, 2,
1, 185, 4, 84, 219, 176, 248, 84, 26, 230, 210, 8, 6, 1, 185, 4, 84, 219,
176, 248, 84, 26, 251, 129, 8, 2, 1, 185, 4, 84, 219, 176, 248, 84, 26,
251, 129, 8, 6, 1, 206, 159, 4, 84, 219, 176, 63, 8, 2, 1, 206, 159, 4,
84, 219, 176, 63, 8, 6, 1, 234, 253, 4, 242, 122, 26, 217, 214, 8, 2, 1,
234, 253, 4, 242, 122, 26, 217, 214, 8, 6, 1, 234, 253, 4, 242, 122, 26,
246, 207, 8, 2, 1, 234, 253, 4, 242, 122, 26, 246, 207, 8, 2, 1, 228, 97,
4, 78, 95, 26, 251, 129, 8, 2, 1, 214, 168, 4, 199, 91, 58, 8, 6, 1, 41,
4, 211, 244, 26, 251, 129, 8, 2, 1, 41, 4, 211, 244, 26, 251, 129, 8, 6,
1, 41, 4, 211, 244, 26, 199, 90, 8, 2, 1, 41, 4, 211, 244, 26, 199, 90,
8, 6, 1, 234, 253, 4, 211, 244, 26, 251, 129, 8, 2, 1, 234, 253, 4, 211,
244, 26, 251, 129, 8, 6, 1, 234, 253, 4, 211, 244, 26, 199, 90, 8, 2, 1,
234, 253, 4, 211, 244, 26, 199, 90, 8, 6, 1, 234, 253, 4, 78, 95, 26,
251, 129, 8, 2, 1, 234, 253, 4, 78, 95, 26, 251, 129, 8, 6, 1, 234, 253,
4, 78, 95, 26, 199, 90, 8, 2, 1, 234, 253, 4, 78, 95, 26, 199, 90, 8, 2,
1, 228, 97, 4, 78, 95, 26, 230, 210, 8, 2, 1, 228, 97, 4, 78, 95, 26,
199, 90, 8, 6, 1, 228, 97, 4, 211, 244, 26, 251, 129, 8, 2, 1, 228, 97,
4, 211, 244, 26, 78, 95, 26, 251, 129, 8, 6, 1, 228, 97, 4, 211, 244, 26,
199, 90, 8, 2, 1, 228, 97, 4, 211, 244, 26, 78, 95, 26, 199, 90, 8, 6, 1,
223, 66, 4, 199, 90, 8, 2, 1, 223, 66, 4, 78, 95, 26, 199, 90, 8, 6, 1,
220, 202, 4, 199, 90, 8, 2, 1, 220, 202, 4, 199, 90, 8, 6, 1, 218, 237,
4, 199, 90, 8, 2, 1, 218, 237, 4, 199, 90, 8, 6, 1, 208, 112, 4, 199, 90,
8, 2, 1, 208, 112, 4, 199, 90, 8, 6, 1, 124, 4, 211, 244, 26, 251, 129,
8, 2, 1, 124, 4, 211, 244, 26, 251, 129, 8, 6, 1, 124, 4, 211, 244, 26,
199, 90, 8, 2, 1, 124, 4, 211, 244, 26, 199, 90, 8, 6, 1, 124, 4, 217,
215, 26, 251, 129, 8, 2, 1, 124, 4, 217, 215, 26, 251, 129, 8, 6, 1, 124,
4, 217, 215, 26, 199, 90, 8, 2, 1, 124, 4, 217, 215, 26, 199, 90, 8, 2,
1, 251, 109, 4, 230, 210, 8, 2, 1, 211, 184, 185, 4, 230, 210, 8, 2, 1,
211, 184, 185, 4, 251, 129, 8, 2, 1, 163, 196, 237, 4, 230, 210, 8, 2, 1,
163, 196, 237, 4, 251, 129, 8, 2, 1, 205, 241, 4, 230, 210, 8, 2, 1, 205,
241, 4, 251, 129, 8, 2, 1, 229, 14, 205, 241, 4, 230, 210, 8, 2, 1, 229,
14, 205, 241, 4, 251, 129, 9, 204, 162, 97, 4, 230, 67, 95, 4, 251, 26,
9, 204, 162, 97, 4, 230, 67, 95, 4, 194, 119, 9, 204, 162, 97, 4, 230,
67, 95, 4, 157, 217, 168, 9, 204, 162, 97, 4, 230, 67, 95, 4, 212, 0, 9,
204, 162, 97, 4, 230, 67, 95, 4, 68, 9, 204, 162, 97, 4, 230, 67, 95, 4,
192, 214, 9, 204, 162, 97, 4, 230, 67, 95, 4, 71, 9, 204, 162, 97, 4,
230, 67, 95, 4, 251, 108, 9, 204, 162, 213, 124, 4, 222, 39, 248, 76, 1,
221, 224, 44, 116, 222, 184, 44, 116, 214, 167, 44, 116, 247, 52, 44,
116, 212, 203, 44, 116, 198, 86, 44, 116, 213, 179, 44, 116, 200, 228,
44, 116, 215, 151, 44, 116, 211, 93, 44, 116, 218, 236, 44, 116, 193,
148, 44, 116, 150, 44, 116, 165, 44, 116, 196, 236, 44, 116, 219, 127,
44, 116, 219, 138, 44, 116, 207, 4, 44, 116, 213, 161, 44, 116, 223, 65,
44, 116, 204, 66, 44, 116, 202, 95, 44, 116, 206, 158, 44, 116, 230, 124,
44, 116, 221, 48, 44, 5, 222, 159, 44, 5, 221, 204, 44, 5, 221, 183, 44,
5, 221, 33, 44, 5, 220, 246, 44, 5, 222, 57, 44, 5, 222, 48, 44, 5, 222,
135, 44, 5, 221, 113, 44, 5, 221, 88, 44, 5, 222, 76, 44, 5, 214, 164,
44, 5, 214, 113, 44, 5, 214, 109, 44, 5, 214, 78, 44, 5, 214, 69, 44, 5,
214, 152, 44, 5, 214, 150, 44, 5, 214, 161, 44, 5, 214, 90, 44, 5, 214,
85, 44, 5, 214, 154, 44, 5, 247, 18, 44, 5, 242, 149, 44, 5, 242, 139,
44, 5, 238, 162, 44, 5, 238, 120, 44, 5, 246, 158, 44, 5, 246, 150, 44,
5, 247, 7, 44, 5, 242, 63, 44, 5, 238, 239, 44, 5, 246, 191, 44, 5, 212,
200, 44, 5, 212, 181, 44, 5, 212, 175, 44, 5, 212, 158, 44, 5, 212, 150,
44, 5, 212, 190, 44, 5, 212, 189, 44, 5, 212, 197, 44, 5, 212, 165, 44,
5, 212, 162, 44, 5, 212, 193, 44, 5, 198, 82, 44, 5, 198, 62, 44, 5, 198,
61, 44, 5, 198, 50, 44, 5, 198, 47, 44, 5, 198, 78, 44, 5, 198, 77, 44,
5, 198, 81, 44, 5, 198, 60, 44, 5, 198, 59, 44, 5, 198, 80, 44, 5, 213,
177, 44, 5, 213, 163, 44, 5, 213, 162, 44, 5, 213, 146, 44, 5, 213, 145,
44, 5, 213, 173, 44, 5, 213, 172, 44, 5, 213, 176, 44, 5, 213, 148, 44,
5, 213, 147, 44, 5, 213, 175, 44, 5, 200, 174, 44, 5, 199, 128, 44, 5,
199, 105, 44, 5, 198, 45, 44, 5, 198, 0, 44, 5, 200, 79, 44, 5, 200, 56,
44, 5, 200, 149, 44, 5, 155, 44, 5, 198, 254, 44, 5, 200, 100, 44, 5,
215, 84, 44, 5, 214, 60, 44, 5, 214, 27, 44, 5, 213, 22, 44, 5, 212, 215,
44, 5, 214, 214, 44, 5, 214, 203, 44, 5, 215, 70, 44, 5, 213, 142, 44, 5,
213, 125, 44, 5, 215, 42, 44, 5, 211, 77, 44, 5, 210, 51, 44, 5, 210, 12,
44, 5, 209, 51, 44, 5, 209, 15, 44, 5, 210, 181, 44, 5, 210, 168, 44, 5,
211, 55, 44, 5, 209, 198, 44, 5, 209, 172, 44, 5, 210, 197, 44, 5, 217,
219, 44, 5, 216, 175, 44, 5, 216, 137, 44, 5, 215, 241, 44, 5, 215, 181,
44, 5, 217, 48, 44, 5, 217, 29, 44, 5, 217, 180, 44, 5, 216, 91, 44, 5,
216, 35, 44, 5, 217, 96, 44, 5, 193, 129, 44, 5, 193, 22, 44, 5, 193, 12,
44, 5, 192, 214, 44, 5, 192, 177, 44, 5, 193, 69, 44, 5, 193, 66, 44, 5,
193, 108, 44, 5, 193, 1, 44, 5, 192, 235, 44, 5, 193, 80, 44, 5, 208, 68,
44, 5, 207, 151, 44, 5, 207, 88, 44, 5, 206, 218, 44, 5, 206, 179, 44, 5,
208, 7, 44, 5, 207, 234, 44, 5, 208, 48, 44, 5, 207, 55, 44, 5, 207, 28,
44, 5, 208, 17, 44, 5, 220, 184, 44, 5, 219, 209, 44, 5, 219, 191, 44, 5,
219, 36, 44, 5, 219, 6, 44, 5, 220, 42, 44, 5, 220, 32, 44, 5, 220, 155,
44, 5, 219, 107, 44, 5, 219, 73, 44, 5, 220, 60, 44, 5, 196, 156, 44, 5,
196, 39, 44, 5, 196, 22, 44, 5, 194, 223, 44, 5, 194, 215, 44, 5, 196,
123, 44, 5, 196, 118, 44, 5, 196, 152, 44, 5, 195, 252, 44, 5, 195, 236,
44, 5, 196, 129, 44, 5, 219, 125, 44, 5, 219, 120, 44, 5, 219, 119, 44,
5, 219, 116, 44, 5, 219, 115, 44, 5, 219, 122, 44, 5, 219, 121, 44, 5,
219, 124, 44, 5, 219, 118, 44, 5, 219, 117, 44, 5, 219, 123, 44, 5, 219,
136, 44, 5, 219, 129, 44, 5, 219, 128, 44, 5, 219, 112, 44, 5, 219, 111,
44, 5, 219, 132, 44, 5, 219, 131, 44, 5, 219, 135, 44, 5, 219, 114, 44,
5, 219, 113, 44, 5, 219, 133, 44, 5, 207, 2, 44, 5, 206, 247, 44, 5, 206,
246, 44, 5, 206, 239, 44, 5, 206, 232, 44, 5, 206, 254, 44, 5, 206, 253,
44, 5, 207, 1, 44, 5, 206, 245, 44, 5, 206, 244, 44, 5, 207, 0, 44, 5,
213, 159, 44, 5, 213, 154, 44, 5, 213, 153, 44, 5, 213, 150, 44, 5, 213,
149, 44, 5, 213, 156, 44, 5, 213, 155, 44, 5, 213, 158, 44, 5, 213, 152,
44, 5, 213, 151, 44, 5, 213, 157, 44, 5, 223, 61, 44, 5, 223, 20, 44, 5,
223, 12, 44, 5, 222, 214, 44, 5, 222, 194, 44, 5, 223, 41, 44, 5, 223,
39, 44, 5, 223, 55, 44, 5, 222, 233, 44, 5, 222, 223, 44, 5, 223, 48, 44,
5, 204, 59, 44, 5, 203, 236, 44, 5, 203, 231, 44, 5, 203, 164, 44, 5,
203, 146, 44, 5, 204, 12, 44, 5, 204, 10, 44, 5, 204, 47, 44, 5, 203,
211, 44, 5, 203, 203, 44, 5, 204, 21, 44, 5, 202, 91, 44, 5, 202, 59, 44,
5, 202, 55, 44, 5, 202, 46, 44, 5, 202, 43, 44, 5, 202, 65, 44, 5, 202,
64, 44, 5, 202, 90, 44, 5, 202, 51, 44, 5, 202, 50, 44, 5, 202, 67, 44,
5, 206, 91, 44, 5, 203, 125, 44, 5, 203, 97, 44, 5, 201, 184, 44, 5, 201,
86, 44, 5, 205, 223, 44, 5, 205, 205, 44, 5, 206, 75, 44, 5, 202, 212,
44, 5, 202, 183, 44, 5, 206, 12, 44, 5, 230, 99, 44, 5, 229, 178, 44, 5,
229, 150, 44, 5, 228, 181, 44, 5, 228, 150, 44, 5, 229, 255, 44, 5, 229,
225, 44, 5, 230, 88, 44, 5, 229, 43, 44, 5, 229, 16, 44, 5, 230, 11, 44,
5, 221, 47, 44, 5, 221, 46, 44, 5, 221, 41, 44, 5, 221, 40, 44, 5, 221,
37, 44, 5, 221, 36, 44, 5, 221, 43, 44, 5, 221, 42, 44, 5, 221, 45, 44,
5, 221, 39, 44, 5, 221, 38, 44, 5, 221, 44, 44, 5, 203, 171, 159, 116, 3,
193, 94, 159, 116, 3, 208, 36, 159, 116, 3, 207, 200, 98, 1, 197, 175,
93, 116, 3, 242, 55, 160, 93, 116, 3, 242, 55, 221, 250, 93, 116, 3, 242,
55, 221, 113, 93, 116, 3, 242, 55, 221, 220, 93, 116, 3, 242, 55, 214,
90, 93, 116, 3, 242, 55, 247, 19, 93, 116, 3, 242, 55, 246, 117, 93, 116,
3, 242, 55, 242, 63, 93, 116, 3, 242, 55, 242, 188, 93, 116, 3, 242, 55,
212, 165, 93, 116, 3, 242, 55, 238, 0, 93, 116, 3, 242, 55, 198, 71, 93,
116, 3, 242, 55, 236, 146, 93, 116, 3, 242, 55, 198, 66, 93, 116, 3, 242,
55, 181, 93, 116, 3, 242, 55, 189, 93, 116, 3, 242, 55, 199, 240, 93,
116, 3, 242, 55, 155, 93, 116, 3, 242, 55, 199, 176, 93, 116, 3, 242, 55,
213, 142, 93, 116, 3, 242, 55, 249, 3, 93, 116, 3, 242, 55, 210, 94, 93,
116, 3, 242, 55, 209, 198, 93, 116, 3, 242, 55, 210, 65, 93, 116, 3, 242,
55, 216, 91, 93, 116, 3, 242, 55, 193, 1, 93, 116, 3, 242, 55, 207, 55,
93, 116, 3, 242, 55, 219, 107, 93, 116, 3, 242, 55, 195, 252, 93, 116, 3,
242, 55, 204, 64, 93, 116, 3, 242, 55, 202, 92, 93, 116, 3, 242, 55, 188,
93, 116, 3, 242, 55, 144, 93, 116, 3, 242, 55, 177, 93, 18, 3, 242, 55,
208, 239, 93, 223, 177, 18, 3, 242, 55, 208, 177, 93, 223, 177, 18, 3,
242, 55, 206, 167, 93, 223, 177, 18, 3, 242, 55, 206, 160, 93, 223, 177,
18, 3, 242, 55, 208, 219, 93, 18, 3, 211, 219, 93, 18, 3, 251, 250, 229,
140, 1, 248, 34, 214, 165, 229, 140, 1, 248, 34, 214, 113, 229, 140, 1,
248, 34, 214, 78, 229, 140, 1, 248, 34, 214, 152, 229, 140, 1, 248, 34,
214, 90, 75, 1, 248, 34, 214, 165, 75, 1, 248, 34, 214, 113, 75, 1, 248,
34, 214, 78, 75, 1, 248, 34, 214, 152, 75, 1, 248, 34, 214, 90, 75, 1,
251, 55, 246, 158, 75, 1, 251, 55, 198, 45, 75, 1, 251, 55, 155, 75, 1,
251, 55, 211, 93, 73, 1, 233, 188, 233, 187, 238, 247, 158, 161, 73, 1,
233, 187, 233, 188, 238, 247, 158, 161,
};
unsigned char _PyUnicode_PhrasebookOffset1[4352];
static const unsigned char _PyUnicode_PhrasebookOffset1_rodata[206+1][2] = { /* 9.46691% profit */
{ 1, 0x00},
{ 1, 0x01},
{ 1, 0x02},
{ 1, 0x03},
{ 1, 0x04},
{ 1, 0x05},
{ 1, 0x06},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x11},
{ 1, 0x12},
{ 1, 0x13},
{ 1, 0x14},
{ 1, 0x15},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x18},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x1b},
{ 1, 0x1c},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 1, 0x22},
{ 1, 0x23},
{ 1, 0x24},
{ 1, 0x25},
{ 1, 0x26},
{ 1, 0x27},
{ 1, 0x28},
{ 1, 0x29},
{ 1, 0x2a},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x2f},
{ 1, 0x30},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x33},
{ 25, 0x34},
{ 1, 0x35},
{ 82, 0x34},
{ 1, 0x36},
{ 1, 0x37},
{ 1, 0x38},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x3c},
{ 1, 0x3d},
{ 1, 0x3e},
{ 1, 0x3f},
{ 1, 0x40},
{ 1, 0x41},
{ 43, 0x34},
{ 1, 0x42},
{ 33, 0x34},
{ 1, 0x43},
{ 1, 0x44},
{ 1, 0x45},
{ 1, 0x46},
{ 1, 0x47},
{ 1, 0x48},
{ 1, 0x49},
{ 1, 0x4a},
{ 1, 0x4b},
{ 1, 0x4c},
{ 1, 0x4d},
{ 1, 0x4e},
{ 1, 0x4f},
{ 1, 0x50},
{ 1, 0x51},
{ 1, 0x52},
{ 1, 0x53},
{ 1, 0x54},
{ 1, 0x55},
{ 1, 0x56},
{ 1, 0x57},
{ 1, 0x58},
{ 1, 0x59},
{ 1, 0x5a},
{ 1, 0x5b},
{ 1, 0x5c},
{ 1, 0x5d},
{ 1, 0x5e},
{ 1, 0x5f},
{ 1, 0x60},
{ 1, 0x61},
{ 1, 0x62},
{ 1, 0x63},
{ 1, 0x64},
{ 1, 0x34},
{ 1, 0x65},
{ 1, 0x66},
{ 1, 0x67},
{ 1, 0x68},
{ 1, 0x69},
{ 1, 0x6a},
{ 1, 0x6b},
{ 1, 0x6c},
{ 1, 0x6d},
{ 1, 0x6e},
{ 10, 0x34},
{ 1, 0x6f},
{ 1, 0x70},
{ 1, 0x71},
{ 1, 0x72},
{ 1, 0x73},
{ 15, 0x34},
{ 1, 0x74},
{ 1, 0x75},
{ 1, 0x76},
{ 33, 0x34},
{ 1, 0x77},
{ 1, 0x78},
{ 1, 0x79},
{ 1, 0x7a},
{ 2, 0x34},
{ 1, 0x7b},
{ 1, 0x7c},
{ 24, 0x34},
{ 1, 0x7d},
{ 1, 0x7e},
{ 1, 0x7f},
{ 1, 0x80},
{ 1, 0x81},
{ 35, 0x34},
{ 1, 0x82},
{ 1, 0x83},
{ 1, 0x84},
{ 9, 0x34},
{ 1, 0x85},
{ 19, 0x34},
{ 1, 0x86},
{ 1, 0x87},
{ 1, 0x88},
{ 1, 0x89},
{ 1, 0x8a},
{ 1, 0x8b},
{ 1, 0x8c},
{ 1, 0x8d},
{ 1, 0x8e},
{ 1, 0x8f},
{ 1, 0x90},
{ 5, 0x34},
{ 1, 0x91},
{ 1, 0x92},
{ 1, 0x93},
{ 5, 0x34},
{ 1, 0x94},
{ 1, 0x95},
{ 2, 0x34},
{ 1, 0x96},
{ 1, 0x97},
{ 1, 0x98},
{ 1, 0x34},
{ 1, 0x99},
{ 1, 0x9a},
{ 1, 0x9b},
{ 1, 0x9c},
{ 1, 0x9d},
{ 1, 0x9e},
{ 1, 0x9f},
{ 1, 0xa0},
{ 1, 0xa1},
{ 1, 0xa2},
{ 1, 0xa3},
{ 1, 0xa4},
{252, 0x34},
{ 1, 0xa5},
{ 1, 0xa6},
{ 1, 0xa7},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{255, 0x34},
{ 16, 0x34},
{ 1, 0xa8},
{ 1, 0xa9},
{254, 0x34},
{ 1, 0xaa},
{ 1, 0xab},
{ 1, 0xac},
{ 1, 0xad},
{255, 0x34},
{253, 0x34},
{0},
};
static textstartup void _PyUnicode_PhrasebookOffset1_init(void) {
rldecode2(_PyUnicode_PhrasebookOffset1, (void *)_PyUnicode_PhrasebookOffset1_rodata);
}
const void *const _PyUnicode_PhrasebookOffset1_ctor[] initarray = {
_PyUnicode_PhrasebookOffset1_init,
};
const unsigned int _PyUnicode_PhrasebookOffset2[25056] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 786433, 37748832,
939526912, 3221295104, 1376260, 28311648, 520095552, 805340160, 638978,
11534377, 201327328, 3489673728, 221184, 3801102, 65011952, 1107300352,
2147554304, 1228804, 21495886, 381683040, 2483052544, 2147913729,
7536667, 130023904, 2248155200, 4026673152, 2424840, 41156760, 696257056,
3221269248, 1074479106, 12451886, 209715980, 3489674048, 1879265280,
3588109, 59244766, 985665120, 3556831232, 2148503555, 16973887,
281019424, 369116224, 4026820609, 4784145, 78905640, 1300239136, 80640,
1075068933, 21889106, 360711500, 1627412288, 2147848193, 22, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95945066, 1568675632,
4026628352, 2149052421, 25493600, 413140508, 2550162432, 4026952705,
6848537, 110887332, 1799363232, 3489771520, 2149281798, 29163630,
471860988, 3489690112, 3758578689, 7946269, 130286058, 2143297408,
872547840, 2149666824, 35782790, 589301928, 1107332736, 537470978,
9863205, 161219170, 2642421488, 268598528, 2150150154, 43319460,
706742892, 2952833600, 4027243522, 11599915, 189268683, 3087019408,
3087197952, 3224330251, 50528446, 825232428, 587253440, 806136835,
13549619, 220201795, 3586143488, 2483248640, 3224813581, 58065116,
942673392, 2432754304, 942083, 15286330, 248513453, 4034935728,
1073989888, 3225251855, 65470711, 1064308668, 117505984, 1880112132,
17285185, 280495143, 255869776, 872695041, 1078284305, 73728279,
1196429748, 2231443264, 1343370244, 19349577, 313787557, 792742736,
872727809, 5066771, 81985847, 1328550828, 50413248, 806628357, 21413969,
346817827, 1300255504, 201669377, 3226775573, 89850196, 1451234688,
2013355008, 2148925445, 23330904, 378013081, 1811962512, 374785, 6062103,
98042228, 1588598656, 4110515200, 806875141, 25329760, 409208337,
2306892304, 3422956289, 3227758616, 105578896, 1706039628, 1795266752,
2954480646, 27312231, 441190027, 2831182256, 3422989057, 2154541082,
113836464, 1836063552, 3842094976, 807120902, 29278319, 472647427,
3330306352, 2751930625, 1081282588, 121700814, 1963990308, 1627510336,
270377991, 31342711, 504629119, 3833624752, 2013763841, 1081749534,
128975338, 2078285532, 3439456576, 2954843143, 33046653, 531630054,
4269834032, 403177729, 8433696, 135725572, 2186289272, 855771904,
270590984, 34783364, 560466003, 427853328, 3355994882, 1082626081,
142737951, 2294293020, 2634163456, 2955055112, 36503690, 587729083,
864062576, 1879627010, 2156802083, 149881402, 2412782552, 167919936,
1076116489, 38240401, 614467874, 1291883232, 134822402, 3230986277,
157024853, 2528126360, 2046974976, 1613102089, 40059032, 645138837,
1791007296, 3825840642, 1083977766, 165085811, 2662344580, 4278353216,
3760727049, 42336416, 682625570, 2407572320, 873088514, 10829865,
174326423, 2806000048, 2181209792, 1613377546, 44531881, 716704422,
2940250928, 671793666, 3232571435, 182190773, 2931829648, 33734080,
539764747, 46596273, 750258982, 3485512544, 1141590018, 11903021,
191759065, 3087019484, 2483217024, 1076785163, 48971962, 788270006,
4102077568, 2416696322, 1086242863, 201196285, 3238015004, 570623552,
3224411148, 51183810, 823659580, 348177632, 2081183747, 1086742577,
208929563, 3359650288, 2550342528, 3224537100, 53264586, 856689850,
897633504, 2550980099, 2161041459, 217908029, 3501208592, 402867264,
1614052365, 55296210, 889982265, 1413534880, 1879922435, 1087774773,
225444698, 3621795292, 2466472512, 272001037, 57278682, 919604655,
1874910096, 739099907, 3235721271, 232915830, 3738187680, 4194532608,
3493333005, 59097312, 949751328, 2361451216, 4228790275, 14962744,
240321427, 3857725800, 1828952320, 3761886222, 60866791, 978062985,
2827020704, 3289295619, 1089171514, 247727023, 3974118180, 3758339584,
272344078, 62800111, 1008733955, 3313561840, 2618235651, 15925308,
255722446, 4106239260, 1476645952, 1077770255, 64651510, 1038356336,
3783325712, 1343196675, 16367678, 262800361, 4217388736, 3322146688,
1077882895, 66486525, 1066930143, 4261478112, 403701507, 3238068288,
270402565, 49299616, 1023675777, 2420182032, 68452612, 1099698270,
465634976, 3759174404, 3238527041, 277611553, 156254788, 2667849345,
2420280336, 69976330, 1122767029, 838929456, 1209060612, 1091399747,
283051063, 243286928, 4093918081, 4030982160, 71401743, 1145835789,
1216418208, 3155241476, 18038852, 289211470, 336610556, 1174688001,
3762627601, 72663316, 1165496665, 1505826336, 3557911556, 18329669,
293995616, 420496940, 2701420097, 2420544529, 74154266, 1189614004,
1904286720, 1209125636, 2166202439, 300352632, 524306356, 33849025,
3494388754, 75809056, 1215566360, 2311135776, 3021089284, 3240296520,
305529996, 600852708, 1191481409, 4031326226, 76890404, 1232605787,
2583766576, 3356650500, 2166849609, 310641823, 685787684, 2516886721,
273313810, 78217514, 1253839530, 2931895120, 135446020, 2167169099,
315425970, 760236864, 3758405185, 2689306642, 79397166, 1272976116,
3221303232, 672335108, 3241218124, 320734405, 849366160, 855952385,
2957827091, 80724275, 1293947715, 3561043152, 1813206276, 3241537613,
325584088, 925912504, 2097471041, 2152598547, 82002232, 1314657170,
3892394448, 2752750596, 3241861198, 331154669, 1012944648, 3473208001,
2152681491, 83296573, 1335104481, 4227940016, 3893622020, 20967503,
336135425, 1095782460, 553977537, 3226507284, 84705602, 1358173240,
306267168, 1343508485, 21336145, 1304, 1181745152, 1929714305,
1884418068, 86163784, 0, 0, 1276416000, 21594194, 346359080, 1263555252,
3170893825, 1342177300, 87245132, 1400902869, 981552720, 3491032837,
2169475155, 352519487, 1355830304, 386221185, 273969173, 88703314,
1421874475, 1296039936, 4229249541, 1096040532, 357434706, 1434473804,
1745180673, 2153103381, 90177879, 1447826824, 1732336000, 2618663429,
1096466518, 364250476, 1543526124, 3389354305, 1079458837, 91636061,
1468798430, 2072075904, 3759534853, 2170540119, 369558912, 1628461104,
554010177, 274244630, 93208931, 1493702206, 2470536288, 2216056581,
1097224281, 376243610, 1738561996, 2198183809, 3227130902, 94634344,
1516508821, 2831247840, 3021383685, 3245023322, 381420973, 1818254084,
3490034369, 2690339862, 95928685, 1537218276, 3162599104, 3960927749,
1097863259, 386794946, 1906334796, 604358593, 1079815191, 97468787,
1564481352, 3598808400, 2551668485, 1098297437, 393610716, 2013289964,
2315641153, 1885223959, 99041657, 1587025826, 3959519920, 3893867781,
24899678, 399050225, 2100322100, 3691378113, 1616872471, 100303230,
1607473135, 4286676880, 471335429, 25210976, 404030980, 2180014184,
705038657, 1080082456, 101597571, 1627658301, 314672224, 1410879494,
3246760033, 409208343, 2262852000, 1996889217, 274853912, 102842760,
1648105610, 641829184, 2283314438, 3247071330, 414189098, 2342544084,
3305517057, 4033031192, 104137100, 1669339352, 981569104, 3625512710,
1099935843, 419825216, 2432721964, 436618561, 1885633561, 105595282,
1692145970, 1346474944, 806962694, 1100292197, 425723478, 2535482788,
2147900993, 543564825, 107331993, 1719933340, 1791072864, 3558453254,
1100718182, 433063537, 2644535124, 3892738113, 2154283033, 109003167,
1746672130, 2214699200, 1612321798, 27385960, 438830729, 2738907324,
1208389505, 1080637466, 110559653, 1773148772, 2663491392, 672825862,
2175344746, 446826150, 2871028392, 3255217793, 543893530, 112607661,
1805130464, 3171004096, 203095046, 2175836268, 454690500, 2992663680,
906414977, 1617754139, 114491828, 1835539282, 3665933856, 3827003910,
28835949, 462423778, 3120590432, 2852579649, 2154742811, 116425147,
1866472396, 4160863616, 3088836358, 2176802927, 470091519, 3242225712,
587663105, 544253980, 118391235, 1897405503, 352437456, 2216450823,
3251007601, 477562651, 3356520944, 2433163841, 275932188, 120209866,
1927290033, 834784240, 1545391879, 2177757299, 485295929, 3482350540,
185024641, 2960411677, 122192337, 1958747433, 1338102640, 1008551687,
3251990645, 493291351, 3614471612, 2332516417, 2423670813, 124256729,
1991777703, 1862392656, 673039111, 31264887, 501155702, 3738204056,
4211571969, 2423785501, 126091744, 2021137943, 2332156496, 3760075527,
2179190904, 507971472, 3843062064, 1527223681, 1350139934, 127582694,
2044993137, 2722228240, 1679724807, 1105858682, 514918314, 3960503012,
3406279041, 1350254622, 129450477, 2073296896, 3158437552, 4095670023,
1106260091, 521078722, 4053826644, 638044161, 545042463, 130941427,
2098208574, 3556897952, 1881101831, 32907389, 527304666, 4154490320,
2248663041, 276704287, 132497913, 2123112349, 3955358352, 3961500935,
33296510, 0, 4243619612, 3624400065, 276788255, 133792254, 2143821803,
4286709632, 673186823, 2181103744, 538707973, 40927368, 856165186,
4034978848, 135348739, 2168725579, 390202736, 2753585928, 1107751041,
544933917, 141591044, 2466784066, 3766640672, 136905225, 2193629354,
788663136, 539017736, 34398339, 551290933, 244351884, 2, 1082373120,
138330639, 2214592512, 1115820112, 1478561544, 2182205572, 556206152,
319849648, 990399874, 1887764513, 139657748, 2238194003, 1501697520,
3223415560, 35082373, 562104415, 416319000, 2601018754, 1350991905,
141197850, 2262049200, 1891769280, 1008847368, 1109213319, 568199286,
511739788, 4144528514, 1351090209, 142770720, 2286952975, 2290229680,
3089246472, 2183344264, 2190, 0, 0, 0, 0, 2299798081, 2470585488,
1411535112, 1109758089, 576784535, 647006612, 1913166722, 2961823778,
144687655, 2317361796, 2751604928, 1679987976, 2183782538, 581306536,
719358632, 2, 0, 145522688, 2331517623, 3007458400, 2281992, 0, 0, 0, 0,
0, 0, 2338857687, 3099733472, 2887968520, 1110372491, 586877117,
810585080, 285787010, 2425114659, 147309105, 2360091427, 3452056336,
203636488, 3258220685, 592971988, 906005872, 1728633090, 2684354595,
148652598, 2381063029, 3783407600, 1411616008, 3258564750, 598149352,
990940844, 3104369986, 277804067, 150028860, 2402558921, 4114758928,
1948506376, 1111363727, 602474745, 1058049972, 4262001986, 277879843,
151437889, 2426414117, 201474752, 3760469001, 37994640, 608438544,
1154519328, 1409881154, 2693880868, 152519237, 2441880672, 440551008,
3290721545, 2185711761, 612305182, 1216385556, 2550735810, 546468900,
153764426, 2463114415, 788679552, 270843913, 38568083, 617613619,
1300271952, 3775477506, 3499333668, 154976846, 2482775289, 1128419392,
1814369801, 1112678548, 623905098, 1404081372, 1124683714, 1351952421,
156648021, 2508465501, 1547851392, 3827660041, 1113067669, 629737825,
1497404980, 2802411202, 4036406309, 158122586, 2535466430, 1963089088,
2284182281, 2187243671, 637471101, 1624283148, 554272258, 2425929766,
160465507, 2572166731, 2562876832, 3089525257, 3261558937, 646056350,
1760598572, 2617877826, 1889176614, 162267754, 2599167668, 2986503152,
1411828745, 40751259, 653068729, 1875942360, 118079682, 1889286183,
164053617, 2628527908, 3468849936, 673661705, 41222301, 660015573,
1980800364, 1846139522, 2694696999, 165692023, 2653693832, 3858921776,
2552733961, 3262816414, 667159021, 2098241320, 3691640194, 1889502247,
167527038, 2684626936, 71467184, 1814566410, 3263295648, 673712648,
2201002164, 1124732610, 815872040, 169280133, 2712676453, 503482144,
271089162, 42508450, 680921636, 2317394544, 2953456194, 3500334120,
171000459, 2740201678, 960662992, 3291015946, 3264180387, 688327231,
2444272708, 621430722, 10791977, 172769280, 2766940470, 1371706400,
1277774858, 1117094053, 694553176, 2533402028, 2047499586, 1621492777,
174277272, 2791057810, 1749195200, 2955519498, 1117454502, 700189293,
2623579908, 3490345666, 3232191529, 175686301, 2814126570, 2122489664,
271187722, 3265306792, 705956483, 2722146416, 772442690, 2426982442,
177177251, 2837457474, 2483201216, 2016040714, 2191933609, 712051354,
2814421472, 2, 1890189312, 178487976, 2860526229, 2927798992, 1747635466,
1118720171, 720702139, 2970659844, 571131650, 1353494571, 181437107,
2908236621, 3665999408, 2847498, 45637806, 731187939, 3125849716,
3054168770, 2427385899, 183812796, 2948082656, 25345984, 1881936139,
2193789104, 742656781, 3317739840, 1980439106, 4038199340, 187040456,
2996317345, 738380464, 3895244043, 46919858, 751373105, 3442520888,
3708499458, 1890813996, 188416718, 3017288945, 1073926064, 674039051,
47247540, 756616005, 3526407288, 755714562, 1890895917, 189727443,
3037998401, 1405277344, 1680692235, 2195054773, 761662296, 3605050792,
1980456066, 3770017837, 190874327, 3056086406, 0, 0, 0, 0, 0, 0, 0, 0,
3058707855, 1728240000, 2418909195, 47874230, 766511979, 3682645712,
3238752002, 2427917357, 192103132, 3076009426, 2013453744, 2754471179,
2195640503, 771165052, 3758143472, 151748930, 817379374, 193315553,
3095932443, 2328027744, 3425578763, 48464056, 776145807, 3843078440,
1594594754, 12164142, 194904807, 3122146943, 2768431328, 2150537739,
1122656442, 783420331, 3954227928, 2, 817560576, 196215532, 3142069965,
3070422384, 2553209099, 49197243, 787811260, 4025531368, 151765250,
817641519, 197526257, 3163041565, 3405967984, 3626971403, 49524924,
793054160, 4109417768, 1577833922, 2428342319, 198984438, 3187158904,
3804428368, 1546620939, 49930430, 799607785, 4215324344, 3188452930,
12521519, 0, 3208392649, 4139973968, 2620383499, 2197737663, 804916220,
6340608, 302777091, 12607536, 770, 3232509990, 222495488, 4231019020,
1124352192, 810421266, 92324172, 1644959555, 3233913904, 203178758,
3253481590, 558041088, 1009814028, 1124679874, 815664166, 176210572,
797507, 536870912, 779, 3270521014, 839060512, 1345375756, 51224771,
820317240, 252756908, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3288346871, 1145245824,
2620463628, 1125310660, 826084429, 358663464, 1695307587, 12954673,
207504151, 3324522882, 1719867648, 3253004, 2199560192, 834276460,
482395916, 3758913155, 3234306097, 209519390, 3356504572, 2231574720,
2687638796, 2200113352, 3214, 0, 0, 0, 0, 0, 2436890624, 1144146444,
3274006729, 845155478, 654363040, 2114756035, 3234468914, 212124456,
3397661338, 2881694320, 3828528140, 3274432714, 851971248, 757123892,
3708597699, 1892386866, 213599022, 3420205810, 3225628608, 808650252,
53551308, 857541830, 846253192, 839699203, 818736179, 215106356,
3445371729, 3619894704, 2687722252, 3275141325, 863112411, 932236760,
2165104451, 2697860147, 216253240, 3461886866, 3892525488, 2620629772,
2201657550, 867306731, 1000394456, 3255627651, 2697926707, 217285436,
3478664146, 4152573344, 2486428172, 1128173775, 871435515, 1065406416,
4279041731, 1892682803, 218268480, 3493868557, 96682304, 2083789581,
3275894992, 875236617, 1125175480, 990711171, 819002420, 219284292,
3510907980, 377701712, 2486460173, 1128706257, 880086300, 1208013288,
2316116355, 819084340, 220611401, 3531879582, 725830256, 3694440973,
3276529874, 885525808, 1291899696, 3624744195, 13856820, 221840206,
3551802600, 1036209952, 3472653, 55591124, 889916738, 1360057400,
386745603, 3503581237, 222823249, 3567007011, 1287869152, 3962910477,
3277058260, 893848912, 1427166516, 1494046019, 819295285, 223986518,
3585881451, 1581471552, 4160749581, 3277332693, 898305377, 1497421376,
2651678275, 53, 224968704, 13735, 1795162112, 3560288269, 2203816150,
901975407, 1557190432, 3607983235, 282554421, 226067294, 3619698155,
2122538832, 204865293, 1130397912, 907152771, 1633681408, 520980099,
2430111798, 227230562, 13873, 222032, 0, 2204340224, 910364047, 55580,
1258291200, 1356415030, 227984229, 3650631264, 2621662896, 3569421,
2147483648, 914558367, 0, 2383258176, 2430226486, 873, 0, 0, 0,
3221225472, 3495, 0, 2785017856, 14330934, 229376000, 3672913589,
2982374416, 13, 3278692352, 920063412, 1844501356, 3876436163,
4040928310, 230474606, 3691001591, 3280171152, 1748439821, 57807068,
925830602, 1952505080, 1326305923, 2967296055, 885, 3716153344,
3674437232, 3288334349, 2205634781, 931007966, 2020662796, 3, 0,
232980480, 14225, 3850371072, 2151127821, 1132085470, 934153706,
2072043212, 3255693123, 3235847223, 234111868, 3748411350, 4181949952,
3090672141, 58667231, 939331070, 2148532224, 168689987, 1088437304,
235275137, 14364, 151224832, 2751463438, 58908896, 942866432, 57564,
989855744, 56, 236028804, 3779344459, 230752, 0, 0, 945950231, 0,
1846417920, 14798904, 0, 3789815808, 0, 0, 0, 0, 2284904952, 2366513667,
536870968, 905, 0, 0, 0, 59338752, 950013479, 2323702416, 2953718531,
2162348088, 237962123, 3809491136, 855870592, 1480118286, 59617507, 0, 0,
0, 0, 0, 3816816640, 981700176, 3154116622, 59715811, 956042814,
2421220356, 252592771, 14962745, 239501312, 3834394910, 1245708288,
3359190286, 3281215716, 960499278, 2493572372, 1410225091, 3773129785,
240698261, 3853793640, 1573099296, 3767310, 2207797478, 965676642,
2570059776, 2618189251, 1625719865, 241861530, 14766, 1837341472,
3959422990, 1134297318, 969543281, 59192, 3523215360, 3236387897,
242779037, 3887348199, 2114166560, 339344910, 232, 974196355, 59484,
588154752, 15246394, 0, 14894, 0, 0, 0, 0, 0, 0, 0, 0, 3907009074,
2432934880, 14, 61124608, 978587284, 2780883296, 1678678019, 3236536378,
245105574, 3924048500, 0, 0, 0, 0, 2821777912, 2366546435, 2699708474,
245924777, 3936878592, 2902698736, 3825205262, 2209075434, 986058416,
2901469996, 3641619715, 58, 246906880, 15074, 3116367872, 3225086734,
1135558891, 989728446, 2961239052, 302957379, 3236715579, 248005553,
3970710310, 3443766016, 4164631054, 62140652, 994905810, 3037724672,
1510921539, 1089305659, 249168822, 15212, 3708008192, 3825205262,
3283607789, 998772448, 60976, 2415919104, 2699973691, 250086329,
4004264869, 3984833280, 3914766, 3221225472, 1002966768, 0, 3540972416,
15688763, 0, 0, 0, 2013265920, 2210279663, 3834, 0, 4043309056, 15718459,
251576320, 4028120064, 75743424, 15, 2210500608, 1008865031, 3265327256,
839846787, 2700138556, 252675011, 4044897346, 344179888, 2151438607,
2210820337, 3867, 0, 0, 0, 0, 0, 507758416, 4093640719, 63439089,
1015484193, 3370185260, 3, 536870912, 254100425, 15513, 671336912,
2688328719, 242, 0, 3404788396, 3003121667, 1879048252, 254723019, 0,
801112064, 3982095, 0, 1019609088, 3436245796, 3, 0, 255116237,
4083432662, 939773392, 2688345103, 63881459, 1022627644, 62428, 0,
2684354560, 255837135, 4095753475, 250048, 0, 1137774592, 1025118021,
3522166784, 672090307, 16036925, 0, 15665, 0, 0, 0, 3917, 0, 0, 0, 0, 0,
0, 0, 2211684352, 1027673935, 3564172560, 1292849795, 821379133,
257262549, 4118035801, 1501812256, 3091032591, 2211913973, 1031409501,
3627087356, 3, 0, 0, 4130618758, 1707333920, 2352847887, 64647414,
1034948459, 3683710676, 3272568707, 2147483709, 259195868, 15825,
1988353376, 2419973903, 1138655479, 1039273851, 3753965532, 101679171,
16264254, 260391905, 4168891930, 2319704640, 3359518223, 65237240,
1044451215, 3830448128, 1309643331, 2163821630, 261555173, 4186979936,
2604918416, 3695079951, 1139261689, 1048973216, 64040, 0, 821704704,
262554601, 4203757214, 2881743504, 4109583, 1139523584, 1053233072,
3973054464, 3624907907, 16480318, 0, 0, 0, 2348810240, 65962235,
1055850496, 4019256272, 3, 0, 0, 4228923134, 3288592544, 15, 66154496,
1059065799, 4068539536, 806341379, 2164052031, 265225203, 0, 0, 0, 0,
1061490640, 4127259980, 2047859523, 1090395199, 266879993, 4273225638,
3989044000, 71285775, 2214351103, 1070469106, 4252041036, 3775919875,
1610612799, 268076030, 16367, 4261674816, 138411279, 3288359168,
1074794498, 27328596, 605030340, 3774915648, 269272066, 16007224,
298058785, 1077955600, 2214940929, 1079971862, 103809024, 1812994500,
1627505728, 270435335, 34095230, 583272561, 1073741840, 2215203074,
1084166182, 66188, 2801795072, 285388864, 271434763, 50872508, 860097649,
4248336, 3289227264, 1088753719, 246415360, 4128259076, 17035328, 0, 0,
0, 67108864, 68182276, 0, 0, 0, 3489660928, 1040, 73416978, 1225003489,
16, 68333568, 1093931084, 331416800, 1141919748, 3238338625, 273941524,
89128960, 267665, 0, 0, 0, 0, 0, 0, 0, 93339998, 1526994561, 3628167184,
1142395141, 1098911839, 410060304, 2400215748, 805306433, 275088409,
16794, 1749293536, 2755765520, 68862214, 1102319724, 465635040,
3289411588, 3238469697, 276038684, 123748820, 2013535681, 2621563920,
3290345735, 1106448507, 530647000, 17858372, 2433225794, 277021728,
138953231, 2252611937, 2218925328, 1143099656, 1110249610, 590416064,
1041272260, 2164854850, 278086692, 156779089, 2546214305, 4350992,
2217123840, 1114837147, 662700032, 2165350148, 2701793346, 279168040, 0,
0, 1682084608, 1143599370, 1118507177, 728828612, 3272650564, 4044039234,
280314924, 192955099, 3129224785, 16, 70189056, 1123487933, 802229224,
51429380, 2433488963, 281216048, 206324495, 3338940801, 2688754192,
70443276, 1127878861, 876678400, 1343279748, 2970441795, 282608693,
228327424, 3687069361, 3422552080, 3291967757, 1132400862, 946933260,
2400248516, 1896762435, 283558969, 244073375, 3938728561, 3426987792,
71004430, 0, 1001390080, 3339776068, 823080003, 284574781, 261374943,
4232330929, 4098094864, 3292549391, 1141969154, 1104220252, 688982212,
1360051268, 286180419, 287065153, 322961409, 1682199313, 1145434385,
1147867417, 1196495292, 1121860, 17953792, 0, 303842435, 616843473,
1950652689, 71971090, 0, 1248854016, 4, 0, 288014336, 316425392,
826559457, 4508689, 72167424, 1155137536, 1312887676, 4061215428,
1628695620, 289653840, 0, 0, 0, 2219917312, 1159663942, 1385239696,
856771460, 3507806277, 290489427, 0, 1401181296, 4543761, 0, 0, 0, 0, 0,
0, 359137280, 1518622241, 3896865297, 2220368149, 1167200610, 1512117864,
2987485828, 555149381, 292717660, 392447441, 2051300881, 3829788945,
73400599, 1175458178, 1644238944, 806455812, 18407494, 294782052,
425739856, 2579785201, 3561385745, 3295138073, 1183519136, 1773214284,
2870061252, 2702888006, 296780907, 456935112, 3083103601, 3091654417,
2221891867, 1191580095, 1901141044, 4, 0, 298237952, 480528162,
3456398097, 809976337, 74785053, 1197347286, 1994464664, 2115100036,
2703102023, 300156024, 510412694, 3905190385, 2890376977, 3296391454,
1203180012, 2079399660, 1175876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 522977280, 294145, 4708096, 1149100032, 1206522361,
2137071548, 4244635652, 2434797639, 302253184, 544753687, 184844881,
3762828050, 3296968992, 1212813840, 2237735236, 1611798212, 3777076296,
303907974, 571230332, 591693953, 1342177298, 3221225762, 1218449958,
2330010268, 3155307844, 1898122312, 305366156, 593250514, 960794097,
3226004242, 76505379, 1224872511, 2429625372, 470959364, 19172425, 0,
616319274, 1317311313, 4800530, 76832768, 1229651968, 2509317448,
1729255428, 19247177, 0, 634669424, 1598330769, 340361490, 1150849318,
1234244195, 75348, 2566914048, 1361476681, 309003418, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 651970995, 1950653473, 2823413778,
2225033511, 1242370688, 2712741964, 722635076, 1898499146, 311379107,
690768451, 2537858385, 3226102290, 78086441, 1250693792, 2846960204,
2870126788, 2972372042, 313574571, 725895885, 3049565505, 1951062546,
3299737899, 1256592056, 2931895204, 4094868484, 3240878154, 314573999,
740313860, 3288641729, 1816859922, 3300020524, 1262293708, 3029413132,
1494406212, 2435679307, 316392630, 769674101, 3758405569, 541819922,
79216942, 4836, 3112250960, 2685593348, 2167312459, 317392058, 785140655,
4005870449, 72072722, 1153192239, 1271730930, 3175165760, 3692230148,
1093632075, 318375102, 801131500, 4253335345, 4098619666, 79696175,
1275532033, 3235983400, 387122372, 76, 0, 812384256, 151306753,
3024890131, 3301122352, 1279070989, 3296801032, 1360204548, 2704364620,
320406725, 834686058, 541378417, 743212819, 1154019634, 1285231397,
3398513292, 3105041476, 2972910668, 322225356, 864570589, 998559361,
3897357331, 2228224307, 4929, 3508614192, 504579588, 2704576589,
323749074, 887901493, 1371853841, 1145916435, 1154838837, 1298338647,
3605083552, 2048089348, 1630928973, 325256408, 912280978, 1753536977,
3024987923, 81473846, 1304236910, 3699455752, 3608376324, 3758096461,
326714589, 937709042, 2181357569, 1481510931, 2229387576, 1311511432,
3815848132, 1259573316, 1342177358, 328713445, 969690727, 2705647601,
2286850835, 82473274, 1320424363, 3963697904, 4, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 993808076, 3049581873, 2085542675,
3303944507, 1324028857, 4012981180, 4212374980, 826014798, 331465968,
1010323211, 3313824033, 1951341075, 82968892, 1328026569, 4075895984,
890489988, 3241992271, 332383475, 1025003330, 3548705937, 1414484243,
83198269, 1331631063, 4134616464, 1913903812, 2973621327, 333448439,
1042567044, 3833919697, 2085591315, 1157255486, 1336742890, 4216405700,
3205754436, 3242136655, 334791932, 1064062935, 4165271009, 2622481427,
1157538111, 1341133819, 4284563404, 1310468, 2168459344, 335742208,
1079005200, 117768577, 2488279316, 3305283904, 1345655819, 67191016,
1276383621, 2168539216, 337118469, 1103122536, 541394817, 1414564372,
1158279490, 1353978922, 210846460, 3709088965, 289643600, 339657999,
1144803589, 1199903089, 2890998804, 2232615236, 1362891853, 344016136,
1410618245, 4047856721, 341394709, 1170493803, 1606752097, 810649108,
85541190, 1369576551, 450971296, 3155455237, 3779530833, 343246108,
1200640478, 2072321681, 3763467028, 2233454919, 1376195712, 554780720,
487884229, 2705886290, 344704290, 1223184949, 2433033201, 944916756,
86323529, 1381831830, 644958600, 1897175813, 2974406738, 346031399,
1244156549, 2768578801, 2018679060, 86651210, 1387074730, 728845000,
3239358213, 2974488658, 347342124, 1265128149, 3104124401, 3092441364,
3221225803, 5308, 0, 0, 21749760, 0, 1275351805, 3259314257, 1146293524,
1160859980, 1394414790, 844188804, 756337221, 1363985491, 349062451,
1292129085, 3527750737, 1146309908, 1161122125, 1398609110, 911297924,
1830083141, 1364051027, 350111031, 1308906365, 3796187217, 1146326292,
1161384270, 1402803430, 979455620, 2937383557, 2169426003, 351225147,
1326994370, 4085595297, 1481888276, 2235408719, 1407325431, 1050759064,
4061461381, 2706364499, 352290111, 1343771650, 59064481, 1481904661,
2235670864, 1411519751, 1117868184, 840240005, 2706430036, 353338691,
1360548930, 327500961, 1481921045, 2235933009, 1415714071, 1184977304,
1913985925, 2706495572, 354387271, 1377326210, 595937441, 1481937429,
2236195154, 1419908391, 1252086424, 2987731845, 2706561108, 355435851,
1394103490, 864373921, 1481953813, 2236457299, 1424102711, 1319195544,
4061477765, 2706626644, 356484431, 1410880770, 1132810401, 1481970197,
2236719444, 1428297031, 1386304664, 840256389, 2706692181, 357533011,
1427920194, 1409635505, 1683313685, 2236997973, 1432819032, 1459705264,
2048220485, 1096154197, 358745432, 1447581069, 1728403825, 2555748629,
3311051094, 1437865323, 1541494500, 3356848325, 559363157, 360039773,
1468290524, 2059755105, 3562401813, 3311378775, 1443108223, 1625380900,
404063429, 559445078, 361350498, 1489262124, 2395300705, 341196821,
3311706457, 1448351123, 1709267300, 1746245829, 559526998, 362661223,
1510233724, 2730846305, 1414959125, 3312034138, 1453594023, 1791056544,
3021319173, 3243958358, 363857259, 1528846020, 3020254401, 1616303125,
91079003, 1457788344, 1858165664, 4095065093, 3244023894, 364905839,
1545623300, 3288690881, 1616319509, 91341148, 1461982664, 1925274784,
873843717, 3244089431, 365954419, 1562400580, 3557127361, 1616335893,
91603293, 1466176984, 1992383904, 1947589637, 3244154967, 367002999,
1579177860, 3825563841, 1616352277, 91865438, 1470371304, 2059493024,
3021335557, 3244220503, 368051579, 1595955140, 4094000321, 1616368661,
92127583, 1474565624, 2126602144, 4095081477, 3244286039, 369100159,
1612470276, 63275185, 1549275926, 3313611104, 1478694407, 2191614104,
840305541, 2707478616, 370115971, 1628985410, 327517345, 1482183190,
2240127329, 1482823191, 2257674644, 1897274181, 2439107672, 371148167,
1645500545, 591759505, 1415090454, 1166643554, 1486951975, 2323735184,
2954242821, 2170736728, 372180363, 1661753536, 851807345, 1280888598,
3314381155, 1491015222, 2389795724, 4011211461, 1902365784, 373212559,
1678530815, 1120243825, 1280904982, 3314643300, 1495209542, 2452619264,
722880965, 23379033, 0, 1692162355, 1338348465, 475611926, 93630821,
1498349568, 2502950912, 1528190405, 23428185, 0, 1704745315, 1539675825,
3696849686, 3315052901, 1501763167, 2561762844, 2467718085, 2976275545,
375899545, 1721260451, 1803917985, 3629756950, 1167827302, 1505826415,
2626774804, 3507909445, 2439468121, 376915357, 1737775585, 2068160145,
3562664214, 1168085351, 1510020735, 2689597440, 219578949, 23610458, 0,
1751144981, 2282070465, 2690262038, 94552424, 1513363084, 2747361504,
1142329349, 3244892250, 378799524, 1768184404, 2563089889, 3160041750,
1168589161, 1518278302, 2824956424, 2383848069, 1634355290, 380011945,
23198, 2844109344, 3092949526, 362, 1521614848, 2879482584, 3256266629,
2708150362, 1452, 23246, 3045436704, 2019219990, 363, 1524760576,
2929814424, 4061576069, 2708199514, 381650351, 1813797634, 3292901569,
1952126742, 95560044, 1529282560, 3002166444, 924241093, 4050447451,
382780851, 1831623495, 3569726705, 1817925398, 3317035373, 1533482712,
3068226984, 1981209733, 3782076507, 383813047, 1848138630, 3833968865,
1750832662, 2243551598, 1537611496, 3135336104, 3054955653, 3782142043,
384861627, 1864915910, 4102405345, 1750849046, 2243813743, 1541805816,
3202445224, 4128701573, 3782207579, 385910207, 23558, 59097248,
1482428951, 368, 1545207808, 3256971384, 706152837, 561035356, 386762179,
1895324730, 293979169, 945572375, 2244288881, 1549408021, 3324080504,
1779898757, 561100892, 387810759, 1912102010, 562415649, 945588759,
2244551026, 1553602341, 3391189624, 2853644677, 561166428, 388859339,
1928879290, 830852129, 945605143, 2244813171, 1557796661, 3458298744,
3927390597, 561231964, 389907919, 1945394426, 1095094289, 878512407,
1171329396, 1561925445, 3524359284, 5, 3782513664, 390923730, 1962171705,
1363530753, 744310807, 3319062901, 1565988692, 3589371248, 1696028805,
2977275997, 391874006, 1976589681, 1590024049, 207453975, 3319296374,
1569658722, 3648091724, 2669110981, 93, 0, 1990745508, 1820711649,
4032673303, 98304374, 1573394289, 3709957944, 3658970501, 1098350685,
393872862, 2009619948, 2139479937, 811468311, 98640248, 1579030406,
96400, 0, 0, 0, 2025086506, 2361778945, 3831379479, 1172558200,
1581520784, 3837884704, 1410831365, 2977521758, 395822565, 2040290915,
2613438129, 3630068247, 2246549881, 1585584031, 3901848088, 2434245445,
2440713310, 396821993, 2056281760, 2869291649, 3495866391, 99320186,
1589647279, 3967908624, 3491214085, 1903905886, 397854189, 2072796895,
3133533809, 3361664791, 2247057787, 1593710526, 4032920584, 236438149,
1635534943, 398886385, 2089312030, 3397775969, 3361680919, 2247319932,
1597904846, 4100029704, 1310184069, 1635600479, 399934965, 2105827165,
3662018129, 3294588183, 381, 1601503232, 4159798760, 2300043525,
25049183, 0, 2119982995, 3884317089, 2489295127, 100303230, 1605507051,
4222713564, 3256348549, 3246331999, 401868284, 2137546710, 4177919489,
3093293591, 2248098175, 1610487806, 8486928, 337118086, 3783286880,
403244545, 2159566889, 260440929, 677397784, 1174733185, 1616844822,
113344924, 1981291654, 3783387232, 404784647, 2183684230, 612763873,
1751160344, 1175060866, 1621760041, 185696948, 3138923846, 1367538784,
405947916, 2202820815, 927337873, 2623595288, 1175376259, 1626806332,
269583348, 202916294, 1099186273, 407242257, 2222743836, 1246106161,
3428920856, 2249417092, 1631459406, 344032528, 1377325958, 2978308193,
408421909, 2242404708, 1560680161, 4167137304, 102252933, 1636571234,
423724608, 2618844678, 1099333729, 409601562, 2260754860, 1850088289,
73514264, 3323752839, 1641093234, 498173780, 3843585990, 4052198497,
410830366, 2280940025, 2185633841, 1147276568, 1176596872, 1646467207,
584157348, 890801222, 3515409506, 412108323, 2301387335, 2496013553,
1952602392, 3324391817, 1651316889, 661752260, 2165874374, 2978616418,
413386280, 2322358933, 2839947761, 3026364696, 1177227658, 1656297645,
741444340, 3390615942, 1099642978, 414582317, 2340971230, 3137744513,
3630363160, 103793035, 1661343936, 822185000, 437831046, 1099726947,
415925810, 2362467120, 3473290113, 274939928, 2251587981, 1666259155,
898731348, 1662572486, 3515720803, 417121846, 2381603705, 3783669793,
946047512, 2251891086, 1671043301, 977374840, 2870536646, 1368308835,
418268731, 2399953855, 4081466513, 1550045976, 1178456463, 1676089592,
1058115500, 4179164422, 563083363, 419530304, 2419614730, 92684577,
2086935577, 3326226832, 1680677129, 1131516100, 1092161222, 2979075172,
420726340, 2439275605, 415647217, 3160697113, 1179070865, 1685920030,
1217499660, 2501452742, 294808676, 422168138, 2462344365, 776358737,
73710873, 1179406739, 1691162930, 1299288908, 3776526150, 2979241060,
423380558, 2481743093, 1095127025, 1013254425, 3327209876, 1696274757,
1378980988, 723077574, 1100268645, 424543827, 2500355388, 1392923745,
1483034649, 106275221, 1701058904, 1457624488, 2014928134, 1100347493,
425854552, 2521851278, 1736858017, 2825233433, 2254102934, 1706432876,
1541510888, 3340333318, 26684517, 427099741, 2540987866, 2043043361,
3160795929, 3328127383, 1710954877, 1613862908, 186220998, 1368933478,
428230241, 2559338015, 2336645777, 3697685273, 3328422296, 1715673487,
1691457820, 1427739718, 3516490854, 429409893, 2577688165, 2621859537,
3966137625, 3328709017, 1720523169, 1770101324, 2753144710, 3785009254,
430737002, 2598921910, 2961599457, 677824025, 2255282587, 1725307316,
1843501928, 3927554310, 1369161830, 431900271, 2617534205, 3259396177,
1147604249, 1181831580, 1730091462, 1924242580, 924437574, 832369767,
433210996, 2639030095, 3603330417, 2355584793, 3329651101, 1735465434,
2010226140, 2300174534, 1369324647, 434554489, 2660788129, 3959847601,
3966219545, 3330019742, 1741494769, 2106695500, 3826907078, 27240551,
436045439, 2684643323, 54952049, 1550324250, 1182908832, 1747327496,
2197921964, 974785862, 1101069416, 437405316, 2705877069, 386303345,
2556977434, 109490593, 1752504860, 2280759784, 2300190982, 832714856,
438699657, 2726848669, 721848945, 3630739738, 109818274, 1757747760,
2364646184, 3642373382, 564361320, 439993998, 2747558124, 1053200225,
342425626, 3331367332, 1762925123, 2447484004, 672811206, 564442217,
441304723, 2768529724, 1388745825, 1416187930, 3331695013, 1768102487,
2530321824, 1998216326, 27652201, 442582680, 2788977034, 1715902785,
2288622874, 1184530854, 1773279851, 2613159644, 3340398726, 296169577,
443909789, 2810210779, 2055642705, 3496603418, 2258604455, 1778522751,
2697046044, 370836550, 27815018, 445204130, 2830920234, 2386993985,
208289306, 1185186217, 1783765651, 2780932444, 1713018950, 27896938,
446514855, 2851891834, 2722539585, 1282051610, 1185513898, 1789074087,
2865867424, 3071978630, 296415338, 447841964, 2873125579, 3062279505,
2355813914, 1185841579, 1794251451, 2948705244, 102416454, 28060779,
449136305, 2893835034, 3393630785, 3429576218, 1186169260, 1799494351,
3032591644, 1444598854, 28142699, 450463414, 2914544490, 3716593441,
4167793178, 2260214189, 1804344033, 3112283720, 2753226630, 28223595,
451790523, 2936564669, 4077304945, 1483460890, 113095087, 1810176760,
3203510184, 4179295494, 833615979, 453117632, 2957536269, 117883249,
2557223195, 113422768, 1815419660, 3287396584, 1226510598, 108, 0,
2976672848, 436651521, 3362549019, 113734065, 1820662560, 3373380140,
2619024838, 2175961196, 455804618, 3000528049, 826723329, 1147980315,
3335348659, 1826888502, 3475092388, 1785414, 3786677357, 457590480,
3029626144, 1288098545, 4235016731, 114581940, 1834163027, 3593581936,
1931172486, 4055230573, 459343575, 3059248527, 1770445233, 3362630939,
3336270262, 1841830767, 3714168636, 3843782662, 4055345261, 461244126,
3088346624, 2210848929, 1684935707, 3336692152, 1848122248, 3810638004,
1025215942, 2444823662, 462653156, 3110104659, 2558977489, 3228460827,
2263323065, 1854610336, 0, 0, 0, 0, 3126881940, 2819025345, 2758714395,
2263540154, 1857493932, 3958487788, 3357257990, 3221225582, 464783084,
3143921365, 3095850449, 7268123, 0, 0, 0, 0, 0, 0, 3149950700,
3188125505, 74382363, 2263900604, 1863261122, 4050762828, 538691334,
2176618607, 466290418, 3168038705, 3481727889, 544162587, 116711869, 0,
0, 0, 0, 0, 3176951635, 3620140465, 2691654427, 1190580669, 1870011356,
4158766568, 2266751174, 4055772271, 467977976, 3195039640, 3913742849,
27, 0, 0, 0, 0, 0, 0, 3199758250, 3985046305, 4235180571, 117195198,
1875713010, 4249993028, 3726374534, 536871023, 469337854, 28651,
4245094128, 27, 0, 0, 0, 0, 0, 0, 3220205561, 17235969, 812648476,
117506496, 1880628229, 33669232, 672925959, 29405296, 470615811,
3236720695, 277283809, 678446620, 2265244097, 1884691476, 98681192,
1713117319, 3787565168, 471631622, 3252711541, 533137329, 745571612,
3339260354, 1889344549, 177324684, 3038522311, 297987184, 473024268,
3276566733, 960957889, 3295734556, 118452675, 1895832639, 279036948,
320619463, 3519307889, 474515217, 3299635494, 1292309233, 4168169756,
3339989444, 1900747857, 355583292, 1528583623, 835026033, 475645718,
3317985643, 1581717329, 74546460, 1192776134, 1905466467, 433178204,
2803656775, 29797489, 0, 3335287215, 1850153825, 4235312156, 1193025990,
1908939889, 116524, 0, 0, 0, 3344462286, 2038898145, 3631345180,
2267013575, 1913527425, 116824, 0, 0, 0, 3364123166, 2311529025,
3161599004, 3340976584, 1917000846, 619825440, 1495045255, 1909031026,
1830, 3384570475, 2638685985, 3966924828, 1193796041, 1921260704, 117276,
0, 0, 0, 3392434826, 2764515585, 1685231132, 1193923018, 1923423400,
717343392, 3005000711, 2982861938, 481265451, 3406852801, 2999397505,
1282592540, 2267902411, 1927093430, 777112452, 3961305607, 1103872114,
482215727, 3422581500, 3255251009, 1349717788, 2268172748, 1931680967,
854707364, 991743303, 1640824947, 483591988, 3445125969, 3632739777,
3094571036, 1194799565, 1937644766, 950128144, 2518475783, 298741875,
485066554, 3469243308, 4014422897, 544457244, 2268910031, 1943543028,
1043451764, 4011653703, 2983187571, 486557503, 3493098503, 105333041,
2356420125, 2269282768, 1949572363, 0, 0, 0, 0, 3507778620, 361186529,
2691980829, 1195835857, 1954553118, 1222758940, 2652710279, 3788675188,
489523018, 3541333182, 889670865, 2423577629, 122601939, 1962679613,
1358025748, 589121095, 1909765237, 491800403, 3578819915, 1510430177,
4034228765, 2270716373, 1972772195, 1518458496, 7, 0, 0, 3604510130,
1871141793, 410370589, 2270994903, 1976704371, 1570887512, 3793581959,
2715261045, 494634846, 3621287410, 2139578273, 410386973, 2271257048,
1981029763, 1642190944, 673024135, 567849078, 495814499, 3640161850,
2441569313, 1081494045, 124084697, 1986141591, 1726077344, 2048761095,
1641676918, 497223528, 3664017043, 2840029681, 3027675421, 1198199258,
1991843245, 1813109492, 3441275335, 2178632822, 498583405, 3684988644,
3171380977, 142015261, 476, 0, 0, 0, 0, 0, 3694950153, 3322376497,
2289507613, 124940764, 1999707595, 1941036248, 1142804487, 3789366391,
500483956, 3714873175, 3645339137, 3094833693, 2272731613, 2004491741,
2017582588, 2367545927, 1641956471, 1913, 3732961179, 3934747217,
3631722525, 2273034718, 2009538032, 2099371824, 1963527, 0, 0,
3750787039, 4228349601, 3900175645, 125825503, 2013863425, 2167529528,
1967623, 0, 0, 30749, 0, 2625118720, 1199751648, 2016747020, 2211569892,
1159598151, 3521193080, 504645508, 3781720149, 428312065, 3296226334,
3347538401, 2021727774, 2293359128, 2518557767, 568488056, 506054538,
3805051053, 797412241, 544785182, 126673379, 2027494965, 2386682748,
4011735687, 31708280, 0, 3825498363, 1128763505, 7934750, 0, 0, 0, 0, 0,
0, 3834149145, 1288147633, 343489566, 2274677221, 2036276821, 2533483936,
2166251015, 300295289, 510019481, 3869800866, 1858575137, 746177310,
127746535, 2044993143, 2672945076, 119439239, 2179480698, 512247713,
3905190441, 2429002657, 1350191902, 2275791337, 2054102681, 2819746272,
2007687, 0, 0, 3933502099, 2881989217, 8042270, 1202487787, 2061049524,
2930895752, 4246650119, 4058781818, 516294576, 3970464545, 3473388337,
947602718, 129331693, 2070486744, 126404, 0, 0, 0, 3993271161,
3821516929, 1954256414, 3350872558, 2075270890, 3154243300, 7,
2147483648, 519309244, 4017126360, 4194811425, 3497782814, 129999343,
2080775936, 3240226864, 505349639, 2716897404, 520882114, 4041767990,
294110209, 1216105503, 2277868017, 2086936343, 3338793384, 2082413959,
2180122748, 522422216, 4066409620, 679987665, 2893850399, 130744818,
2092506925, 3424776948, 3407819143, 1374896252, 523667405, 4086070495,
986173041, 3497848863, 131039731, 2097225535, 3501323288, 2049031,
1610612736, 524715985, 4103634209, 1283969729, 4101846815, 131346932,
2102271826, 3584161104, 1696552903, 4059408509, 526206934, 4127227258,
1653069905, 1417515039, 3352932854, 2107907943, 3673290404, 3122621767,
1643577469, 527599580, 4149247439, 2001198465, 2558386463, 1205776887,
2113347452, 3759273968, 169836935, 838351998, 528877537, 4169432604,
2328355425, 3632148511, 132370936, 2119049105, 3856791900, 1864341767,
2717503614, 2023, 4195384959, 2756176017, 2088671007, 2280276474,
2125471658, 3954309848, 3323965511, 838546558, 532023277, 4220550878,
3158830753, 4236179487, 1206927867, 2131763138, 4058119260, 740280647,
127, 533512192, 4244930362, 3544708209, 1686065951, 1207300605,
2137726937, 130500, 0, 0, 0, 4260659063, 3787978785, 1149209631,
3355009534, 2141200358, 130708, 0, 0, 0, 4273766314, 3997694785,
209698335, 1207730687, 2144870388, 4263640948, 3961518535, 33539199, 0,
4294213622, 13107201, 813696800, 2281767424, 2149261317, 42074244,
874515464, 3523273856, 537954307, 32841, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
22839377, 407373266, 2759877920, 3355890177, 2155290652, 135397876,
2367693256, 2986497152, 539543561, 44859559, 759696114, 4169185312,
135012866, 2160861234, 224527168, 3760207496, 2718142592, 540837902,
67666170, 1120407682, 1417744672, 2282861060, 2166431815, 313656476,
874531912, 2718227585, 542066707, 85754177, 1409815762, 1551979296,
1209385477, 2171084888, 390202804, 2216713928, 1107700865, 543574041,
110920096, 1833442050, 75611168, 1209823751, 2178097267, 502400868,
2128200, 0, 0, 129794539, 2101878562, 3967940640, 1210049031, 2181308544,
547489820, 270566216, 2181581954, 545736737, 143950370, 2345149090,
3833738272, 1210319368, 2185896081, 625084732, 1629525704, 3523845250,
547145766, 168329849, 2756192434, 2156042016, 2284491274, 2193301676,
751962896, 3743462792, 130, 0, 196379368, 3184013090, 4236442400,
137376267, 2198610114, 827460672, 505464392, 2181860483, 550193202,
215778098, 3490198466, 612582688, 2285163021, 2203525332, 906104176,
1746983176, 302887043, 551372855, 234390394, 3800578114, 1485017120,
2285486606, 2208833768, 994184888, 3189829192, 3524203651, 552896572,
259032023, 4178066946, 2961434656, 138347023, 2214076669, 1073876976,
153157896, 839923844, 554059841, 277644319, 189285010, 3833869089,
1212408336, 2219385105, 1160909116, 1579226696, 3255932036, 555501638,
301237368, 562579490, 1082428449, 139026962, 2225217831, 1254232728,
3055627400, 303231108, 556877900, 322995403, 914902354, 2357518113,
139358739, 2230395195, 1340216288, 169951432, 1645493381, 558286929,
346588452, 1292391170, 33, 0, 0, 0, 939524096, 2182415493, 559138900,
359171414, 1493718514, 3095750945, 139932181, 2239570270, 1483871752,
2418107080, 2450936965, 560416857, 379356578, 1816681154, 3968185889,
140243478, 2244551025, 1563563832, 3676403144, 840400005, 561645662,
398755309, 2127060834, 344325921, 1214296600, 2249597316, 1645353068,
740395400, 1914225798, 563038307, 421561922, 2496160994, 2089179425,
2288407065, 8602, 0, 1965136832, 1377434758, 564349032, 442533523,
2819123650, 2693178401, 141214234, 2259952044, 137952, 0, 303755264,
565282924, 457737931, 3079171458, 2827412513, 2288976411, 2264670653,
1887575048, 354534280, 840724615, 566921330, 484476721, 3515380722,
1351044385, 2289414685, 2271814104, 2003967424, 2233589640, 840839303,
568756345, 513836961, 3985144562, 277331233, 2289873439, 2279154164,
2123505540, 4146199624, 840955015, 570607744, 543983636, 168329762,
3632803618, 1216598560, 2286690833, 0, 0, 0, 0, 560498771, 436766226,
3632820002, 143118881, 2290819617, 2308055624, 2804033544, 1378007176,
573507723, 589859011, 906530066, 2559106850, 143577635, 2298159677,
2425496584, 388121608, 1378121865, 575342738, 619219251, 1376293906,
1485393698, 144036389, 2305499737, 2543986120, 8, 2183529472, 576981144,
645958040, 1812503170, 143243298, 2291974695, 8821, 0, 0, 0, 0,
664046048, 2076745378, 4102681634, 1218478631, 2317099652, 2733779080,
1008897352, 2183728266, 580110500, 696552022, 2622006946, 76183586,
1219002922, 2325422756, 2864851604, 3122834632, 2452295818, 582240428,
729582295, 3142102658, 3901420578, 145748523, 2332631745, 2976001084, 8,
0, 0, 747408158, 3418927762, 4102764322, 1219768876, 2337153746,
3047304532, 1713559560, 1110292619, 585042103, 773884801, 3850942690,
2425069090, 1220190766, 2344100588, 3159502584, 3508728520, 3257882763,
586746045, 801672172, 4287152002, 814482466, 2294350384, 2350654213,
3263312008, 874711944, 3526418572, 588286147, 825789513, 369673506,
2290900259, 3368444465, 2356159258, 3348246992, 2233671560, 3794936972,
589613256, 846236823, 692636162, 3096226083, 1221276210, 2361271086,
3430036236, 3525522184, 3795018892, 590923981, 867470568, 1032376098,
210566179, 3369116212, 2366907203, 3521262688, 690178312, 842315917,
592333011, 890277182, 1405670546, 1821201699, 1221993013, 2372936538,
3621926364, 2317574472, 2989901965, 594086105, 920161709, 1913183218,
1955451939, 3370017335, 2381652859, 3759290344, 287539784, 4063781006,
596216033, 953454125, 2445861858, 1687048227, 3370525241, 2389975962,
3898751476, 2552472520, 2721744014, 598526186, 990940859, 3054038258,
3230589731, 2297401915, 2399937472, 4057087060, 740542856, 2453456015,
600803571, 1026330438, 3599299906, 2626641955, 1224131133, 2407080924,
4171382276, 2552489160, 2453568655, 602687738, 1057001402, 4073258082,
1552929315, 1224606271, 2414486521, 4284628924, 19136264, 574630032,
604358913, 1082953756, 193528482, 3566219812, 3372450368, 2419991566,
71450884, 1310986953, 1648444560, 605456645, 1099468894, 445187682,
3901781028, 2299003457, 2425234465, 163725912, 2837719177, 1111669904,
607029515, 1125945537, 889785570, 2291194916, 3373175363, 2431984699,
269632492, 220479945, 574906513, 608831762, 1155567918, 1367938018,
1485917732, 1226158661, 2439455832, 148912, 2015649024, 1380318353,
610437400, 1181520275, 1787370034, 3767644452, 3374051910, 2446271601,
508708712, 4112808777, 1380447377, 612600096, 1216123415, 2349408882,
278018340, 2300899913, 2456102038, 661801400, 2300878857, 4064956562,
615106857, 1255969455, 2982751218, 1553125156, 3375231563, 2465146041,
804408284, 287621641, 843868307, 617318706, 1292145465, 3561567378,
2291357988, 3375805005, 2474321116, 959598108, 2770659081, 1917761683,
619694395, 1329370055, 4157160818, 3163809572, 3376378447, 2483496191,
1100107840, 723847305, 4065383572, 621955395, 1366594643, 474564210,
211057445, 3376984658, 2493195556, 1253200524, 3139775689, 844307604,
624363853, 1404343525, 1061769042, 1083508005, 2303832660, 2503025993,
1418876148, 1495618633, 2455078037, 626821462, 1443927419, 1699305682,
2492833061, 1230688854, 2512201069, 1561483036, 3844437705, 1381479573,
629098847, 1479841285, 2269733202, 3029738789, 1231245912, 2521113999,
1699895604, 1696962377, 1381610646, 631196007, 1513395845, 2806606162,
3096880421, 158036570, 2529699248, 1839356740, 3961895113, 4066105494,
633440623, 1548261131, 3360256402, 3432458533, 3379810908, 2538677713,
1987206512, 2066078793, 4066251927, 635849080, 1588893603, 4035541874,
1553452325, 3380482655, 2549425658, 2152882164, 388367241, 1918925976,
638355842, 1629526077, 399082802, 3633867558, 159912545, 2560042531,
2324849280, 3106286665, 1919090840, 640928140, 1669634263, 1028230834,
681115430, 3381744228, 2569610823, 2480039116, 1361465801, 1382378649,
643565974, 1712626043, 1716099314, 2828641062, 1234899558, 2579572334,
2639423276, 3911612361, 4066889881, 646072735, 1752472083, 2345247346,
4237965094, 161772136, 2589533844, 2794613124, 1999019017, 1382676634,
648235432, 1786026645, 2886314578, 412793638, 162337387, 2598839991,
2943511484, 220643465, 845963419, 650873266, 1829018425, 3574183058,
2828754726, 621, 2608136192, 3092409844, 2603017225, 40802459, 0,
1860475825, 4077501458, 2291914534, 163500655, 2617452286, 3241308204,
690423689, 4067479708, 655526339, 1903467605, 470402642, 412908327,
164172402, 2628200231, 3413275324, 3441897609, 846422172, 658213326,
1946459385, 1158271122, 2828869415, 628, 2637496320, 3562173684,
1529304073, 41261213, 0, 1977916785, 1661589522, 2292029223, 165335670,
10094, 161548, 2585280, 41375744, 662192128, 2010160620, 2177490882,
1956516391, 3387064952, 2654873484, 3840047384, 1680315977, 2725887134,
664881639, 2053152400, 2852776450, 3768496167, 166462074, 2664441778,
3993140064, 4029135369, 41672862, 0, 2083299072, 3372872034, 10433063,
167043709, 2674534359, 4160912852, 2619859849, 2189338783, 670140923,
2138873812, 4262067874, 1352664615, 167912064, 2688428044, 88244516,
1881675914, 3263297696, 673614344, 2194448552, 856296418, 2694896168,
168780419, 2702321729, 310543476, 1143491978, 42289313, 677087766,
2249236860, 1707743426, 10592040, 2317000704, 2713528428, 483559188,
3710416202, 2189923489, 679135774, 2277810670, 2156535666, 10619432,
1243697152, 2720540807, 595757248, 1210617866, 1653162146, 680987173,
2309530210, 2672437026, 40, 170426368, 2728077476, 716343948, 2665674,
311094272, 682740268, 2337579725, 3121229266, 3970102056, 3392156299,
2736138434, 845319288, 908643210, 1116534947, 684886580, 0, 3590993104,
10706984, 3392581632, 2742954204, 954371608, 2653480330, 2458818723,
2618, 2394989484, 3993647938, 10730536, 171721359, 2748066034,
1027772224, 3727226378, 2727317667, 687557182, 2412291056, 4270473058,
144965160, 1245729424, 2752325890, 1100124236, 657000458, 311472292,
688769603, 2432476221, 285885474, 816072745, 172294801, 2757241109,
1174573424, 1747523850, 579975332, 689801799, 2449777788, 579487874,
1151634729, 2320061074, 2761959718, 1253216904, 3072929034, 3532844196,
690997835, 2467603649, 860507314, 1420087593, 3394093715, 2766612792,
1326617520, 4213783946, 848559268, 692161104, 2486740234, 1183469906,
2292522537, 3394400916, 2771331402, 1402115280, 1093226314, 1922372773,
693307988, 2505352529, 1464489362, 10838313, 1247170560, 2775394650,
1469224396, 2234081226, 848703653, 694553177, 2525275549, 2, 2829428480,
173724310, 2779982188, 1536333528, 3240718154, 2996246693, 695470684,
2540479959, 2018139618, 2628117545, 1247715991, 2783979899, 1600296908,
4264132234, 2191002789, 2656, 2555160077, 2278187410, 3030787625,
3395502744, 2789288334, 1693620512, 1563006346, 166, 0, 2577180260,
2605344418, 3567677993, 3395781273, 2793286046, 1749195268, 2351538762,
580533414, 698698345, 2591336088, 2831837698, 2762384937, 1248510618,
2796825004, 1807915740, 3307843658, 2996510886, 699632236, 0, 0, 0, 0, 0,
0, 0, 0, 0, 2606278353, 3096079794, 3165055529, 175063707, 2801543614,
1887607812, 338281418, 4070336679, 701041265, 2629871401, 3465179986,
547831593, 2322920093, 2807704021, 1985125756, 1898568330, 312337575,
702630520, 42889, 0, 0, 0, 0, 0, 0, 0, 0, 2655299469, 3880417666,
2561122601, 2323292830, 2813471211, 2072157904, 3223973642, 2728334503,
703826556, 2674173910, 4161437138, 2762466089, 1249829535, 2817993212,
2147655660, 136970570, 44052648, 704973441, 2690951190, 134906306,
2628264490, 1250075296, 2821859851, 2211619036, 1126830090, 3265338536,
705940100, 2706679890, 390759826, 2426954026, 1250321057, 2825660954,
2268242364, 2066357770, 1386348712, 706906760, 2723457167, 663390626,
2695406378, 176874146, 2830707245, 2353177336, 3408540170, 44251304,
708119181, 2743380186, 1003130498, 4104713770, 3398451875, 2836539970,
2450695272, 808077898, 4070890665, 710003347, 2772740428, 1456117090,
2494128170, 3398869669, 2842962523, 2549261796, 2334810442, 2191934633,
711461529, 2796595622, 1846188834, 279559722, 178037415, 2849385076,
2654119792, 4046092938, 44556457, 713181856, 2825693712, 2320146978,
3836359210, 3399754408, 2857511570, 2787289448, 2791754, 0, 0,
2846403176, 2613749458, 3567940138, 178750121, 2860526239, 2829232660,
2452267914, 2729072810, 715639465, 2863180453, 2907351810, 4239047210,
2326549162, 2865769138, 2913119064, 3811227530, 3534463146, 716999342,
2885462775, 3284840562, 2024478506, 1253204652, 2872322763, 3025317100,
1395315466, 313354411, 718949046, 2917182321, 3788158962, 1353420586,
1253687982, 2879793896, 3138563760, 3190484426, 2729383083, 720636604,
2942348245, 4157259202, 2628510506, 180269743, 2884971260, 3222450156,
153813322, 313537708, 721799873, 2961484829, 176865890, 3433836331,
2328064688, 2889755406, 3293753604, 1412109066, 2997977260, 723258054,
2986388601, 600492146, 1689031467, 1254757042, 2896833321, 3411194556,
3240832714, 3266519212, 724830924, 3009457365, 931843490, 2829902379,
181330611, 2901551932, 3487740888, 153829578, 2729725101, 726125265,
3030166819, 1267389106, 3501011243, 181633716, 2906663759, 3565335824,
1328239306, 1656048813, 727059157, 3044322651, 1498076690, 3031263019,
1255604917, 2910399325, 3623007732, 2200657994, 2729842861, 727943896,
3059264914, 1745541538, 2695734827, 182100662, 2913872747, 3677533892,
3106631114, 313980077, 728877788, 3074207179, 1976229170, 2225986347,
3403567799, 2918787963, 3761420276, 237732490, 1387808942, 730237665,
3096489502, 2366300802, 78527787, 3403961017, 2924424082, 3846355272,
1529583050, 1387887790, 731532006, 3116674669, 2655708994, 279871019,
3404243642, 2928946083, 3930241648, 2888542730, 851097774, 732809963,
3138170555, 3029003442, 2293160235, 1257157307, 2935434172, 4034051068,
187417162, 1924940975, 734497521, 3165433637, 3444241170, 11483435,
2331275965, 2941594579, 4136811900, 2032917578, 4072533167, 736152311,
3191123848, 3880450386, 2360320043, 1257923262, 2947296234, 4216504004,
3207327370, 1388251311, 737282812, 3208163275, 4115332386, 1823463467,
184410815, 2950835192, 4267884432, 4130077578, 46133423, 738298624,
3227037712, 143327682, 3434097196, 3406033600, 2957454352, 83018020,
1395397707, 1925272752, 739724037, 3248009312, 470484674, 3769660460,
3406279361, 2961386527, 149078548, 2620138955, 1925350576, 741034762,
3268980915, 789253010, 78692140, 3406586563, 2966432818, 230867800,
3962321163, 2193868976, 742361871, 3292049668, 1217073538, 3635489836,
1259602628, 2974952530, 373474668, 2016172811, 851840177, 744852249,
3330847132, 1812667010, 1018281772, 3407696583, 2984389750, 521324448,
103579147, 2731037874, 747113249, 3366761000, 2349540066, 3635557164,
2334360264, 2990419086, 608356612, 1244434891, 1120484530, 748047141,
3381441118, 2584421986, 2964482604, 187105993, 2994220189, 673368568,
2251071755, 46804146, 749030185, 3397169818, 2844469826, 3367151660,
1261134538, 2999332015, 752012064, 3643585675, 4073419954, 750308141,
3416568549, 3159043794, 3568497452, 2335142603, 3003591871, 831704128,
724355211, 3536638131, 751930163, 3445142350, 3658167794, 3904074028,
2335711949, 3012766946, 978505328, 3089951691, 2999912627, 754273084,
3483415518, 4274732834, 951321900, 1262584528, 3022728456, 1137889488,
1328353675, 584147124, 756730694, 3522475124, 604719218, 2293537069,
1263186642, 3032427821, 1293079328, 3794613835, 584295604, 759089999,
3560748294, 1221284242, 3300207149, 1263764180, 3041537360, 1438831948,
1747802315, 1926612149, 761170775, 3591419265, 1670076562, 1354076461,
3411657430, 3047435623, 1525864092, 3157093643, 584514741, 762399580,
3611080138, 1967873314, 2159402285, 2338222807, 3052547451, 1605556184,
86867979, 4074252470, 763693920, 3631789593, 2328584786, 3837145645,
2338583256, 3058511249, 1707268436, 1764595851, 2195309750, 765397863,
3661149826, 2810931618, 2562105901, 191537882, 3065523629, 1814223604,
3459101195, 2732282038, 767101805, 3688412910, 3272306706, 2092373037,
2339545820, 3074239948, 1963121952, 1647171083, 4074614967, 769428342,
3723016053, 3775625186, 1219988269, 1266262750, 3081055720, 2060639908,
3006131275, 3000949943, 770706299, 3744511941, 4119559474, 2092424493,
1266553567, 3085512185, 2135089080, 3014283, 4074772664, 772148096,
3767842849, 181109362, 3837276718, 3414426336, 3092131345, 2237849924,
1596856075, 2464256184, 773557126, 3789338739, 558598114, 1287162926,
3414782690, 3097439782, 2324882060, 3022924747, 48425144, 774998924,
3813718220, 948669874, 3233343790, 193946339, 3104124479, 2432885796,
405685515, 1122269369, 776637330, 3838884144, 1321964418, 213466926,
194290405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3847272785,
1460376962, 2696503854, 2341921509, 3111988829, 2559763972, 11, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 3863263630, 1707841858, 1958320686, 3415868134,
3114675816, 2597512868, 3039718475, 3538347193, 779111323, 3877943749,
1951112402, 1622791470, 2342367975, 3118542455, 2658330512, 3979246219,
1122484409, 780012447, 3892361724, 2181800002, 1085934638, 195117800,
3122409094, 2726488200, 892242827, 854126778, 781355940, 3915430481,
2576066034, 3501878574, 2343023337, 3129552544, 2842880576, 2771298187,
48933050, 783125419, 3942955708, 3008081010, 1622856494, 195945195,
3135844025, 2941447100, 3063435, 3001817275, 784616368, 3966810903,
3389764130, 3501927982, 3417547500, 3141873359, 3037916460, 1546573195,
2196605115, 786123702, 3991190387, 3775641570, 1018923566, 3417920238,
3147837158, 3133337240, 3073305675, 854521019, 787631036, 4015045583,
4161519010, 2897995310, 3418297071, 3153932029, 3229806600, 321848203,
4075840700, 789121985, 4039162922, 248234834, 414990639, 2344927985,
3159895828, 3326275960, 1848580619, 2733756604, 790629319, 4063280262,
638306594, 2428280367, 197821170, 3165663019, 3414356688, 3224317707,
2196967612, 791890892, 4083203283, 948686290, 3233605423, 2345636595,
3171626816, 3520263248, 791628171, 3807697085, 793873363, 4115709261,
1493947842, 3367856943, 2346164981, 3179884384, 3649238592, 2804901899,
1660336317, 795855835, 4148215240, 2022432146, 3233671471, 1272939255,
3188338560, 3786602568, 724535563, 3002648766, 798034915, 4183342669,
2584471026, 3636358959, 199750393, 3197185954, 3929209448, 3006245643,
855304382, 800263148, 4219256533, 3163287186, 415169583, 2347827964,
3206819782, 4084399288, 1194315787, 1929198783, 802671605, 4256218983,
3733714706, 616530479, 2348360446, 3215011814, 4213374632, 3257921099,
318711999, 804686845, 4288987106, 4270587682, 750780719, 3422634752,
3223662598, 55771320, 1211109324, 2197896384, 806898693, 30195818,
575408099, 1421905968, 3423183618, 3231985703, 182649508, 3090164940,
2198012096, 808717324, 57721048, 973868579, 3368087088, 3423572739,
3238408255, 286458920, 506480076, 2198112449, 810257426, 81838388,
1338774451, 616645424, 202699525, 3243847765, 378733944, 2083544140,
3271957697, 811928600, 109625759, 1795955283, 3905008688, 3424383750,
3251646577, 504563556, 3912268108, 4077367489, 813485086, 132694519,
2156666835, 885131056, 203502344, 3256692870, 580061324, 858819468,
3540574402, 814795811, 154714697, 2521572659, 2428657456, 203854601,
3262066843, 664996320, 2133892876, 2466909378, 815975464, 173326990,
2831952323, 3435309616, 1277952778, 3268030641, 758319928, 3778066060,
319530178, 817777711, 202687233, 3280744595, 1623397168, 204591884,
3274059976, 861080752, 1177603980, 1930246339, 819465269, 229426020,
3729536803, 549683248, 205062926, 3282055398, 981667472, 2972773132,
3272530115, 821070907, 254854086, 4094442723, 1355010608, 2352837391,
3285987574, 1040387960, 3895523596, 3272583363, 821808190, 265864178,
9191363, 751043633, 205583120, 3289985285, 1112739948, 825297612,
3541097668, 823184451, 288932937, 353125651, 1690588977, 3427119889,
3294834967, 1188237728, 1966152844, 3809600708, 824200263, 304661637,
621562099, 2026150193, 206189330, 3299684650, 1265832648, 3241225996,
3541245124, 825543756, 325108949, 927747491, 2227494705, 1280193299,
3303485753, 1320358820, 4012981068, 856933572, 826100815, 333759735,
1061965747, 281345841, 2354090772, 3306369347, 1372787808, 657541260,
320123077, 827165779, 352372027, 1384928339, 1355108145, 2354418453,
3311612247, 1454577052, 1966169036, 51768517, 828460120, 373343626,
1724668259, 2898633521, 3428528918, 3317903726, 1563629356, 3778115276,
3004668101, 830213214, 400344563, 2144100275, 482738993, 2355147544,
3323539844, 1653807236, 858885004, 320399558, 831655012, 424199759,
2525783379, 2160483377, 3429258009, 3328782745, 1725110700, 1966185612,
3273252038, 832621671, 439666314, 2777442579, 2361826097, 3429536538,
3334156715, 1822628616, 3560027084, 3541788870, 834145389, 463259365,
3142348467, 3301371697, 1282355995, 3338088893, 1877154800, 36814860,
2199654599, 834833520, 474531597, 3339481459, 2630295857, 3430077212,
3341955531, 1945312484, 1278333260, 1125990599, 836078709, 493930328,
3654055459, 3032967473, 2356634397, 3347460575, 2032344624, 2637293004,
1394510023, 837602426, 518834102, 4052515843, 1288163633, 3430781727,
3353555447, 2128813992, 4063362060, 3273644231, 838880383, 539281415,
72122611, 1690834738, 209826592, 3357684232, 2192777368, 842140492,
3005275336, 839945347, 558155852, 374113635, 2227723826, 3431359265,
3362730522, 2268275140, 2066881996, 857865416, 841075848, 573884553,
617384195, 1757976114, 3431588642, 3366400552, 2333287088, 3140627788,
1394804936, 842189964, 592496848, 936152467, 2965955890, 1284449059,
3372233278, 2425562120, 338838348, 4079249609, 843664529, 616089897,
1305252627, 281623858, 3432301349, 3378262612, 2530420120, 1999789260,
1126563017, 845368472, 642566544, 1775016387, 3234442802, 3432735526,
3384619630, 2621646592, 3576853260, 3542573257, 846777501, 667208170,
2144116611, 751437106, 1285624616, 3390976646, 2723358852, 858950156,
1932063946, 848563364, 697616987, 2634852067, 13270066, 212370218,
3398709923, 2854431340, 3023219404, 2200631498, 850693292, 731171548,
3188502243, 751501874, 3434169132, 3408016070, 3003329700, 1043516876,
3274511563, 852806836, 763677531, 3679237747, 3838538546, 1287123757,
3414897377, 3112382020, 2821908492, 2200879307, 854592699, 792775624,
4161584515, 3100371250, 1287590703, 3422106365, 3223531516, 221446604,
1664108748, 856083649, 815844385, 210551475, 4107024691, 3435422512,
3428070163, 3321049448, 1798510860, 2469513420, 857738439, 842058888,
642566467, 2429328691, 2362082098, 3434492715, 3424858860, 3409129868,
1127431372, 859180237, 864603357, 994889395, 3570200883, 3436167987,
3439932224, 3513988164, 590563212, 3006568653, 860622034, 888458549,
1376572435, 1489850163, 215331637, 3446027096, 3607311788, 2066963852,
590739661, 862031064, 912051597, 1766644163, 3503140403, 3436946230,
3452187503, 3705878308, 3660805388, 2738325709, 863767774, 938266102,
2177687555, 1355681331, 2363585336, 3458085766, 3798153352, 825461452,
3812154574, 865160419, 960024138, 2509038883, 2026789427, 2363892537,
3463066521, 3877845432, 2050203020, 591001806, 866225384, 976801418,
2777475363, 2026805811, 2364154682, 3467260841, 3944954552, 3123948940,
591067342, 867273964, 993578698, 3045911843, 2026822195, 2364416827,
3471455161, 4012063672, 4197694860, 591132878, 868322544, 1010355978,
3314348323, 2026838579, 2364678972, 3475649481, 4079172792, 976473484,
591198415, 869371124, 1027133258, 3582784803, 2026854963, 2364941117,
3479843801, 4146281912, 2050219404, 591263951, 870419704, 1043910538,
3851221283, 2026871347, 2365203262, 3484038121, 4213391032, 3123965324,
591329487, 871468284, 1060687818, 4119657763, 2026887731, 2365465407,
3488232441, 4280500152, 4197711244, 591395023, 872516864, 1077465098,
93126947, 2026904116, 2365727552, 3492426761, 52641976, 976489869,
591460560, 873565444, 1094242378, 361563427, 2026920500, 2365989697,
3496621081, 119751096, 2050235789, 591526096, 874614024, 1111019658,
629999907, 2026936884, 2366251842, 3500815401, 186860216, 3123981709,
591591632, 875662604, 1127796938, 898436387, 2026953268, 2366513987,
3505009721, 253969336, 4197727629, 591657168, 876711184, 1144574218,
1166872867, 2026969652, 2366776132, 3509204041, 321078456, 976506253,
591722705, 877759764, 1161351498, 1435309347, 2026986036, 2367038277,
3513398361, 388187576, 2050252173, 591788241, 878808344, 1178128778,
1703745827, 2027002420, 2367300422, 3517592681, 455296696, 3123998093,
591853777, 879856924, 1194906058, 1972182307, 2027018804, 2367562567,
3521787001, 522405816, 4197744013, 591919313, 880905504, 1211683338,
2240618787, 2027035188, 2367824712, 3525981321, 589514936, 976522637,
591984850, 881954084, 1229247050, 2546804115, 2966578484, 1294414665,
3531551902, 684935704, 2536809613, 323645650, 883543338, 1255461549,
2957847491, 953337396, 2368566091, 3538433207, 795036620, 4248092237,
1934361810, 885214512, 1283773207, 3435999907, 4241701172, 1295278924,
3545642195, 917720448, 2134170957, 1129194707, 887606585, 1322308521,
4060953571, 1825820980, 222188367, 3556455676, 1083396104, 389350413,
3008398548, 890015042, 1359008825, 328025203, 1892963637, 2370179921,
3563861273, 1206079952, 2385846669, 3813824724, 891915593, 1389941934,
831343587, 1557450293, 223216467, 3572512058, 1344492516, 339034829,
2203351253, 894192978, 1427166522, 1460491491, 3973410101, 2371404629,
3584570726, 1547917016, 3644158861, 3814165717, 897568094, 1482741264,
2303549923, 3436588085, 3445859160, 3594859919, 1693669672, 1513461069,
1129938134, 899304806, 1507120750, 2697815987, 886474805, 1298731866,
3600627109, 1792236180, 3157634381, 56298710, 901205357, 1541199594,
3251466227, 1289162037, 1299293020, 3609736648, 1932745916, 1077267981,
56434903, 903204213, 1569511259, 3683481267, 3705106997, 2373444445,
3616421345, 2070109832, 3728077453, 1667221719, 906399104, 1624299566,
286098355, 1356352566, 1300603745, 3630183959, 2256757140, 2201362189,
4083295448, 908381576, 1650776214, 701336003, 3973624886, 1301029730,
3637065265, 2366858032, 3677762957, 2741208280, 909921678, 1677777144,
1133351027, 1557729590, 227660644, 3642963528, 2463327392, 959859917,
593818841, 911363476, 1699535181, 1456313715, 3168363318, 3449254757,
3648861790, 2566088216, 2553701709, 1130789081, 912936346, 1724701102,
1867357059, 282706486, 3449594727, 3654760051, 2652071788, 3895884045,
1667742937, 914230687, 1744886266, 2198708323, 2027558198, 228741992,
3660723851, 2749589732, 1211535565, 1130969306, 915819941, 1771100768,
2639111811, 953844278, 1302950762, 3668194983, 2867030692, 3090590925,
4083872986, 917605803, 1800985294, 3108875747, 3436899638, 2377089899,
3674486463, 2970840104, 523683277, 4083981531, 919457202, 1830083391,
3574445235, 2228967478, 3451298669, 3682285276, 3092475388, 2469847821,
3547225307, 921259449, 1858132907, 4006460259, 484163638, 3451708271,
3688380148, 3196284800, 4231462029, 2742029531, 922979776, 1886968850,
181256771, 3571200055, 3452158832, 3695785744, 3314774332, 1748441101,
2473705692, 924847559, 1916066950, 651020595, 2900140855, 1305162610,
3703453486, 3442701088, 3812046477, 3816006876, 926731726, 1947000060,
1137561747, 1893537591, 2379363188, 3711383370, 3563287804, 1412911949,
863333597, 928697814, 1980554615, 1716377827, 3437078071, 3453719414,
3720886127, 3716380484, 3895949261, 2742535389, 931188191, 2018303499,
2311971283, 215889207, 3454317433, 3730782100, 3878910380, 2235014861,
1400519902, 933678569, 2058673828, 2915953443, 350142263, 3454841723,
3738908596, 4015225760, 4248288845, 3548124382, 935661040, 2089869084,
3448632019, 148847671, 234132349, 3747035092, 4134763896, 1933040653,
3011369183, 937430519, 2117132166, 3868064051, 3101664311, 234574718,
3754178543, 4249059120, 3828872973, 864006367, 939429375, 2148065278,
76415139, 1893734200, 2382500736, 3760994313, 68387048, 1278743054,
58800352, 940920325, 2172444762, 453903939, 3907023672, 2382898049,
3767941155, 177439352, 2973248334, 4085439712, 942870027, 2204688595,
969805331, 3705728568, 2383414147, 3775674433, 298026056, 775440782,
3280264417, 944754195, 2233786692, 1426986211, 2028034616, 1310069637,
3781769305, 389252536, 2134400590, 1938164961, 946048536, 2255544725,
1787697715, 3907105080, 2384212870, 3788585074, 504596324, 3929569614,
1401404641, 947834399, 2282021374, 2177769539, 1155664952, 3458294664,
3793762438, 580094100, 825789262, 3012090082, 948948515, 2300895811,
2496537811, 2095208504, 2384884617, 3799398555, 676563444, 2503517070,
2743762146, 950799914, 2331828921, 3025022083, 1961023288, 1311642507,
3807262905, 803441628, 238600526, 3817626851, 952700465, 2361451307,
3457037123, 149110072, 3459543949, 3814144211, 904105320, 1899551182,
1133373667, 954469944, 2391335838, 3939383923, 3571691576, 238789518,
3821418736, 1027837748, 3778606734, 3817839843, 956157502, 2417550336,
80625875, 57, 2386665472, 3827972360, 1136890060, 1329140046, 596730084,
958008902, 2446910573, 583944227, 2028246841, 1313498002, 3837081899,
1275302632, 3409523022, 3281210596, 960040525, 2479154413, 1045319507,
484769081, 2147484564, 3843111234, 1380160616, 926501710, 1133835493,
961711700, 2507203921, 1552832115, 484801849, 3461944214, 3852810598,
1532204724, 3308875598, 1402418405, 964120157, 2544690661, 2110676755,
216399161, 3462435736, 3860150659, 1655937156, 926518286, 865661158,
965840484, 2570643018, 2513331507, 2095471673, 1315341209, 3866769820,
1753455116, 2486805390, 1671065830, 967528042, 2599216822, 2957929443,
753321529, 1315767195, 3872864693, 1840487268, 3745101646, 1671136486,
968576622, 2614683380, 3197005699, 4175887417, 2389705627, 3875813824,
1893964836, 473548110, 4087125223, 969805426, 2635917122, 3549328579,
1894208825, 2390111133, 3882957274, 2012454368, 2235162766, 3013484775,
971247224, 2657675157, 3910040051, 3102189881, 242955166, 3887938030,
2087952136, 3510235982, 3013564647, 972557949, 2678646757, 4245585651,
4175952185, 243282847, 3893180930, 2171838536, 557451022, 3013646568,
973868674, 2699618357, 290358259, 1088965178, 2391118753, 3899013655,
2271453620, 2151292622, 3013743848, 3720, 2723997842, 676235715,
2900928058, 1317733282, 3904518701, 2353242876, 3459920526, 2208517352,
976703117, 2744969442, 1011781315, 3974690362, 1318060963, 3909761601,
2437129276, 507135566, 2208599273, 978013842, 2765941042, 1351521219,
887703354, 3465896869, 3915594326, 2536744360, 2100977166, 2208696553,
3736, 2791106959, 1779341811, 3706302266, 2392576934, 3922606705,
2648942424, 3996809614, 3014121705, 981503647, 2822040071, 2265882963,
2901025594, 3466793896, 3929946765, 2767431960, 1597675086, 3014236394,
983387814, 2853235327, 2744035475, 1625985850, 2393494442, 3936828072,
2870192816, 3141184910, 1403715818, 984780460, 2874206927, 3079581075,
2699748154, 2393822123, 3942070972, 2954079216, 188400014, 1403797739,
986074801, 2894654237, 3406738035, 3639292218, 246657964, 3947182800,
3035868456, 1497027854, 867006699, 987369142, 2915625837, 3750672243,
820741434, 2394502062, 3953212134, 3136532128, 3174755726, 3014594795,
989105852, 2943937497, 4203658803, 3773559098, 2394944431, 3960290049,
3249778768, 691734670, 1940963564, 990858947, 2971987011, 361678067,
2431409467, 2395386801, 3967367964, 3363025408, 2503680910, 1404204268,
992693962, 3002395829, 860802131, 1693242683, 1322120115, 3974708025,
3478369212, 37437134, 62137581, 994430673, 3028872476, 1271845507, 59, 0,
0, 3554915544, 1346064846, 3820314861, 995675861, 3048533352, 1573836579,
82672699, 3470287798, 3985652578, 3651384916, 2755356622, 3820397805,
996986586, 3069504952, 1909382179, 1156435003, 3470615479, 3990895478,
3735271316, 4097539022, 3820479725, 998297311, 3090476552, 2244927779,
2230197307, 2147484600, 15241, 0, 0, 62434304, 0, 3100700208, 2408506259,
552485691, 2397377465, 3998956437, 3864246656, 1866177166, 2478428398,
1000345319, 3123244677, 2794383667, 2431557435, 250254266, 4004854700,
3960716016, 3443241358, 2478526702, 1001885421, 3148410595, 3180261139,
15661883, 2398114748, 4010884034, 4057185376, 658229390, 331133167,
1003327219, 3170955067, 3532584019, 1492078395, 250983357, 15320, 0, 0,
0, 1004093440, 61292, 0, 0, 0, 0, 0, 0, 0, 1004290048, 3186159478,
3767465955, 686786107, 2398675902, 4019600356, 4192452200, 2822498574,
62828783, 1005391611, 3203461048, 4044291075, 821020731, 251462591, 0, 0,
0, 0, 0, 3210801108, 4161732035, 2700076091, 251577279, 4025483264,
4286824400, 3931918, 2210402544, 3840, 3225481228, 101646659, 2163219516,
251806656, 4029153280, 50577584, 943459599, 62976240, 3844, 3240161348,
336528579, 1626362940, 252036033, 4032823296, 109298064, 1882987279,
2210517232, 3847, 3254841468, 571410499, 1089506364, 252265410,
4036493312, 168018544, 2822514959, 63090928, 3851, 3269783732, 818875363,
888195132, 2400003011, 4040899637, 240370560, 3996924495, 2210647280,
1010781967, 3289968897, 1141838003, 1760630076, 3474060228, 4045945928,
323208372, 1044139599, 3016036593, 1012174612, 3314086235, 1540298419,
3841028924, 1326969797, 4052565089, 427017804, 2671535823, 3016135921,
1013698330, 3335844273, 1867455411, 351387964, 3474756551, 4057218163,
499369824, 3879499855, 331854065, 1014861599, 3356029435, 2207195283,
1626477372, 2401358792, 4062657672, 586401964, 1060933071, 2479428850,
1016303396, 3377787473, 2546935235, 2633130812, 254190537, 4067835036,
670288356, 2268897487, 600454386, 1017499433, 3396399769, 2844731907,
3237129276, 2401981386, 4072750255, 751029020, 3560748047, 3016450290,
1018695469, 3417895654, 995171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3422614268, 3259969603, 1290997308,
3476124620, 4078910662, 848546960, 826067791, 2479674611, 1020235571,
3441488707, 3561960659, 1760777532, 255194061, 4083760345, 249268,
1966922816, 3553486067, 1021333303, 3458528133, 3838785763, 1895012156,
2402948046, 4088282346, 996396744, 3241996111, 3016694003, 1022611260,
3479499731, 4174331363, 3035883580, 1329533903, 4093197565, 1075040244,
188547471, 869285108, 1023807297, 3498636317, 177160803, 3505663805,
256091088, 4098112784, 1157878056, 1513952527, 1406238964, 1025150790,
3520132206, 521095043, 552895037, 2403914706, 4103486756, 1243861608,
2923244047, 2480066804, 1026527051, 3542414531, 886000851, 1827985213,
3478000595, 4109188409, 1335088076, 87900111, 332672245, 1027985233,
3566007581, 1263489651, 61, 0, 0, 0, 0, 0, 0, 3570988339, 1334793123,
418726461, 257201109, 4115676499, 1434703184, 1597855503, 2211811573,
1029377878, 3587765616, 1603229603, 418742845, 3478705110, 4120329572,
1509152364, 2805819599, 4090932469, 1030541146, 3605853623, 1901026291,
888523069, 1331499991, 4124654965, 1578358644, 3913120079, 332903669,
1031622495, 3623155193, 2169462803, 1156975421, 3479266264, 4129242502,
1651759244, 792562383, 1943588086, 1032769379, 3641505343, 2463065203,
1291210557, 3479532505, 4133436822, 1718868364, 1866308303, 1943653622,
1033817959, 3658806913, 2739890323, 1425445181, 1332319194, 4137762215,
1792268952, 3040717903, 3554338038, 1034964843, 3676632773, 3025104083,
1693898045, 258855899, 4142415289, 1864620984, 4198350223, 601618678,
1036078960, 3694458633, 3310317843, 1962350909, 1332876252, 4146675145,
1930681524, 960351567, 333247735, 1037127540, 3711235913, 3578754323,
1962367293, 1333138397, 4150869465, 1997790644, 2034097487, 333313271,
1038176120, 3728537483, 3855579443, 2096601917, 3480892382, 4155194857,
2066996924, 3141397967, 870251767, 1039257468, 3745314763, 4124015923,
2096618301, 3481154527, 4159389177, 2134106044, 4282252751, 1944063223,
1040371584, 3763140623, 122651027, 2499289406, 1333957600, 4163976715,
2207506644, 1094586191, 2481001720, 1041452932, 3780966483, 399476147,
2633524030, 3481711585, 4168302107, 2276712924, 2201886671, 3017940216,
1042534280, 3797743763, 667912627, 2633540414, 994, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 3805345963, 835685315, 1761136958, 2408465379,
4177083963, 2433999892, 4081487, 0, 0, 3835492644, 1271894691,
3841536574, 1335088100, 4182064720, 2496914724, 1463702671, 4091899129,
1046024085, 3854104937, 1569691443, 4244207934, 2409124837, 4186914402,
2580801112, 2772330575, 333882617, 1047383963, 3876387262, 1934597251,
1559876158, 1335739367, 4192616056, 2667833260, 4198399311, 1139277049,
1048743840, 3897358863, 2299502995, 3975818558, 262423528, 4199693970,
2783177056, 1765710095, 334082298, 1050496935, 3924557824, 2702157827,
888834366, 2410226666, 4204478117, 2856577660, 2889787919, 1676330234,
1051643819, 3944020672, 3016731811, 1694159934, 2410533867, 4209458872,
2937318320, 4215192975, 1407975674, 1052938160, 3964467982, 3343888771,
2700813118, 2410861548, 4214701772, 3020156140, 1228853519, 871184635,
1054216117, 3984915292, 3666851411, 3506138942, 2411172845, 4219682527,
3100896800, 2537481359, 334393595, 1055477690, 4005362602, 3998202691,
150715966, 1337754607, 4224925427, 3183734624, 3862886479, 66039035,
1056804799, 4026596347, 42975315, 1358696255, 264344560, 0, 3262378108,
910101455, 602993916, 1058164676, 4048616527, 382715267, 2298240831,
1338401777, 4235018010, 3343118784, 2050956751, 603060476, 1059164104,
4063820938, 630180131, 2029820479, 1338643442, 4238950185, 3407082164,
3107925327, 334689532, 1060196300, 4080073928, 890227971, 1962727743,
1338905587, 4243144505, 3473142704, 4148116687, 4092849404, 1061212111,
4096326918, 1146081491, 1694307647, 1339151348, 4247076680, 3537106084,
893340751, 3556041981, 1062211539, 4112579908, 1410323651, 1560106047,
265667573, 4251271000, 3603166628, 1950309391, 3287671037, 1063276503,
4129619333, 1682954451, 1694340415, 2413417462, 4255530856, 3672372904,
3057609871, 334951677, 1064423388, 0, 0, 805306368, 2413630455,
4259004277, 3730044800, 4013914767, 2214055165, 1065308127, 4162649602,
2219827395, 1828591167, 266470392, 4264116105, 3811834040, 994020815,
1140391166, 1066553316, 4182572622, 2538595715, 2633916991, 1340523513,
4269096860, 3890477540, 2285871311, 603600126, 1067864041, 4202168320,
2844781091, 3103697471, 2414552058, 4273618861, 3961780984, 3393171855,
603666686, 1068863469, 4219010778, 3113217571, 3103713855, 2414814203,
4277813181, 4028890104, 171950479, 603732223, 1069912049, 4235525913,
3373265411, 2902403135, 3488805884, 4281745356, 4091804904, 1178587279,
3556582655, 1070878708, 4251254613, 3629118931, 2633983039, 3489051645,
4285743067, 4155768284, 2202001359, 3019775231, 1071894520, 4267507603,
3889166771, 2633999167, 3489313790, 4289937387, 4222877404, 3275747279,
3019840767, 1072943100, 4284284883, 4157603251, 2634015551, 3489575935,
4294131707, 4289986524, 54525903, 3019906304, 4096, 5570575, 135266740,
2835359040, 2416116736, 3883021, 74711301, 1396708176, 4093732096,
1075400709, 29425771, 512755540, 285245248, 2416481282, 9650211,
164889185, 2805999760, 335720704, 1076727819, 50397371, 848301140,
1426116416, 1343075331, 15155256, 252969905, 4232068496, 1677985024,
1078120464, 72679696, 1204818340, 2768315456, 3490898948, 20463692,
337904885, 1279283664, 1678066945, 1079431189, 93651296, 1540363940,
3842077760, 3491226629, 25706592, 421791285, 2621466064, 1678148865,
1080741914, 114622896, 1875909540, 64, 0, 0, 0, 0, 0, 0, 119865796,
1959795940, 1895946048, 1344144391, 32129145, 524552125, 4248862288,
1946683649, 1082331168, 139788817, 2270175636, 2499944768, 1344443400,
36782219, 596904149, 1094750032, 2483623170, 1083412516, 157352531,
2559583700, 2969724736, 2418480137, 41631901, 676596225, 2403377808,
3020574978, 4137, 178061987, 2882546356, 3707941696, 3492525066,
46350511, 751045405, 3594564688, 67857666, 1085886510, 196936426,
3192926020, 218299968, 1345356812, 51527875, 834931805, 641779792,
67939587, 1087197235, 217908026, 3528471620, 1292062272, 1345684493,
56770775, 927206829, 2252398416, 2215525635, 1088966713, 246743978,
3989846820, 84130880, 3493618703, 63979762, 1034162005, 3812685712,
3557794051, 1090293822, 267191287, 13647860, 755238721, 3493917712,
68632836, 1106514029, 658573520, 4094733572, 1091375170, 284755001,
303055924, 1225018689, 272987153, 73482519, 1186206105, 1967201296,
873591044, 1092751432, 306513037, 642795860, 2231672129, 1347048466,
78463274, 1264849605, 3225497296, 2752713988, 1093914700, 325387476,
953175524, 3036997697, 3494847507, 83640637, 1348736005, 272712400,
2752795909, 1095225425, 346359076, 1288721124, 4110760001, 3495175188,
88883537, 1432622405, 1614894800, 2752877829, 1096536150, 367330676,
1624266724, 889555009, 2421756950, 94060901, 1515460225, 2940299920,
2484523269, 1097830491, 388302274, 1976589572, 2500189761, 3495871511,
100286844, 1619269637, 373392336, 3289933062, 1099419745, 412943908,
2337301156, 3439734849, 2422432792, 104743310, 1684281609, 1296142928,
1410942214, 1100370021, 427886172, 2584766020, 3104205633, 2422678553,
108675485, 1746147833, 2302779728, 337261830, 1101336681, 443614872,
2836425220, 2902894401, 2422928410, 112607660, 1810111209, 3326193808,
3826985222, 1102352492, 460392153, 3096473076, 2701583681, 2423174171,
116474299, 1869880273, 4248944272, 874250502, 1103204464, 472975113,
3297800436, 1627854145, 2423370780, 119620039, 1920212113, 759286416,
874299655, 1103990899, 485558073, 3499127796, 554124609, 2423567389,
122765779, 1970543953, 1564595856, 874348807, 1104777334, 498141033,
3700455156, 3775362369, 2423763997, 125911519, 2020875793, 2369905296,
874397959, 1105563769, 510723993, 3901782516, 2701632833, 2423960606,
129057259, 2071207633, 3175214736, 874447111, 1106350204, 523306953,
4103109876, 1627903297, 2424157215, 132202999, 2133073833, 37879440,
606087432, 1107726465, 547948578, 248546084, 889734210, 3498402849,
141050391, 2275680709, 2353144016, 3827455240, 1110036617, 585435312,
802196420, 285786690, 2425123875, 147669554, 2373198665, 3779212944,
4095975688, 1111330958, 603523321, 1091604484, 554239554, 2425402404,
152126019, 2440307793, 490882704, 1948551433, 1112182930, 616630573,
1301320500, 4043913538, 3499361316, 155599440, 2495882533, 1413632976,
2753912073, 1113018517, 631048546, 1548785348, 3976820290, 1352139813,
160121441, 2572428877, 2604819984, 338065673, 1114230938, 650709423,
1854970708, 17415490, 278672423, 164315762, 2637440825, 3645011344,
338131209, 1115230366, 666438121, 2106629940, 4043962690, 1352660007,
168313473, 2699307053, 323126288, 2485672202, 1116180641, 680593953,
2324734580, 3372887362, 279139368, 171655822, 2752784633, 1195544848,
3559467274, 1117048996, 696322648, 2618336900, 17463362, 279479338,
177750692, 2861836929, 3141708944, 3559592202, 1119195308, 731974367,
3197153044, 822805314, 2427540524, 187122375, 3012832449, 1262669968,
3559739659, 1121554613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 768150377,
3784357812, 1225493826, 2428073006, 195379943, 3137613485, 3124948304,
1680801035, 1123209404, 794102736, 4182818308, 3305892418, 1354720303,
201474815, 3236179997, 474154320, 3828389132, 1124913346, 821365816,
307283012, 1762415427, 281408561, 208225049, 3342086585, 2151882256,
3828489484, 1126486216, 847056026, 735103588, 4245469763, 1355580466,
215237427, 3462673269, 4030937808, 3560168716, 1128337615, 876416267,
1167118644, 2030901827, 2429690932, 220873545, 3542365369, 960712016,
339014925, 1129402580, 892669257, 1427166468, 1829591107, 3503682613,
224871256, 3606328749, 2000903376, 4097174797, 1130418391, 908922247,
1691408628, 1829607235, 3503944758, 229065576, 3673437869, 3074649296,
4097240333, 1131466971, 925699527, 1959845108, 1829623619, 3504206903,
233259896, 3740546989, 4148395216, 4097305869, 1132515551, 942476807,
2224087268, 1762530883, 2430723128, 237388680, 3806607529, 910396560,
3828934926, 1133547747, 958991942, 2492523748, 1762547267, 2430985273,
241583000, 3873716649, 1984142480, 3829000462, 1134596327, 975769222,
2760960228, 1762563651, 2431247418, 245777320, 3940825769, 3057888400,
3829065998, 1135644907, 992546502, 3029396708, 1762580035, 2431509563,
249971640, 4007934889, 4131634320, 3829131534, 1136693487, 1009323782,
3297833188, 1762596419, 2431771708, 254165960, 4075044009, 910412944,
3829197071, 1137742067, 1026101062, 3566269668, 1762612803, 2432033853,
258360280, 4142153129, 1984158864, 3829262607, 1138790647, 1042878342,
3834706148, 1762629187, 2432295998, 262554600, 4209262249, 3057904784,
3829328143, 1139839227, 1059655622, 4103142628, 1762645571, 2432558143,
266683384, 4275322789, 4114873424, 3560957199, 1140871423, 1076170757,
72417492, 1695552836, 1359074368, 270877704, 47464613, 893652049,
3561022736, 1141920003, 1092948037, 340853972, 1695569220, 1359336513,
275072024, 114573733, 1967397969, 3561088272, 1142968583, 1109725317,
609290452, 1695585604, 1359598658, 279266344, 181682853, 3041143889,
3561153808, 1144017163, 1126502597, 877726932, 1695601988, 1359860803,
283460664, 248791973, 4114889809, 3561219344, 1145065743, 1143279877,
1146163412, 1695618372, 1360122948, 287654984, 315901093, 893668433,
3561284881, 1146114323, 1160057157, 1414599892, 1695634756, 1360385093,
291849304, 383010213, 1967414353, 3561350417, 1147162903, 1176834437,
1683036372, 1628542020, 286901318, 295978088, 449070753, 3007605777,
3024542993, 1148178715, 1193087427, 1943084212, 1561449284, 3508384839,
300106871, 515131293, 4081351633, 3024608529, 1149227295, 1209864707,
2211520692, 1561465668, 3508646984, 304301191, 582240413, 860130257,
3024674066, 1150275875, 1226641987, 2479957172, 1561482052, 3508909129,
308495511, 649349533, 1933876177, 3024739602, 1151324455, 1243419267,
2748393652, 1561498436, 3509171274, 312689831, 716458653, 3007622097,
3024805138, 1152373035, 1260196547, 3016830132, 1561514820, 3509433419,
316884151, 783567773, 4081368017, 3024870674, 1153421615, 1276973827,
3285266612, 1561531204, 2435949644, 321012935, 849628313, 843369361,
2756499731, 1154453811, 1293488962, 3549508772, 1494438468, 2436211789,
325207255, 916737433, 1917115281, 2756565267, 1155502391, 1310266242,
3817945252, 1494454852, 2436473934, 329401575, 983846553, 2990861201,
2756630803, 1156550971, 1327043522, 4086381732, 1494471236, 2436736079,
333595895, 1050955673, 4064607121, 2756696339, 1157599551, 1343820802,
55656596, 1427378501, 1363252304, 337724679, 1117016213, 826608465,
2488325396, 1158631747, 1360335937, 324093076, 1427394885, 1363514449,
341918999, 1184125333, 1900354385, 2488390932, 1159680327, 1377113217,
592529556, 1427411269, 1363776594, 346113319, 1251234453, 2974100305,
2488456468, 1160728907, 1393890497, 860966036, 1427427653, 1364038739,
350307639, 1318343573, 4047846225, 2488522004, 1161777487, 1410667777,
1125208196, 1360334917, 290554964, 354436423, 1384404113, 809847569,
2220151061, 1162809683, 1427182912, 1393644676, 1360351301, 290817109,
358630743, 1451513233, 1883593489, 2220216597, 1163858263, 1443960192,
1662081156, 1360367685, 291079254, 362825063, 1518622353, 2957339409,
2220282133, 1164906843, 1460737472, 1930517636, 1360384069, 291341399,
367019383, 1585731473, 4031085329, 2220347669, 1165955423, 1477514752,
2198954116, 1360400453, 291603544, 371213703, 1652840593, 809863953,
2220413206, 1167004003, 1494292032, 2467390596, 1360416837, 291865689,
375408023, 1719949713, 1883609873, 2220478742, 1168052583, 1511069312,
2735827076, 1360433221, 292127834, 379602343, 1787058833, 2957355793,
2220544278, 1169101163, 1527846592, 3004263556, 1293340485, 3513611355,
383731126, 1853119373, 4014324433, 1952173334, 1170133359, 1544361727,
3268505716, 1293356869, 3513873500, 387925446, 1920228493, 793103057,
1952238871, 1171181939, 1561139007, 3536942196, 1293373253, 3514135645,
392119766, 1987337613, 1866848977, 1952304407, 1172230519, 1577916287,
3805378676, 1293389637, 3514397790, 396314086, 2054446733, 2940594897,
1952369943, 1173279099, 1594693567, 4073815156, 1293406021, 3514659935,
400508406, 2121555853, 4014340817, 1952435479, 1174327679, 1611470847,
47284340, 1293422406, 3514922080, 404702726, 2188664973, 793119441,
1952501016, 1175376259, 1628248127, 315720820, 1293438790, 3515184225,
408897046, 2255774093, 1866865361, 1952566552, 1176424839, 1645025407,
584157300, 1293455174, 3515446370, 413091366, 2322883213, 2940611281,
1952632088, 1177473419, 1661802687, 852593780, 1293471558, 3515708515,
417285686, 2389992333, 4014357201, 1952697624, 1178521999, 1678579967,
1121030260, 1293487942, 3515970660, 421480006, 2457101453, 776358545,
1684326681, 1179554195, 1695095102, 1381078116, 1159286086, 1368740965,
425543254, 2522113413, 1833327185, 1415955737, 1180586391, 1711610237,
1649514580, 1159302470, 1369003110, 429737574, 2589222533, 2907073105,
1416021273, 1181634971, 1728387517, 1917951060, 1159318854, 1369265255,
433931894, 2656331653, 3980819025, 1416086809, 1182683551, 1745164797,
2186387540, 1159335238, 1369527400, 438126214, 2723440773, 759597649,
1416152346, 1183732131, 1761942077, 2454824020, 1159351622, 1369789545,
442320534, 2790549893, 1833343569, 1416217882, 1184780711, 1778719357,
2723260500, 1159368006, 1370051690, 446514854, 2857659013, 2907089489,
1416283418, 1185829291, 1795496637, 2991696980, 1159384390, 1370313835,
450709174, 2924768133, 3980835409, 1416348954, 1186877871, 1812273917,
3260133460, 1159400774, 1370575980, 454903494, 2991877253, 759614033,
1416414491, 1187926451, 1829051197, 3528569940, 1159417158, 1370838125,
459097814, 3058986373, 1833359953, 1416480027, 1188975031, 1845828477,
3797006420, 1159433542, 1371100270, 463292134, 3126095493, 2907105873,
1416545563, 1190023611, 1862605757, 4065442900, 1159449926, 1371362415,
467486454, 3193204613, 3980851793, 1416611099, 1191072191, 1879383037,
38912084, 1159466311, 1371624560, 471680774, 3259265153, 742853137,
1148240156, 1192104387, 1895898172, 303154244, 1092373575, 298140785,
475809558, 3326374273, 1816599057, 1148305692, 1193152967, 1912675452,
571590724, 1092389959, 298402930, 480003878, 3393483393, 2890344977,
1148371228, 1194201547, 1929452732, 840027204, 1092406343, 298665075,
484198198, 3460592513, 3964090897, 1148436764, 1195250127, 1946230012,
1108463684, 1092422727, 298927220, 488392518, 3527701633, 742869521,
1148502301, 1196298707, 1963007292, 1376900164, 1092439111, 299189365,
492586838, 3594810753, 1816615441, 1148567837, 1197347287, 1979784572,
1645336644, 1092455495, 299451510, 496781158, 3661919873, 2890361361,
1148633373, 1198395867, 1996561852, 1913773124, 1092471879, 299713655,
500975478, 3729028993, 3964107281, 1148698909, 1199444447, 2013339132,
2182209604, 1092488263, 299975800, 505169798, 3796138113, 742885905,
1148764446, 1200493027, 2030116412, 2450646084, 1092504647, 300237945,
509364118, 3863247233, 1816631825, 1148829982, 1201541607, 2046893692,
2719082564, 1092521031, 300500090, 513558438, 3930356353, 2890377745,
1148895518, 1202590187, 2063670972, 2987519044, 1092537415, 300762235,
517752758, 3997465473, 3964123665, 1148961054, 1203638767, 2080448252,
3255955524, 1092553799, 301024380, 521947078, 4064574593, 742902289, 287,
0, 2094079792, 3474060164, 287260743, 301237373, 525354963, 4119100753,
1615320849, 2222821663, 1205539318, 2110857072, 3742496644, 287277127,
301499518, 529549283, 4186209873, 2689066769, 2222887199, 1206587898,
2127634352, 4010933124, 287293511, 301761663, 533743603, 4253318993,
3762812689, 2222952735, 1207636478, 2144411632, 4279369604, 287309895,
302023808, 0, 0, 0, 0, 0, 2152013836, 110231892, 2367692616, 1375896704,
540100619, 62161113, 1162350610, 4102105376, 1209340420, 2171674712,
420611588, 3105909064, 3523687553, 545015837, 140804613, 2420646610,
2491568416, 1210536457, 2191073442, 735185588, 3709907784, 1376502914,
549865520, 224691001, 3863492498, 1417917728, 1212076559, 2216501507,
1137840308, 1562448712, 3524375684, 555960391, 313820317, 860376018,
3028606241, 1213190675, 2233278787, 1406276788, 1562465096, 3524637829,
560154711, 380929437, 1934121938, 3028671777, 1214239255, 2250056067,
1674713268, 1495372616, 2451154054, 564283495, 446989977, 2991090578,
2760300833, 1215271451, 2266571202, 1938955428, 1495388744, 2451416199,
568477815, 514099097, 4064836498, 2760366369, 1216320031, 2283348482,
2207391908, 1495405128, 2451678344, 572672135, 580159641, 826837842,
2223558946, 1217335843, 2299339328, 2463245428, 1294094152, 3525670025,
576669846, 645171597, 1850251922, 1686751522, 1218335271, 2315330172,
2714904644, 1025674056, 3525915786, 580602021, 707037821, 2840111442,
344634658, 1219301931, 2330796727, 2966563828, 757253960, 3526161547,
584534196, 771001197, 3880302802, 4102794530, 1220334126, 2347574007,
3235000308, 757270344, 3526423692, 588728516, 838110317, 659081426,
4102860067, 1221382706, 2364351287, 3503436788, 757286728, 2452939917,
592857300, 904170857, 1716050066, 3834489123, 1222414902, 2380866422,
3767678948, 690193992, 2453202062, 597051620, 971279977, 2789795986,
3834554659, 1223463482, 2397643702, 4036115428, 690210376, 2453464207,
601245940, 1038389097, 3846764626, 3566183715, 1224495678, 2414158837,
5390292, 623117641, 1379980432, 605374724, 1104449637, 608766034,
3297812772, 1225527874, 2430673972, 269632452, 556024905, 306496657,
609503508, 1170510177, 1682511890, 3297878308, 1226576454, 2447451252,
533874612, 488932169, 3527980178, 613632291, 1236570717, 2739480530,
3029507364, 1227608650, 2463966387, 802311092, 488948553, 3528242323,
617826611, 1303679837, 3813226450, 3029572900, 1228657230, 2480743667,
1070747572, 488964937, 3528504468, 622020931, 1370788957, 592005074,
2761202981, 1229705810, 2498045235, 1360155620, 824526921, 307561621,
626542933, 1443140977, 1749637394, 76919077, 1230836311, 2515608952,
1620203508, 556107081, 2455286934, 630278499, 1500812881, 4810514, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 2526881186, 1817336516, 4112889417,
1381778582, 634276210, 1568970573, 3863574482, 1150792997, 1233048159,
2553357826, 2270323044, 2904958025, 308487320, 641616270, 1694800157,
1581880786, 1150919974, 1235112551, 2585077374, 2765252804, 2233899593,
3530196122, 649480619, 1814338289, 3460936210, 3298514214, 1236816493,
2612078309, 3197267764, 354877001, 2456851612, 655509955, 1909759073,
675924178, 77377831, 1238159987, 2632787766, 3511841796, 1025985097,
1383416989, 660490710, 1988402573, 2018106386, 614331687, 1239536248,
2655332236, 3872553316, 2502402121, 3531252894, 666126827, 2078580453,
3393843474, 1688158503, 1240912509, 2677090273, 4203904628, 3374837321,
2457822367, 670910974, 2151981061, 172622290, 614480168, 1241879169,
2692294682, 160596516, 3106417226, 2458068128, 674908685, 2216993017,
1246368146, 614545704, 1242927749, 2709071962, 424838692, 3039324490,
1384584353, 679037469, 2283053557, 2303336786, 346174760, 1243959945,
2725587097, 693275156, 3039340874, 1384846498, 683231789, 2350162677,
3360305490, 77803816, 1244992141, 2742102232, 957517316, 2905139018,
3532584099, 687295036, 2415174637, 122306770, 4104400169, 1246024336,
2758879511, 1225953812, 2972264778, 2459104420, 19020, 0, 0, 0, 0,
2768054582, 1414698116, 2368297546, 1385612453, 696142429, 2564072985,
2622121298, 3836121385, 1248711322, 2804492737, 1997708612, 2905203530,
2459903143, 704596606, 2695145489, 407536786, 1420327210, 1250661026,
2834901558, 2471666788, 1831490634, 3534103721, 711740057, 2808392133,
2152373970, 2762609962, 1252299432, 2860591770, 2865932900, 3576344650,
3534464170, 717507247, 2900667173, 3762992594, 2762708266, 1253905070,
2887068414, 3310530756, 2838175306, 313746604, 725764815, 3039079721,
1716180754, 1152234795, 1256084151, 2921933694, 3885152612, 3240863306,
2461770926, 735202033, 3192172397, 4065000146, 78636331, 1258443456,
2958896146, 148029892, 3308005963, 314803376, 743459601, 3315904853,
1682642898, 3836847404, 1260180166, 2985372792, 563267604, 1093438283,
3536409778, 748702502, 3401888405, 3125488850, 2226324780, 1261703884,
3010800856, 974310948, 3576491595, 3536831667, 755649344, 3511989317,
558581522, 3300170029, 1263424210, 3038588223, 1435686132, 2569887051,
2463560885, 763186013, 3635721745, 2571854994, 1958117677, 1265341146,
3069783477, 1947393140, 2301483339, 316585143, 771574653, 3774134297,
508265874, 3300430126, 1267503842, 3103338040, 2467488836, 1496207691,
317043897, 778390424, 3876895149, 2102107602, 2495221038, 1269027560, 0,
2803034448, 2972623691, 317404346, 784878511, 3993287505, 18, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2952790016,
317670587, 788745151, 4043619369, 525059538, 4106001711, 1271780082,
3172282175, 3566400692, 2033145931, 3539354813, 796019674, 4161060325,
2387337682, 3300807983, 1273549561, 3200593834, 4023581572, 825214539,
2466067647, 803294198, 4277452705, 4249615762, 3032486191, 1275368192,
3229691929, 194183796, 4046468428, 2466526400, 810699794, 103072105,
1917590163, 304, 0, 3255644283, 617810100, 2368772940, 1393210562,
817318956, 312053, 0, 0, 0, 3273470147, 877857988, 1831917132,
1393427651, 820661305, 255116217, 4232855059, 1422131504, 1279431440,
3293393166, 1196626308, 2637242956, 1393738948, 825576524, 332711141,
1179406483, 3838126385, 1280611092, 3312005462, 1490228708, 3039914060,
3541509317, 830360669, 412403217, 2471256979, 3838206257, 1281970969,
3335074219, 1871911812, 691127116, 1394410695, 19573, 0, 0, 0, 0,
3347132891, 2052267604, 3375492684, 3542054087, 838880382, 548718613,
374113299, 4106774834, 1284051745, 3367318056, 2375230244, 20069196,
2468631753, 844057746, 630507857, 1665963923, 3569983794, 1285329702,
3388027511, 2706581508, 1026722380, 3542693066, 849104037, 711248517,
2924259987, 1691011378, 1286525739, 3407164096, 3008572564, 1630720588,
3543000267, 854150328, 793037753, 21806739, 3838582067, 1287967536,
3430757145, 3398644292, 3576901708, 1228, 0, 0, 0, 2684354560,
1288672051, 3441505091, 3558028484, 1630753868, 322290893, 862211288,
314785, 0, 0, 0, 3452253036, 3729995604, 87260492, 1396200654, 864898274,
961859141, 2639062611, 1422820659, 1290425146, 3469292461, 4015209332,
691258188, 322761935, 869944565, 1043648377, 3914135955, 617592115,
1291686719, 3490264059, 59981956, 1765020749, 2470577360, 875318537,
1132777673, 1162678163, 886124852, 1293308741, 3516740704, 487802596,
87325517, 2470999250, 882134307, 1243927149, 2924292627, 3033714996,
1295029067, 3544003784, 924011876, 2771706701, 3545171155, 889015613,
1352979469, 390939667, 1960081717, 1296798546, 3571791157, 1356026852,
825575245, 324338901, 895044949, 1445254517, 1817008595, 1154859317,
1298010967, 3590665596, 1653823572, 1362464589, 1398379734, 899829095,
1522849437, 3075304595, 886502709, 1299338076, 3612685775, 2014535076,
77, 0, 0, 0, 0, 0, 1299775488, 3618977257, 2102615828, 4113955149,
1398805719, 906579329, 1628756021, 424510803, 349730102, 1300845410,
3635754537, 2371052308, 4113971533, 1399067864, 910773649, 1695865141,
1498256723, 310, 0, 3649648221, 2601739892, 3577114957, 325567705,
914705824, 1761925669, 2689443283, 2497351990, 1303073642, 3672192689,
2970840052, 1094110029, 325932251, 920735159, 1861540769, 4182621459,
1423704374, 1304630128, 3697096467, 3369300452, 3107400269, 1400055004,
926830030, 1955912981, 1364054867, 3302842679, 1306022773, 3720165224,
3721623348, 288849485, 326673630, 932728292, 2053430905, 3025005331,
81717559, 1307677564, 3745593292, 4136861012, 2570575949, 2474558687,
939019772, 2151997433, 307102355, 81813816, 1309130752, 3768662051,
202605252, 3778557006, 327402720, 944000528, 319777, 0, 3221225472,
1310004100, 3783342170, 454264420, 3778572878, 1401414881, 948719137,
2309284429, 2823694419, 1692581176, 1311724427, 3811391684, 903056660,
2369314126, 3549336803, 955600443, 2417288173, 256786963, 3571734841,
5009, 3835771172, 1276351172, 3845731406, 1402197220, 960908880,
2500125997, 1515083091, 1155890489, 1314542486, 3855432046, 1599313796,
423199054, 328774886, 966086244, 2581915237, 2806933651, 350662969,
1315804059, 3875355067, 1913887812, 1094306894, 2476561639, 970870390,
2659510153, 4082006867, 3840402745, 1317082015, 3896326665, 2262016340,
2503614542, 329426152, 0, 0, 0, 0, 0, 3906550320, 2425594820, 1027230030,
3550827753, 979455638, 2797922717, 2001640531, 82442554, 0, 3928570501,
2761140452, 1765447246, 2477384938, 983977640, 322217, 2919235584,
2766852410, 1320178603, 3946658505, 3067325780, 2637881678, 3551450347,
989417148, 2958355453, 273597139, 2766951739, 1321735089, 3971300134,
3461591860, 356204110, 3551839469, 995708628, 3056921977, 1884215827,
3840793915, 1323406263, 3998563214, 3906189764, 3309021774, 3552281838,
1002852079, 3175411509, 3796825811, 82814267, 1325257663, 4027923454,
80986308, 2168199759, 1405248752, 1010061067, 3290755309, 1347359315,
3841023292, 1327059909, 4056759404, 542361508, 1027377231, 1405707506,
1017401127, 3408196269, 3226414675, 3841137980, 1328878540, 4085595354,
991153780, 3711758927, 1406125299, 1023954752, 3510957113, 542066323,
3304364349, 1330418642, 4111023418, 1299620, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1481593984, 1156938045, 1331368918, 4125703540, 1641273348,
1430097487, 3554264310, 1034571624, 3682924229, 3343871955, 1962360125,
1333253085, 4155850215, 2127814484, 826147663, 333530360, 0, 0, 0, 0, 0,
4167565312, 2291392996, 2839422543, 333636856, 0, 3815045320, 1045401235,
1694042430, 5092, 4180148224, 2492720356, 1765693007, 333833465, 0, 0, 0,
0, 0, 4187569762, 2610161316, 3644748367, 333948153, 1048444928,
3898931721, 2387583635, 1694124350, 5097, 4203036314, 2874403444,
3980309327, 3555468538, 1054298034, 4003789701, 4199529619, 2231109950,
1338250224, 4236066584, 3428053620, 88029263, 1408529661, 1062883284,
4134862205, 1968167955, 1425930559, 1340331000, 4269883291, 3948149348,
4047483471, 335308030, 1071271924, 4284809125, 156237907, 2768255296,
1342755841, 12927018, 261358453, 692077392, 3557098753, 1080446998,
124060097, 5250772, 0, 0, 34685056, 588515461, 1363185744, 2483655938,
1084379175, 180683421, 3058707540, 4110609728, 1345393675, 54083785,
907283765, 2235620432, 3557713155, 1089491002, 261424085, 55590804,
3573817665, 1346655248, 74268950, 1230246405, 3175164496, 1410548996,
1094602830, 344261901, 1380995924, 3037026625, 1347949589, 94978405,
1561597685, 4114708816, 3558352133, 1099714657, 426051141, 2689623764,
2768672065, 1349243930, 115687860, 1892948965, 893503568, 3558679815,
1104957557, 509937541, 4031806164, 2768753985, 1350554655, 136921603,
2249466133, 2504138576, 2485302536, 1111052428, 611649793, 1431344020,
889811266, 1352307750, 165495408, 2706647013, 1296206928, 1412015370,
1118326952, 728042173, 3327176532, 2232106306, 1354257453, 198001386,
3243519941, 1430457680, 1412551948, 1127043273, 869600469, 1263587668,
84757827, 0, 227099483, 3683923589, 3913512016, 2486699277, 1133269217,
331337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 242566040, 3922999845, 3309546576, 3560662286,
1136677102, 1017450261, 3562075092, 3842991427, 1358484541, 263537640,
4258545445, 88341584, 339764496, 0, 0, 256967360, 1964002628, 1359402049,
277693471, 181682805, 3443797841, 3561190672, 1145000206, 1148522765,
1330713300, 1964068164, 1360450629, 294470751, 450119285, 3443814225,
3561452817, 1149194526, 1215631885, 2404459220, 1964133700, 1361499209,
311248031, 718555765, 3443830609, 3561714962, 1153388846, 1282741005,
5321428, 0, 0, 323830991, 919883125, 2370101073, 3561911571, 1156534586,
1333072845, 4283514580, 1964248388, 1363334224, 340608271, 1188319605,
2370117457, 3562173716, 1160728906, 1400181965, 1062293204, 1964313925,
1364382804, 357385551, 1456756085, 2370133841, 3562435861, 1164923226,
1467291085, 2136039124, 1964379461, 1365431384, 374162831, 1725192565,
2370150225, 3562698006, 1169117546, 1534400205, 3209785044, 1964444997,
1366479964, 390940111, 1993629045, 2370166609, 3562960151, 1173311866,
1601509325, 4283530964, 1964510533, 1367528544, 407717391, 2262065525,
2370182993, 3563222296, 1177506186, 1668618445, 1062309588, 1964576070,
1368577124, 424494671, 2530502005, 2370199377, 3563484441, 1181700506,
1735727565, 2136055508, 1964641606, 1369625704, 441271951, 2798938485,
2370215761, 3563746586, 1185894826, 1802836685, 3209801428, 1964707142,
1370674284, 458049231, 3067374965, 2370232145, 3564008731, 1190089146,
1869945805, 4283547348, 1964772678, 1371722864, 474826511, 3335811445,
2370248529, 3564270876, 1194283466, 1937054925, 1062325972, 1964838215,
1372771444, 491603791, 3604247925, 2370264913, 3564533021, 1198477786,
2004164045, 2136071892, 1964903751, 1373820024, 508381071, 3872684405,
2370281297, 3564795166, 1202672106, 2071273165, 3209817812, 1964969287,
1374868604, 525158351, 4141120885, 2370297681, 3565057311, 1206866426,
2138382285, 4283563732, 1965034823, 1375917184, 541935631, 114590069,
2370314066, 3565319456, 1211060746, 2205491405, 1062342356, 1965100360,
1376965764, 558712911, 383026549, 2370330450, 3565581601, 1215255066,
2272600525, 2136088276, 1965165896, 1378014344, 575490191, 651463029,
2370346834, 3565843746, 1219449386, 2339709645, 3209834196, 1965231432,
1379062924, 592267471, 919899509, 2370363218, 3566105891, 1223643706,
2406818765, 4283580116, 1965296968, 1380111504, 609044751, 1188335989,
2370379602, 3566368036, 1227838026, 2473927885, 1062358740, 1965362505,
1381160084, 625822031, 1456772469, 2370395986, 3566630181, 1232032346,
2541037005, 2136104660, 1965428041, 1382208664, 642599311, 1725208949,
2370412370, 3566892326, 1236226666, 2608146125, 3209850580, 1965493577,
1383257244, 659376591, 1993645429, 2370428754, 3567154471, 1240420986,
2675255245, 4283596500, 1965559113, 1384305824, 676153871, 2262081909,
2370445138, 3567416616, 1244615306, 2742364365, 1062375124, 1965624650,
1385354404, 692931151, 2530518389, 2370461522, 3567678761, 1248809626,
2809473485, 2136121044, 86641994, 0, 707611271, 2765400309, 1833604946,
3567908138, 1252479656, 2868193965, 3075648724, 4113231178, 1387320491,
724388551, 3033836789, 1833621330, 3568170283, 1256673976, 2935303085,
4149394644, 4113296714, 1388369071, 741165831, 3302273269, 1833637714,
3568432428, 1260868296, 3002412205, 928173268, 4113362251, 1389417651,
757943111, 3570709749, 1833654098, 3568694573, 1265062616, 3069521325,
2001919188, 4113427787, 1390466231, 774720391, 3839146229, 1833670482,
3568956718, 1269256936, 3136630445, 3075665108, 4113493323, 1391514811,
791497671, 4107582709, 1833686866, 3569218863, 1273451256, 3203739565,
4149411028, 4113558859, 1392563391, 808274951, 81051893, 1833703251,
3569481008, 1277645576, 340141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 819022895, 261407637, 558646099, 348456241, 0, 0, 0,
0, 0, 0, 356515840, 2504809811, 1422316849, 21277, 0, 0, 1160901632,
1394791624, 846023829, 701811221, 3444354387, 348886322, 1288065840,
3441767217, 3830658772, 3308503372, 1396741327, 876170504, 1192546645,
2840404819, 349377844, 1295515648, 3563402493, 1431524244, 3221225805,
5333, 900287843, 1547698181, 21854547, 3570925568, 1301173089,
3653580373, 2857593044, 2234959181, 1399837915, 925715908, 1981078821,
2437799507, 1423881527, 1308054396, 3762632693, 273908372, 3577239886,
1401476321, 951930409, 2400510821, 558776915, 1424291129, 1314608021,
3867490693, 1951636372, 356116814, 1403114728, 978144909, 2819942821,
2974721619, 1424700730, 1321161646, 3972348693, 3629364372, 1429961038,
1404753134, 1004359409, 3239374821, 1095699027, 351364412, 1327649735,
4075109537, 978570516, 1698496847, 1406342388, 1029787474, 3646223861,
3310316371, 2499249469, 1334072287, 4178918953, 2639521236, 2772340047,
1408013562, 1057050554, 4078238821, 1901056851, 1425954111, 1341477883,
6635509, 374604693, 1967159632, 1410045186, 1090605109, 332727477,
1699763028, 1426453825, 1349211161, 133513685, 2371101077, 3309457744,
1411978505, 1119441064, 5, 0, 0, 0, 0, 0, 0, 0, 0, 754974720, 22067796,
1426875715, 1355961395, 232080221, 3914610901, 2235809104, 1413453071,
1144082692, 1192563013, 2840667220, 2501051716, 1362973773, 361055529,
1851021525, 1699080529, 1415877912, 1185239454, 1880431429, 1632750676,
354305351, 1375491196, 563431457, 995396245, 2504591698, 1418990884,
1234260568, 2660574965, 1230145364, 3576280394, 1387025576, 736447185,
3478434197, 88825170, 1421481262, 1273582322, 3268751413, 1968379220,
1429361996, 1396004043, 878005489, 1431622485, 1699576147, 1423693110,
1308447607, 3826595957, 2236848212, 1429902670, 1404654828, 1017466629,
3679777941, 3310325075, 1425872190, 1343575037, 97861877, 2639535957,
1430459728, 1413567758, 1160073513, 1683298005, 1699852628, 1428133191,
1379751047, 672483717, 3377769045, 1431020882, 1422480688, 1301631809,
3914676245, 2773730644, 1430295887, 1414616332, 1230328277, 3713347413,
2505307476, 1431197009, 1441092949, 1867864405, 1163257173, 1432573272,
1451054486, 1817533061, 492157781, 2505913687, 1441420663, 1613060061,
341148373, 1431859542, 1435227490, 1493259831, 2488624277, 2438355541,
1432798553, 1451120029, 1760909849, 2706744917, 895135062, 1437554027,
1530222277, 3080023397, 3243698261, 2507113819, 1460295104, 1904565317,
710264917, 3042756951, 1439782259, 1566660429, 3658839557, 3713494869,
3581412701, 1469273569, 2057657977, 3243634005, 626993495, 1442239869,
1605457891, 4283793237, 962070101, 3582031200, 1478972935, 2205507773,
1196822421, 2237742424, 1444418949, 1640323177, 546670485, 1297648214,
361346402, 1487689257, 2344968913, 3444978005, 3848493400, 1446630797,
1675712751, 1108709381, 1700335702, 2509378916, 1496536650, 2487575789,
1431720725, 1701147993, 1448842646, 1710578037, 1666553925, 2035914070,
3583665510, 1505252971, 2628085505, 3646321813, 2238154073, 1450972574,
1747278332, 2266341669, 3176801622, 2510521704, 1514886800, 2783275349,
1918278165, 1164569946, 1453544872, 1786600087, 2895489669, 425376854,
363660651, 1524782774, 2940562345, 106348309, 2238462299, 1455953329,
1824611113, 3499471781, 1364937814, 2511725933, 1534088921, 3088412129,
2455167573, 896428379, 1458247098, 1861835701, 4095065221, 2304498262,
364823919, 1543395069, 3238359065, 559351317, 628138332, 1460573635,
1899060292, 395691365, 3244058711, 1439143281, 1552570144, 3384111689,
2908170517, 4117944668, 1462883787, 1935760592, 982896149, 4049400407,
3587200371, 1561941827, 3536155785, 1045908821, 3849656669, 1465177556,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1972198744, 1582683877, 962429783, 3587806582,
1571706728, 3693442785, 3596055253, 3312944477, 1467897310, 2016763395,
2291523973, 3646827607, 2514748792, 1582585746, 3868555641, 2136448277,
897197406, 1470617065, 2060803754, 2991975413, 1969148759, 2515436923,
1593595836, 4045765665, 676841237, 3850161503, 1473385971, 2104581970,
3700815461, 694124119, 368661886, 1604999144, 4226121425, 3495424469,
1165977951, 1476122110, 0, 18218896, 1700794200, 3590468992, 1614436363,
86343957, 1750603542, 2776745312, 1478579719, 2188730512, 760613509,
761315160, 1443714435, 1626167352, 272991209, 408437654, 3582233953,
1481479698, 2233819456, 1461064997, 3244385880, 370648453, 1636718689,
439715429, 3092802454, 3850833249, 1484133916, 2276549090, 2148933477,
1432488536, 2518807944, 22666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 2299617845, 2522228021, 2506252120, 1445377417,
1651988636, 674597365, 2404950742, 92948834, 0, 2322948762, 2832607749,
2774705752, 3593127306, 1655855275, 730172117, 3193482966, 1166738786,
1488049708, 2336842442, 3113627061, 3647139416, 372241803, 1662212290,
363645, 0, 0, 0, 2360959785, 3465950005, 493044056, 2520044941,
1666668756, 908430705, 1851316758, 2777534819, 1491097143, 2387174280,
3918936517, 3915624280, 373044622, 1674991859, 1053134721, 56163862,
2509257060, 1493767745, 2430690350, 320226341, 2305054553, 3594937745,
1685346586, 1209373173, 2304319830, 898775396, 1495668297, 2457953437,
1460805, 2976164096, 3595236754, 1689737516, 1275433713, 3378065686,
1435711844, 1496782413, 2475255007, 974540373, 3177507673, 374289811,
1693908992, 1342542833, 5849366, 0, 0, 2486789385, 1184256341, 23404377,
1448230912, 1697601866, 1403360465, 1163481046, 93661541, 1498764885,
2508547419, 1557550757, 358972505, 1448670614, 1705204070, 1533384373,
3361304534, 1972848997, 1500976733, 2543936994, 2102812389, 359005529,
1449178520, 1712806276, 1648728185, 811174550, 3583565158, 1502664291,
2571200073, 2526438741, 2506514265, 1449571737, 1719097756, 1749391865,
2421793430, 3315226982, 1504220777, 2595841704, 2929093445, 493273177,
3597456795, 1725520308, 1852152705, 4065966870, 4120634726, 1505842799,
2622056203, 3348525445, 2909217881, 3597866396, 1732073933, 1957010705,
1448727574, 899511655, 1507481206, 2648270703, 3767957445, 1030195289,
3598275998, 1738627558, 2061868705, 3126455574, 1973355879, 1509119612,
2674485203, 4179000821, 3177703769, 3598669215, 1744919038, 2162532385,
442107158, 1973454184, 1510692482, 2699913268, 290882565, 1097353818,
377865633, 1752455706, 2295702017, 2723817110, 360, 1512734720,
2731016192, 781618021, 90750298, 378295715, 1758157362, 2369102653,
3646567830, 4121129320, 1513690765, 2746050791, 1012305637, 3714643034,
1452254627, 1761630783, 2422580237, 207241814, 1168392553, 1514542737,
2760206620, 1259770469, 3781767770, 3600012708, 1766414928, 2504369469,
1616533142, 3047527785, 1516000918, 2784061814, 1641453605, 1298763098,
2526643622, 1772378727, 2600838825, 3126488470, 900136297, 1517426332,
2806344140, 1997970789, 2708071002, 3600733607, 1777949308, 2688919549,
274367126, 3047708010, 1518884513, 2830199334, 2379653925, 225066330,
2527364521, 1783913107, 2785388905, 1801099670, 1168751978, 1520293543,
2852481660, 2736171125, 1433047386, 3601442218, 1789156007, 2867178149,
3092950230, 900396394, 1521637036, 2875026127, 3084299701, 2641027930,
3601773995, 1794398907, 2951064549, 123388118, 363606379, 1522898609,
2893900571, 3394679365, 3379244634, 3602081196, 1799379662, 3030756629,
1398461334, 3584909675, 1524143797, 2913823590, 3713447685, 4184570458,
381171117, 1804360418, 3110448709, 2690311894, 2779682155, 1525438138,
2935057336, 4053187605, 1097583450, 2528990639, 1809799926, 3197480849,
4082826134, 3585073515, 1526765247, 2956028935, 93765909, 2171345755,
2529318320, 1815042826, 3281367249, 1130041238, 3585155436, 5828, 0,
362202400, 2104253275, 1455834545, 23322, 3335520256, 2002459798,
95546732, 1528911560, 0, 601278624, 1634505563, 2529809842, 23336,
3396337664, 2975542038, 364, 0, 3001380021, 810994645, 560776283,
382518707, 1825570816, 3449140057, 3764074326, 2243137900, 5838, 0, 0, 0,
0, 0, 3475354544, 4267392534, 95687020, 0, 3023662344, 1184289093,
2574065755, 382916020, 1832606541, 3566581001, 5985302, 3853868032,
1532581589, 3049876843, 1612109717, 896370523, 3604563382, 1839356774,
3673536165, 3176885654, 3048673645, 1534351068, 3078450648, 2069290597,
3983406171, 383788471, 1846083584, 3781539901, 609978198, 364424558,
1536038627, 3105451583, 2497111253, 2238601819, 2531685817, 1853184923,
3895835121, 2315255830, 96093550, 1537605632, 3130617503, 2903960277,
158251867, 384603579, 1859607476, 3998595961, 4082875158, 96201070, 0,
3155521280, 3285643429, 1701778523, 3606177212, 1864915912, 4079336629,
1012649430, 96273775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3174395718, 3604411717, 2775540315, 3606513085, 1870552029,
4173708821, 2589713622, 2243855727, 1542182650, 3203755958, 4074175557,
1836045147, 1459496383, 1877892090, 4293246937, 207356246, 2243970416,
1543984897, 3232067618, 215417573, 24131676, 2533643713, 1884380178,
95797593, 1767643287, 901888368, 1545475847, 3255398525, 588712053,
1500549468, 2534004162, 1890147368, 188072633, 3176934935, 1975716208,
1546852108, 3277418705, 941034933, 3111184220, 386880963, 1895980095,
283493405, 408700119, 2244248945, 1548506898, 3304419640, 1385632805,
1366380380, 2534774213, 1902337111, 385205673, 2036096279, 902166897,
1549965080, 3328274833, 1771510261, 3513888092, 2535175622, 1909021808,
494257985, 3848042391, 902279537, 1551800095, 3357635073, 2241274101,
2440174940, 2535634376, 1916361868, 611698945, 23, 0, 0, 3378082382,
1517029, 0, 3221225472, 1919376536, 653642157, 2002558167, 4123651442,
1554044711, 3392238215, 2778147093, 2171771740, 2536134090, 1924095146,
732285649, 3327963159, 1170945394, 1555486509, 3416617698, 3176607493,
4252170844, 3610269131, 1930517698, 836095069, 693946583, 1439481203,
1557059379, 3441259329, 3570873557, 92, 1073741824, 1935760598,
924175781, 2170347095, 1439575411, 1558665017, 3467998117, 4015471445,
695452508, 3611112911, 1944280310, 1062588337, 140312471, 3587198324,
1560942401, 3504960561, 324486197, 2306103389, 390518225, 1954635038,
1224069669, 2606572887, 2513601908, 1563187018, 3539563703, 869747845,
1970591325, 3612231123, 1962237242, 1345704945, 324879063, 1439986037,
1565235026, 3573642551, 1406620789, 2239060061, 391534037, 1970363739,
1470485977, 2187157399, 3050707317, 1566840664, 3597759894, 1771526661,
3111496285, 2539333078, 1975147885, 1548080889, 3445453335, 1440171381,
5981, 3614799320, 2044157477, 3447057501, 1465877975, 1979866495,
1623578653, 375227479, 374, 0, 95769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3633935903, 2383897333,
427179869, 392484313, 1985699221, 1720048009, 1985846231, 1171912054,
1570953064, 3664082578, 2857855493, 3715543133, 1466688986, 1993104817,
1839586125, 3932010583, 2245772662, 1572853615, 3694491398, 3344396613,
2910266461, 1467164124, 2000838094, 1963318565, 1599985111, 98410871, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3721754481, 3751245717, 561480541, 1467536862, 2006343140, 2047204973,
2858281303, 903789943, 1575884667, 3741939645, 4074208373, 1433915485,
2541589983, 2011389431, 2127945633, 4150131863, 375, 0, 3758192636,
43483221, 1299713630, 394360288, 2015452679, 2192957593, 878578711,
3856721272, 1578162051, 3778377800, 362251557, 2172148574, 2542163425,
2020564506, 2273698257, 2170429207, 3051493752, 1579423624, 3798562965,
689408501, 3111692638, 394999266, 2025676334, 2356536073, 3512611607,
3051575672, 1580734349, 96485, 0, 0, 0, 0, 0, 0, 0, 0, 3821107434,
1050120021, 293142366, 2542835172, 2031312451, 2446713953, 694044887,
1441054073, 1582225299, 3843914049, 1423414485, 2239322718, 395740645,
2037931612, 2558912001, 6186007, 0, 0, 3866196376, 1771543061,
3178867550, 1469793766, 2042519150, 2624972557, 3495850711, 2783401337,
1584912285, 3886119395, 2090311381, 4051302238, 1470109159, 2047499905,
2705713213, 509511255, 2246610298, 1586190242, 3906828850, 2425856965,
94, 0, 0, 0, 0, 3588825088, 1586829220, 3917576795, 2593629781,
3514462046, 2544342505, 2055429791, 2832591393, 2539562135, 367686010,
1588172714, 3938548395, 2929175381, 293257054, 2544670187, 2060672691,
2916477793, 23, 0, 0, 3953752804, 3180834565, 91946078, 1471182316,
2064867011, 2984635493, 710854935, 1710014843, 1590630323, 3978394434,
3575100645, 2105235806, 3619050989, 2071027418, 3083202013, 2287919255,
904803707, 1592154041, 4002773919, 3965172405, 4051416926, 1471948270,
2077253362, 3185962845, 23, 0, 0, 4020861925, 4246191861, 4185651550,
398472687, 2081251074, 3245731913, 559875863, 3052444028, 1594628034,
4041833525, 286770165, 964446559, 398800369, 2086493974, 3329618313,
1868503767, 99732860, 1595801600, 4060970110, 592955525, 1635553887,
399107570, 2091540265, 3412456129, 3244240663, 3589479804, 1597298636,
4085087449, 983027269, 3581735007, 399488499, 2097569600, 3507876913,
492783063, 2247395709, 1598773202, 4108418354, 1360516069, 95, 0,
2101936128, 3579180349, 1633638103, 3589643645, 1599920086, 4127292793,
1654118485, 1501401183, 1526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 4136205724, 1805113989, 3984438623,
1474045430, 2110807922, 3723884381, 3999234455, 2784481661, 1602230239,
4163993094, 2249711909, 2440961631, 400729592, 2117492620, 3827693809,
1314886167, 2784579966, 1603803109, 4189159014, 2652366629, 293502559,
401122810, 2123784100, 3928357489, 2942282263, 3321550206, 1605425131,
4215635658, 3088575893, 3112101983, 2549040635, 2130730942, 4039506969,
408929431, 1174174079, 1607112690, 4242112304, 3499619269, 964642911,
2549433853, 2137022422, 4140170649, 2019548311, 1174272383, 1608685560,
4267016080, 3889691045, 2776605791, 3623544318, 2142789612, 4230348533,
3428839895, 1711228287, 1610012669, 4287987680, 4225236645, 3850368095,
3623871999, 2148032512, 19267637, 476055000, 1711310208, 1611323394,
13991984, 265814950, 629163104, 3624199681, 2153275412, 103154037,
1818237400, 1711392128, 1612634119, 34963584, 597166246, 1635816288,
2550781442, 2158387240, 183894697, 3110087960, 906164608, 1613895692,
55148749, 924323190, 2508251488, 1477350915, 2163302459, 261489621,
39862104, 100932993, 0, 71663884, 1180176726, 2239831392, 1477596676,
2167234634, 394437, 0, 0, 0, 82411829, 1368921094, 1233210464,
2551547397, 2170773591, 384173477, 2036358424, 1174796673, 1617074200,
106004879, 1738021270, 2776736864, 404420102, 2176475245, 475399933,
3512759000, 3590806913, 1618515997, 129597928, 2123898694, 96, 0,
2181038080, 548800533, 392201304, 906524034, 1619679266, 147948078,
2413306774, 629294176, 1478817289, 2186961045, 642124157, 1868601944,
2785661314, 1621088295, 170492549, 2778212614, 2307038304, 1479181834,
2192793771, 737544933, 6336856, 0, 0, 188580555, 3059232070, 2374164064,
1479443979, 2196922555, 800459737, 90226712, 3859556739, 1623513136,
209027864, 3386389030, 3246599264, 1479759372, 2201903310, 881200397,
1382077272, 3322764675, 1624791093, 229213029, 3709351670, 4186143072,
406337037, 24802, 0, 0, 0, 0, 240223117, 3902290358, 3246631264,
2554033678, 2210750703, 1026953009, 3781228184, 4128219523, 1627232318,
269583357, 77086902, 2172918113, 2554492432, 2218090763, 1144393969,
1365316248, 4128334212, 1629067333, 298943597, 546850742, 1099204961,
2554951186, 2225430823, 1261834929, 3244371608, 4128448900, 1630902348,
328303837, 1016614582, 97, 0, 0, 0, 0, 0, 1631469568, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 336954624, 1138249894, 1703220321, 3629245972, 2234016072,
1395004597, 1013009880, 1712653701, 1632819284, 357926224, 1473795494,
2776982625, 3629573653, 2239258972, 1478890997, 2355192280, 1712735621,
1634130009, 378897824, 1809341094, 3850744929, 3629901334, 2244501872,
1562777397, 3697374680, 1712817541, 1635440734, 399869424, 2144886694,
629539937, 3630229016, 2249744772, 1646663797, 744589784, 1712899462,
1636751459, 420841024, 2480432294, 1703302241, 3630556697, 2254987672,
1730550197, 2086772184, 1712981382, 1638062184, 441812624, 2815977894,
2777064545, 3630884378, 2260230572, 1814436597, 3428954584, 1713063302,
1639372909, 462784224, 3151523494, 3850826849, 3631212059, 2265473472,
1898322997, 476169688, 1713145223, 1640683634, 483755824, 3487069094,
629621857, 3631539741, 2270716372, 1982209397, 1818352088, 1713227143,
1641994359, 504727424, 3822614694, 1703384161, 3631867422, 2275959272,
2066095797, 3160534488, 1713309063, 1643305084, 525699024, 4158160294,
2777146465, 3632195103, 2281202172, 2149982197, 207749592, 1713390984,
1644615809, 546670624, 198738598, 3850908770, 3632522784, 2286445072,
2233868597, 1549931992, 1713472904, 1645926534, 567642224, 534284198,
629703778, 3632850466, 2291687972, 2317754997, 2892114392, 1713554824,
1647237259, 588613824, 869829798, 1703466082, 3633178147, 2296930872,
2401641397, 4234296792, 1713636744, 1648547984, 609585424, 1205375398,
2777228386, 3633505828, 2302173772, 2485527797, 1281511896, 1713718665,
1649858709, 630557024, 1540920998, 3850990690, 3633833509, 2307416672,
2569414197, 2623694296, 1713800585, 1651169434, 651528624, 1876466598,
629785698, 3634161191, 2312659572, 2653300597, 3965876696, 1713882505,
1652480159, 672500224, 2212012198, 1703548002, 3634488872, 2317902472,
2737186997, 1013091800, 1713964426, 1653790884, 693471824, 2547557798,
2777310306, 3634816553, 2323145372, 2821073397, 2355274200, 1714046346,
1655101609, 714443424, 2883103398, 3851072610, 3635144234, 2328388272,
2904959797, 3697456600, 1714128266, 1656412334, 735415024, 3218648998,
629867618, 414246444, 0, 0, 0, 0, 0, 744852243, 3386421766, 3515559266,
2561914412, 2336842448, 3043372349, 1684199256, 640527755, 1658738871,
773688192, 3847796966, 2374736994, 1582, 0, 0, 0, 0, 0, 784173994,
3998792518, 227262050, 1488750127, 25331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 794397650, 4153982374, 2576081506, 1583, 2347433984, 3204448257,
4184014104, 909113739, 1661081792, 809864204, 114868582, 2441879651,
2562889264, 2352177931, 3284545761, 1180897368, 103886220, 1662326981,
830049369, 437831222, 3314314339, 3636946481, 2357224222, 3365286417,
2472747928, 3325190540, 1663588553, 849972390, 756599542, 4186749283,
3221227058, 2361942832, 1, 3439329280, 396, 1664385024, 863603927,
991481430, 3918328675, 416290355, 2366595906, 3520476249, 727927064,
2520041869, 1666193619, 892964167, 1461245270, 2844615523, 1073743413,
2373477212, 3628479993, 2439209624, 104227213, 1667881178, 919702959,
1872288662, 562938723, 2564609591, 2379703156, 3725997937, 3949164952,
1714930061, 1669257439, 940936704, 2212028582, 1703810147, 3638683192,
2385077128, 3811981501, 996380120, 909704590, 1670519012, 961384013,
2543379846, 2710463331, 3639006777, 2390254492, 3894819317, 2355339736,
1983531406, 1671911657, 983666338, 2899897046, 4186880099, 418133562,
2395825074, 3983948617, 3781408536, 3325795726, 6382, 0, 0, 0,
1073741824, 2398446524, 4023794661, 123977816, 104607119, 1673877745, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1015123739, 3399021142, 3515821923, 2566100540, 2403558351,
4107681057, 1466160280, 373125519, 1675204854, 1036095339, 1636182,
4254038528, 1597, 0, 0, 2288247040, 373174671, 1675991289, 1048940444,
3940088422, 3582963811, 3640370750, 2412012527, 4242947877, 3630429400,
641693071, 1677318398, 1069912044, 4275634022, 361758819, 2566956608,
2417189891, 31866977, 6555801, 0, 1678344192, 1086427180, 244908886,
227557220, 419726913, 2421253139, 94781785, 1684281305, 3326189968,
1679579398, 1105825910, 555288566, 965773668, 420034114, 2426233894,
410249, 0, 0, 1680457728, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1120243884,
785976166, 361807972, 1494005315, 2430034996, 236340081, 3965991321,
2252589456, 1681873167, 1143050499, 1159270630, 2106661220, 2568115780,
2435867722, 330712277, 1197756505, 642068881, 1683364117, 1166905694,
1532565126, 3717296740, 3642218053, 2441634912, 421938741, 2640602649,
2252769681, 1684773146, 1189712307, 1901665286, 1100073828, 3642582599,
25718, 0, 3774873600, 642230673, 1686001951, 1209373184, 2212044966,
1704072292, 3642877512, 2452120712, 590760117, 1063554649, 3058242962,
1687443748, 0, 2543396208, 2979161444, 422004297, 2458150047, 692472369,
2724505369, 3863650706, 1689082154, 1259180732, 3025743014, 2106775652,
1496213067, 2465490107, 807816173, 275038809, 4132199827, 1690949937,
1289851695, 3533255702, 1905480548, 1496733261, 2473944283, 946228725,
2556748761, 2790163859, 1693243706, 1325503420, 4070128726, 1073741924,
423450191, 0, 0, 3657433088, 1984922003, 1694177598, 1339397105,
4292427686, 268435556, 2571146832, 25859, 1099321420, 577046361,
3327171988, 1695308098, 1357485109, 286868470, 831801445, 2571441745,
2489017621, 1177964925, 1801787865, 1448198548, 1696504135, 1376621694,
588859510, 1502908773, 1618, 2493186048, 1248219781, 25, 0, 1697300480,
1389204655, 785992566, 294960997, 3645675091, 2496947507, 1, 0, 0, 0,
1401263323, 999902854, 3985962341, 3645904467, 2500748609, 1, 0, 0, 0,
1416729876, 1259950662, 4053087333, 424953428, 2505336147, 1447449969,
1952799513, 1180037525, 1700993368, 1450284436, 1796823622, 4053120101,
425477718, 2513724787, 1581668209, 4100291353, 911733141, 1703074144,
1483314707, 2316919318, 3650498405, 425973336, 2521523601, 1704352073,
1734711321, 1448720790, 1704925543, 1512674947, 2786683158, 2576785253,
426432090, 2528863661, 1821793033, 3613766681, 1180400022, 1706744174, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1541248754,
3227086790, 764872293, 1500579420, 2535089605, 1917213821, 778422873,
2254228887, 1708087667, 1562220354, 3562632390, 1838634597, 1500907101,
2540332505, 2001100221, 2120605273, 2254310807, 1709398392, 1583191954,
3898177990, 2912396901, 427497054, 0, 0, 3144019392, 1180630423,
1710381436, 1599444943, 4183391670, 3516395109, 427800159, 0, 0, 0, 0, 0,
1612552195, 72974534, 1838683750, 1501693536, 2552915465, 2201379001,
1013321177, 1449197976, 1712478596, 1632475214, 391742854, 2644009574,
1502004833, 2557896220, 2282119661, 2321949017, 1180843416, 1713789321,
1653446814, 727288454, 3717771878, 1502332514, 2563139120, 2366006061,
3664131417, 1180925336, 1715100046, 1674418414, 1062834054, 496566886,
1636, 0, 2434163760, 610682585, 2254748057, 1716574611, 1700108622,
1490654662, 3315165798, 3650586213, 2575722079, 2571527733, 2724619993,
107390361, 1718475163, 1729468862, 1960418502, 2241452646, 1639,
2582118400, 2672191417, 6717081, 3865583002, 1720031648, 1754372637,
2358878902, 26884454, 2577692265, 2589288083, 2788583793, 1902549657,
4134134170, 1721866663, 1783732877, 1681846, 0, 0, 2594308096,
2867227297, 3127291161, 2255160730, 1723079084, 1803131607, 3139022422,
3919246182, 430970475, 2601477826, 2983619673, 728156441, 2523711899,
1724914099, 1832491847, 6, 0, 0, 0, 3049680212, 1869011225, 411, 0, 0, 0,
0, 0, 0, 3087429096, 2355552665, 2523810203, 1726486969, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1857919912, 4019829606,
832292198, 2579314287, 2615305974, 3206967209, 40304281, 644884892,
1728485825, 1890163746, 244957990, 698106471, 2579834481, 2623694614,
3341185449, 2187796121, 645015964, 1730582985, 1923718306, 781830950,
698139239, 2580358771, 2632083254, 3475403689, 40320665, 645147037,
1732680145, 1957272866, 1318703910, 698172007, 2580883061, 2640471894,
3609621929, 2187812505, 645278109, 1734777305, 1990827426, 1855576870,
698204775, 2581407351, 2648860534, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2008915434,
2128207702, 496894311, 3655390840, 2652465028, 3796269181, 828869337,
3598245278, 1737546211, 2033819209, 2526668102, 2577293415, 2582038137,
2658690972, 3896932857, 2405933721, 3598341534, 1739151849, 2059771563,
2941905782, 765379943, 3656193659, 2665310133, 4002839437, 4100438937,
1182527902, 1740806640, 2086248208, 1700310, 0, 0, 0, 0, 0, 0, 0,
2090966819, 3441029862, 27212391, 435447421, 2672977875, 4124474721,
1785190681, 1719517599, 1742674423, 2115870594, 3839490262, 2107611495,
3657062014, 2679203818, 4225138397, 3362255065, 1719613855, 1744280061,
2141822948, 4254727942, 295698023, 436250240, 2685822980, 36077681,
761792986, 3598767520, 1745934851, 2168299593, 1705318, 0, 0, 0,
96468992, 1684543514, 3867256224, 1746737670, 2180882553, 588908646,
1705022056, 3658090114, 2695718953, 196510417, 3379048602, 1719877024,
1748457997, 2208932067, 1037700870, 228654440, 437294724, 2702796868,
309757053, 896027546, 646246817, 1750211092, 2236719438, 1482298790,
3315690088, 3658974853, 26719, 0, 0, 0, 0, 2251661702, 1717180726,
2510397288, 1511700102, 2713151596, 427765, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2266866115, 1943674038, 1570886504,
3659380359, 2716035191, 516327325, 4134042714, 109571489, 1753307680,
2285740554, 2258248006, 2577539176, 438490760, 2721802381, 613845257,
1466471450, 1451850146, 6694, 2311430764, 2665097062, 362971240,
3660097162, 2727635107, 702974565, 2825431258, 378189218, 1756207659,
2332140219, 2996448342, 1369624424, 1512933003, 2732746935, 784763805,
4184390746, 915143074, 1757551152, 2353636109, 3340382582, 2577604968,
439531148, 2738186444, 429289, 1164496832, 109915555, 0, 2371986256, 6,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2375918433,
3709482726, 94600040, 2587391630, 2744412387, 973508201, 2892556698,
2257504675, 1760533051, 2403443653, 4145692006, 2846090344, 3661563535,
2751621373, 1088852001, 459867418, 3062929828, 1762400834, 2431231029,
291128310, 1168395113, 440764049, 26904, 0, 0, 0, 0, 2444076134,
492455686, 4255414889, 1514686097, 2760796450, 1233556045, 2724800346,
3331497380, 1764514378, 2465047734, 828001286, 1034209897, 2588759699,
2766235958, 1322685337, 4184423642, 1452539300, 1766005328, 2489427218,
1213878726, 2980390505, 3662890644, 2772986191, 431433, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2508563804,
1528452726, 3651498345, 441955989, 2777114976, 1494652465, 2607375770,
1452704165, 1768594010, 2530321839, 1872386966, 564511593, 442287767,
2782161268, 1574344545, 6912154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2545264104, 2111463206, 94764137, 3663750808, 2786093442, 1638307925,
610895834, 3868763558, 1770838626, 2566235704, 2447008806, 1168526441,
442853017, 0, 0, 0, 0, 0, 2575148635, 2581227062, 3181800297, 2590451353,
2792974749, 1745263093, 2288623898, 379205030, 1772460649, 2591401625,
2837080582, 2913380201, 3664443034, 2797037996, 1811323629, 3345592538,
4137364902, 1773460076, 2607654615, 3097128438, 2846287465, 1517217435,
2801035708, 1875287009, 57262106, 2526812583, 1774393968, 2622596880,
3336204678, 2309430889, 2591196828, 2805230027, 1946590437, 1231671578,
647837095, 1775622773, 2643044189, 3675944582, 3584520553, 1517790877,
2810210783, 2023136785, 2489967578, 111045031, 0, 0, 3902437872,
2712118633, 2591733406, 2813422059, 2071371473, 3194613402, 1721698727,
1777506940, 2672404430, 4137319782, 2376588905, 3665720991, 2817419770,
2135334853, 4201250266, 111146407, 1778440832, 0, 0, 0, 0, 0, 0, 0, 0,
1778483200, 2688395274, 106594630, 2309496170, 3665979040, 2821679626,
2206638289, 1097469786, 2795575720, 1779686020, 2707794004, 416974310,
3047712874, 3666290337, 2826725917, 2288427525, 2422874842, 2795656616,
1780980361, 2728503459, 744131286, 3920147818, 445380258, 2831706673,
2366022449, 3647616282, 916683176, 1782176398, 2747640043, 1058705254,
497615210, 2593179300, 2836884036, 2452006005, 745163226, 1453639081,
1783536275, 2769398080, 6, 0, 0, 0, 0, 0, 111485952, 0, 2773854542,
1490720198, 3316214378, 3667363493, 2844158559, 2571544117, 2724882138,
111584681, 1785584283, 2803214782, 1960484038, 2242501226, 3667822247,
2851498619, 1, 0, 0, 0, 2819729917, 2216337574, 1906972266, 446834344,
2855168650, 436433, 0, 0, 0, 2835196474, 2455413830, 1235897962,
2594530985, 2858379926, 2794891665, 1936366490, 3601457578, 1788910247,
2855381639, 2778376470, 2175441770, 2594854570, 2863622826, 2878778065,
3278548890, 3601539498, 1790220972, 2876353239, 3113922070, 3249204074,
2595182251, 2868865726, 2963713041, 359318490, 111962539, 1791580850,
2898635563, 3466244950, 27999850, 3669237760, 2873846481, 3040259389,
1533728218, 917339563, 1792662198, 2915150699, 3730487110, 229342826,
3669530286, 27363, 0, 0, 0, 0, 2925636500, 3894065606, 2712380522,
1522189998, 2880858860, 3154554605, 3396006234, 1185889707, 1794529981,
2945297374, 4217028230, 3651924330, 448771759, 2885970688, 3235295265,
392889498, 4138757548, 1795742401, 2964433960, 224051974, 4255922795,
449070768, 0, 0, 0, 0, 0, 2973346889, 370853174, 2242665579, 2596689585,
2892917530, 3347493325, 2204835738, 3601999276, 1797561032, 2993532054,
689621494, 3115100523, 449525426, 2898094894, 3430331145, 3513463578,
3065207212, 1798838989, 3013979365, 1020972774, 4054644843, 1523582643,
2903141185, 3510023229, 460015066, 1186233773, 1800035026, 3033378094,
1322963830, 430784875, 1523893941, 2908187476, 3594958197, 1902860954,
3333806509, 1801476823, 3056708999, 1704646934, 2108529515, 450508470,
2913823594, 3680941765, 3228266202, 3602325933, 1802836700, 3078729179,
2048581190, 3249400939, 450840247, 2919000958, 3762731009, 225149466,
1723352494, 1804016353, 3095920640, 2333794934, 3652071787, 451131064,
2923785104, 3841374505, 1533777242, 1991869870, 1805343462, 3118837363,
2707089398, 28216427, 0, 0, 0, 0, 0, 0, 3126439570, 2816141750,
2645468011, 451593914, 2931125164, 3957766885, 3362500826, 649803182,
1807080173, 3146100444, 3112173574, 3249466219, 2599376571, 2935974846,
4035361809, 309052250, 3334233519, 1808276209, 3164974884, 3436901094,
4054792299, 452200124, 2940758993, 4111908149, 1517016410, 1455260079,
1809505014, 3184897904, 3759863734, 766477931, 1526269630, 2946132965,
4197891705, 2926307930, 2529087919, 6907, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3205083070, 4070243430, 1236258411, 452818623, 2950430720,
4262461441, 3949722010, 113230255, 1811759104, 3221073914, 39518278,
1303383660, 453084864, 2954980359, 45531289, 862718939, 113303984,
1812938752, 3239686210, 328926374, 1571836524, 3674584769, 2959371287,
442789, 0, 0, 0, 3251220590, 517670774, 296779884, 1527289538,
2962385955, 162972249, 2758551515, 3871516080, 1814878986, 3270881464,
836439078, 1169214572, 3675088579, 2967497782, 245810069, 4100733915,
3603162544, 1816173327, 3291590919, 1159401734, 2041649516, 454178500,
2972478538, 323404993, 1030508059, 1724189105, 1817352980, 3310727503,
1478170022, 2914084204, 2601977541, 2977655901, 409388549, 27, 0, 0,
3326194059, 1713051974, 2175900780, 454706886, 2980867178, 444097, 0, 0,
0, 3337466292, 1901796358, 671088748, 3676104391, 2983685236, 503760753,
3932977499, 433, 1820049408, 111092, 2118123520, 229768812, 455112392,
2987486339, 565626969, 627869723, 4140345778, 1821186850, 3371807289,
2451252278, 1169313132, 3676661449, 2992663702, 641728513, 1835833883,
1992935858, 1822350119, 111231, 2715494448, 805306476, 2603161290,
2996530341, 445053, 2808916160, 382382514, 1823333163, 3406410428,
3009096822, 28496748, 2147483648, 3001052342, 1, 3966548352, 114018738,
0, 111351, 0, 0, 3221225472, 27838, 0, 0, 1993082880, 1824758576,
3430003478, 3390779942, 108, 1530064896, 3006950605, 877055229,
1315754587, 435, 0, 3445732179, 3634050518, 28534892, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3452285805, 3734714214, 229867372, 1530431182, 3012783331, 971427425,
2808932507, 114208179, 1827478331, 3472470969, 4061871158, 1236520300,
457012943, 3017895159, 1052168089, 4117560347, 4140820915, 1828789055,
3493180424, 98255142, 2176064365, 1531070160, 3022941450, 1131860173,
1080889115, 2530283956, 1829985092, 3512579154, 408634822, 2780063085,
457635537, 3027922205, 1213649405, 2456625883, 4140982708, 1831410505,
3535647914, 781929302, 297058157, 2605487827, 3033754931, 1305924453,
3849140315, 3872631220, 1832721230, 3556357369, 1100697638, 968165997,
2605786836, 3038408005, 1378276473, 7162331, 383037440, 1833802579,
3574183229, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3576542535, 1427854582, 1974818925, 2606110421, 3043716441, 1466357189,
2154651419, 2530612661, 1835244376, 3596465554, 1750817222, 2914362989,
1532692182, 3048893805, 1548146429, 3463279195, 2262257077, 1836522333,
3617175009, 2077974198, 3786797933, 2606749399, 3053874560, 1625741353,
393053339, 383283638, 1837718370, 3636311593, 2392548166, 364265325,
2607068889, 3059248532, 1715919229, 1903008475, 3604601270, 1839258471,
3660953224, 2782619942, 2243337325, 2607437530, 28074, 0, 0, 0, 0,
3670914734, 2933615478, 230080365, 3681318619, 3067047346, 449357, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3681400535,
3105582598, 3048663405, 3681494747, 3070062013, 1887886345, 292406043,
2799457719, 1841798001, 3701585699, 3432739542, 4055316333, 2608076508,
3075173841, 1968627009, 1601033883, 2262667703, 1843092342, 3722295154,
3755702198, 632783981, 2608391902, 3080089060, 2045173353, 2825775323,
383694263, 1844271995, 3741431739, 4074470502, 1572327789, 1759,
3084779520, 2123816845, 4100848539, 3873433015, 1845549951, 3761616904,
94077222, 2243435374, 461530848, 3090312715, 2215043297, 1517163355,
1457626552, 1847663495, 3797792908, 714836486, 4189631598, 1535940322,
3101847093, 2401690537, 24002267, 115614137, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3830561040, 1197183382, 2579047022,
462599908, 3107352140, 2484528365, 1248743771, 920992185, 1851120533,
3850746204, 1524340326, 3585699950, 3684148965, 3112463967, 2565269029,
2557371611, 384202169, 1852414874, 3871455659, 1847302982, 163167598,
3684464359, 3117379186, 2641815373, 3782113051, 2800196025, 1853594526,
3890592243, 2166071270, 1035602286, 463558376, 3122818695, 2733041829,
963546395, 1189674426, 1855085476, 3914185294, 2535171446, 28991854, 0,
0, 0, 0, 0, 0, 3920476774, 2631640822, 3988420462, 3685218025,
3129437856, 453165, 0, 0, 0, 3931486863, 2824579494, 3250235758,
1537967850, 3133566640, 2907106109, 3849238299, 442, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 3956128495, 3206262662, 364577134, 2612045548, 3138612931,
2982603869, 628017179, 4142705083, 1858935730, 3975789369, 3525030966,
1237011822, 464877293, 3143724759, 3064393113, 1953422299, 3605915067,
1860197303, 3995974534, 3843799302, 1908119662, 1538918126, 3148508905,
3139890873, 3161386459, 1995376059, 1861426108, 4015897554, 4170956246,
3048990830, 465516271, 3153948414, 1, 0, 0, 0, 4029004804, 73122006,
1706825071, 1539430128, 3156569864, 454821, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4039490605,
249283430, 230440815, 1539610353, 3159518995, 3317100893, 1701779483,
3874597308, 1864145862, 4058889334, 551274486, 901548143, 1539909362,
3164499750, 3397841549, 27, 1727183872, 1865374667, 4079860934,
899403030, 2243746927, 466515699, 3170004795, 3486970845, 7291099, 0, 0,
4097162504, 1163645206, 1975327087, 1540495092, 3173609289, 3541497013,
997150107, 1727333821, 1867701204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4115774800, 1465636246, 2579325551, 3688281845, 3178524507, 3621189089,
2255446107, 116796861, 1868913625, 4135435674, 1784404550, 3451760239,
1541113590, 3183636335, 3702978333, 3580851227, 3874974141, 1870175197,
4155620839, 2103172886, 4122868079, 2615154423, 3188420481, 3779524673,
493848091, 2264436158, 1871420386, 4175806003, 2442912758, 1170099055,
468018937, 3194056599, 3870751129, 7314459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4193631861, 2736515142, 1841206383, 3689559802, 3199430570, 3960929001,
3513758299, 385574334, 1874484206, 4226137841, 3260805142, 1707020655,
1542592252, 3207688138, 4095147237, 1366282843, 385705407, 1876581366,
4259692401, 3793483782, 1572835439, 3690591998, 3215945705, 4225171161,
3446665563, 3607057855, 1878612989, 4292198381, 22806486, 1438649712,
1543624448, 3224203273, 64422101, 1299190108, 3607188928, 1880710149,
30523501, 538707879, 834700912, 470361858, 3231608870, 178717329,
3094359132, 1728249280, 1882414092, 57524436, 1838631, 0, 0, 0, 0, 0, 0,
1882865664, 64340207, 1083969479, 1036061040, 470902532, 0, 459888,
570425344, 4144275905, 1884134418, 85049661, 1419515063, 1677721712,
471205637, 3244752896, 391579065, 2188402460, 117843393, 1885723673,
109953437, 1817975463, 4190222448, 3692840710, 3251728498, 501679965,
3966794076, 2265434561, 1887427615, 138002950, 2270962007, 2982290544,
3221227272, 3258675340, 1, 1232113792, 1997095362, 1888967717, 162906726,
2661033783, 566395248, 472450826, 0, 0, 0, 0, 0, 176538266, 2874944119,
3854742384, 1546385162, 3268112561, 461637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 191742679, 3105631751, 3049449840, 3694077707, 28861,
802160640, 108052572, 4144769475, 1891949616, 209044248, 3386651175,
3317902448, 3694356236, 3275780302, 883363093, 1416680412, 3607979459,
1893243957, 229753703, 3709613831, 4190337392, 3694671629, 3280695521,
959909437, 2641421852, 1729006019, 1894423610, 248628143, 4024187815,
700695920, 2621245199, 28917, 1037041664, 3899717788, 923776451,
1895701567, 269075453, 52183159, 29626481, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 275891223, 173818407, 3586404209, 2621687568, 3293147408,
1166479681, 1685133276, 118598084, 1897765959, 302630012, 597444743,
1774490737, 2622097170, 3299635497, 1266094793, 3278974812, 3876791748,
1899289676, 327009497, 983322199, 3653562481, 2622474003, 3305664832,
1363612729, 510740060, 2534706629, 1900797010, 350864693, 1365005303,
1170557809, 475363093, 3312021848, 1465324989, 2205245212, 387328453,
1902533721, 379700640, 1830574823, 163953521, 1549580055, 29045, 0, 0, 0,
0, 393856474, 2052873783, 3452300913, 2623506199, 3322179967, 1627854889,
477201820, 1461223878, 1904909410, 416400943, 2409390999, 566641521,
2623854361, 3327619476, 1712789873, 1785829788, 1192869318, 1906203751,
436586109, 2732353639, 1371967601, 2624165658, 3332600231, 1792481953,
3060903068, 3877300678, 1907416171, 456509128, 3042733335, 2110184049,
2624472859, 3337646522, 1876368349, 192004380, 2535213511, 1908939889,
481937191, 3466359623, 566706545, 477427485, 3344527829, 1982274937,
1819400668, 1998440903, 1910627447, 511821717, 1866343, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517064620, 4045175751, 1439157361,
3699238687, 3354423801, 2148999137, 309461660, 1193307592, 1913330818,
552978485, 329024615, 2177390450, 478578465, 3363336732, 2290557441,
2591171676, 3877802440, 1915624586, 590465218, 937200983, 3452496242,
479192867, 3373560386, 2461475969, 1148341852, 2804234697, 1918459029,
636340591, 1687984247, 2647235954, 1553667878, 3385356911, 1, 0, 0, 0,
660720084, 2019335639, 2848581234, 480180007, 3388633725, 2683305985,
141721820, 388510154, 1921342625, 679332378, 2321326663, 3452579442,
1554220840, 3393352335, 2764515613, 1450349660, 4146687434, 1922636965,
700041833, 2644289319, 30047090, 1554536234, 3398267554, 2841061957,
2675091100, 2267713994, 1923816618, 719178418, 2963057623, 969590898,
481122091, 3403350016, 2925996929, 4050827996, 3073104330, 1925192879,
740936453, 3302797543, 2110462322, 1836, 0, 0, 0, 0, 0, 749325093,
3432821479, 3922409074, 2629035820, 3410391760, 3035049257, 1450366108,
3878513099, 1926798517, 766102374, 3701257959, 4056643442, 2629310253,
3414913761, 3109498433, 2675107484, 459, 0, 783141798, 3978083079,
4190878066, 482096942, 3419239154, 3178704713, 3765630684, 2536478155,
1929075902, 803064818, 1884087, 701236595, 482408240, 3424219909,
3257348217, 712182172, 925941196, 1930288323, 0, 274514864, 1036798067,
1556440881, 3429135127, 3341234605, 2138250780, 3341949388, 1931779272,
847367321, 727501415, 3989615731, 1556883250, 29490, 3446092608,
3799201564, 4147357132, 1933401294, 872795387, 1121767527, 1439502451,
483501876, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 881970463,
1272763047, 3922539891, 483657524, 3443851264, 472365, 1450398720,
389377485, 1935269078, 902679917, 1608308631, 768443763, 3705214774,
3449647973, 3667342989, 3027463132, 121039309, 1936825564, 927059403,
1998380391, 2647515763, 1558103863, 3455480700, 3760666609, 225673756,
2268613070, 1938267361, 950652452, 2380063511, 298729075, 484751161, 0,
3844079616, 1476395036, 121208270, 1939423232, 969526892, 2677860231,
701400179, 485029690, 29605, 0, 0, 0, 0, 981323417, 2858216007,
3452874355, 1558939450, 3468850095, 473885, 0, 0, 0, 994430668,
3072126327, 2647581299, 1073743675, 3472061371, 4019191809, 91471836,
121383375, 1942330609, 1015402268, 3407671911, 3721343347, 2633221948,
3477631952, 4115086649, 1601427036, 3074266575, 1943821558, 1039519607,
3797743671, 1439666035, 486123326, 3483726824, 4210507433, 3161714076,
2537491919, 7420, 1063112656, 4152360967, 2983191923, 486483775,
3489494014, 1, 0, 0, 0, 1075957762, 77398231, 1909462900, 2634159936,
3492508681, 475329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1088802869, 282919911, 835733364,
486868801, 3495523349, 103235957, 1819548125, 1195491792, 1948130567,
1107677309, 576522327, 1305513588, 1560905538, 3500241959, 1, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 118952, 0, 0, 0, 0, 0, 0, 0, 0, 1120784557, 803015575, 768656756,
3708622659, 3504174133, 244794253, 4118035421, 390327760, 1950473488,
1145950477, 1205670295, 3117491572, 2635278148, 3510269005, 338117881,
1249137053, 658848209, 1951767829, 1165611354, 1503467047, 3251726964,
2635556677, 3514856542, 414664217, 2490655709, 3343278545, 1953013017,
1186058664, 7, 0, 0, 0, 0, 0, 0, 1953234944, 1189990840, 1906121735,
1305595508, 1562220359, 3521606776, 521619381, 4235492701, 3343390161,
1954897184, 1217516059, 2359108279, 231881076, 1562679113, 3528750227,
645351797, 1970576285, 3611944402, 1956715815, 1246352014, 2820483479,
3050481524, 3710601034, 3535959214, 752306981, 3581195357, 122384850,
1958337838, 1274139374, 3260887127, 1171459444, 489785164, 3542119623,
851922065, 1198837021, 1464681939, 1960467766, 1304810349, 3730650967,
97746292, 490243918, 3549394147, 964120141, 2759124829, 391034323,
1961794875, 1328403395, 4120722679, 2043927156, 2638096207, 3555816697,
1077366761, 359990045, 2807072212, 1963777346, 1360122940, 375211223,
2849268341, 3712431953, 3565712671, 1238848069, 2943691165, 1196617172,
1966218572, 1396823244, 907889991, 2178210933, 3712907091, 3572462906,
1340560361, 158679197, 1465138645, 1967545681, 1418843424, 1260212871,
3520409717, 2639497044, 3578164559, 1424446761, 1484084317, 2270532053,
1969036630, 1443485051, 1679644823, 1775605365, 2639914838, 3584456040,
1533499061, 3312807773, 928462293, 1970658653, 1467864539, 2052939319,
4191548021, 492853079, 3591730563, 1650940033, 947227613, 2270756310,
1972624740, 1501419093, 2606589543, 3990254709, 1567094617, 3599332769,
1774672465, 2977278301, 4149928406, 1974623595, 1533400784, 3126685191,
3721850997, 493885275, 3608114626, 1912036449, 880134877, 660401623,
1976720756, 1567741778, 3692918423, 232225141, 3715671902, 3617617380,
2061983389, 3212176733, 4150207959, 1979080060, 1604179936, 4259151639,
366476917, 2642462560, 3625809413, 2193055889, 947260509, 2539719128,
1980980612, 1634064469, 442336855, 3990386550, 3716675425, 3632756256,
2303156789, 2692097821, 2271384024, 1982537098, 1658706099, 819825623,
1037618038, 2643289955, 3638720055, 2395431833, 4185275421, 2539915736,
1984224656, 1685444889, 1247646231, 3721998454, 1569970020, 3645470288,
2504484149, 1735809053, 2003158489, 1985928599, 1714280836, 1713215815,
2379848822, 3717887846, 3652154986, 2607245005, 3262541597, 2808551897,
1987337628, 1736301016, 2069732967, 3990484086, 497035111, 3658249858,
2708957249, 628524957, 929608154, 1989008803, 1761466938, 2447221815,
1708806262, 1571149673, 3664213656, 2816960949, 2289475869, 1466582490,
1990614441, 1788992160, 2912791303, 4191861366, 2645305194, 3670636209,
2909236029, 3883317277, 1466677722, 1992220079, 1814420226, 3319640327,
2648383094, 2645747564, 3678500558, 3039259937, 1685509981, 661499355,
1994284471, 1847450496, 3848124647, 2379979894, 3720009582, 3686889197,
3173478177, 3765892701, 3882851803, 1996299710, 1879694331, 69058711,
2044467063, 499275632, 3694294795, 3288821989, 1349980765, 3077660124,
1998118341, 1907219559, 484296439, 4191975287, 3720882033, 3700389666,
3387388505, 2792827037, 2004003292, 1999756747, 1933434059, 924700007,
2648499063, 3721312115, 3706943291, 3488052189, 343359645, 3346293213,
2001264081, 1957551399, 1297994519, 98384247, 1574197109, 3712776018,
3580327233, 1786206301, 2809515485, 2002804183, 1984814476, 1750981031,
3185420407, 1574659958, 3720836975, 3712448309, 3883366301, 2004335069,
2004901343, 2017320456, 2271076711, 3252562295, 2648930168, 3729094543,
3848763697, 1685559133, 3078207966, 2007096807, 2053234318, 2845698551,
3990793591, 1575753594, 3738400690, 3997662069, 4051155677, 3346781662,
2009177583, 2087051020, 3361599959, 2984192119, 1576220540, 3745609679,
4103568661, 1366807389, 3346883039, 2010701301, 2110119786, 3772643239,
1373605239, 2650388350, 3752622056, 4225203917, 3463967005, 3347011039,
2012847613, 2145247216, 22937559, 1306529144, 1577162624, 3760289799,
50823329, 980946334, 662764000, 2014469636, 2170675285, 425592311,
3051383160, 1577523073, 3766056989, 135758325, 2306351454, 1199715808,
2015763977, 2190074014, 715000423, 3722489976, 1577838466, 3771758641,
231179105, 3950524574, 2273561056, 2017385999, 2215502079, 1151209623,
2044795512, 504514436, 3777787978, 325551297, 1131958110, 3615825377,
2018795028, 2239357269, 1537087143, 4058084728, 1578657669, 3784931427,
444040833, 3111676830, 126291425, 2021039645, 2274746849, 2069765783,
3923898744, 505427847, 3793582211, 583501977, 997756126, 3347653090,
2023054884, 2308825694, 2665359111, 836928632, 2653509514, 3802626215,
732400321, 3245911902, 2542474722, 2025020972, 2338185937, 3109957095,
3387092088, 3727656843, 3808786623, 826772529, 528008734, 3616315875,
2026724914, 2364662584, 3508417543, 904087416, 3728021389, 3814619349,
917998997, 2037963934, 2005795299, 2028183096, 2389828501, 3936238135,
3789795704, 2654730126, 3821893873, 1031245645, 3833133086, 3348079075,
2029788734, 2415256566, 48119879, 1709445753, 3728865168, 3828054281,
1127715005, 1031343582, 4153489892, 2031672901, 2444092519, 484329207,
4125390713, 508053393, 3834542370, 1237815893, 2860067038, 2811413988,
2033213003, 2470307016, 916344167, 2447695481, 508495763, 3841489213,
1347916805, 226050654, 2006207973, 2034687569, 2493637924, 1277055687,
3991222137, 3730044820, 3846666576, 1425511725, 1450792158, 932540901,
2035981910, 2513560944, 1658738775, 1441107833, 1582938006, 3852958056,
1530369717, 3145297374, 1469513189, 2037538396, 2538464719, 2006867319,
3655722361, 2657068951, 3858921855, 1621596185, 427394462, 932739558,
2039258722, 2569135676, 2485019847, 1776702585, 510007193, 3866261914,
1749522937, 2474222238, 3080347110, 2041093737, 2597185196, 2942200727,
568770937, 2657937307, 3872946612, 1850186609, 4000955038, 3885750758,
2042715759, 2622088971, 3370021271, 3320262009, 1584617372, 3879565774,
1957141773, 1467601950, 1469938151, 2044436086, 2649876341, 3797841959,
1575456889, 1585047454, 3886840297, 2073534153, 3346657310, 2006925799,
2046271101, 2678188002, 4238245575, 31979897, 3732961184, 3893328386,
2172100685, 578422494, 2812320232, 2047614594, 2700208184, 287212551,
1038633082, 3733272481, 3898571285, 2255987085, 1870273246, 2543965672,
2048876167, 2720655491, 635341063, 2649269114, 1586161570, 3904666157,
2365039373, 3665442206, 665025000, 2050645646, 2749229296, 1109299175,
1441337210, 3734095780, 3911875144, 2477237445, 1266307358, 1738882537,
2052497045, 2777278814, 1545508503, 32078458, 1587038118, 3918625379,
501345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2794056092, 1809750663, 4125734522,
3734783910, 3922885234, 2650253153, 3984226718, 3081228777, 2055249567,
2822367752, 2258542919, 2582257786, 2661468072, 3929569932, 2758256893,
1417319262, 665415146, 2056920742, 2849106542, 2694752183, 971671674,
2661906346, 3936713383, 2872552113, 3246042782, 3618315754, 2058673836,
2878204636, 3177098919, 434831482, 2662385580, 3944446660, 2996284553,
1031458014, 934093291, 2060967605, 2917002092, 3818829863, 2582354810,
515577774, 3955718895, 3186077513, 4001036702, 128966123, 2063752896,
2958421007, 144622007, 3454807163, 2663634864, 3964107536, 3308761397,
1669011166, 2008134124, 2065735367, 2991189130, 689883575, 3454839931,
3737892786, 3972692784, 3450319685, 3967498462, 3887322604, 7887,
3024743687, 1214173591, 32319867, 0, 0, 0, 0, 0, 0, 3035229489,
1377752087, 1642942843, 2664822709, 3983571801, 3622286813, 2373673310,
3082179053, 2070453977, 3067211181, 1889459127, 1106102651, 517838775,
3991305080, 3748116405, 75202398, 1471688174, 2072452833, 3098930723,
2409554807, 837698939, 2665822137, 3999366038, 3877091753, 2122030622,
4156168686, 2074484456, 3131960995, 2942233415, 1039058555, 1592616891,
4008082359, 4022844361, 175882462, 3887878639, 2076827377, 3168923441,
3529438247, 1575964795, 3740669885, 4017257434, 4164402661, 2491146846,
2008970735, 2079055610, 3205361596, 4099865751, 2314197115, 2667472831,
4025383930, 4284989385, 4269538974, 3082821103, 2080677632, 3228168214,
144638439, 2851087996, 2667767744, 4030102540, 65519849, 1182535839,
3888196080, 2081726212, 3244945494, 425657831, 3656412284, 1594374081,
4036066339, 160940629, 2709268319, 2546111984, 2083217162, 3268800689,
807340951, 1240516476, 3742209987, 4041636919, 256361397, 41696991,
2814646769, 2084855568, 3296588056, 1272910471, 435240060, 521459653,
4049108053, 374850929, 1937529631, 2009459185, 2086903576, 3330142613,
1822366359, 32618876, 2669443015, 4057300083, 510117745, 4101798687,
935849457, 2088935200, 3362910741, 2321490471, 3723636860, 522446792,
4065492114, 638044517, 1903991391, 3888766450, 2090950439, 3394105996,
2824808823, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3401446059, 2917083959,
4260543356, 3744217034, 4073422001, 758631229, 3682383327, 936082930,
2092556078, 3418223339, 3185520439, 4260559740, 3744479179, 4077616321,
825740349, 461161951, 936148467, 2093604658, 3435000619, 3453956919,
4260576124, 3744741324, 4081810641, 892849469, 1534907871, 936214003,
2094653238, 3451777899, 3722393399, 4260592508, 3745003469, 4086004961,
959958589, 2608653791, 936279539, 2095701818, 3468555179, 3990829879,
4260608892, 3745265614, 4090199281, 1027067709, 3682399711, 936345075,
2096750398, 3485332459, 4259266359, 4260625276, 3745527759, 4094393601,
1094176829, 461178335, 936410612, 2097798978, 3502109739, 232735543,
4260641661, 3745789904, 4098587921, 1161285949, 1534924255, 936476148,
2098847558, 3518887019, 501172023, 4260658045, 3746052049, 4102782241,
1228395069, 2608670175, 936541684, 2099896138, 3535664299, 769608503,
4260674429, 3746314194, 4106976561, 1295504189, 3682416095, 936607220,
2100944718, 3552441579, 1038044983, 4260690813, 3746576339, 4111170881,
1362613309, 461194719, 936672757, 2101993298, 3569218859, 1306481463,
4260707197, 3746838484, 4115365201, 1429722429, 1534940639, 936738293,
2103041878, 3585996139, 1574917943, 4260723581, 3747100629, 4119559521,
1496831549, 2608686559, 936803829, 2104090458, 3602773419, 1843354423,
4260739965, 3747362774, 4123753841, 1563940669, 3682432479, 936869365,
2105139038, 3619550699, 2111790903, 4260756349, 3747624919, 4127948161,
1631049789, 461211103, 936934902, 2106187618, 3636327979, 2380227383,
4260772733, 3747887064, 4132142481, 1698158909, 1534957023, 937000438,
2107236198, 3653105259, 2648663863, 4260789117, 3748149209, 4136336801,
1765268029, 2608702943, 937065974, 2108284778, 3669882539, 2917100343,
4260805501, 3748411354, 4140531121, 1832377149, 3682448863, 937131510,
2109333358, 3686659819, 3185536823, 4260821885, 3748673499, 4144725441,
1899486269, 461227487, 937197047, 2110381938, 3703437099, 3453973303,
4260838269, 3748935644, 4148919761, 1966595389, 1534973407, 937262583,
2111430518, 3720214379, 3722409783, 4260854653, 3749197789, 4153114081,
2033704509, 2608719327, 937328119, 2112479098, 3736991659, 3990846263,
4260871037, 3749459934, 4157308401, 2100813629, 3682465247, 937393655,
2113527678, 3753768939, 4259282743, 4260887421, 3749722079, 4161502721,
2167922749, 461243871, 937459192, 2114576258, 3770546219, 232751927,
4260903806, 3749984224, 4165697041, 2235031869, 1534989791, 937524728,
2115624838, 3787323499, 501188407, 4260920190, 3750246369, 4169891361,
2302140989, 2608735711, 937590264, 2116673418, 3804100779, 769624887,
4260936574, 3750508514, 4174085681, 2369250109, 3682481631, 937655800,
2117721998, 3820878059, 1038061367, 4260952958, 3750770659, 4178280001,
2436359229, 461260255, 937721337, 2118770578, 3837655339, 1306497847,
4260969342, 3751032804, 4182474321, 2503468349, 1535006175, 937786873,
2119819158, 3854432619, 1574934327, 4260985726, 3751294949, 4186668641,
2570577469, 2608752095, 937852409, 2120867738, 3871209899, 1843370807,
4261002110, 3751557094, 4190862961, 2637686589, 3682498015, 937917945,
2121916318, 3887987179, 2111807287, 4261018494, 3751819239, 4195057281,
2704795709, 461276639, 937983482, 2122964898, 3904764459, 2380243767,
4261034878, 3752081384, 4199251601, 2771904829, 1535022559, 938049018,
2124013478, 3921541739, 2648680247, 4261051262, 3752343529, 4203445921,
2839013949, 2608768479, 938114554, 2125062058, 3938319019, 2917116727,
4261067646, 3752605674, 4207640241, 2906123069, 3682514399, 938180090,
2126110638, 3955096299, 3185553207, 4261084030, 3752867819, 4211834561,
2973232189, 461293023, 938245627, 2127159218, 3971873579, 3453989687,
4261100414, 3753129964, 4216028881, 3040341309, 1535038943, 938311163,
2128207798, 3988650859, 3722426167, 4261116798, 3753392109, 4220223201,
3107450429, 2608784863, 938376699, 2129256378, 4005428139, 3990862647,
4261133182, 3753654254, 4224417521, 3174559549, 3682530783, 938442235,
2130304958, 4022205419, 4259299127, 4261149566, 3753916399, 4228611841,
3241668669, 461309407, 938507772, 2131353538, 4038982699, 232768311,
4261165951, 3754178544, 4232806161, 3308777789, 1535055327, 938573308,
2132402118, 4055759979, 501204791, 4261182335, 3754440689, 4237000481,
3375886909, 2608801247, 938638844, 2133450698, 4072537259, 769641271,
4261198719, 3754702834, 4241194801, 3442996029, 3682547167, 938704380,
2134499278, 4089314539, 1038077751, 4261215103, 3754964979, 4245389121,
3510105149, 461325791, 938769917, 2135547858, 4106091819, 1306514231,
4261231487, 3755227124, 4249583441, 3577214269, 1535071711, 938835453,
2136596438, 4122869099, 1574950711, 4261247871, 3755489269, 4253777761,
3644323389, 2608817631, 938900989, 2137645018, 4139646379, 1843387191,
4261264255, 3755751414, 4257972081, 3711432509, 3682563551, 938966525,
2138693598, 4156423659, 2111823671, 4261280639, 3756013559, 4262166401,
3778541629, 461342175, 939032062, 2139742178, 4173200939, 2380260151,
4261297023, 3756275704, 4266360721, 3845650749, 1535088095, 939097598,
2140790758, 4189978219, 2648696631, 4261313407, 3756537849, 4270555041,
3912759869, 2608834015, 939163134, 2141839338, 4206755499, 2917133111,
4261329791, 3756799994, 4274749361, 3979868989, 3682579935, 939228670,
2142887918, 4223532779, 3185569591, 4261346175, 3757062139, 4278943681,
4046978109, 461358559, 939294207, 2143936498, 4240310059, 3454006071,
4261362559, 3757324284, 4283138001, 4114087229, 1535104479, 939359743,
2144985078, 4257087339, 3722442551, 4261378943, 3757586429, 4287332321,
4181196349, 2608850399, 939425279, 2146033658, 4273864619, 3990879031,
4261395327, 3757848574, 4291526641, 4248305469, 3682596319, 939490815,
2147082238, 4290641899, 4259315511, 4261411711, 3758110719, 753665,
20447294, 461374944, 939556352, 2148130818, 12451883, 232784696,
4261428096, 3758372864, 4947985, 87556414, 1535120864, 939621888,
2149179398, 29229163, 501221176, 4261444480, 3758635009, 9142305,
154665534, 2608866784, 939687424, 2150227978, 46006443, 769657656,
4261460864, 3758897154, 13336625, 221774654, 3682612704, 939752960,
2151276558, 62783723, 1038094136, 4261477248, 3759159299, 17530945,
288883774, 461391328, 939818497, 2152325138, 79561003, 1306530616,
4261493632, 3759421444, 21725265, 355992894, 1535137248, 939884033,
2153373718, 96338283, 1574967096, 4261510016, 3759683589, 25919585,
423102014, 2608883168, 939949569, 2154422298, 113115563, 1843403576,
4261526400, 3759945734, 30113905, 490211134, 3682629088, 940015105,
2155470878, 129892843, 2111840056, 4261542784, 3760207879, 34308225,
557320254, 461407712, 940080642, 2156519458, 146670123, 2380276536,
4261559168, 3760470024, 38502545, 624429374, 1535153632, 940146178,
2157568038, 163447403, 2648713016, 4261575552, 3760732169, 42696865,
691538494, 2608899552, 940211714, 2158616618, 180224683, 2917149496,
4261591936, 3760994314, 46891185, 758647614, 3682645472, 940277250,
2159665198, 197001963, 3185585976, 4261608320, 3761256459, 51085505,
825756734, 461424096, 940342787, 2160713778, 213779243, 3454022456,
4261624704, 3761518604, 55279825, 892865854, 1535170016, 940408323, 8246,
229770087, 3743430440, 1107527296, 540649486, 61243624, 2, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247595948, 3995089736, 33799296, 540821519,
63734002, 1028132674, 3699439136, 1208975875, 2163875902, 264373228,
4263526216, 33815680, 541083664, 67928322, 1095241794, 478217760,
1209041412, 2164924482, 281150508, 236995400, 33832065, 541345809,
72122642, 1162350914, 1551963680, 1209106948, 2165973062, 297927788,
505431880, 33848449, 541607954, 76316962, 1229460034, 2625709600,
1209172484, 2167021642, 314705068, 773868360, 33864833, 541870099,
80511282, 1296569154, 3699455520, 1209238020, 2168070222, 331482348,
1042304840, 33881217, 542132244, 84705602, 1363678274, 478234144,
1209303557, 2169118802, 348259628, 1310741320, 33897601, 542394389,
88899922, 1430787394, 1551980064, 1209369093, 2170167382, 365036908,
1579177800, 33913985, 542656534, 93094242, 1497896514, 2625725984,
1209434629, 2171215962, 381814188, 1847614280, 33930369, 542918679,
97288562, 1565005634, 3699471904, 1209500165, 2172264542, 398591468,
2116050760, 33946753, 543180824, 101482882, 1632114754, 478250528,
1209565702, 2173313122, 415368748, 2384487240, 33963137, 543442969,
105677202, 1699223874, 1551996448, 1209631238, 2174361702, 432146028,
2652923720, 33979521, 543705114, 109871522, 1766332994, 2625742368,
1209696774, 2175410282, 448923308, 2921360200, 33995905, 543967259,
114065842, 1833442114, 3699488288, 1209762310, 2176458862, 465700588,
3189796680, 34012289, 544229404, 118260162, 1900551234, 478266912,
1209827847, 2177507442, 482477868, 3458233160, 34028673, 544491549,
122454482, 1967660354, 1552012832, 1209893383, 2178556022, 499255148,
3726669640, 34045057, 544753694, 126648802, 2034769474, 2625758752,
1209958919, 2179604602, 516032428, 3995106120, 34061441, 545015839,
130843122, 2101878594, 3699504672, 1210024455, 2180653182, 532809708,
4263542600, 34077825, 545277984, 135037442, 2168987714, 478283296,
1210089992, 2181701762, 549586988, 237011784, 34094210, 545540129,
139231762, 2236096834, 1552029216, 1210155528, 2182750342, 566364268,
505448264, 34110594, 545802274, 143426082, 2303205954, 2625775136,
1210221064, 2183798922, 583141548, 773884744, 34126978, 546064419,
147620402, 2370315074, 3699521056, 1210286600, 2184847502, 599918828,
1042321224, 34143362, 546326564, 151814722, 2437424194, 478299680,
1210352137, 2185896082, 616696108, 1310757704, 34159746, 546588709,
156009042, 2504533314, 1552045600, 1210417673, 2186944662, 633473388,
1579194184, 34176130, 546850854, 160203362, 2571642434, 2625791520,
1210483209, 2187993242, 650250668, 1847630664, 34192514, 547112999,
164397682, 2638751554, 3699537440, 1210548745, 2189041822, 667027948,
2116067144, 34208898, 547375144, 168592002, 2705860674, 478316064,
1210614282, 2190090402, 683805228, 2384503624, 34225282, 547637289,
172786322, 2772969794, 1552061984, 1210679818, 2191138982, 700582508,
2678106024, 436896386, 2695407658, 177373859, 2846370394, 2726471584,
3089799690, 2192302250, 719194803, 2950736824, 504021890, 3769415723,
181633715, 2914528094, 3816994784, 3089866250, 2193432750, 738593533,
3261116504, 1175129474, 1622235180, 186483398, 2992123014, 763546208,
1479329291, 2194563251, 755370813, 3529552984, 1175145858, 1622497325,
190677718, 3059232134, 1837292128, 1479394827, 2195611831, 772148093,
3797989464, 1175162242, 1622759470, 194872038, 3126341254, 2911038048,
1479460363, 2196660411, 788925373, 4066425944, 1175178626, 1623021615,
199066358, 3193450374, 3984783968, 1479525899, 2197708991, 805702653,
39895128, 1175195011, 1623283760, 203260678, 3260559494, 763562592,
1479591436, 2198757571, 822479933, 308331608, 1175211395, 1623545905,
207454998, 3327668614, 1837308512, 1479656972, 2199806151, 839257213,
576768088, 1175227779, 1623808050, 211649318, 3394777734, 2911054432,
1479722508, 2200854731, 856034493, 845204568, 1175244163, 550328371, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 864423129, 1021365912, 369950083, 3771775028,
219906884, 3541578902, 1132679008, 406138381, 2203443413, 898501981,
1541461656, 3993859459, 3772258357, 227378017, 3654825558, 2843961568,
1479982605, 2205114587, 926551493, 1998642504, 2718818947, 551479351,
234521469, 3769120778, 377717792, 674787854, 2206867682, 953290286,
2418074536, 839796355, 551888953, 241075094, 3869784466, 1988336672,
1211757070, 2208473320, 980029072, 2854283816, 3524177539, 552314938,
247890864, 3978836786, 3733173792, 2822476302, 2210144494, 1005719286,
3256938536, 1376718467, 552708156, 254182344, 4081597626, 1149488928,
675099151, 2211848437, 1032982366, 3701536424, 303004803, 2700658750,
261653476, 4203232898, 3062098848, 1748957711, 2213748988, 1063391186,
4179688936, 3390040707, 553625663, 268862464, 19415090, 545523233,
3359676944, 2215420162, 1090129976, 320930888, 1645236868, 554035265,
275547161, 128467410, 2256805921, 406990352, 2217074953, 1117130911,
744557240, 4128290692, 1628190786, 282035250, 234373974, 3984865761,
2554580496, 2218811663, 1144393991, 1189155128, 2651922820, 3776108612,
288982092, 341329150, 1367626465, 3628424721, 2220450069, 1171132779,
1608587160, 907118468, 1629042758, 295666790, 448284310, 3078909025,
944174609, 2222088476, 1196822991, 2019630520, 3054626692, 1629435975,
302089342, 551045150, 428115169, 1481145874, 2223694114, 1222513201,
2430673880, 1041385860, 1629845577, 308511895, 655903150, 2105843169,
2554990098, 2225332520, 1248727701, 2850105880, 3591548804, 1630255178,
315065520, 760761142, 3817125729, 4165707282, 2227003694, 1275466491,
3269537896, 1444089988, 3778127948, 321160391, 854084774, 948227297,
676132371, 2228347188, 1296438092, 3605083496, 2517852292, 3778455629,
326403291, 937971174, 2290409697, 676214291, 2229657913, 1317933982,
3949017736, 3725832836, 1631307854, 331777264, 1023954734, 3666146657,
1213169171, 2231001406, 1338905582, 4284563336, 504627844, 1631635536,
337020164, 1107841134, 713361761, 1213251092, 2232312131, 1359877182,
325141640, 1578390149, 1631963217, 342263064, 1191727534, 2055544161,
1213333012, 2233622856, 1380848782, 660687240, 2652152453, 1632290898,
347505964, 1275613934, 3431281121, 1750287892, 2234966349, 1402344672,
1004621480, 3860132997, 3780110419, 352879936, 1361597494, 478496225,
1750369813, 2236277074, 1423840560, 1348555720, 840255365, 2706708565,
358319445, 1448629634, 1871010465, 2555761173, 2237636951, 1445074307,
1688295640, 1914017669, 2707036246, 363562345, 1532516034, 3213192865,
2555843093, 2238947676, 1466045907, 2023841240, 2987779973, 2707363927,
368805245, 1616402434, 260407969, 2555925014, 2240258401, 1487541797,
2376164088, 169229701, 560232537, 374441363, 1706580314, 1703254049,
4166625814, 2241667430, 1509561977, 2720098360, 1242992005, 560560218,
379684263, 1790466714, 3045436449, 408611350, 2243010924, 1531057867,
3064032600, 2450972549, 2708379739, 385058235, 1876450274, 126206113,
408695319, 2244321649, 1552553755, 3407966840, 3658953093, 561231964,
390432208, 1963482414, 1518720353, 1214086679, 2245681526, 1573787502,
3764484008, 773293701, 561576030, 395871717, 2048417394, 2911234593,
3093219863, 2247106939, 1596594117, 4121001208, 2316819845, 561936479,
401704443, 2144886754, 126222497, 408957464, 2248515969, 1619138587,
178356824, 3524800390, 3783506016, 407143951, 2229821734, 1468404961,
409039384, 2249826694, 1640110187, 513902424, 303595398, 562604130,
412517924, 2317902450, 2911250913, 2556612120, 2251284875, 1663965381,
903974168, 2383994246, 3784218723, 418743867, 2417517550, 226902497,
2288274969, 2252841361, 1688869156, 1302434568, 169426054, 2710866021,
424969811, 2517132650, 1820744097, 2288372249, 2254414231, 1714035076,
1700894984, 2249825158, 1637513318, 431195755, 2, 0, 0, 0, 1727404473,
1910610984, 1176095878, 2711447655, 434079350, 2660788114, 4085676961,
3630686745, 2256576927, 1747851783, 2233573640, 2048530822, 564279400,
439191178, 2741528774, 1065783009, 2557022746, 8612, 1766726222,
2531370360, 2384093062, 3785783401, 443516570, 551374, 0, 1879048192,
2258559399, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1780357760, 2770446552, 2316999558,
564828266, 448235180, 2891475706, 3548820257, 409692698, 2260345262,
1809455855, 3236016072, 1176177286, 2712762476, 455378631, 3004722346,
1049021921, 141365787, 0, 1833573194, 3638670760, 3592121478, 2157, 0, 0,
0, 0, 0, 1846156157, 3810637944, 1511756166, 565819502, 463832808,
3136843434, 3112627489, 946797083, 2264015292, 1867127757, 4146183544,
2585518470, 566147183, 469075708, 3220729834, 159842593, 946879004,
2265326017, 1888099357, 186761848, 3659280775, 566474864, 474318608,
3304616234, 1502024993, 946960924, 2266636742, 1909595245, 547473336,
1109166471, 2714335346, 480610087, 3411571386, 3280416545, 410200604,
2268471757, 1939479775, 1025625816, 35453831, 2164, 0, 0, 0, 0, 0,
1949965577, 1168232744, 2048727687, 2714904692, 489326409, 554170,
931613824, 947188253, 2270306772, 1968840015, 1455423496, 2652725895,
3788949621, 494569308, 3628627454, 2391237217, 2826325533, 2271764953,
1991122342, 1868684040, 907921031, 3789383799, 34679, 0, 0, 4168589312,
2273157598, 2014453245, 2225201336, 2183010695, 2715973752, 506824587,
3828906226, 1367839393, 4168704542, 2274992613, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2043551341,
2682382232, 773752199, 3790149754, 513640357, 3935861390, 3028790241,
4168804894, 2276549099, 2067930826, 3068259688, 2585715079, 2716780667,
519604156, 4031282170, 277332641, 2826720799, 2278040049, 2092048166,
3458331432, 304037511, 569682045, 525764564, 4129848690, 1837619745,
2289946143, 2279580151, 2116427651, 3844208888, 2116000391, 3791280254,
531728362, 4225269470, 3381129441, 947862047, 2281071101, 2140282847,
4213309064, 3525308551, 570394751, 536905727, 8945682, 310903650,
3363855904, 2282250753, 2158895142, 224527112, 102775432, 3791947905,
542345235, 99123558, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2174623844, 467797688,
3659559816, 3792152705, 545490975, 146309662, 2458395554, 3095551520,
2284315145, 2191138979, 736234152, 3793794184, 3792423042, 549685295,
213418782, 3548918754, 3095617056, 2285347341, 2207916258, 1000476328,
3659592328, 3792685187, 553879615, 280527902, 327697378, 3095682593,
2286412305, 2225217827, 1289884376, 3995154312, 3792959620, 558336080,
352879918, 1468552418, 4169494049, 2287526421, 2243305833, 1566709528,
4129388936, 1645746309, 562661473, 421037622, 34, 0, 2288336896,
2256150938, 1780619816, 3391205000, 572225670, 566331503, 480806682,
3565712354, 3632752161, 2289607197, 2276598247, 2103582472, 4263639688,
1646282887, 571377794, 562595918, 562595618, 3095960098, 2290885154,
2297045557, 2434933752, 975325576, 2720348297, 576686230, 649628058,
1971887138, 4169787938, 2292261415, 2319065737, 2787256632, 2317524360,
573208714, 34987, 0, 0, 0, 2292989952, 2330862261, 2959223784, 639813000,
1647106187, 584419508, 769166182, 3918051554, 1485553186, 2294211119, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2350260993, 3286380696, 35853704, 0, 0,
0, 0, 0, 0, 2358125338, 8, 0, 0, 0, 0, 0, 0, 0, 2361271084, 3445764904,
3995285640, 1647569036, 591694032, 883461406, 1351144290, 1754091043,
2295751221, 2373854044, 3647092264, 2921556104, 1647765645, 594839772,
933793246, 2156453730, 1754140195, 2296537656, 2386437004, 3848419624,
1847826568, 1647962254, 597985512, 984125086, 2961763170, 1754189347,
2297324091, 2399019964, 4049746984, 774097032, 1648158863, 601131252,
1034456926, 3767072610, 1754238499, 2298110526, 2411602924, 4251074344,
3995334792, 1648355471, 604276992, 1084788766, 277414754, 1754287652,
2298896961, 2424185884, 157434408, 2921605257, 1648552080, 607422732,
1135120606, 1082724194, 1754336804, 2299683396, 2436768844, 358761768,
1847875721, 1648748689, 610568472, 1185452446, 1888033634, 1754385956,
2300469831, 2449351804, 560089128, 774146185, 1648945298, 613714212,
1235784286, 2693343074, 1754435108, 2301256266, 2461934764, 761416488,
3995383945, 1649141906, 616859952, 1286116126, 3498652514, 1754484260,
2302042701, 2474517724, 962743848, 2921654409, 1649338515, 620005692,
1336447966, 8994658, 1754533413, 2302829136, 2487100684, 1164071208,
1847924873, 1649535124, 623151432, 1386779806, 814304098, 1754582565,
2303615571, 2499683644, 1365398568, 774195337, 1649731733, 626297172,
1437111646, 1619613538, 1754631717, 2304402006, 2512266604, 1566725928,
3995433097, 1649928341, 629442912, 1487443486, 2424922978, 1754680869,
2305188441, 2524849564, 1768053288, 2921703561, 1650124950, 632588652,
1537775326, 3230232418, 1754730021, 2305974876, 2537432524, 1969380648,
1847974025, 1650321559, 635734392, 1588107166, 4035541858, 1754779173,
2306761311, 2550015484, 2170708008, 774244489, 1650518168, 638880132,
1638439006, 545884002, 1754828326, 2307547746, 2562598444, 2372035368,
3995482249, 1650714776, 642025872, 1688770846, 1351193442, 1754877478,
2308334181, 2575181404, 2573362728, 2921752713, 1650911385, 645171612,
1739102686, 2156502882, 1754926630, 2309120616, 2587764364, 2774690088,
1848023177, 1651107994, 648317352, 1789434526, 2961812322, 1754975782,
2309907051, 2600347324, 2976017448, 774293641, 1651304603, 651463092,
1839766366, 3767121762, 1755024934, 2310693486, 2612930284, 3177344808,
3995531401, 1651501211, 654608832, 1890098206, 277463906, 1755074087,
2311479921, 2625513244, 3378672168, 2921801865, 1651697820, 657754572,
1940430046, 1082773346, 1755123239, 2312266356, 2638096204, 3579999528,
1848072329, 1651894429, 660900312, 1990761886, 1888082786, 1755172391,
2313052791, 2650679164, 3781326888, 774342793, 1652091038, 664046052,
2041093726, 2693392226, 1755221543, 2313839226, 2663262124, 3982654248,
3995580553, 1652287646, 667191792, 2091425566, 3498701666, 1755270695,
2314625661, 2675845084, 4183981608, 2921851017, 1652484255, 670337532,
2141757406, 9043810, 1755319848, 2315412096, 2688428044, 90341672,
1848121482, 1652680864, 673483272, 2192089246, 814353250, 1755369000,
2316198531, 2701011004, 291669032, 774391946, 1652877473, 676629012,
2242421086, 1619662690, 1755418152, 2316984966, 2713593964, 492996392,
3995629706, 1653074081, 679774752, 2292752926, 2424972130, 1755467304,
2317771401, 2726176924, 694323752, 2921900170, 1653270690, 682920492,
2343084766, 3230281570, 1755516456, 2318557836, 2738759884, 895651112,
1848170634, 1653467299, 686066232, 2393416606, 4035591010, 1755565608,
2319344271, 2751342844, 1096978472, 774441098, 1653663908, 689211972,
2443748446, 545933154, 1755614761, 2320130706, 2763925804, 1298305832,
3995678858, 1653860516, 692357712, 2494080286, 1351242594, 1755663913,
2320917141, 2776508764, 1499633192, 2921949322, 1654057125, 695503452,
2544412126, 2156552034, 1755713065, 2321703576, 2789091724, 1700960552,
1848219786, 1654253734, 698649192, 2594743966, 2961861474, 1755762217,
2322490011, 2801674684, 1902287912, 774490250, 1654450343, 701794932,
2645075806, 3767170914, 1755811369, 2323276446, 2814257644, 2103615272,
3995728010, 1654646951, 704940672, 2695407646, 277513058, 1755860522,
2324062881, 2826840604, 2304942632, 2921998474, 1654843560, 708086412,
2745739486, 1082822498, 1755909674, 2324849316, 2839423564, 2506269992,
1848268938, 1655040169, 711232152, 2796071326, 1888131938, 1755958826,
2325635751, 2852006524, 2707597352, 774539402, 1655236778, 714377892,
2846403166, 2693441378, 1756007978, 2326422186, 2864589484, 2908924712,
3995777162, 1655433386, 717523632, 2896735006, 3498750818, 1756057130,
2327208621, 2877172444, 3110252072, 2922047626, 1655629995, 720669372,
2947066846, 9092962, 1756106283, 2327995056, 2889755404, 3311579432,
1848318090, 1655826604, 723815112, 2997398686, 814402402, 1756155435,
2328781491, 2902338364, 3512906792, 774588554, 1656023213, 726960852,
3047730526, 1619711842, 1756204587, 2329567926, 2914921324, 3714234152,
3995826314, 1656219821, 730106592, 3098062366, 2425021282, 1756253739,
2330354361, 2927504284, 3915561512, 2922096778, 1656416430, 733252332,
3148394206, 3230330722, 1756302891, 2331140796, 2940087244, 4116888872,
1848367242, 1656613039, 736398072, 3198726046, 4035640162, 1756352043,
2331927231, 2952670204, 23248936, 774637707, 1656809648, 739543812,
3249057886, 545982306, 1756401196, 2332713666, 2965777452, 249742184,
371998859, 3804539057, 743738131, 3320361318, 1753946338, 682735148,
2333991623, 2986749052, 585287784, 1445761163, 3804866738, 748981031,
3404247718, 3096128738, 682817068, 2335302348, 3007720652, 920833384,
2519523467, 3805194419, 754223931, 3488134118, 143343842, 682898989,
2336613073, 3028692252, 1256378984, 3593285771, 3805522100, 759466831,
3572020518, 1485526242, 682980909, 2337923798, 3049663852, 1591924584,
372080779, 3805849782, 764709731, 3655906918, 2827708642, 683062829,
2339234523, 3070635452, 1927470184, 1445843083, 3806177463, 769952631,
3739793318, 4169891042, 683144749, 2340545248, 3091607052, 2263015784,
2519605387, 3806505144, 775195531, 3823679718, 1217106146, 683226670,
2341855973, 3112578652, 2598561384, 3593367691, 3806832825, 780438431,
3907566118, 2559288546, 683308590, 2343166698, 3133550252, 2934106984,
372162699, 3807160507, 785681331, 3991452518, 3901470946, 683390510,
2344477423, 3154521852, 3269652584, 1445925003, 3807488188, 790924231,
4075338918, 948686050, 683472431, 2345788148, 3175493452, 3605198184,
2519687307, 3807815869, 796167131, 4159225318, 2290868450, 683554351,
2347098873, 3196465052, 3940743784, 3593449611, 3808143550, 801410031,
4243111718, 3633050850, 683636271, 2348409598, 3217436652, 4276289384,
372244619, 3808471232, 806652931, 32030822, 680265955, 683718192,
2349720323, 3238408252, 316867688, 1446006924, 3808798913, 811895831,
115917222, 2022448355, 683800112, 2351031048, 3259379852, 652413288,
2519769228, 3809126594, 817138731, 199803622, 3364630755, 683882032,
2352341773, 3280351452, 987958888, 3593531532, 3809454275, 822381631,
283690022, 411845859, 683963953, 2353652498, 3301323052, 1323504488,
372326540, 3809781957, 827624531, 367576422, 1754028259, 684045873,
2354963223, 3322294652, 1659050088, 1446088844, 3810109638, 832867431,
451462822, 3096210659, 684127793, 2356273948, 3343266252, 1994595688,
2519851148, 3810437319, 838110331, 535349222, 143425763, 684209714,
2357584673, 3364237852, 2330141288, 3593613452, 3810765000, 843353231,
619235622, 1485608163, 684291634, 2358895398, 3385209452, 2665686888,
372408460, 3811092682, 848596131, 703122022, 2827790563, 684373554,
2360206123, 3406181052, 3001232488, 1446170764, 3811420363, 853839031,
787008422, 4169972963, 684455474, 2361516848, 3427152652, 3336778088,
2519933068, 3811748044, 859081931, 870894822, 1217188067, 684537395,
2362827573, 3448124252, 3672323688, 3593695372, 3812075725, 864324831,
954781222, 2559370467, 684619315, 2364138298, 3469095852, 4007869288,
372490380, 3812403407, 869567731, 1038667622, 3901552867, 684701235,
2365449023, 3490067452, 48447592, 1446252685, 3812731088, 874810631,
1122554022, 948767971, 684783156, 2366759748, 3511039052, 383993192,
2520014989, 3813058769, 880053531, 1206440422, 2290950371, 684865076,
2368070473, 3532010652, 719538792, 3593777293, 3813386450, 885296431,
1290326822, 3633132771, 684946996, 2369381198, 3552982252, 1055084392,
372572301, 3813714132, 890539331, 1374213222, 680347875, 685028917,
2370691923, 3573953852, 1390629992, 1446334605, 2261, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3581818202,
1520653928, 3392499341, 2740414677, 897486174, 1483265546, 2391630499,
1758874165, 2372313945, 3599381918, 1789090408, 3392515725, 2740676822,
901680494, 1550374666, 3465376419, 1758939701, 2373362525, 3616159198,
2057526888, 3392532109, 2740938967, 905874814, 1617483786, 244155043,
1759005238, 2374411105, 3632936478, 2325963368, 3392548493, 2741201112,
910069134, 1684592906, 1317900963, 1759070774, 2375459685, 3649713758,
2594399848, 3392564877, 2741463257, 914263454, 1751702026, 2391646883,
1759136310, 2376508265, 3666491038, 2862836328, 3392581261, 2741725402,
918457774, 1818811146, 3465392803, 1759201846, 2377556845, 3683268318,
3131272808, 3392597645, 2741987547, 922652094, 1885920266, 244171427,
1759267383, 2378605425, 3700045598, 3399709288, 3392614029, 2742249692,
926846414, 1953029386, 1317917347, 1759332919, 2379654005, 3716822878,
3668145768, 3392630413, 2742511837, 931040734, 2020138506, 2391663267,
1759398455, 2380702585, 3733600158, 3936582248, 3392646797, 2742773982,
935235054, 2087247626, 3465409187, 1759463991, 2381751165, 3750377438,
4205018728, 3392663181, 2743036127, 939429374, 2154356746, 244187811,
1759529528, 2382799745, 3767154718, 178487912, 3392679566, 2743298272,
943623694, 2221465866, 1317933731, 1759595064, 2383848325, 3783931998,
446924392, 3392695950, 2743560417, 947818014, 2288574986, 2391679651,
1759660600, 2384896905, 3800709278, 715360872, 3392712334, 2743822562,
952012334, 2355684106, 3465425571, 1759726136, 2385945485, 3817486558,
983797352, 3392728718, 2744084707, 956206654, 2422793226, 244204195,
1759791673, 2386994065, 3834263838, 1252233832, 3392745102, 2744346852,
960400974, 2489902346, 1317950115, 1759857209, 2388042645, 3851041118,
1520670312, 3392761486, 2744608997, 964595294, 2557011466, 2391696035,
1759922745, 2389091225, 3867818398, 1789106792, 3392777870, 2744871142,
968789614, 2624120586, 3465441955, 1759988281, 9117, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3884071386,
2334312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3325684736, 3818875111, 36478, 0, 0,
0, 0, 3893246464, 2187567208, 1043991694, 1671506152, 974687877,
2716395630, 613320803, 2833817146, 2391499682, 3905829424, 2388894568,
4265229454, 1671702760, 977833617, 2766727470, 1418630243, 2833866298,
2392286117, 3918412384, 2590221928, 3191499918, 1671899369, 980979357,
2817059310, 2223939683, 2833915450, 2393072552, 3930995344, 2791549288,
2117770382, 1672095978, 984125097, 2867391150, 3029249123, 2833964602,
2393858987, 3943578304, 2992876648, 1044040846, 1672292587, 987270837,
2917722990, 3834558563, 2834013754, 2394645422, 3956161264, 3194204008,
4265278606, 1672489195, 990416577, 2968054830, 344900707, 2834062907,
2395431857, 3968744224, 3395531368, 3191549070, 1672685804, 993562317,
3018386670, 1150210147, 2834112059, 2396218292, 3981327184, 3596858728,
2117819534, 1672882413, 996708057, 3068718510, 1955519587, 2834161211,
2397004727, 3993910144, 3798186088, 1044089998, 1673079022, 999853797,
3119050350, 2760829027, 2834210363, 2397791162, 4006493104, 3999513448,
4265327758, 1673275630, 1002999537, 3169382190, 3566138467, 2834259515,
2398577597, 4019076064, 4200840808, 3191598222, 1673472239, 1006145277,
3219714030, 76480611, 2834308668, 2399364032, 4031659024, 107200872,
2117868687, 1673668848, 1009291017, 3270045870, 881790051, 2834357820,
2400150467, 4044241984, 308528232, 1044139151, 1673865457, 1012436757,
3320377710, 1687099491, 2834406972, 2400936902, 4056824944, 509855592,
4265376911, 1674062065, 1015582497, 3370709550, 2492408931, 2834456124,
2401723337, 4069407904, 711182952, 3191647375, 1674258674, 1018728237,
3421041390, 3297718371, 2834505276, 2402509772, 4081990864, 912510312,
2117917839, 1674455283, 1021873977, 3471373230, 4103027811, 2834554428,
2403296207, 4094573824, 1113837672, 1044188303, 1674651892, 1025019717,
3521705070, 613369955, 2834603581, 2404082642, 4107156784, 1315165032,
4265426063, 1674848500, 1028165457, 3572036910, 1418679395, 2834652733,
2404869077, 4119739744, 1516492392, 3191696527, 1675045109, 1031311197,
3622368750, 2223988835, 2834701885, 2405655512, 4132322704, 1717819752,
2117966991, 1675241718, 1034456937, 3672700590, 3029298275, 2834751037,
2406441947, 4144905664, 1919147112, 1044237455, 1675438327, 1037602677,
3723032430, 3834607715, 2834800189, 2407228382, 4157488624, 2120474472,
4265475215, 1675634935, 1040748417, 3773364270, 344949859, 2834849342,
2408014817, 4170071584, 2321801832, 3191745679, 1675831544, 1043894157,
3823696110, 1150259299, 2834898494, 2408801252, 4182654544, 2523129192,
2118016143, 1676028153, 1047039897, 3874027950, 1955568739, 2834947646,
2409587687, 4195237504, 2724456552, 1044286607, 1676224762, 1050185637,
3924359790, 9414755, 0, 0, 4204936868, 2888035016, 3795760271,
3823880442, 1053003695, 3971545886, 3532633059, 3908788798, 2411275245,
4223811306, 3198414664, 171900559, 602966268, 1058049987, 4052286546,
546293539, 2835124799, 2412520434, 4243734326, 3533960248, 1916752271,
2750822653, 1064341466, 4157144538, 2324684963, 2835237439, 2414388217,
4274405291, 4024695704, 843040399, 1677539583, 1071747062, 4271439766,
4103076771, 687860287, 2416092160, 6176784, 136577449, 2655003792,
2751641856, 1076989963, 61407446, 1116737444, 3640730176, 2417288196,
24002647, 413402601, 2923456144, 604436737, 1081643037, 135856630,
2307924324, 419575360, 2418369545, 41304217, 702810665, 3326127248,
1678473474, 1086558255, 217645862, 36, 0, 0, 57819348, 996413017,
4064343184, 2752526595, 1091801154, 303629418, 831539812, 577, 0,
83771705, 1399067769, 1782666384, 2752907525, 1097633881, 2, 0, 0, 0,
98713970, 1638144009, 1312918928, 3826882822, 1101369447, 591534,
2952790016, 3372669505, 2423251995, 121520584, 2007244153, 144, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
128598501, 2099519225, 172096400, 606116104, 1108709508, 569968746,
730892580, 2030617154, 2425332771, 153240131, 2502173913, 2051168656,
606492937, 1114738843, 666438106, 2307956900, 1493844546, 2426840105,
178406049, 2913217273, 37927824, 606886155, 1121030323, 767101786,
3952130212, 2030815810, 2428445743, 203047681, 3290706105, 2185435536,
607279372, 1127452875, 869862626, 1234227364, 1494039107, 2430018613,
228213601, 3701749433, 4198726032, 2755148045, 1133613282, 970526306,
2811291812, 957264451, 2431591483, 254428101, 4137958681, 2453921680,
2755565839, 1140166907, 1077481458, 261161636, 2567983684, 2433229889,
280642599, 237257529, 306462609, 608483601, 1146589460, 1178145138,
1871780516, 2568081988, 2434769991, 304235651, 614746329, 2051315601,
608852242, 1152618795, 1278808810, 3448844836, 3105051204, 2436375629,
330974439, 1059344217, 709165969, 609286420, 1159303493, 1379472506,
898714404, 2031417925, 2438210644, 361383257, 1545885369, 440761233,
609810710, 1167692133, 1513690746, 3012651812, 420932165, 2440176732,
391792079, 2049203705, 4064670609, 610302231, 1175949700, 1656297602,
1032949028, 4179171910, 2442503268, 429016669, 2644797145, 709263761,
2758359322, 1185124775, 1798904482, 3297881828, 1763391046, 2444780653,
466503402, 3261362153, 2118587537, 1685235996, 1195151821, 1957240078,
1553060964, 3374159431, 2447172726, 504776570, 3873732873, 3326584465,
3833317662, 1204982257, 2114527078, 4069653092, 153085511, 2449597568,
543574032, 174359081, 3997708946, 3833874720, 1213370898, 2245599582,
1804736804, 2569128520, 2451580039, 574769287, 681871769, 3393760146,
2338, 0, 0, 0, 0, 0, 587614395, 853838953, 1648939666, 613280035,
1223332409, 2406032322, 9584420, 2837713481, 2453939344, 610945302,
1227133433, 2991138962, 1687353636, 1228640845, 2490967302, 1402098532,
4179977801, 2455331989, 635849071, 1633982457, 1716096914, 614070566, 0,
2597922452, 3079826596, 958854729, 2456970396, 659966415, 2024054201,
3192514962, 3835648295, 1241617022, 2698586142, 429032676, 1227389514,
2458559650, 685394480, 2439291849, 1112165266, 3836053801, 1248236183,
2810784190, 2324865124, 3374992970, 2460574889, 719473326, 2997136425,
1850397330, 2762885419, 1257280186, 2949196762, 210944292, 1764508235,
2462508209, 748571425, 3437540057, 172702098, 2763290925, 1263768275,
3050909026, 1771231460, 1764605515, 2464081079, 773213056, 3823417513,
1850447250, 3837401390, 1269666537, 3147378382, 3297964004, 3912181323,
2465522876, 796281816, 4192517673, 3461082514, 1690274095, 1275237119,
3234410526, 429065380, 422606412, 2466866370, 817253417, 224707353,
105658771, 3838097713, 1280545555, 3321442662, 1804802404, 2033305164,
2468308167, 841370755, 627362041, 2253167507, 3838474546, 1286574890,
3418960602, 3365089444, 1228093004, 2469815501, 865488095, 1013239481,
3930912403, 617613619, 1292407617, 3509138482, 479413796, 2301921869,
2471208146, 887770420, 1386533929, 1515016339, 2765474101, 1299092312,
3632870890, 2694014244, 3375807053, 2473764059, 928665038, 2028264937,
2924341139, 3839818039, 1308070780, 3757651950, 194216292, 2033731150,
2475156705, 951995944, 2409948009, 1179534739, 1692784953, 1316328346, 2,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 974016124, 2758076585, 2119080083,
1693083962, 1320457131, 3962125038, 3499340388, 3912982094, 2478400749,
1003376364, 3227840425, 1045366931, 1693542716, 1327797191, 4079565998,
1083428452, 3913096783, 2480235764, 1032736604, 3697604265, 4266621075,
1694001469, 1335137251, 4197006958, 2962483812, 3913211471, 2482070779,
1062096844, 4167368105, 3192907923, 1694460223, 1342477311, 19480622,
546571877, 3913326160, 2483905794, 1091457084, 333776041, 1716540564,
2369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1099845725, 459605641,
3729814164, 1695009089, 1350997024, 151601710, 2626954661, 2302839376,
2485888266, 1122652340, 832900105, 148, 0, 0, 0, 0, 0, 0, 1128681676,
937758089, 3058755220, 3842976067, 1358861373, 277431310, 345261029,
3913573969, 2487837969, 1154371886, 1332024201, 508641940, 3843344709,
1364759636, 371803510, 1821661669, 1766180433, 2489246999, 1175867776,
1675958441, 1783731604, 622459206, 1370068073, 456738490, 3180621349,
3108440657, 2490639644, 1198936536, 2045058601, 3327257748, 3844041031,
1376031870, 552159270, 412386533, 1229485650, 2492097826, 1222005296,
2414158761, 642925716, 3844401481, 1381536916, 640239990, 1821678053,
1766442578, 2493441319, 1242976896, 2749704361, 1985124500, 623520074, 0,
0, 0, 0, 0, 1253986983, 2951031673, 1045612436, 3844962635, 1390908599,
796478398, 127188965, 2035039827, 2496128305, 1287541543, 3475321721,
441663892, 624212301, 1398052052, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1299338072, 3651483161,
3193138068, 1698122061, 1400804574, 947473930, 2425676581, 2840483411,
2498209081, 1319261091, 3966057161, 3931354772, 624687438, 1405719793,
1027166010, 3700749797, 1766819411, 2499454270, 1339184111, 4284825497,
508822164, 624998736, 1410700548, 1105809510, 664078565, 424718932,
2500683075, 1358844986, 308626505, 1247039125, 625310033, 1415681303,
1185501590, 1955929061, 3646022228, 2501944647, 1378768006, 623200521,
2052364693, 3846842706, 1420596521, 1264145090, 3214225061, 2572358228,
2503173452, 1398691026, 941968841, 39118229, 2773393408, 1425249595,
1338594274, 110444645, 4183042645, 2504336720, 1417041176, 1235571241,
3260361621, 2773702996, 1430230350, 1420383506, 1452626981, 425029205,
2505696598, 1439323501, 1604671369, 643138453, 626587990, 1436194149,
1515804290, 2979359461, 3377912405, 2507187547, 1463440840, 1986354505,
2522210197, 626964823, 1442223484, 1613322226, 227901925, 2304265814,
2508694881, 1487296036, 2372231929, 39205525, 3848563033, 1448187282,
1708743006, 1771411685, 3489661526, 2510071142, 0, 2451312, 4026531840,
627579225, 0, 1756977688, 2492834789, 2415919702, 2510792041, 1520326307,
2892327625, 3998660245, 627837274, 1456051633, 613178, 9811136,
3646644224, 2511889773, 1538152166, 3173347065, 3825205397, 3849316699,
1460114880, 1897487410, 446023013, 1230798423, 2513069426, 1557026606,
3487921049, 710362517, 2775910749, 1465685461, 1987665286, 1922423653,
3915244119, 2514543991, 1581143945, 3869604169, 2522325141, 1702541662,
1471649260, 2084134646, 3465933349, 2841596503, 2516051325, 1605261285,
4255481625, 173538453, 1702918496, 1477678595, 2179555426, 697698597,
1499512408, 2517542275, 1629116480, 346391753, 1985501334, 3221227873,
1483314712, 2269733306, 37, 157411328, 2518787464, 1648777355, 656771449,
39363222, 2777317376, 1488229931, 2348376806, 3415617893, 268436056,
2520098189, 1670011100, 996511369, 3864589206, 630192483, 1493866049,
2438554690, 563496677, 3378813529, 2521605522, 1693866295, 1378194489,
1381584534, 630565221, 1499895384, 615854, 2006342720, 694547033, 9624,
1714837896, 1717934393, 39427734, 630865920, 0, 2593128448, 3046534117,
157739609, 2524030364, 154060, 1977982240, 2388254102, 2778634599,
1509201531, 2684970986, 194412901, 1768441434, 2525439393, 1755208226,
2363859673, 4200216726, 1705265512, 1515165330, 2780391766, 1737922661,
1231664730, 2526995879, 1780636290, 2779097337, 2388303254, 1705683306,
1521981100, 2891541242, 3533091557, 4184565338, 2528748973, 1808685805,
3227889577, 1046153366, 632383852, 1529059015, 3004787882, 1050070501,
3379369563, 2530518452, 1837259609, 3680876137, 3931862166, 632822125,
1536071394, 3116985942, 2845239461, 2037301851, 2532287931, 1864784837,
4108696809, 1918621846, 2780698991, 1542166265, 3209260990, 4254531173,
2037385819, 2533549504, 1884707856, 128303513, 2656838551, 1707264368,
1547081484, 3288953070, 1234637093, 963721820, 2534794693, 1904630876,
447071849, 3529273239, 1707575665, 1552062239, 3367596570, 2492933157,
3916588636, 2536023497, 1924291751, 765840153, 39631767, 634153331,
1557305139, 3453580126, 3919001829, 1232321116, 2537465295, 1947622655,
1143328953, 1918703255, 3855751540, 1563268937, 3549000906, 1150767013,
158673501, 2538956245, 1971739995, 1529206393, 3797774999, 3856132469,
1569298272, 3645470270, 2694276773, 3111556701, 2540463578, 1995595190,
1910889513, 1314770327, 3856505207, 1575327607, 3741939626, 4237786533,
2037909085, 2541970912, 2019712531, 2300961257, 3193842071, 2783140216,
1581291406, 3837360410, 1469551717, 695824990, 2543461862, 2043829870,
2682644393, 777946519, 2783517050, 1587320741, 3934878346, 3013061477,
3917145694, 2544969195, 2067685066, 3068521817, 2589909143, 1710147963,
1593284540, 4030299126, 261603941, 3380368991, 2546525681, 2093113130,
3483759481, 777995671, 1710565757, 1600100310, 4141448602, 2056772837,
2038302303, 2548278776, 2121162645, 3932551721, 3730813079, 637266302,
1607178225, 4254695242, 3868719077, 1233106527, 2550048255, 2149736449,
90570985, 2321554584, 637704576, 1614190604, 71926006, 1368920742,
4186006112, 2551817733, 2177523821, 530974601, 643859608, 1711864194,
1620809765, 174686850, 2979539750, 3649232480, 2553325067, 2201641160,
912657721, 2455822232, 638495107, 1626773564, 271156210, 228082150,
2575584865, 2554832401, 2225758500, 1298535177, 107035544, 638871941,
1632802899, 366576990, 1754814694, 1233500769, 2556323351, 2249613695,
1684412601, 1986107288, 2438, 1638137856, 451511974, 3096997094,
696710753, 2557601308, 2269536716, 1994792297, 2522996888, 3860769159,
1643419771, 536446950, 160989478, 965229154, 2558928417, 2290770461,
2330337897, 3596759192, 3861096840, 1648662671, 619284774, 1486394598,
696874594, 2560222758, 2311479916, 2665883497, 442663320, 640203146,
1653971108, 704219754, 2862131494, 1233829474, 2561566251, 2332975806,
3009817737, 1583534744, 1714276747, 1659279544, 789154734, 4204313958,
1233911394, 2562876976, 2353947406, 3345363337, 2724406168, 2788350348,
1664587980, 874089714, 1251529126, 1233993315, 2564187701, 2374919006,
3680908937, 3731059352, 1714932109, 1669765344, 956927534, 2593711462,
1502510691, 2565514810, 2396152751, 4020648857, 576963480, 3862751631,
1675139316, 1042911094, 3969448422, 2307902051, 2566891071, 2418697220,
94781705, 2321816729, 2789378448, 1681168651, 1141477610, 1285099942,
2576435812, 2568480325, 2444125285, 501630745, 241466777, 2789771666,
1687460131, 1242141290, 2895718822, 2308098660, 2570036811, 2469029060,
900091145, 2321865881, 2790164883, 1693817147, 1343853550, 228147686,
2576633445, 2571626065, 2494719270, 1311134505, 308625049, 643082645,
1700174164, 1445565810, 1855543846, 2845168229, 2573215319, 2519885190,
1713789225, 2456133273, 643475862, 1706531180, 1547278070, 3482940006,
3113703013, 2574804573, 2545051110, 2116443945, 308674201, 643869080,
1712757124, 1646893170, 781814310, 2845364838, 2576361059, 2570217030,
2523292985, 2523291545, 1718008217, 1719114140, 1749654006, 2425987750,
3382336102, 2577966697, 2596169384, 2942724969, 778486937, 1718430107,
1725995446, 1860803486, 4237933926, 2845576806, 2579785328, 2625529624,
3416683129, 4066850201, 2792634780, 1733401042, 1978244450, 1822021990,
2845691495, 2581620343, 2654889864, 3882252649, 2926027929, 1719347614,
1740675566, 2095685406, 3717854566, 3114242663, 2583471742, 2684512249,
61243513, 1986533018, 3867298208, 1748146698, 2215223526, 10096998,
2684354560, 2584995460, 2707318867, 400983481, 2657641370, 3867589025,
1752406555, 2280235494, 2291802342, 698496616, 2586175113, 2726717596,
719751785, 3462967194, 3867900322, 1757387310, 2356781838, 3482989286,
2846053992, 2587354765, 2745592036, 1021742825, 4134074522, 646982051,
1762499138, 2440668234, 563758886, 3114572393, 2588681874, 2766563637,
1357288425, 912869530, 3868535205, 1767742037, 2529797526, 1989827686,
967177833, 2590123672, 2790418830, 1755748809, 3328813466, 647723430,
1774819952, 2644092742, 3868882918, 1772599913, 2592024223, 2821876227,
2267455833, 3328845722, 1722005928, 1783601809, 2782505306, 1805293862,
3651785322, 2594317991, 2859625107, 2888215129, 174766490, 2796345771,
1793039029, 2935597982, 94027430, 1772893803, 2596791985, 2898684710,
3513168841, 1449873050, 3870681517, 1802541785, 3091836398, 2543510438,
3115221611, 2599298746, 2940890055, 4209425913, 4268487834, 3871386031,
1813945092, 3283726514, 1201344422, 699478636, 2601952965, 2979687520,
497469177, 845971611, 2798205362, 1822202661, 3399070350, 2979736486,
2578635372, 2603640523, 3007474887, 937872761, 2859263387, 651090355,
1827904316, 3490296806, 194724262, 1773424237, 2605115089, 3030805795,
1315361577, 846021531, 1725233589, 1834785621, 3601446286, 2006670310,
2310405741, 2606999256, 3062001047, 1810291353, 4268603547, 1725721014,
1842715507, 3728324462, 4036721254, 4189576813, 2609030879, 3093982740,
2317804057, 3597545371, 3873687992, 1850252176, 3849959742, 1721473062,
3652831854, 2611013351, 3125177995, 2816928137, 2993596059, 652949946,
1858247599, 3975789346, 3734746534, 700162670, 2612995823, 3157946118,
3357995369, 3060738203, 3874695612, 1866308557, 4105813266, 1469830246,
968716911, 2614814454, 3187044213, 3823564889, 2255460763, 1727707582,
1874959341, 4254711606, 3919313126, 1774173807, 2617239295, 3225841672,
153551273, 3664784796, 654571968, 1883937809, 98156878, 1822169511,
2579614320, 2619352839, 3258347655, 652675401, 2725290652, 1728760258,
1891146796, 208257790, 3550229223, 1237544560, 2621122318, 3287183603,
1135022153, 1450250652, 3876694468, 1898224711, 317310118, 949767399,
700774001, 2622613268, 3309728076, 1457984873, 2524012700, 1729538501,
1903664220, 407487994, 2426167911, 3653655153, 2624120601, 3334369704,
1869028201, 644989852, 3877448135, 1910873206, 523880370, 94142247,
2043165298, 2626168609, 3367662118, 2410095433, 846349212, 656759241,
1919392919, 660195770, 2208079655, 432679538, 2628134697, 3399119519,
2900830937, 4268931484, 1730963914, 1926536371, 774490990, 4036803175,
3922452082, 2629920559, 3427693324, 3362206089, 3463654044, 1731439052,
1934138576, 896126270, 1688000359, 1238216307, 2631886647, 3460199302,
3899079049, 3463686812, 1731971534, 1942920433, 1040830302, 4003264935,
3922711155, 2634082111, 3495326732, 174539241, 3597938333, 3879979472,
1950915856, 1162465594, 1637684903, 4191265396, 2635966278, 3524424829,
614942905, 2188679581, 2806675922, 1957928235, 1280955122, 3617403815,
2580775540, 2637997902, 3558503675, 1176981785, 2591367069, 659741140,
1966841165, 1423561998, 1637701095, 2044047989, 2640357207, 3595728267,
1755797977, 2994055069, 660281814, 1976016239, 1574557514, 4070406695,
1775761013, 2642667360, 3632690712, 2359780009, 443956125, 660937177,
1986502039, 1743378890, 2543690471, 165319286, 2645518187, 3680138953,
3139923481, 4134991261, 1735420379, 1998364100, 1935269026, 1386074343,
3118299767, 2648565622, 3728635780, 3907484073, 3531058077, 2809903582,
2009701872, 2105139010, 3852335015, 970961527, 2650711935, 3759306751,
69697689, 2524453534, 2810378720, 2018024974, 2255085918, 2208177447,
3655486072, 2653562761, 3809114293, 891784377, 3128484254, 663706083,
2030149183, 2428101658, 362693671, 1508143737, 2655692690, 3838474541,
1344770969, 981026718, 664099301, 2036964951, 2557076958, 2493408103,
1239838329, 2657822618, 3874912692, 1911004201, 1182387358, 3885853159,
2044894838, 2667177894, 4238245287, 2313686649, 2659411872, 3898505746,
2296881609, 3195677342, 1738762728, 2051186319, 2764695838, 1453233255,
703164026, 2660919206, 3922623088, 2674370441, 511345310, 1739123178,
2057150117, 2863262358, 3063852007, 1240135290, 2662492076, 3948837584,
3102191049, 3329944222, 3887041003, 2064031423, 2978606142, 681494503,
1777124987, 2664392627, 3978722116, 3588732169, 2524667550, 1740032493,
2071502556, 3096047102, 2560549863, 3387854459, 2666358714, 4011752382,
4092050601, 2122045086, 3888015855, 2079760123, 3221876718, 111083751,
166733436, 2667964353, 4037442592, 241681193, 377241759, 2814712305,
2086379285, 3327783298, 1872698023, 2582762108, 2669619143, 4061822081,
606587065, 1920767391, 667556338, 2091622186, 3409572546, 10431911, 0, 0,
0, 0, 0, 0, 0, 0, 3198103104, 2314407548, 2670946252, 4081582080,
925355385, 2591875487, 667859443, 2096471868, 3489264618, 161431847,
972307069, 2672175057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 4102716701, 1260900985, 3665637791, 668187124, 2101346304,
3567908118, 1419727911, 3925173885, 2673403861, 4122377576, 1575474985,
108887199, 3889719798, 2106629986, 2, 2594137408, 1240891005, 2674550746,
4140727726, 1845493769, 41794975, 668741632, 2110824306, 3725195102, 39,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4155669989, 2133319497, 712901535, 1742805496, 2116132742, 3809081510,
1067421159, 4193853054, 2677385188, 4187651678, 2645026537, 444497567,
1743317498, 2124259237, 3939105426, 3147803879, 3120238206, 2679433196,
4220419803, 3169316537, 176094111, 1743825404, 2132320196, 4068080766,
916442023, 639, 0, 4246110014, 3571971273, 2256493215, 3891694077,
2138611675, 4171890182, 2627724519, 167680639, 0, 4275732398, 4045929433,
1249889183, 670931455, 2145886200, 655290, 0, 1342177280, 2684332031, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3047430, 86507770, 2055215520,
3892460032, 2150408201, 55181506, 1017122344, 1778452096, 2685577220,
22184015, 396887450, 2659214240, 671529473, 2155126812, 131727842,
2241863784, 3926009472, 2686756872, 41058455, 698878490, 3263212448,
2819316226, 2160042030, 211419922, 3550491560, 3657654912, 2688067597,
62030055, 1026035466, 4068538528, 672139779, 2164826177, 656434, 0, 0,
2688811008, 74613013, 1248334378, 3733008544, 1746135556, 2169282641,
363464014, 1755338856, 1778761345, 2690607127, 103711108, 1718098218,
2659295392, 1746594310, 2176622701, 480904974, 3634394216, 1778876033,
2692442142, 133071348, 2183667754, 1384255136, 1747040776, 2183700616,
593103034, 1134595880, 436808322, 2694195237, 160858718, 2632459978,
109214368, 3894970890, 2190844067, 708446834, 2980096680, 168485506,
2696013868, 190218958, 3102223818, 3330468512, 2821683723, 2198184127,
825887794, 547407464, 3926695555, 2697816114, 219054908, 3567793322,
2122537376, 1748396557, 2205458651, 942280174, 2426462824, 3926810243,
2699651129, 248415148, 4033362858, 1048823968, 1748855311, 2212798711,
1058672558, 4288740904, 3658488451, 2701469760, 277513243, 203965082,
4202968993, 675568144, 2220073235, 1176113514, 1872828968, 3658603140,
2703304775, 307135627, 686311866, 3330583201, 3897264658, 2227609903,
1296700214, 3802216168, 4195591812, 2705172558, 336758013, 1151881402,
2189760929, 2823977492, 2234884427, 1413092594, 1369526952, 437610117,
2707056726, 366904688, 1634228202, 1317375137, 1750706710, 2242421096,
1533679294, 3298914152, 437726853, 2708875357, 396002783, 2099797722,
176552865, 677419544, 2249695620, 1650071674, 866224936, 437840518,
2710710372, 425363023, 2569561562, 42363809, 2147483648, 2255921564,
1743395306, 2258739368, 3927583366, 2711922792, 443713174, 2854775338,
3666259617, 678160922, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 455771844, 3047714058, 2324094113, 2825816603,
2264179131, 1877613542, 161595688, 1243363975, 2714151025, 479889184,
3429397194, 4068947617, 3899927068, 2270011857, 1973034318, 1705105384,
438152839, 2715674743, 504268669, 3823663258, 1854379425, 3900316190,
2276303337, 2073697998, 3282169768, 3927910023, 2717182076, 528386009,
4209540698, 3666342305, 1753201183, 2282201600, 2167021618, 513934888,
2854261384, 2718705794, 552765494, 304645162, 1384664738, 2827328033,
2288165399, 2263490974, 10624168, 0, 0, 569542775, 556304394, 847808674,
680069666, 2291704357, 664178, 0, 0, 2720639114, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 581959680, 766020378, 42515362, 2827770403, 2295308850, 2375689042,
3852613608, 438546056, 2721966223, 604932349, 1139314842, 1988695714,
680675876, 2301928011, 2487887090, 1419924264, 170224265, 2723784854,
634554733, 1621661626, 1116309922, 2828630566, 2309333607, 2604279474,
3248647848, 4196868745, 2725603484, 663128539, 2070453882, 4002018466,
1755327015, 2316345986, 2716477534, 748849512, 2586363530, 2727372963,
691964489, 2540217706, 42624674, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 699924480, 2653464378, 176848290, 682129962, 2324800163,
2847550042, 2812455016, 975877770, 2729339051, 722897599, 3026758842,
2123028642, 2830002731, 2331419323, 2959748090, 379765672, 707555979,
2731157682, 752519983, 3509105626, 1250642850, 682990125, 2338824920,
3076140474, 2208489256, 439233163, 2732959929, 781355933, 3970480826,
42711458, 2830924335, 2346099443, 3198824322, 4221762728, 170921611, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 809405451, 99139898, 1811939491,
3905026608, 2351407880, 3271176366, 933432552, 4197510796, 2735794371,
825134151, 350799098, 1854691235, 3905288753, 2355602200, 3338285486,
2007178472, 976352908, 2736941256, 842792960, 2672970, 42768640,
2147483648, 41767, 3398054540, 2997037928, 3392331404, 2737858763,
858688710, 2673930, 1787614464, 684587571, 41785, 668580, 10697600, 0, 0,
0, 2674480, 0, 1073741824, 41790, 668668, 10699072, 439626752,
2739267793, 880017408, 2675258, 42805504, 3221225472, 41803, 668884,
10702528, 171246592, 2740076544, 893648896, 2676090, 42818816,
3221225472, 2372510552, 3613013438, 2063597608, 2050360973, 2741201112,
912690579, 2677242, 2928518400, 3906673206, 41837, 3694802676,
3483595368, 1879048845, 10461, 932613599, 2087247546, 4136499107,
1759525431, 2383389570, 669782, 564364992, 3661143694, 2743920866,
956206649, 2464736346, 1586385315, 3907377721, 2389287832, 3881449918,
10723048, 0, 0, 973340672, 2741561466, 1275068579, 3907623482,
2393220007, 670382, 3080956992, 976942734, 2746378476, 995528399,
3093884346, 3062818723, 1760508475, 2399118270, 4038736918, 10732648, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1015451415, 10, 0, 0, 0, 0, 0, 0, 0, 1019383593, 3483956090,
781141155, 687155773, 2405409750, 4141497754, 2107891048, 3661502095,
2749720824, 1049792413, 3970497210, 177191587, 2835130943, 2413470708,
4271521674, 4154719272, 2051014287, 2751719680, 1082036247, 187236986,
3666882980, 688110144, 2420483088, 83509546, 10753321, 0, 0, 1099075673,
447284826, 3532681124, 2835847745, 2424546335, 148521506, 2544116905,
440562320, 2754193674, 1120047275, 782830426, 311476132, 2836175427,
2429789235, 232407906, 3886299305, 440644240, 2755504399, 1141018875,
1118376026, 1385238436, 2836503108, 2435032135, 316294306, 933514409,
440726161, 2756815124, 1161990475, 1458115930, 2526109860, 3910576709,
2440340571, 401229286, 2292474089, 709244561, 2758142233, 1183224220,
1793661546, 3599872164, 3910904390, 2445583471, 485115686, 3634656489,
709326481, 2759452958, 1204195820, 2129207146, 378667172, 3911232072,
2450826371, 569002086, 681871593, 709408402, 2760763683, 1225167420,
2464752746, 164, 0, 0, 0, 0, 0, 0, 1230672464, 2582193658, 3801247652,
2837977673, 2459149474, 710560370, 3081022377, 2588607122, 10540,
1263009792, 3102289338, 3532843940, 2838485579, 2467275969, 840584290,
866437801, 1514992275, 2765334836, 1297612800, 3655939578, 3801313188,
2839026253, 2475926754, 978996850, 3081038761, 2588869267, 2767497532,
1331953664, 4205395498, 4002673316, 1765821007, 2484512003, 1116360830,
983895145, 3394309780, 2769643844, 1368036444, 464078474, 3935597733,
2840070737, 2492245281, 1233801802, 2762287017, 173189780, 2771233099,
1393202364, 866733194, 1788138661, 2643, 0, 0, 0, 0, 0, 1402901728,
1009340106, 3801412773, 2840582739, 2500306240, 1360679986, 497370537,
3394542229, 2773231954, 1425708345, 1386828874, 1452626085, 1767225941,
2506597720, 1462392242, 2107989545, 2589331093, 2774772056, 1449825684,
1768511994, 3264588709, 693856854, 2512561519, 1558861602, 3768940137,
2589432469, 2776312158, 1473418735, 2150195114, 781584037, 3915455064,
2518525317, 1653233802, 866487209, 4200130198, 2777753955, 1497536074,
2531878234, 2593546661, 2842085977, 2524489116, 1749703162, 2326110697,
173684374, 2779048297, 1517721238, 2875812442, 4069963173, 694962778,
2530518451, 1849318254, 4070947561, 710666902, 2780981616, 1550227217,
3391713802, 3734450341, 3916692060, 2538579409, 1979342174, 1772476713,
442350231, 2782816631, 1578538878, 3848894682, 2459409829, 695913054,
2545722861, 2092588814, 3668309225, 2858388119, 2784782718, 1611044857,
69828746, 2123896998, 3917642336, 2553783819, 2222612734, 1453724777,
3932252824, 2786650501, 1638832232, 476677866, 3734533286, 1770498657,
2558567967, 2291819022, 2426807081, 2590135960, 2787617161, 1655085219,
761891578, 177781414, 3918301795, 2563679794, 2370462534, 3668325865,
174290584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1770921984, 2565973562, 2417648614,
279331369, 174351001, 2789861778, 1692309807, 1370067946, 1452887718,
1771428453, 2574034521, 2546623954, 2342936809, 3127266969, 2791893401,
1724029355, 2726730, 0, 0, 0, 0, 0, 0, 0, 1727437239, 1919523898,
1318702502, 3919420007, 2581964407, 2669307822, 4255546857, 2590510745,
2793662880, 1752078869, 2313789978, 3466210726, 3919813224, 2588255887,
2769971502, 1571198441, 2590609050, 2795235750, 1777244789, 2716444698,
1318751654, 3920206442, 2594547367, 2870635182, 10923497, 0, 0,
1797429949, 3081350458, 3533367718, 2846882411, 2601887426, 2, 0, 0, 0,
1821809440, 10, 0, 0, 0, 0, 0, 0, 0, 1824693034, 3475616618, 580600486,
2669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1833081678, 3584668970,
2191219622, 699804269, 2607654618, 3076156862, 2074533481, 1517158043,
2799888824, 1851431825, 3903437242, 3264981414, 700144238, 2613290735,
3169480490, 3735483753, 3933183643, 2801592766, 1877908471, 2736090,
714867623, 3921746544, 2619385606, 3265949846, 833031145, 3127959196,
2802805187, 1896258623, 300532794, 1050430375, 1774525041, 2622990101,
3319427438, 1638340585, 2322697884, 2803591622, 1909890159, 527026074,
513574311, 3922238066, 2626529058, 3373953598, 2510759145, 2591186588,
2804378057, 1921948833, 703187546, 2929502631, 2848655986, 2629478189,
3425334010, 3416732073, 443760284, 2805262797, 1937153239, 946458106,
2661082023, 2848918131, 2633672509, 3490345978, 94847145, 2591301277,
2806180304, 1950784783, 1185534298, 2258443431, 2849143412, 2637342539,
3551163610, 1151815593, 175448733, 2807425493, 1970183513, 1491719674,
2795333031, 3923171957, 2641602395, 3617224150, 2175229801, 2591430301,
2808310232, 1985387921, 1743378874, 3130893223, 3923458678, 2646321005,
3696916230, 3450303081, 3128382109, 2809653725, 2006883811, 2078924474,
3802003111, 2850015863, 2650843007, 3767171090, 245859113, 1786268318,
2810620385, 2022350366, 2318000714, 3265145511, 702757496, 2654644110,
3824842994, 1135054953, 3665369758, 2811570660, 2038603355, 2578048586,
2862508199, 702999161, 2658445212, 3888806370, 2192023465, 2323255966,
2812488168, 2052497043, 2850679274, 3667832999, 1777044090, 2663491503,
3967449878, 3517428585, 2054901406, 2813782509, 2072420061, 3131698794,
3667849383, 2851048059, 2667620286, 4033510410, 212320937, 712786591,
2814749169, 2088410906, 3374969370, 3130993063, 3925019260, 2671093708,
4094328050, 1235734697, 2055029407, 2815928821, 2107547493, 3672766106,
3332337575, 1777810045, 2675419101, 4156194278, 2141708137, 981337759,
2816567800, 2116460423, 3815372986, 1184862119, 1777941118, 2677516261,
4189748838, 2712135657, 1518243487, 2817157626, 2126421931, 3974757146,
4003444647, 3925613182, 2680530928, 4237983518, 3517444969, 2055163551,
2817976829, 2140053471, 4209639034, 3466588071, 3925834367, 2684332030,
8028174, 262669034, 2055229088, 2819025409, 2155782173, 149553690,
2661295528, 1778555520, 2688133132, 77234438, 1403524010, 3397477024,
2820155909, 2175443045, 472516298, 3533730472, 705129089, 2692392990,
132809202, 2225610922, 2323782304, 2820876808, 2186453136, 657066378,
2459999912, 705342082, 2695800875, 187335362, 3181915434, 3129152160,
2821974540, 2205065430, 988417578, 3533762728, 2853145219, 2701043774,
273318914, 178799146, 713308833, 2823137809, 2221580568, 1219105290,
2594251944, 2853350020, 2704320587, 325747922, 1000885802, 444923553,
2823907860, 2233901383, 1412044010, 1654740136, 3927292549, 2707662935,
381322654, 1940413418, 3397770913, 2824874519, 2251727236, 1701452074,
1788975016, 2853821062, 2711922792, 449480350, 3014159402, 3129400993,
2825890331, 2266931651, 1944722618, 1721881512, 1780349575, 2716575865,
532318146, 27819882, 1518866082, 2827119136, 2285806093, 2255102266,
2460098216, 2854382216, 2720966794, 600475862, 1118343210, 2324239010,
2828184100, 2303369806, 2519344490, 2258786984, 1780898441, 2725095578,
660244934, 2074648042, 4203345570, 2829117991, 2317787781, 2766809306,
1856149416, 1781136010, 2728700072, 721062562, 3249057322, 982198946,
2830461485, 2339283673, 3131715066, 3533893288, 3928992395, 2734794943,
816483354, 245941034, 1250706083, 2831559217, 2357633820, 3475649226,
1520650664, 2855643789, 2741283031, 921341338, 2024332714, 713945763,
2833394232, 2388304783, 3869915530, 2191761064, 708471438, 2745936106,
995790526, 3332959978, 982463139, 2834754109, 2409538527, 4251598586,
178518952, 708856464, 2752162050, 1092259890, 363398378, 2593152676,
2835835457, 2427888679, 225067802, 4272175529, 3930348176, 2756815122,
1169854810, 1739135082, 1519499940, 2837391943, 2451743875, 623528202,
2594479529, 709544594, 2763303212, 1270518498, 3265867818, 1788023460,
2838719052, 2472977618, 971656714, 3735351209, 3931110035, 2769267009,
1375376478, 799623658, 3130316453, 2840619603, 2503386439, 1449809210,
2527420329, 1784068757, 2776082780, 1480234474, 2393465642, 2593543845,
2842094169, 2525406621, 1793743482, 3735399849, 1784404630, 2781063536,
1553635102, 3567874922, 714567333, 2843339358, 2547426796, 2150260666,
648414377, 710990488, 2786634117, 1643812974, 732531050, 983088806,
2844666467, 2568922686, 2519360810, 2460376745, 1785129625, 2793843103,
1768593978, 2796136362, 1788525222, 2846861931, 2604312262, 3081399658,
2795955881, 2859391643, 2801248700, 1876597734, 262783402, 3130810023,
2848451185, 2628167460, 3425333994, 3869717929, 3933452956, 2806229455,
1961532710, 1537856938, 1520272039, 2849712758, 2647041903, 3735713626,
312967337, 2860026526, 2811537891, 2041224794, 2729043882, 2862520999,
2850761338, 2663557038, 3995761450, 178765481, 2860272287, 2814945777,
2103091014, 3819566890, 2325714599, 2851809918, 2681907186, 4280975274,
581436585, 1786825376, 2820057604, 2181734510, 715786602, 1252048552,
2853071491, 2701830206, 321553546, 1588089514, 713419425, 2825693721,
2272960962, 2141855466, 2325876392, 2854447752, 2723063951, 690653642,
4004031914, 3935083170, 2833164853, 2392499094, 4205460650, 2057566888,
2856561296, 2757404946, 1202360746, 2796103082, 1788009124, 2838866508,
2488968434, 1437225898, 3668281001, 2858183318, 2783357301, 1617598426,
917079466, 2862176934, 2846009959, 2594875034, 2997513130, 3399932585,
2859526811, 2806950343, 2011864506, 2661933994, 1788787367, 2851646076,
2698684430, 598378026, 2057876138, 2861525667, 2837883459, 2506794234,
2192202154, 715561641, 2859903644, 2817173994, 2343215274, 3131727530,
2863180457, 2864884393, 2951392138, 1051379626, 716016299, 2867440312,
2949295050, 262848874, 1252812459, 2865474226, 2902633273, 3555374218,
2125158314, 716606125, 2876877532, 3100290562, 2678777066, 1789823659,
2867489466, 2932779949, 4033526698, 984336810, 3938273967, 2884217591,
3214585810, 78315434, 179316396, 2869242561, 2960305178, 145408490,
2863408811, 1791179440, 2889329421, 3284840682, 1118506922, 2326860460,
2870127300, 2973936718, 363513130, 2192333483, 2865113777, 2892540697,
3339366834, 2024480042, 3400657580, 2871012039, 2988616836, 598395082,
1252823211, 1791593138, 2896210727, 3406475938, 3081448618, 4206029484,
2872224459, 3009064145, 929746362, 2393694635, 1791916723, 2901257018,
3477779398, 4188749290, 3937661612, 2873141967, 3021647108, 1126879370,
1252855467, 718363316, 2904533831, 3531256978, 799754922, 2058669741,
2874075859, 3037375805, 1382732890, 917326763, 3939834549, 43860, 0, 0,
0, 0, 3043667285, 1479202250, 2595054251, 718711477, 2910104412,
3620386278, 2225823786, 685, 0, 3056250248, 1697306890, 1789761707,
718924470, 2913119080, 3666523802, 2964024106, 685, 0, 3068571060,
1894439914, 917358763, 1792879287, 2917182326, 3739924382, 4171988202,
716699309, 2877450976, 3092950543, 2301288922, 3131976107, 719534776,
2923277198, 3837442322, 1437307946, 985232046, 2879056614, 3119165043,
2724915226, 1722716587, 2867464890, 2931141546, 3961174762, 3484135978,
4206583470, 2881137389, 3152719602, 3253399594, 1185877163, 3941690044,
2938153926, 4071275670, 883674090, 3938248367, 2882628339, 3175001930,
3605722474, 2528075947, 3942034109, 2943658971, 4159356390, 2292965610,
717108911, 2884004601, 3197808545, 3970628282, 4071602091, 721164990,
2949491698, 4254777170, 3853252650, 2059385519, 2885626623, 3222974465,
69927098, 1789924780, 721550016, 2955521033, 54182074, 1085017643,
3670090416, 2887035652, 3245518935, 434832922, 172, 0, 0, 0, 0, 0, 0,
3252072557, 560662490, 1320193452, 1795791554, 2963385383, 182108830,
3131846059, 1522728624, 2888985356, 3276452046, 925568362, 2997936812,
722426563, 2969414718, 278578190, 514606379, 2059700913, 2890623762,
3304239411, 1365971994, 984697516, 2870299333, 2975902806, 377144722,
1856789227, 1791346353, 2891901719, 3324686722, 1714100506, 2863767980,
1796938438, 2982194286, 487245598, 3769398891, 4207387313, 2893916958,
3357192703, 2234196202, 2528255404, 1797450440, 2990517389, 623561002,
1672255147, 986295986, 2896112423, 3392844420, 2817206650, 3266488236,
724253386, 2998643886, 2, 0, 0, 0, 3407524544, 3031117002, 2058541228,
2871937739, 3002117306, 801819610, 11321515, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3426923272, 3362468250, 3467848364, 2872302284, 3008408785,
909823334, 11328299, 0, 0, 3455759222, 3823843450, 2125699244,
2872736462, 3015093483, 1014681338, 3635213291, 3671034547, 2902321982,
3492721666, 128663898, 3333695661, 725859024, 3025054993, 1174065498,
1890392555, 449962676, 2904714056, 3530732690, 745228922, 45399213,
1800166099, 3033443634, 1297797958, 3702339115, 1523810996, 2906286926,
3553539310, 1068191642, 515179693, 2874194644, 44355, 0, 0, 0, 0,
3562452242, 1194021274, 2528452781, 726837972, 3040259404, 709866, 0, 0,
0, 3574773054, 1416320186, 2192922797, 1800833749, 3044715868,
1482348030, 2427282091, 3939917493, 2909383513, 3604395438, 1898666970,
1454754989, 727575255, 3052580218, 1610274786, 212697451, 3403174582,
2911464289, 3638212142, 2448122874, 1790333101, 3949349593, 44443, 0, 0,
0, 0, 3657348730, 2729142362, 1723240621, 728382170, 3065425323,
1817893622, 3568153387, 1255894710, 2914741102, 3689854710, 3261820970,
1454837933, 3950095068, 3072634311, 1932188846, 1085132395, 182263479, 0,
3714758480, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3720525670, 3752556442, 1052215213, 2876865246, 3080891879, 2062212766,
3266178539, 2598312631, 2918411132, 3747002321, 4155211162, 2595742381,
3950951135, 3086200315, 2147147750, 179175851, 182467256, 2919672705,
3769284643, 212566762, 45628590, 730090209, 3092033042, 2245714258,
1974344363, 182583992, 2921753481, 3801790626, 728468106, 3333992366,
3951786722, 3099438638, 2354766606, 3417190891, 451098296, 2922703757,
3815684311, 959155722, 2864244910, 730786531, 3103174204, 2418729970,
212746667, 2061779641, 2923850641, 3833510173, 1223397914, 2662933934,
1804770020, 3107040843, 2479547618, 1135497131, 2061833913, 2924637076,
3846093131, 1433113914, 2126076590, 3952483045, 3110448728, 2529879454,
1924029355, 2330319545, 2925472663, 3861821822, 1705744634, 3132727982,
2879072998, 3115888237, 2613051394, 3316543723, 3135710905, 2926832540,
3881220563, 1995152794, 2260327854, 1805531879, 3118968441, 2663049126,
4054744043, 1525141177, 2927487903, 3891182073, 2154536922, 515507630,
3953171176, 3121458818, 2702895166, 363758827, 2598919866, 2928077729,
3900619293, 2297143834, 2662999470, 3953302248, 3123555978, 2736449726,
900631787, 2598952634, 2928634787, 3911629377, 2515248410, 2193252014,
732310249, 3127291545, 2796218786, 1974377387, 3672762042, 2929748903,
3928406661, 2750130362, 1455068078, 1806269162, 3130764966, 2853890678,
11446635, 3672810496, 2930535338, 3941251765, 2947263434, 448447150,
3953965803, 3134697140, 2920999806, 3853433067, 2599132858, 2931485614,
3955145453, 3186339642, 4005231022, 3954170603, 3137711807, 2967137310,
363775083, 3404491451, 2932321201, 3969039138, 3391861354, 3132828334,
733166316, 3141316302, 3022712066, 1236193579, 183319227, 2933173173,
3983719254, 3660297770, 3535498926, 1807198957, 3146821345, 3128618610,
3182357675, 988750523, 2935466941, 4023565289, 44810234, 2193364399,
734186224, 3158617870, 3318411586, 1991186987, 988943036, 2938530761,
4069964959, 745261754, 4139562927, 1808546546, 3167727410, 3451581270,
3920574635, 2062795452, 2940185551, 4098800901, 1277940250, 851263151,
735423221, 3178671962, 3643471378, 2930731051, 2868310717, 2943757276,
4158307815, 2234245210, 3401458607, 2883848952, 3193810835, 3866818954,
2024774507, 4210691774, 2946837480, 4202348185, 2855004730, 175, 0, 0, 0,
0, 0, 0, 4207853229, 2951474074, 784254383, 3958184699, 3202133941,
3999988614, 4038048491, 184276670, 0, 4227514106, 3240882218, 46073519,
0, 3205103616, 4047174718, 43, 0, 0, 4234067733, 3337351578, 2260671919,
737295100, 0, 0, 0, 0, 0, 4239310631, 3421237978, 3602854319, 3958602492,
3208490958, 4096457986, 1219482027, 3137153727, 2949868532, 4249272143,
3589010778, 1992251823, 1811282685, 3210981336, 2, 0, 0, 0, 4255039333,
3672897178, 3334434223, 737622781, 0, 0, 0, 0, 0, 4259757941, 2881466, 0,
0, 0, 0, 0, 0, 0, 4261855103, 3790338138, 784304559, 737729278, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4266311567,
3861641562, 2059377583, 737811198, 3215437801, 4208656042, 3014650923,
2600393407, 2951687163, 4278894527, 4062968922, 985648047, 738007807,
3218583541, 4258987882, 3819960363, 2600442559, 2952473598, 4291477487,
4264296282, 4206885807, 738204415, 3221729281, 14352426, 330302508,
2600491712, 2953260033, 9093151, 170656347, 3133156272, 738401024,
3224875021, 64684266, 1135611948, 3137420992, 2954488837, 33210483,
632031403, 3133186736, 2886441730, 3235098673, 248185726, 78659116,
3674490561, 2957683729, 84590902, 1458312443, 3468781488, 2887252741,
3247878242, 451610250, 3316674220, 4211559105, 2960845853, 135447032,
2272010507, 3670157744, 2888051464, 3260788883, 658180510, 2343608300,
3138014914, 2963860521, 180798123, 2943101819, 650298288, 2888629003,
3269308597, 784010130, 4189109420, 2601256642, 2965662768, 210158361,
3417059979, 4005770416, 741612300, 3276714194, 901451090, 1756420204,
1259190979, 2967383095, 236635008, 2898219, 2999164672, 2889558798,
3284119790, 1020989210, 3719361900, 3675231939, 2969398334, 270975997,
137118043, 3938724785, 742693648, 3295129878, 1220219366, 2981177260,
1527975620, 2973183053, 329434340, 1022119643, 247790001, 1817242388,
3307450694, 1394283702, 984698220, 1796539077, 2975083604, 360629590,
1550603915, 46496433, 1817725718, 3314921827, 1514870390, 44, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381339049, 1840012075,
4207262385, 2891721494, 3318395249, 726842, 0, 0, 0, 391824850,
2007784875, 2596659889, 2891885335, 3321016699, 1605048282, 45186988,
2870483654, 2978196576, 408602130, 2276221355, 2596676273, 2892147480,
3325211019, 1672157402, 1118932908, 2870549190, 2979245156, 425379410,
2544657835, 2596692657, 2892409625, 3329405339, 1739266522, 2192678828,
2870614726, 2980293736, 442156690, 2813094315, 2596709041, 2892671770,
3333599659, 1806375642, 3266424748, 2870680262, 2981342316, 458933970,
3081530795, 2596725425, 2892933915, 3337793979, 1873484762, 45203372,
2870745799, 2982390896, 475711250, 3349967275, 2596741809, 2893196060,
3341988299, 1940593882, 1118949292, 2870811335, 2983439476, 492488530,
3618403755, 2596758193, 2893458205, 3346182619, 2007703002, 2192695212,
2870876871, 2984488056, 509265810, 3886840235, 2596774577, 2893720350,
3350376939, 2074812122, 3266441132, 2870942407, 2985536636, 526043090,
4155276715, 2596790961, 2893982495, 3354571259, 2141921242, 45219756,
2871007944, 2986585216, 542820370, 128745899, 2596807346, 2894244640,
3358765579, 2209030362, 1118965676, 2871073480, 2987633796, 559597650,
397182379, 2596823730, 2894506785, 3362959899, 2276139482, 2192711596,
2871139016, 2988682376, 576374930, 665618859, 2596840114, 2894768930,
3367154219, 2343248602, 3266457516, 2871204552, 2989730956, 593152210,
934055339, 2596856498, 2895031075, 3371348539, 2410357722, 45236140,
2871270089, 2990779536, 609929490, 1202491819, 2596872882, 2895293220,
3375542859, 2477466842, 1118982060, 2871335625, 2991828116, 626706770,
1470928299, 2596889266, 2895555365, 3379737179, 2544575962, 2192727980,
2871401161, 2992876696, 643484050, 1739364779, 2596905650, 2895817510,
3383931499, 2611685082, 3266473900, 2871466697, 2993925276, 660261330,
2007801259, 2596922034, 2896079655, 3388125819, 2678794202, 45252524,
2871532234, 2994973856, 677038610, 2276237739, 2596938418, 2896341800,
3392320139, 2745903322, 1118998444, 2871597770, 2996022436, 693815890,
2544674219, 2596954802, 2896603945, 3396514459, 2813012442, 2192744364,
2871663306, 2997071016, 710593170, 2813110699, 2596971186, 2896866090,
3400708779, 2880121562, 3266490284, 2871728842, 2998119596, 727370450,
3081547179, 2596987570, 2897128235, 3404903099, 2947230682, 45268908,
2871794379, 2999168176, 744147730, 3349983659, 2597003954, 2897390380,
3409097419, 3014339802, 1119014828, 2871859915, 3000216756, 760925010,
3618420139, 2597020338, 2897652525, 3413291739, 3081448922, 2192760748,
2871925451, 3001265336, 777702290, 3886856619, 2597036722, 2897914670,
3417486059, 3148558042, 3266506668, 2871990987, 3002313916, 794479570,
4155293099, 2597053106, 2898176815, 3421680379, 3215667162, 45285292,
2872056524, 3003362496, 811256850, 128762283, 2597069491, 2898438960,
3425874699, 3282776282, 1119031212, 2872122060, 3004411076, 828034130,
397198763, 2597085875, 2898701105, 3430069019, 3349885402, 2192777132,
2872187596, 3005459656, 844811410, 665635243, 2597102259, 2898963250,
3434263339, 3416994522, 3266523052, 2872253132, 3006508236, 861588690,
934071723, 2597118643, 2899225395, 3438457659, 3484103642, 45301676,
2872318669, 3007556816, 878365970, 1202508203, 2597135027, 2899487540,
3442651979, 3551212762, 1119047596, 2872384205, 3008605396, 895143250,
1470944683, 2597151411, 2899749685, 3446846299, 3618321882, 2192793516,
2872449741, 3009653976, 911920530, 1739381163, 2597167795, 2900011830,
3451040619, 3685431002, 3266539436, 2872515277, 3010702556, 928697810,
2007817643, 2597184179, 2900273975, 3455234939, 3752540122, 45318060,
2872580814, 3011751136, 945475090, 2276254123, 2597200563, 2900536120,
3459429259, 3819649242, 1119063980, 188291790, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
958922752, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 960941646,
2523719003, 2194562227, 3974515513, 3463099289, 3878369722, 2025037164,
3946442446, 3013668071, 975883910, 2754406619, 1523487667, 753507130,
3466572711, 3931847306, 2880678444, 993705678, 3014520043, 990039739,
3001871451, 1590612403, 2901265211, 3471356856, 4013636538, 4289969772,
2872840910, 3015978224, 1013894933, 3383554587, 3402575027, 1827896124,
3477320655, 4110105894, 1504957804, 725449423, 3017403638, 1036177259,
3740071771, 516915635, 2901986110, 3482891236, 4198186618, 2947803756,
2873021135, 3018861819, 1060032453, 4121754907, 2328878259, 1828617023,
3488855035, 4294655974, 179569004, 994065104, 3020270849, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1081528346,
149750283, 2798659252, 3976383296, 3492983819, 59457750, 1051987693,
1262552784, 3021073668, 1094111306, 351077643, 1724929716, 3976579905,
3496129559, 109789590, 1857297133, 1262601936, 3021860103, 1106694266,
552405003, 651200180, 3976776514, 3499275299, 160121430, 2662606573,
1262651088, 3022646538, 1119277226, 753732363, 3872437940, 3976973122,
3502421039, 210453270, 3467916013, 1262700240, 3023432973, 1131860186,
955059723, 2798708404, 3977169731, 3505566779, 260785110, 4273225453,
1262749392, 3024219408, 1144443146, 1156387083, 1724978868, 3977366340,
3508712519, 311116950, 783567597, 1262798545, 3025005843, 1157026106,
1357714443, 651249332, 3977562949, 3511858259, 361448790, 1588877037,
1262847697, 3025792278, 1169609066, 1559041803, 3872487092, 3977759557,
3515003999, 411780630, 2394186477, 1262896849, 3026578713, 1182192026,
1760369163, 2798757556, 3977956166, 3518149739, 462112470, 3199495917,
1262946001, 3027365148, 1194774986, 1961696523, 1725028020, 3978152775,
3521295479, 512444310, 4004805357, 1262995153, 3028151583, 1207357946,
2163023883, 651298484, 3978349384, 3524441219, 562776150, 515147501,
1263044306, 3028938018, 1219940906, 2364351243, 3872536244, 3978545992,
3527586959, 613107990, 1320456941, 1263093458, 3029724453, 1232523866,
2565678603, 2798806708, 3978742601, 3530732699, 663439830, 2125766381,
1263142610, 3030510888, 1245106826, 2767005963, 1725077172, 3978939210,
3533878439, 713771670, 2931075821, 1263191762, 3031297323, 1257689786,
2968333323, 651347636, 3979135819, 3537024179, 764103510, 3736385261,
1263240914, 3032083758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1270010602,
3169660651, 3939694004, 1831848779, 3540235456, 816532514, 246727469,
726418131, 3032821041, 1281544982, 3350016427, 2463310516, 2905762636,
3543053514, 861621454, 968150509, 189593299, 3033574708, 1294127942,
3551343819, 1456689844, 3979705165, 3546264790, 914050438, 1857346157,
1531822803, 3034443063, 1308283772, 3782031419, 785615284, 1832450894,
3550000356, 969625194, 2746541997, 2068747987, 3035262266, 1320604587,
3987553067, 4141070516, 3980139342, 3553146096, 1022054194, 3618960621,
3142543059, 3036114237, 1334760415, 4205657691, 3402886324, 2906606415,
3556553982, 1074483194, 112525613, 4216338132, 3037048128, 1350226968,
162349643, 3537120693, 759393104, 3561075983, 1151029518, 1370821613,
3679542996, 3038244165, 1369887845, 472729275, 3537138357, 3980893009,
3565008158, 1213944334, 2394235565, 1532117716, 3039194441, 1384567963,
703416891, 3067390389, 2907372370, 3569202477, 1282102014, 3484758893,
1800622804, 3040324941, 1402655968, 1001213579, 3537170613, 760179539,
3573462335, 1347113994, 213205677, 190069461, 3041226065, 1416811802,
1244484075, 3537186229, 760462164, 3578115408, 1432048966, 1572165229,
995460821, 3042536790, 1436996967, 1533892283, 3335876533, 1834433365,
3581392221, 1471895014, 2142592877, 995493589, 3043061080, 1445385607,
1684887739, 1993709749, 1834638166, 3585258859, 1533761234, 3132452397,
3948344021, 3044027739, 1460852162, 1915575403, 852871861, 761064279,
3587356020, 1579898742, 3870652717, 2337780437, 3045043551, 1479202308,
2234343691, 2262179765, 1835154264, 3592926601, 1656445094, 800426861,
995673814, 3045944675, 1491523127, 2406310843, 114704309, 1835285337,
3595023761, 1689999654, 1337299821, 995706582, 3046468965, 1499911767,
2540529083, 2262196149, 1835416409, 3597120921, 1723554214, 1874172781,
995739350, 3046993255, 1508300407, 2674747323, 114720693, 1835547482,
3599218081, 1757108774, 2411045741, 995772118, 3047517545, 1516689047,
2808965563, 2262212533, 1835678554, 3601315241, 1790663334, 2947918701,
995804886, 3048041835, 1525077687, 2943183803, 114737077, 1835809627,
3603412401, 1824217894, 3484791661, 995837654, 3048566125, 1533466327,
3077402043, 2262228917, 1835940699, 3605509561, 1857772454, 4021664621,
995870422, 3049090415, 1541854967, 3211620283, 114753461, 1836071772,
3607606721, 1891327014, 263570285, 995903191, 3049614705, 1550243607,
3345838523, 2262245301, 1836202844, 3609703881, 1924881574, 800443245,
995935959, 3050138995, 1558632247, 3480056763, 114769845, 1836333917,
3611801041, 1958436134, 1337316205, 995968727, 3050663285, 1567020887,
3614275003, 2262261685, 1836464989, 3613898201, 1991990694, 1874189165,
996001495, 3051187575, 1575409527, 3748493243, 114786229, 1836596062,
3615995361, 2025545254, 2411062125, 996034263, 3051711865, 1583798167,
3882711483, 2262278069, 1836727134, 3618092521, 2059099814, 2947935085,
996067031, 3052236155, 1592186807, 4016929723, 114802613, 1836858207,
3620189681, 2092654374, 3484808045, 996099799, 3052760445, 1600575447,
4151147963, 2262294453, 1836989279, 3622286841, 2126208934, 4021681005,
996132567, 3053284735, 1608964087, 4285366203, 181, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1611585535, 53313659,
1389891766, 763464544, 3626022407, 2190172306, 817236781, 1264642776,
3054759300, 1637013594, 506300139, 1121485494, 764013410, 3636114987,
2362139406, 3870701165, 191090392, 3057823120, 1686034708, 1299026603,
785989814, 2912242533, 3647518295, 2546689482, 2461426157, 2338748121,
3060592026, 1730599358, 2012061003, 3604605622, 2912959335, 3659314819,
2734385298, 1068928493, 4217970394, 3063279012, 1772542559, 2674763579,
1188726710, 1839840106, 3668948649, 2886429406, 3535188589, 996896474,
3065703854, 1811864309, 3312300203, 3000705462, 1840474988, 3679172304,
3052105050, 1740036333, 4218269403, 3067932086, 1844370295, 3773675515,
786139062, 2914581358, 3684021988, 3118165606, 2780227693, 3681461979,
3068947898, 1860623285, 4033723355, 651937206, 1841093487, 3688216308,
3185274726, 3853973613, 3681527515, 3069996478, 1877400565, 7192539,
651953591, 1841355632, 3692410628, 3252383846, 632752237, 3681593052,
3071045058, 1894177845, 275629019, 651969975, 1841617777, 3696604948,
3319492966, 1706498157, 3681658588, 3072093638, 1910955125, 544065499,
651986359, 1841879922, 3700799268, 3386602086, 2780244077, 3681724124,
3073142218, 1927732405, 812501979, 652002743, 1842142067, 3704993588,
3453711206, 3853989997, 3413354204, 3074174414, 1944247540, 1076744139,
584910007, 768658292, 3709122372, 3519771746, 615991341, 3413418717,
3075222994, 1961024820, 1345180619, 584926391, 768920437, 3713316692,
3586880866, 1689737261, 3413484253, 3076271574, 1977802100, 1613617099,
584942775, 769182582, 3717511012, 3653989986, 2763483181, 3413549789,
3077320154, 1994579380, 1882053579, 584959159, 769444727, 3721705332,
3721099106, 3837229101, 3413615325, 3078368734, 2011356660, 2150490059,
584975543, 769706872, 3725899652, 3788208226, 616007725, 3413680862,
3079417314, 2028133940, 2418926539, 584991927, 769969017, 3730093972,
3855317346, 1689753645, 3413746398, 3080465894, 2044911220, 2687363019,
585008311, 770231162, 3734288292, 3922426466, 2763499565, 3413811934,
3081514474, 2061688500, 2955799499, 585024695, 770493307, 3738482612,
3989535586, 3837245485, 3413877470, 3082563054, 2078465780, 3224235979,
585041079, 770755452, 3742676932, 4056644706, 616024109, 3413943007,
3083611634, 2095243060, 3492672459, 585057463, 771017597, 3746871252,
4123753826, 1689770029, 3414008543, 3084660214, 2112020340, 3761108939,
585073847, 771279742, 3751065572, 4190862946, 2763515949, 3414074079,
3085708794, 2128797620, 4029545419, 585090231, 771541887, 3755259892,
4257972066, 3837261869, 3682575071, 3086790142, 2146361335, 36569115,
1524633528, 771873664, 3760961545, 60522698, 1203245102, 1535195872,
3088526853, 2174935138, 493750011, 249593016, 1846061954, 3768104996,
174817918, 3031968622, 730001120, 3090312716, 2203771088, 950930891,
3403737528, 772782979, 3775772737, 293307466, 632833966, 998552289,
3092164115, 2233131328, 1420694731, 2061588664, 1846954885, 3782195290,
755174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
| 1,150,716 | 15,165 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_dbmmodule.c | #define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_dbm");
/* DBM module using dictionary interface */
/* Some Linux systems install gdbm/ndbm.h, but not ndbm.h. This supports
* whichever configure was able to locate.
*/
#if defined(HAVE_NDBM_H)
#include <ndbm.h>
static const char which_dbm[] = "GNU gdbm"; /* EMX port of GDBM */
#elif defined(HAVE_GDBM_NDBM_H)
#include <gdbm/ndbm.h>
static const char which_dbm[] = "GNU gdbm";
#elif defined(HAVE_GDBM_DASH_NDBM_H)
#include <gdbm-ndbm.h>
static const char which_dbm[] = "GNU gdbm";
#elif defined(HAVE_BERKDB_H)
#include <db.h>
static const char which_dbm[] = "Berkeley DB";
#else
#error "No ndbm.h available!"
#endif
/*[clinic input]
module _dbm
class _dbm.dbm "dbmobject *" "&Dbmtype"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=9b1aa8756d16150e]*/
typedef struct {
PyObject_HEAD
int di_size; /* -1 means recompute */
DBM *di_dbm;
} dbmobject;
#include "third_party/python/Modules/clinic/_dbmmodule.inc"
static PyTypeObject Dbmtype;
#define is_dbmobject(v) (Py_TYPE(v) == &Dbmtype)
#define check_dbmobject_open(v) if ((v)->di_dbm == NULL) \
{ PyErr_SetString(DbmError, "DBM object has already been closed"); \
return NULL; }
static PyObject *DbmError;
static PyObject *
newdbmobject(const char *file, int flags, int mode)
{
dbmobject *dp;
dp = PyObject_New(dbmobject, &Dbmtype);
if (dp == NULL)
return NULL;
dp->di_size = -1;
/* See issue #19296 */
if ( (dp->di_dbm = dbm_open((char *)file, flags, mode)) == 0 ) {
PyErr_SetFromErrno(DbmError);
Py_DECREF(dp);
return NULL;
}
return (PyObject *)dp;
}
/* Methods */
static void
dbm_dealloc(dbmobject *dp)
{
if ( dp->di_dbm )
dbm_close(dp->di_dbm);
PyObject_Del(dp);
}
static Py_ssize_t
dbm_length(dbmobject *dp)
{
if (dp->di_dbm == NULL) {
PyErr_SetString(DbmError, "DBM object has already been closed");
return -1;
}
if ( dp->di_size < 0 ) {
datum key;
int size;
size = 0;
for ( key=dbm_firstkey(dp->di_dbm); key.dptr;
key = dbm_nextkey(dp->di_dbm))
size++;
dp->di_size = size;
}
return dp->di_size;
}
static PyObject *
dbm_subscript(dbmobject *dp, PyObject *key)
{
datum drec, krec;
Py_ssize_t tmp_size;
if (!PyArg_Parse(key, "s#", &krec.dptr, &tmp_size) )
return NULL;
krec.dsize = tmp_size;
check_dbmobject_open(dp);
drec = dbm_fetch(dp->di_dbm, krec);
if ( drec.dptr == 0 ) {
PyErr_SetObject(PyExc_KeyError, key);
return NULL;
}
if ( dbm_error(dp->di_dbm) ) {
dbm_clearerr(dp->di_dbm);
PyErr_SetString(DbmError, "");
return NULL;
}
return PyBytes_FromStringAndSize(drec.dptr, drec.dsize);
}
static int
dbm_ass_sub(dbmobject *dp, PyObject *v, PyObject *w)
{
datum krec, drec;
Py_ssize_t tmp_size;
if ( !PyArg_Parse(v, "s#", &krec.dptr, &tmp_size) ) {
PyErr_SetString(PyExc_TypeError,
"dbm mappings have bytes or string keys only");
return -1;
}
krec.dsize = tmp_size;
if (dp->di_dbm == NULL) {
PyErr_SetString(DbmError, "DBM object has already been closed");
return -1;
}
dp->di_size = -1;
if (w == NULL) {
if ( dbm_delete(dp->di_dbm, krec) < 0 ) {
dbm_clearerr(dp->di_dbm);
PyErr_SetObject(PyExc_KeyError, v);
return -1;
}
} else {
if ( !PyArg_Parse(w, "s#", &drec.dptr, &tmp_size) ) {
PyErr_SetString(PyExc_TypeError,
"dbm mappings have byte or string elements only");
return -1;
}
drec.dsize = tmp_size;
if ( dbm_store(dp->di_dbm, krec, drec, DBM_REPLACE) < 0 ) {
dbm_clearerr(dp->di_dbm);
PyErr_SetString(DbmError,
"cannot add item to database");
return -1;
}
}
if ( dbm_error(dp->di_dbm) ) {
dbm_clearerr(dp->di_dbm);
PyErr_SetString(DbmError, "");
return -1;
}
return 0;
}
static PyMappingMethods dbm_as_mapping = {
(lenfunc)dbm_length, /*mp_length*/
(binaryfunc)dbm_subscript, /*mp_subscript*/
(objobjargproc)dbm_ass_sub, /*mp_ass_subscript*/
};
/*[clinic input]
_dbm.dbm.close
Close the database.
[clinic start generated code]*/
static PyObject *
_dbm_dbm_close_impl(dbmobject *self)
/*[clinic end generated code: output=c8dc5b6709600b86 input=046db72377d51be8]*/
{
if (self->di_dbm)
dbm_close(self->di_dbm);
self->di_dbm = NULL;
Py_INCREF(Py_None);
return Py_None;
}
/*[clinic input]
_dbm.dbm.keys
Return a list of all keys in the database.
[clinic start generated code]*/
static PyObject *
_dbm_dbm_keys_impl(dbmobject *self)
/*[clinic end generated code: output=434549f7c121b33c input=d210ba778cd9c68a]*/
{
PyObject *v, *item;
datum key;
int err;
check_dbmobject_open(self);
v = PyList_New(0);
if (v == NULL)
return NULL;
for (key = dbm_firstkey(self->di_dbm); key.dptr;
key = dbm_nextkey(self->di_dbm)) {
item = PyBytes_FromStringAndSize(key.dptr, key.dsize);
if (item == NULL) {
Py_DECREF(v);
return NULL;
}
err = PyList_Append(v, item);
Py_DECREF(item);
if (err != 0) {
Py_DECREF(v);
return NULL;
}
}
return v;
}
static int
dbm_contains(PyObject *self, PyObject *arg)
{
dbmobject *dp = (dbmobject *)self;
datum key, val;
Py_ssize_t size;
if ((dp)->di_dbm == NULL) {
PyErr_SetString(DbmError,
"DBM object has already been closed");
return -1;
}
if (PyUnicode_Check(arg)) {
key.dptr = PyUnicode_AsUTF8AndSize(arg, &size);
key.dsize = size;
if (key.dptr == NULL)
return -1;
}
else if (!PyBytes_Check(arg)) {
PyErr_Format(PyExc_TypeError,
"dbm key must be bytes or string, not %.100s",
arg->ob_type->tp_name);
return -1;
}
else {
key.dptr = PyBytes_AS_STRING(arg);
key.dsize = PyBytes_GET_SIZE(arg);
}
val = dbm_fetch(dp->di_dbm, key);
return val.dptr != NULL;
}
static PySequenceMethods dbm_as_sequence = {
0, /* sq_length */
0, /* sq_concat */
0, /* sq_repeat */
0, /* sq_item */
0, /* sq_slice */
0, /* sq_ass_item */
0, /* sq_ass_slice */
dbm_contains, /* sq_contains */
0, /* sq_inplace_concat */
0, /* sq_inplace_repeat */
};
/*[clinic input]
_dbm.dbm.get
key: str(accept={str, robuffer}, zeroes=True)
default: object = None
/
Return the value for key if present, otherwise default.
[clinic start generated code]*/
static PyObject *
_dbm_dbm_get_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length, PyObject *default_value)
/*[clinic end generated code: output=b44f95eba8203d93 input=b788eba0ffad2e91]*/
/*[clinic end generated code: output=4f5c0e523eaf1251 input=9402c0af8582dc69]*/
{
datum dbm_key, val;
dbm_key.dptr = (char *)key;
dbm_key.dsize = key_length;
check_dbmobject_open(self);
val = dbm_fetch(self->di_dbm, dbm_key);
if (val.dptr != NULL)
return PyBytes_FromStringAndSize(val.dptr, val.dsize);
Py_INCREF(default_value);
return default_value;
}
/*[clinic input]
_dbm.dbm.setdefault
key: str(accept={str, robuffer}, zeroes=True)
default: object(c_default="NULL") = b''
/
Return the value for key if present, otherwise default.
If key is not in the database, it is inserted with default as the value.
[clinic start generated code]*/
static PyObject *
_dbm_dbm_setdefault_impl(dbmobject *self, const char *key,
Py_ssize_clean_t key_length,
PyObject *default_value)
/*[clinic end generated code: output=52545886cf272161 input=bf40c48edaca01d6]*/
{
datum dbm_key, val;
Py_ssize_t tmp_size;
dbm_key.dptr = (char *)key;
dbm_key.dsize = key_length;
check_dbmobject_open(self);
val = dbm_fetch(self->di_dbm, dbm_key);
if (val.dptr != NULL)
return PyBytes_FromStringAndSize(val.dptr, val.dsize);
if (default_value == NULL) {
default_value = PyBytes_FromStringAndSize(NULL, 0);
if (default_value == NULL)
return NULL;
val.dptr = NULL;
val.dsize = 0;
}
else {
if ( !PyArg_Parse(default_value, "s#", &val.dptr, &tmp_size) ) {
PyErr_SetString(PyExc_TypeError,
"dbm mappings have byte string elements only");
return NULL;
}
val.dsize = tmp_size;
Py_INCREF(default_value);
}
if (dbm_store(self->di_dbm, dbm_key, val, DBM_INSERT) < 0) {
dbm_clearerr(self->di_dbm);
PyErr_SetString(DbmError, "cannot add item to database");
Py_DECREF(default_value);
return NULL;
}
return default_value;
}
static PyObject *
dbm__enter__(PyObject *self, PyObject *args)
{
Py_INCREF(self);
return self;
}
static PyObject *
dbm__exit__(PyObject *self, PyObject *args)
{
_Py_IDENTIFIER(close);
return _PyObject_CallMethodId(self, &PyId_close, NULL);
}
static PyMethodDef dbm_methods[] = {
_DBM_DBM_CLOSE_METHODDEF
_DBM_DBM_KEYS_METHODDEF
_DBM_DBM_GET_METHODDEF
_DBM_DBM_SETDEFAULT_METHODDEF
{"__enter__", dbm__enter__, METH_NOARGS, NULL},
{"__exit__", dbm__exit__, METH_VARARGS, NULL},
{NULL, NULL} /* sentinel */
};
static PyTypeObject Dbmtype = {
PyVarObject_HEAD_INIT(NULL, 0)
"_dbm.dbm",
sizeof(dbmobject),
0,
(destructor)dbm_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
&dbm_as_sequence, /*tp_as_sequence*/
&dbm_as_mapping, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
dbm_methods, /*tp_methods*/
};
/* ----------------------------------------------------------------- */
/*[clinic input]
_dbm.open as dbmopen
filename: unicode
The filename to open.
flags: str="r"
How to open the file. "r" for reading, "w" for writing, etc.
mode: int(py_default="0o666") = 0o666
If creating a new file, the mode bits for the new file
(e.g. os.O_RDWR).
/
Return a database object.
[clinic start generated code]*/
static PyObject *
dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,
int mode)
/*[clinic end generated code: output=9527750f5df90764 input=376a9d903a50df59]*/
{
int iflags;
if ( strcmp(flags, "r") == 0 )
iflags = O_RDONLY;
else if ( strcmp(flags, "w") == 0 )
iflags = O_RDWR;
else if ( strcmp(flags, "rw") == 0 ) /* B/W compat */
iflags = O_RDWR|O_CREAT;
else if ( strcmp(flags, "c") == 0 )
iflags = O_RDWR|O_CREAT;
else if ( strcmp(flags, "n") == 0 )
iflags = O_RDWR|O_CREAT|O_TRUNC;
else {
PyErr_SetString(DbmError,
"arg 2 to open should be 'r', 'w', 'c', or 'n'");
return NULL;
}
PyObject *filenamebytes = PyUnicode_EncodeFSDefault(filename);
if (filenamebytes == NULL) {
return NULL;
}
const char *name = PyBytes_AS_STRING(filenamebytes);
if (strlen(name) != (size_t)PyBytes_GET_SIZE(filenamebytes)) {
Py_DECREF(filenamebytes);
PyErr_SetString(PyExc_ValueError, "embedded null character");
return NULL;
}
PyObject *self = newdbmobject(name, iflags, mode);
Py_DECREF(filenamebytes);
return self;
}
static PyMethodDef dbmmodule_methods[] = {
DBMOPEN_METHODDEF
{ 0, 0 },
};
static struct PyModuleDef _dbmmodule = {
PyModuleDef_HEAD_INIT,
"_dbm",
NULL,
-1,
dbmmodule_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__dbm(void) {
PyObject *m, *d, *s;
if (PyType_Ready(&Dbmtype) < 0)
return NULL;
m = PyModule_Create(&_dbmmodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
if (DbmError == NULL)
DbmError = PyErr_NewException("_dbm.error",
PyExc_IOError, NULL);
s = PyUnicode_FromString(which_dbm);
if (s != NULL) {
PyDict_SetItemString(d, "library", s);
Py_DECREF(s);
}
if (DbmError != NULL)
PyDict_SetItemString(d, "error", DbmError);
if (PyErr_Occurred()) {
Py_DECREF(m);
m = NULL;
}
return m;
}
| 13,861 | 511 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_islinebreak.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
/* Returns 1 for Unicode characters having the line break
* property 'BK', 'CR', 'LF' or 'NL' or having bidirectional
* type 'B', 0 otherwise.
*/
int _PyUnicode_IsLinebreak(Py_UCS4 ch)
{
switch (ch) {
case 0x000A:
case 0x000B:
case 0x000C:
case 0x000D:
case 0x001C:
case 0x001D:
case 0x001E:
case 0x0085:
case 0x2028:
case 0x2029:
return 1;
}
return 0;
}
| 608 | 27 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_getcode.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/fmt/fmt.h"
#include "libc/intrin/bits.h"
#include "third_party/python/Include/pyctype.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Modules/unicodedata.h"
#include "third_party/python/Modules/unicodedata_unidata.h"
/* clang-format off */
/* macros used to determine if the given code point is in the PUA range that
* we are using to store aliases and named sequences */
#define IS_ALIAS(cp) ((cp >= _PyUnicode_AliasesStart) && \
(cp < _PyUnicode_AliasesEnd))
#define IS_NAMED_SEQ(cp) ((cp >= _PyUnicode_NamedSequencesStart) && \
(cp < _PyUnicode_NamedSequencesEnd))
static const char kHangulSyllables[][3][4] = {
{ "G", "A", "" },
{ "GG", "AE", "G" },
{ "N", "YA", "GG" },
{ "D", "YAE", "GS" },
{ "DD", "EO", "N", },
{ "R", "E", "NJ" },
{ "M", "YEO", "NH" },
{ "B", "YE", "D" },
{ "BB", "O", "L" },
{ "S", "WA", "LG" },
{ "SS", "WAE", "LM" },
{ "", "OE", "LB" },
{ "J", "YO", "LS" },
{ "JJ", "U", "LT" },
{ "C", "WEO", "LP" },
{ "K", "WE", "LH" },
{ "T", "WI", "M" },
{ "P", "YU", "B" },
{ "H", "EU", "BS" },
{ "", "YI", "S" },
{ "", "I", "SS" },
{ "", "", "NG" },
{ "", "", "J" },
{ "", "", "C" },
{ "", "", "K" },
{ "", "", "T" },
{ "", "", "P" },
{ "", "", "H" }
};
void
_PyUnicode_FindSyllable(const char *str, int *len, int *pos,
int count, int column)
{
int i, len1;
*len = -1;
for (i = 0; i < count; i++) {
const char *s = kHangulSyllables[i][column];
len1 = Py_SAFE_DOWNCAST(strlen(s), size_t, int);
if (len1 <= *len)
continue;
if (strncmp(str, s, len1) == 0) {
*len = len1;
*pos = i;
}
}
if (*len == -1) {
*len = 0;
}
}
static unsigned long
_gethash(const char *s, int len, int scale)
{
int i;
unsigned long h = 0;
unsigned long ix;
for (i = 0; i < len; i++) {
h = (h * scale) + (unsigned char) Py_TOUPPER(Py_CHARMASK(s[i]));
ix = h & 0xff000000;
if (ix)
h = (h ^ ((ix>>24) & 0xff)) & 0x00ffffff;
}
return h;
}
static int
_cmpname(PyObject *self, int code, const char* name, int namelen)
{
/* check if code corresponds to the given name */
int i;
char buffer[UNIDATA_NAME_MAXLEN+1];
if (!_PyUnicode_GetUcName(self, code, buffer, UNIDATA_NAME_MAXLEN, 1))
return 0;
for (i = 0; i < namelen; i++) {
if (Py_TOUPPER(Py_CHARMASK(name[i])) != buffer[i])
return 0;
}
return buffer[namelen] == '\0';
}
static int
_check_alias_and_seq(unsigned int cp, Py_UCS4* code, int with_named_seq)
{
/* check if named sequences are allowed */
if (!with_named_seq && IS_NAMED_SEQ(cp))
return 0;
/* if the code point is in the PUA range that we use for aliases,
* convert it to obtain the right code point */
if (IS_ALIAS(cp))
*code = _PyUnicode_NameAliases[cp - _PyUnicode_AliasesStart];
else
*code = cp;
return 1;
}
int
_PyUnicode_GetCode(PyObject *self, const char *name, int namelen, Py_UCS4 *code,
int with_named_seq)
{
/* Return the code point associated with the given name.
* Named aliases are resolved too (unless self != NULL (i.e. we are using
* 3.2.0)). If with_named_seq is 1, returns the PUA code point that we are
* using for the named sequence, and the caller must then convert it. */
unsigned int h, v;
unsigned int mask = _PyUnicode_CodeSize - 1;
unsigned int i, incr;
/* Check for hangul syllables. */
if (strncmp(name, "HANGUL SYLLABLE ", 16) == 0) {
int len, L = -1, V = -1, T = -1;
const char *pos = name + 16;
_PyUnicode_FindSyllable(pos, &len, &L, _Hanghoul_LCount, 0);
pos += len;
_PyUnicode_FindSyllable(pos, &len, &V, _Hanghoul_VCount, 1);
pos += len;
_PyUnicode_FindSyllable(pos, &len, &T, _Hanghoul_TCount, 2);
pos += len;
if (L != -1 && V != -1 && T != -1 && pos-name == namelen) {
*code = _Hanghoul_SBase + (L * _Hanghoul_VCount+V) * _Hanghoul_TCount + T;
return 1;
}
/* Otherwise, it's an illegal syllable name. */
return 0;
}
/* Check for unified ideographs. */
if (strncmp(name, "CJK UNIFIED IDEOGRAPH-", 22) == 0) {
/* Four or five hexdigits must follow. */
v = 0;
name += 22;
namelen -= 22;
if (namelen != 4 && namelen != 5)
return 0;
while (namelen--) {
v *= 16;
if (*name >= '0' && *name <= '9')
v += *name - '0';
else if (*name >= 'A' && *name <= 'F')
v += *name - 'A' + 10;
else
return 0;
name++;
}
if (!_PyUnicode_IsUnifiedIdeograph(v))
return 0;
*code = v;
return 1;
}
/* the following is the same as python's dictionary lookup, with
only minor changes. see the makeunicodedata script for more
details */
h = (unsigned int)_gethash(name, namelen, _PyUnicode_CodeMagic);
i = ~h & mask;
v = _bextra(_PyUnicode_CodeHash, i, _PyUnicode_CodeHashBits);
if (!v)
return 0;
if (_cmpname(self, v, name, namelen))
return _check_alias_and_seq(v, code, with_named_seq);
incr = (h ^ (h >> 3)) & mask;
if (!incr)
incr = mask;
for (;;) {
i = (i + incr) & mask;
v = _bextra(_PyUnicode_CodeHash, i, _PyUnicode_CodeHashBits);
if (!v)
return 0;
if (_cmpname(self, v, name, namelen))
return _check_alias_and_seq(v, code, with_named_seq);
incr = incr << 1;
if (incr > mask)
incr = incr ^ _PyUnicode_CodePoly;
}
}
int
_PyUnicode_GetUcName(PyObject *self, Py_UCS4 code, char *buffer, int buflen,
int with_alias_and_seq)
{
/* Find the name associated with the given code point.
* If with_alias_and_seq is 1, check for names in the Private Use Area 15
* that we are using for aliases and named sequences. */
char *p;
unsigned char *w;
int i, word, offset;
if (code >= 0x110000)
return 0;
/* XXX should we just skip all the code points in the PUAs here? */
if (!with_alias_and_seq && (IS_ALIAS(code) || IS_NAMED_SEQ(code)))
return 0;
if (self && UCD_Check(self)) {
/* in 3.2.0 there are no aliases and named sequences */
const _PyUnicode_ChangeRecord *old;
if (IS_ALIAS(code) || IS_NAMED_SEQ(code))
return 0;
old = get_old_record(self, code);
if (!old->category_changed) {
/* unassigned */
return 0;
}
}
if (_Hanghoul_SBase <= code && code < _Hanghoul_SBase + _Hanghoul_SCount) {
/* Hangul syllable. */
int SIndex = code - _Hanghoul_SBase;
int L = SIndex / _Hanghoul_NCount;
int V = (SIndex % _Hanghoul_NCount) / _Hanghoul_TCount;
int T = SIndex % _Hanghoul_TCount;
if (buflen < 27)
/* Worst case: HANGUL SYLLABLE <10chars>. */
return 0;
p = buffer;
p = stpcpy(p, "HANGUL SYLLABLE ");
p = stpcpy(p, kHangulSyllables[L][0]);
p = stpcpy(p, kHangulSyllables[V][1]);
p = stpcpy(p, kHangulSyllables[T][2]);
*p = 0;
return 1;
}
if (_PyUnicode_IsUnifiedIdeograph(code)) {
if (buflen < 28)
/* Worst case: CJK UNIFIED IDEOGRAPH-20000 */
return 0;
sprintf(buffer, "CJK UNIFIED IDEOGRAPH-%X", code);
return 1;
}
/* get offset into phrasebook */
offset = _PyUnicode_PhrasebookOffset1[(code>>_PyUnicode_PhrasebookShift)];
offset = _bextra(_PyUnicode_PhrasebookOffset2,
(offset << _PyUnicode_PhrasebookShift) +
(code & ((1 << _PyUnicode_PhrasebookShift) - 1)),
_PyUnicode_PhrasebookOffset2Bits);
if (!offset)
return 0;
i = 0;
for (;;) {
/* get word index */
word = _PyUnicode_Phrasebook[offset] - _PyUnicode_PhrasebookShort;
if (word >= 0) {
word = (word << 8) + _PyUnicode_Phrasebook[offset+1];
offset += 2;
} else
word = _PyUnicode_Phrasebook[offset++];
if (i) {
if (i > buflen)
return 0; /* buffer overflow */
buffer[i++] = ' ';
}
/* copy word string from lexicon. the last character in the
word has bit 7 set. the last word in a string ends with
0x80 */
w = (_PyUnicode_Lexicon +
_bextra(_PyUnicode_LexiconOffset, word,
_PyUnicode_LexiconOffsetBits));
while (*w < 128) {
if (i >= buflen)
return 0; /* buffer overflow */
buffer[i++] = *w++;
}
if (i >= buflen)
return 0; /* buffer overflow */
buffer[i++] = *w & 127;
if (*w == 128)
break; /* end of word */
}
return 1;
}
| 10,216 | 289 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_lexicon.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const unsigned char _PyUnicode_Lexicon[121990] = {
76, 69, 84, 84, 69, 210, 83, 77, 65, 76, 204, 83, 73, 71, 206, 87, 73,
84, 200, 83, 89, 76, 76, 65, 66, 76, 197, 67, 65, 80, 73, 84, 65, 204,
72, 73, 69, 82, 79, 71, 76, 89, 80, 200, 76, 65, 84, 73, 206, 65, 82, 65,
66, 73, 195, 67, 85, 78, 69, 73, 70, 79, 82, 205, 89, 201, 67, 74, 203,
77, 65, 84, 72, 69, 77, 65, 84, 73, 67, 65, 204, 69, 71, 89, 80, 84, 73,
65, 206, 67, 79, 77, 80, 65, 84, 73, 66, 73, 76, 73, 84, 217, 83, 89, 77,
66, 79, 204, 68, 73, 71, 73, 212, 86, 79, 87, 69, 204, 84, 65, 78, 71,
85, 212, 70, 79, 82, 77, 128, 67, 65, 78, 65, 68, 73, 65, 206, 83, 89,
76, 76, 65, 66, 73, 67, 211, 83, 73, 71, 78, 87, 82, 73, 84, 73, 78, 199,
84, 73, 77, 69, 211, 66, 65, 77, 85, 205, 65, 78, 196, 83, 67, 82, 73,
80, 212, 66, 79, 76, 196, 65, 78, 65, 84, 79, 76, 73, 65, 206, 72, 65,
78, 71, 85, 204, 78, 85, 77, 66, 69, 210, 76, 73, 78, 69, 65, 210, 71,
82, 69, 69, 203, 76, 73, 71, 65, 84, 85, 82, 197, 77, 85, 83, 73, 67, 65,
204, 69, 84, 72, 73, 79, 80, 73, 195, 75, 72, 73, 84, 65, 206, 67, 79,
77, 66, 73, 78, 73, 78, 199, 70, 79, 210, 193, 67, 89, 82, 73, 76, 76,
73, 195, 73, 84, 65, 76, 73, 195, 84, 65, 77, 73, 204, 78, 85, 83, 72,
213, 76, 69, 70, 212, 67, 73, 82, 67, 76, 69, 196, 82, 65, 68, 73, 67,
65, 204, 83, 65, 78, 83, 45, 83, 69, 82, 73, 198, 83, 81, 85, 65, 82,
197, 82, 73, 71, 72, 212, 70, 73, 78, 65, 204, 84, 65, 201, 65, 82, 82,
79, 87, 128, 68, 79, 85, 66, 76, 197, 86, 65, 201, 83, 73, 71, 78, 128,
65, 66, 79, 86, 69, 128, 72, 69, 78, 84, 65, 73, 71, 65, 78, 193, 66, 76,
65, 67, 203, 65, 82, 82, 79, 215, 87, 72, 73, 84, 197, 66, 69, 76, 79,
87, 128, 65, 128, 86, 65, 82, 73, 65, 84, 73, 79, 206, 66, 82, 65, 73,
76, 76, 197, 80, 65, 84, 84, 69, 82, 206, 85, 128, 66, 89, 90, 65, 78,
84, 73, 78, 197, 73, 128, 73, 83, 79, 76, 65, 84, 69, 196, 77, 79, 68,
73, 70, 73, 69, 210, 79, 128, 75, 65, 84, 65, 75, 65, 78, 193, 194, 77,
65, 82, 75, 128, 68, 79, 212, 77, 89, 65, 78, 77, 65, 210, 79, 198, 75,
65, 78, 71, 88, 201, 75, 73, 75, 65, 75, 85, 201, 77, 69, 78, 68, 197,
86, 69, 82, 84, 73, 67, 65, 204, 77, 73, 68, 68, 76, 197, 84, 73, 66, 69,
84, 65, 206, 72, 69, 65, 86, 217, 73, 78, 73, 84, 73, 65, 204, 72, 77,
79, 78, 199, 79, 78, 197, 77, 69, 69, 205, 67, 79, 80, 84, 73, 195, 75,
72, 77, 69, 210, 82, 73, 71, 72, 84, 87, 65, 82, 68, 211, 65, 66, 79, 86,
197, 67, 65, 82, 82, 73, 69, 210, 89, 69, 200, 71, 69, 79, 82, 71, 73,
65, 206, 67, 72, 69, 82, 79, 75, 69, 197, 77, 79, 78, 71, 79, 76, 73, 65,
206, 79, 78, 69, 128, 80, 76, 85, 211, 84, 87, 207, 84, 87, 79, 128, 66,
79, 216, 76, 79, 87, 69, 210, 68, 69, 86, 65, 78, 65, 71, 65, 82, 201,
83, 81, 85, 65, 82, 69, 196, 83, 89, 77, 66, 79, 76, 128, 80, 72, 65, 83,
69, 45, 197, 83, 84, 82, 79, 75, 69, 128, 84, 72, 82, 69, 197, 85, 80,
80, 69, 210, 76, 69, 70, 84, 87, 65, 82, 68, 211, 84, 207, 67, 79, 78,
83, 79, 78, 65, 78, 212, 77, 73, 65, 207, 86, 79, 67, 65, 76, 73, 195,
68, 82, 65, 87, 73, 78, 71, 211, 84, 73, 76, 197, 68, 85, 80, 76, 79, 89,
65, 206, 77, 65, 82, 203, 74, 79, 78, 71, 83, 69, 79, 78, 199, 80, 65,
82, 69, 78, 84, 72, 69, 83, 73, 90, 69, 196, 84, 72, 65, 205, 71, 79, 78,
68, 201, 72, 79, 79, 75, 128, 72, 69, 66, 82, 69, 215, 85, 208, 71, 76,
65, 71, 79, 76, 73, 84, 73, 195, 76, 79, 215, 84, 72, 82, 69, 69, 128,
70, 79, 85, 82, 128, 77, 65, 76, 65, 89, 65, 76, 65, 205, 79, 86, 69,
210, 83, 73, 89, 65, 209, 72, 65, 76, 198, 72, 73, 71, 200, 73, 78, 68,
69, 216, 80, 65, 72, 65, 87, 200, 68, 79, 87, 206, 67, 72, 79, 83, 69,
79, 78, 199, 72, 65, 128, 72, 65, 76, 70, 87, 73, 68, 84, 200, 72, 65,
78, 68, 45, 70, 73, 83, 212, 77, 69, 82, 79, 73, 84, 73, 195, 66, 65, 76,
73, 78, 69, 83, 197, 73, 68, 69, 79, 71, 82, 65, 80, 72, 73, 195, 70, 73,
86, 69, 128, 76, 73, 71, 72, 212, 73, 68, 69, 79, 71, 82, 65, 205, 80,
72, 65, 83, 69, 45, 196, 84, 79, 128, 65, 76, 67, 72, 69, 77, 73, 67, 65,
204, 65, 76, 69, 198, 84, 79, 78, 197, 83, 73, 78, 72, 65, 76, 193, 75,
65, 128, 66, 65, 82, 128, 78, 85, 77, 69, 82, 73, 195, 84, 85, 82, 78,
69, 196, 66, 82, 65, 72, 77, 201, 80, 65, 128, 82, 65, 128, 89, 65, 128,
72, 85, 78, 71, 65, 82, 73, 65, 206, 83, 73, 88, 128, 84, 72, 85, 77,
194, 77, 65, 128, 66, 65, 82, 194, 69, 73, 71, 72, 84, 128, 66, 76, 79,
67, 203, 72, 65, 200, 76, 65, 128, 78, 79, 82, 84, 200, 83, 69, 86, 69,
78, 128, 84, 72, 79, 85, 83, 65, 78, 68, 128, 78, 65, 128, 78, 73, 78,
69, 128, 70, 85, 76, 76, 87, 73, 68, 84, 200, 76, 79, 78, 199, 66, 82,
65, 67, 75, 69, 84, 128, 69, 81, 85, 65, 204, 83, 65, 128, 84, 65, 128,
84, 65, 199, 68, 79, 77, 73, 78, 207, 90, 90, 89, 88, 128, 90, 90, 89,
84, 128, 90, 90, 89, 82, 88, 128, 90, 90, 89, 82, 128, 90, 90, 89, 80,
128, 90, 90, 89, 65, 128, 90, 90, 89, 128, 90, 90, 85, 88, 128, 90, 90,
85, 82, 88, 128, 90, 90, 85, 82, 128, 90, 90, 85, 80, 128, 90, 90, 85,
128, 90, 90, 83, 89, 65, 128, 90, 90, 83, 65, 128, 90, 90, 79, 88, 128,
90, 90, 79, 80, 128, 90, 90, 79, 128, 90, 90, 73, 88, 128, 90, 90, 73,
84, 128, 90, 90, 73, 80, 128, 90, 90, 73, 69, 88, 128, 90, 90, 73, 69,
84, 128, 90, 90, 73, 69, 80, 128, 90, 90, 73, 69, 128, 90, 90, 73, 128,
90, 90, 69, 88, 128, 90, 90, 69, 80, 128, 90, 90, 69, 69, 128, 90, 90,
69, 128, 90, 90, 65, 88, 128, 90, 90, 65, 84, 128, 90, 90, 65, 80, 128,
90, 90, 65, 65, 128, 90, 90, 65, 128, 90, 89, 71, 79, 83, 128, 90, 87,
83, 80, 128, 90, 87, 78, 74, 128, 90, 87, 78, 66, 83, 80, 128, 90, 87,
74, 128, 90, 87, 202, 90, 87, 65, 82, 65, 75, 65, 89, 128, 90, 87, 65,
128, 90, 85, 84, 128, 90, 85, 79, 88, 128, 90, 85, 79, 80, 128, 90, 85,
79, 128, 90, 85, 77, 128, 90, 85, 66, 85, 82, 128, 90, 85, 53, 128, 90,
85, 181, 90, 213, 90, 83, 72, 65, 128, 90, 82, 65, 128, 90, 81, 65, 80,
72, 193, 90, 79, 84, 128, 90, 79, 79, 128, 90, 79, 77, 66, 73, 69, 128,
90, 79, 65, 128, 90, 76, 65, 77, 193, 90, 76, 65, 128, 90, 76, 193, 90,
74, 69, 128, 90, 73, 90, 50, 128, 90, 73, 81, 65, 65, 128, 90, 73, 80,
80, 69, 82, 45, 77, 79, 85, 84, 200, 90, 73, 78, 79, 82, 128, 90, 73, 76,
68, 69, 128, 90, 73, 71, 90, 65, 199, 90, 73, 71, 128, 90, 73, 68, 193,
90, 73, 66, 128, 90, 73, 194, 90, 73, 51, 128, 90, 201, 90, 72, 89, 88,
128, 90, 72, 89, 84, 128, 90, 72, 89, 82, 88, 128, 90, 72, 89, 82, 128,
90, 72, 89, 80, 128, 90, 72, 89, 128, 90, 72, 87, 69, 128, 90, 72, 87,
65, 128, 90, 72, 85, 88, 128, 90, 72, 85, 84, 128, 90, 72, 85, 82, 88,
128, 90, 72, 85, 82, 128, 90, 72, 85, 80, 128, 90, 72, 85, 79, 88, 128,
90, 72, 85, 79, 80, 128, 90, 72, 85, 79, 128, 90, 72, 85, 128, 90, 72,
79, 88, 128, 90, 72, 79, 84, 128, 90, 72, 79, 80, 128, 90, 72, 79, 79,
128, 90, 72, 79, 73, 128, 90, 72, 79, 128, 90, 72, 73, 86, 69, 84, 69,
128, 90, 72, 73, 76, 128, 90, 72, 73, 128, 90, 72, 69, 88, 128, 90, 72,
69, 84, 128, 90, 72, 69, 80, 128, 90, 72, 69, 69, 128, 90, 72, 69, 128,
90, 72, 197, 90, 72, 65, 89, 73, 78, 128, 90, 72, 65, 88, 128, 90, 72,
65, 84, 128, 90, 72, 65, 82, 128, 90, 72, 65, 80, 128, 90, 72, 65, 73,
78, 128, 90, 72, 65, 65, 128, 90, 72, 65, 128, 90, 72, 128, 90, 69, 85,
83, 128, 90, 69, 84, 65, 128, 90, 69, 82, 79, 128, 90, 69, 82, 207, 90,
69, 78, 128, 90, 69, 77, 76, 89, 65, 128, 90, 69, 77, 76, 74, 65, 128,
90, 69, 66, 82, 193, 90, 69, 50, 128, 90, 197, 90, 65, 89, 78, 128, 90,
65, 89, 73, 78, 45, 89, 79, 68, 72, 128, 90, 65, 89, 73, 78, 128, 90, 65,
89, 73, 206, 90, 65, 86, 73, 89, 65, 78, 73, 128, 90, 65, 84, 65, 128,
90, 65, 82, 81, 65, 128, 90, 65, 82, 76, 128, 90, 65, 81, 69, 198, 90,
65, 78, 65, 66, 65, 90, 65, 210, 90, 65, 77, 88, 128, 90, 65, 76, 128,
90, 65, 204, 90, 65, 73, 78, 128, 90, 65, 73, 206, 90, 65, 73, 128, 90,
65, 72, 128, 90, 65, 200, 90, 65, 71, 128, 90, 65, 69, 70, 128, 90, 65,
55, 128, 90, 193, 90, 48, 49, 54, 72, 128, 90, 48, 49, 54, 71, 128, 90,
48, 49, 54, 70, 128, 90, 48, 49, 54, 69, 128, 90, 48, 49, 54, 68, 128,
90, 48, 49, 54, 67, 128, 90, 48, 49, 54, 66, 128, 90, 48, 49, 54, 65,
128, 90, 48, 49, 54, 128, 90, 48, 49, 53, 73, 128, 90, 48, 49, 53, 72,
128, 90, 48, 49, 53, 71, 128, 90, 48, 49, 53, 70, 128, 90, 48, 49, 53,
69, 128, 90, 48, 49, 53, 68, 128, 90, 48, 49, 53, 67, 128, 90, 48, 49,
53, 66, 128, 90, 48, 49, 53, 65, 128, 90, 48, 49, 53, 128, 90, 48, 49,
52, 128, 90, 48, 49, 51, 128, 90, 48, 49, 50, 128, 90, 48, 49, 49, 128,
90, 48, 49, 48, 128, 90, 48, 48, 57, 128, 90, 48, 48, 56, 128, 90, 48,
48, 55, 128, 90, 48, 48, 54, 128, 90, 48, 48, 53, 65, 128, 90, 48, 48,
53, 128, 90, 48, 48, 52, 65, 128, 90, 48, 48, 52, 128, 90, 48, 48, 51,
66, 128, 90, 48, 48, 51, 65, 128, 90, 48, 48, 51, 128, 90, 48, 48, 50,
68, 128, 90, 48, 48, 50, 67, 128, 90, 48, 48, 50, 66, 128, 90, 48, 48,
50, 65, 128, 90, 48, 48, 50, 128, 90, 48, 48, 49, 128, 90, 128, 218, 89,
89, 88, 128, 89, 89, 84, 128, 89, 89, 82, 88, 128, 89, 89, 82, 128, 89,
89, 80, 128, 89, 89, 69, 128, 89, 89, 65, 65, 128, 89, 89, 65, 128, 89,
89, 128, 89, 87, 79, 79, 128, 89, 87, 79, 128, 89, 87, 73, 73, 128, 89,
87, 73, 128, 89, 87, 69, 128, 89, 87, 65, 65, 128, 89, 87, 65, 128, 89,
86, 128, 89, 85, 88, 128, 89, 85, 87, 79, 81, 128, 89, 85, 85, 75, 65,
76, 69, 65, 80, 73, 78, 84, 85, 128, 89, 85, 85, 128, 89, 85, 84, 128,
89, 85, 83, 128, 89, 85, 211, 89, 85, 82, 88, 128, 89, 85, 82, 128, 89,
85, 81, 128, 89, 85, 209, 89, 85, 80, 128, 89, 85, 79, 88, 128, 89, 85,
79, 84, 128, 89, 85, 79, 80, 128, 89, 85, 79, 77, 128, 89, 85, 79, 128,
89, 85, 78, 128, 89, 85, 77, 128, 89, 85, 74, 128, 89, 85, 73, 128, 89,
85, 69, 81, 128, 89, 85, 69, 128, 89, 85, 68, 72, 128, 89, 85, 68, 200,
89, 85, 65, 78, 128, 89, 85, 65, 69, 78, 128, 89, 85, 45, 89, 69, 79,
128, 89, 85, 45, 89, 69, 128, 89, 85, 45, 85, 128, 89, 85, 45, 79, 128,
89, 85, 45, 73, 128, 89, 85, 45, 69, 79, 128, 89, 85, 45, 69, 128, 89,
85, 45, 65, 69, 128, 89, 85, 45, 65, 128, 89, 85, 45, 52, 128, 89, 85,
45, 51, 128, 89, 85, 45, 50, 128, 89, 85, 45, 49, 128, 89, 85, 128, 89,
213, 89, 82, 89, 128, 89, 80, 83, 73, 76, 73, 128, 89, 80, 79, 82, 82,
79, 73, 128, 89, 80, 79, 75, 82, 73, 83, 73, 83, 128, 89, 80, 79, 75, 82,
73, 83, 73, 211, 89, 80, 79, 71, 69, 71, 82, 65, 77, 77, 69, 78, 73, 128,
89, 79, 89, 128, 89, 79, 88, 128, 89, 79, 87, 68, 128, 89, 79, 85, 84,
72, 70, 85, 76, 78, 69, 83, 83, 128, 89, 79, 85, 84, 72, 70, 85, 204, 89,
79, 213, 89, 79, 84, 128, 89, 79, 212, 89, 79, 82, 73, 128, 89, 79, 81,
128, 89, 79, 209, 89, 79, 80, 128, 89, 79, 79, 128, 89, 79, 77, 79, 128,
89, 79, 71, 72, 128, 89, 79, 68, 128, 89, 79, 196, 89, 79, 65, 128, 89,
79, 45, 89, 79, 128, 89, 79, 45, 89, 69, 79, 128, 89, 79, 45, 89, 65, 69,
128, 89, 79, 45, 89, 65, 128, 89, 79, 45, 79, 128, 89, 79, 45, 73, 128,
89, 79, 45, 69, 79, 128, 89, 79, 45, 65, 69, 128, 89, 79, 45, 65, 128,
89, 79, 45, 54, 128, 89, 79, 45, 53, 128, 89, 79, 45, 52, 128, 89, 79,
45, 51, 128, 89, 79, 45, 50, 128, 89, 79, 45, 49, 128, 89, 207, 89, 73,
90, 69, 84, 128, 89, 73, 88, 128, 89, 73, 87, 78, 128, 89, 73, 84, 128,
89, 73, 80, 128, 89, 73, 78, 71, 128, 89, 73, 73, 128, 89, 73, 72, 128,
89, 73, 199, 89, 73, 69, 88, 128, 89, 73, 69, 84, 128, 89, 73, 69, 80,
128, 89, 73, 69, 69, 128, 89, 73, 69, 128, 89, 73, 68, 68, 73, 83, 200,
89, 73, 45, 85, 128, 89, 73, 128, 89, 72, 69, 128, 89, 72, 65, 128, 89,
70, 69, 83, 73, 83, 128, 89, 70, 69, 83, 73, 211, 89, 70, 69, 206, 89,
69, 90, 73, 68, 201, 89, 69, 89, 128, 89, 69, 87, 128, 89, 69, 85, 88,
128, 89, 69, 85, 82, 65, 69, 128, 89, 69, 85, 81, 128, 89, 69, 85, 77,
128, 89, 69, 85, 65, 69, 84, 128, 89, 69, 85, 65, 69, 128, 89, 69, 84,
73, 86, 128, 89, 69, 83, 84, 85, 128, 89, 69, 83, 73, 69, 85, 78, 71, 45,
83, 83, 65, 78, 71, 75, 73, 89, 69, 79, 75, 128, 89, 69, 83, 73, 69, 85,
78, 71, 45, 83, 73, 79, 83, 128, 89, 69, 83, 73, 69, 85, 78, 71, 45, 80,
65, 78, 83, 73, 79, 83, 128, 89, 69, 83, 73, 69, 85, 78, 71, 45, 77, 73,
69, 85, 77, 128, 89, 69, 83, 73, 69, 85, 78, 71, 45, 75, 73, 89, 69, 79,
75, 128, 89, 69, 83, 73, 69, 85, 78, 71, 45, 75, 72, 73, 69, 85, 75, 72,
128, 89, 69, 83, 73, 69, 85, 78, 71, 45, 72, 73, 69, 85, 72, 128, 89, 69,
83, 73, 69, 85, 78, 71, 128, 89, 69, 82, 85, 128, 89, 69, 82, 213, 89,
69, 82, 73, 128, 89, 69, 82, 65, 200, 89, 69, 82, 128, 89, 69, 79, 82,
73, 78, 72, 73, 69, 85, 72, 128, 89, 69, 79, 45, 89, 65, 128, 89, 69, 79,
45, 85, 128, 89, 69, 79, 45, 79, 128, 89, 69, 78, 73, 83, 69, 201, 89,
69, 78, 65, 80, 128, 89, 69, 78, 128, 89, 69, 206, 89, 69, 76, 76, 79,
87, 128, 89, 69, 76, 76, 79, 215, 89, 69, 73, 78, 128, 89, 69, 72, 128,
89, 69, 69, 71, 128, 89, 69, 69, 128, 89, 69, 65, 210, 89, 69, 65, 128,
89, 65, 90, 90, 128, 89, 65, 90, 72, 128, 89, 65, 90, 128, 89, 65, 89,
68, 128, 89, 65, 89, 65, 78, 78, 65, 128, 89, 65, 89, 128, 89, 65, 87,
78, 73, 78, 199, 89, 65, 87, 78, 128, 89, 65, 87, 128, 89, 65, 86, 128,
89, 65, 85, 128, 89, 65, 84, 84, 128, 89, 65, 84, 73, 128, 89, 65, 84,
72, 128, 89, 65, 84, 128, 89, 65, 83, 83, 128, 89, 65, 83, 72, 128, 89,
65, 83, 128, 89, 65, 82, 82, 128, 89, 65, 82, 78, 128, 89, 65, 82, 128,
89, 65, 210, 89, 65, 81, 128, 89, 65, 80, 128, 89, 65, 78, 83, 65, 89,
65, 128, 89, 65, 78, 71, 128, 89, 65, 78, 199, 89, 65, 78, 128, 89, 65,
77, 79, 75, 128, 89, 65, 77, 65, 75, 75, 65, 78, 128, 89, 65, 77, 128,
89, 65, 76, 128, 89, 65, 75, 72, 72, 128, 89, 65, 75, 72, 128, 89, 65,
75, 65, 83, 72, 128, 89, 65, 75, 128, 89, 65, 74, 85, 82, 86, 69, 68, 73,
195, 89, 65, 74, 128, 89, 65, 73, 128, 89, 65, 72, 72, 128, 89, 65, 72,
128, 89, 65, 71, 78, 128, 89, 65, 71, 72, 72, 128, 89, 65, 71, 72, 128,
89, 65, 71, 128, 89, 65, 70, 213, 89, 65, 70, 128, 89, 65, 69, 77, 77,
65, 69, 128, 89, 65, 68, 72, 128, 89, 65, 68, 68, 72, 128, 89, 65, 68,
68, 128, 89, 65, 68, 128, 89, 65, 67, 72, 128, 89, 65, 66, 72, 128, 89,
65, 66, 128, 89, 65, 65, 82, 85, 128, 89, 65, 65, 73, 128, 89, 65, 65,
68, 79, 128, 89, 65, 45, 89, 79, 128, 89, 65, 45, 85, 128, 89, 65, 45,
79, 128, 89, 65, 45, 53, 128, 89, 65, 45, 52, 128, 89, 65, 45, 51, 128,
89, 65, 45, 50, 128, 89, 65, 45, 49, 128, 89, 48, 48, 56, 128, 89, 48,
48, 55, 128, 89, 48, 48, 54, 128, 89, 48, 48, 53, 128, 89, 48, 48, 52,
128, 89, 48, 48, 51, 128, 89, 48, 48, 50, 128, 89, 48, 48, 49, 65, 128,
89, 48, 48, 49, 128, 89, 45, 67, 82, 69, 197, 88, 89, 88, 128, 88, 89,
85, 128, 88, 89, 84, 128, 88, 89, 82, 88, 128, 88, 89, 82, 128, 88, 89,
80, 128, 88, 89, 79, 79, 74, 128, 88, 89, 79, 79, 128, 88, 89, 79, 128,
88, 89, 73, 128, 88, 89, 69, 69, 205, 88, 89, 69, 69, 128, 88, 89, 69,
128, 88, 89, 65, 65, 128, 88, 89, 65, 128, 88, 89, 128, 88, 87, 73, 128,
88, 87, 69, 69, 128, 88, 87, 69, 128, 88, 87, 65, 65, 128, 88, 87, 65,
128, 88, 87, 128, 88, 215, 88, 86, 69, 128, 88, 86, 65, 128, 88, 85, 79,
88, 128, 88, 85, 79, 128, 88, 85, 128, 88, 83, 72, 65, 65, 89, 65, 84,
72, 73, 89, 65, 128, 88, 79, 88, 128, 88, 79, 84, 128, 88, 79, 82, 128,
88, 79, 80, 72, 128, 88, 79, 80, 128, 88, 79, 65, 128, 88, 79, 128, 88,
73, 88, 128, 88, 73, 84, 128, 88, 73, 82, 79, 206, 88, 73, 80, 128, 88,
73, 69, 88, 128, 88, 73, 69, 84, 128, 88, 73, 69, 80, 128, 88, 73, 69,
128, 88, 73, 65, 78, 71, 81, 201, 88, 73, 65, 66, 128, 88, 73, 128, 88,
72, 69, 89, 78, 128, 88, 71, 128, 88, 69, 89, 78, 128, 88, 69, 83, 84,
69, 211, 88, 69, 72, 128, 88, 69, 69, 128, 88, 69, 128, 88, 65, 85, 83,
128, 88, 65, 85, 128, 88, 65, 80, 72, 128, 88, 65, 78, 128, 88, 65, 65,
128, 88, 65, 128, 88, 48, 48, 56, 65, 128, 88, 48, 48, 56, 128, 88, 48,
48, 55, 128, 88, 48, 48, 54, 65, 128, 88, 48, 48, 54, 128, 88, 48, 48,
53, 128, 88, 48, 48, 52, 66, 128, 88, 48, 48, 52, 65, 128, 88, 48, 48,
52, 128, 88, 48, 48, 51, 128, 88, 48, 48, 50, 128, 88, 48, 48, 49, 128,
88, 45, 216, 87, 90, 128, 87, 89, 78, 78, 128, 87, 89, 78, 206, 87, 86,
73, 128, 87, 86, 69, 128, 87, 86, 65, 128, 87, 86, 128, 87, 85, 80, 128,
87, 85, 79, 88, 128, 87, 85, 79, 80, 128, 87, 85, 79, 128, 87, 85, 78,
74, 207, 87, 85, 78, 128, 87, 85, 76, 85, 128, 87, 85, 76, 213, 87, 85,
73, 128, 87, 85, 69, 128, 87, 85, 65, 69, 84, 128, 87, 85, 65, 69, 78,
128, 87, 85, 128, 87, 82, 217, 87, 82, 79, 78, 71, 128, 87, 82, 73, 83,
212, 87, 82, 73, 78, 75, 76, 69, 83, 128, 87, 82, 73, 78, 75, 76, 69,
211, 87, 82, 73, 78, 75, 76, 69, 68, 128, 87, 82, 69, 83, 84, 76, 69, 82,
83, 128, 87, 82, 69, 78, 67, 72, 128, 87, 82, 69, 65, 84, 200, 87, 82,
65, 80, 80, 69, 196, 87, 82, 65, 80, 128, 87, 79, 88, 128, 87, 79, 87,
128, 87, 79, 82, 83, 72, 73, 80, 128, 87, 79, 82, 82, 73, 69, 196, 87,
79, 82, 77, 128, 87, 79, 82, 76, 196, 87, 79, 82, 75, 69, 82, 128, 87,
79, 82, 75, 128, 87, 79, 82, 203, 87, 79, 82, 68, 83, 80, 65, 67, 69,
128, 87, 79, 82, 196, 87, 79, 80, 128, 87, 79, 79, 78, 128, 87, 79, 79,
76, 128, 87, 79, 79, 68, 83, 45, 67, 82, 69, 197, 87, 79, 79, 68, 128,
87, 79, 78, 128, 87, 79, 206, 87, 79, 77, 69, 78, 211, 87, 79, 77, 69,
206, 87, 79, 77, 65, 78, 211, 87, 79, 77, 65, 78, 128, 87, 79, 77, 65,
206, 87, 79, 76, 79, 83, 79, 128, 87, 79, 76, 198, 87, 79, 69, 128, 87,
79, 65, 128, 87, 79, 45, 55, 128, 87, 79, 45, 54, 128, 87, 79, 45, 53,
128, 87, 79, 45, 52, 128, 87, 79, 45, 51, 128, 87, 79, 45, 50, 128, 87,
79, 45, 49, 128, 87, 73, 84, 72, 79, 85, 212, 87, 73, 84, 72, 73, 78,
128, 87, 73, 84, 72, 73, 206, 87, 73, 82, 69, 196, 87, 73, 78, 84, 69,
82, 128, 87, 73, 78, 75, 73, 78, 199, 87, 73, 78, 75, 128, 87, 73, 78,
74, 65, 128, 87, 73, 78, 71, 83, 128, 87, 73, 78, 69, 128, 87, 73, 78,
197, 87, 73, 78, 68, 85, 128, 87, 73, 78, 68, 79, 87, 128, 87, 73, 78,
68, 128, 87, 73, 78, 196, 87, 73, 78, 128, 87, 73, 76, 84, 69, 196, 87,
73, 71, 78, 89, 65, 78, 128, 87, 73, 71, 71, 76, 217, 87, 73, 71, 71, 76,
69, 83, 128, 87, 73, 68, 84, 72, 128, 87, 73, 68, 69, 78, 73, 78, 199,
87, 73, 68, 69, 45, 72, 69, 65, 68, 69, 196, 87, 73, 68, 197, 87, 73, 65,
78, 71, 87, 65, 65, 75, 128, 87, 73, 65, 78, 71, 128, 87, 73, 45, 53,
128, 87, 73, 45, 52, 128, 87, 73, 45, 51, 128, 87, 73, 45, 50, 128, 87,
73, 45, 49, 128, 87, 72, 79, 76, 197, 87, 72, 73, 84, 69, 45, 70, 69, 65,
84, 72, 69, 82, 69, 196, 87, 72, 73, 84, 69, 128, 87, 72, 69, 69, 76, 69,
196, 87, 72, 69, 69, 76, 67, 72, 65, 73, 82, 128, 87, 72, 69, 69, 76, 67,
72, 65, 73, 210, 87, 72, 69, 69, 76, 128, 87, 72, 69, 69, 204, 87, 72,
69, 65, 84, 128, 87, 72, 65, 76, 69, 128, 87, 72, 128, 87, 71, 128, 87,
69, 88, 128, 87, 69, 85, 88, 128, 87, 69, 212, 87, 69, 83, 84, 69, 82,
206, 87, 69, 83, 84, 45, 67, 82, 69, 197, 87, 69, 83, 84, 128, 87, 69,
83, 212, 87, 69, 80, 128, 87, 69, 79, 128, 87, 69, 78, 128, 87, 69, 76,
76, 128, 87, 69, 73, 71, 72, 212, 87, 69, 73, 69, 82, 83, 84, 82, 65, 83,
211, 87, 69, 73, 128, 87, 69, 69, 78, 128, 87, 69, 68, 71, 69, 45, 84,
65, 73, 76, 69, 196, 87, 69, 68, 71, 69, 128, 87, 69, 68, 68, 73, 78, 71,
128, 87, 69, 66, 128, 87, 69, 65, 82, 217, 87, 69, 65, 80, 79, 78, 128,
87, 69, 45, 52, 128, 87, 69, 45, 51, 128, 87, 69, 45, 50, 128, 87, 69,
45, 49, 128, 87, 67, 128, 87, 66, 128, 87, 65, 89, 128, 87, 65, 217, 87,
65, 88, 73, 78, 199, 87, 65, 88, 128, 87, 65, 87, 45, 65, 89, 73, 78, 45,
82, 69, 83, 72, 128, 87, 65, 87, 128, 87, 65, 215, 87, 65, 86, 217, 87,
65, 86, 73, 78, 199, 87, 65, 86, 69, 83, 128, 87, 65, 86, 69, 128, 87,
65, 86, 197, 87, 65, 85, 128, 87, 65, 84, 84, 79, 128, 87, 65, 84, 69,
82, 77, 69, 76, 79, 78, 128, 87, 65, 84, 69, 82, 128, 87, 65, 84, 69,
210, 87, 65, 84, 67, 72, 128, 87, 65, 84, 128, 87, 65, 83, 84, 73, 78,
71, 128, 87, 65, 83, 84, 69, 66, 65, 83, 75, 69, 84, 128, 87, 65, 83, 83,
65, 76, 76, 65, 77, 128, 87, 65, 83, 76, 65, 128, 87, 65, 83, 76, 193,
87, 65, 83, 65, 76, 76, 65, 77, 128, 87, 65, 83, 65, 76, 76, 65, 205, 87,
65, 82, 78, 73, 78, 199, 87, 65, 82, 65, 78, 199, 87, 65, 81, 70, 65,
128, 87, 65, 80, 128, 87, 65, 78, 73, 78, 199, 87, 65, 78, 71, 75, 85,
79, 81, 128, 87, 65, 78, 68, 69, 82, 69, 82, 128, 87, 65, 78, 68, 128,
87, 65, 78, 67, 72, 207, 87, 65, 78, 128, 87, 65, 76, 76, 80, 76, 65, 78,
197, 87, 65, 76, 76, 128, 87, 65, 76, 204, 87, 65, 76, 75, 128, 87, 65,
76, 203, 87, 65, 73, 84, 73, 78, 71, 128, 87, 65, 73, 83, 84, 128, 87,
65, 73, 128, 87, 65, 70, 70, 76, 69, 128, 87, 65, 69, 78, 128, 87, 65,
69, 128, 87, 65, 68, 68, 65, 128, 87, 65, 65, 86, 85, 128, 87, 65, 45,
53, 128, 87, 65, 45, 52, 128, 87, 65, 45, 51, 128, 87, 65, 45, 50, 128,
87, 65, 45, 49, 128, 87, 48, 50, 53, 128, 87, 48, 50, 52, 65, 128, 87,
48, 50, 52, 128, 87, 48, 50, 51, 128, 87, 48, 50, 50, 128, 87, 48, 50,
49, 128, 87, 48, 50, 48, 128, 87, 48, 49, 57, 128, 87, 48, 49, 56, 65,
128, 87, 48, 49, 56, 128, 87, 48, 49, 55, 65, 128, 87, 48, 49, 55, 128,
87, 48, 49, 54, 128, 87, 48, 49, 53, 128, 87, 48, 49, 52, 65, 128, 87,
48, 49, 52, 128, 87, 48, 49, 51, 128, 87, 48, 49, 50, 128, 87, 48, 49,
49, 128, 87, 48, 49, 48, 65, 128, 87, 48, 49, 48, 128, 87, 48, 48, 57,
65, 128, 87, 48, 48, 57, 128, 87, 48, 48, 56, 128, 87, 48, 48, 55, 128,
87, 48, 48, 54, 128, 87, 48, 48, 53, 128, 87, 48, 48, 52, 128, 87, 48,
48, 51, 65, 128, 87, 48, 48, 51, 128, 87, 48, 48, 50, 128, 87, 48, 48,
49, 128, 86, 90, 77, 69, 84, 128, 86, 89, 88, 128, 86, 89, 84, 128, 86,
89, 82, 88, 128, 86, 89, 82, 128, 86, 89, 80, 128, 86, 89, 128, 86, 87,
74, 128, 86, 87, 65, 128, 86, 87, 128, 86, 85, 88, 128, 86, 85, 85, 128,
86, 85, 84, 128, 86, 85, 82, 88, 128, 86, 85, 82, 128, 86, 85, 80, 128,
86, 85, 76, 71, 65, 210, 86, 85, 76, 67, 65, 78, 85, 83, 128, 86, 85, 69,
81, 128, 86, 84, 83, 128, 86, 84, 128, 86, 83, 57, 57, 128, 86, 83, 57,
56, 128, 86, 83, 57, 55, 128, 86, 83, 57, 54, 128, 86, 83, 57, 53, 128,
86, 83, 57, 52, 128, 86, 83, 57, 51, 128, 86, 83, 57, 50, 128, 86, 83,
57, 49, 128, 86, 83, 57, 48, 128, 86, 83, 57, 128, 86, 83, 56, 57, 128,
86, 83, 56, 56, 128, 86, 83, 56, 55, 128, 86, 83, 56, 54, 128, 86, 83,
56, 53, 128, 86, 83, 56, 52, 128, 86, 83, 56, 51, 128, 86, 83, 56, 50,
128, 86, 83, 56, 49, 128, 86, 83, 56, 48, 128, 86, 83, 56, 128, 86, 83,
55, 57, 128, 86, 83, 55, 56, 128, 86, 83, 55, 55, 128, 86, 83, 55, 54,
128, 86, 83, 55, 53, 128, 86, 83, 55, 52, 128, 86, 83, 55, 51, 128, 86,
83, 55, 50, 128, 86, 83, 55, 49, 128, 86, 83, 55, 48, 128, 86, 83, 55,
128, 86, 83, 54, 57, 128, 86, 83, 54, 56, 128, 86, 83, 54, 55, 128, 86,
83, 54, 54, 128, 86, 83, 54, 53, 128, 86, 83, 54, 52, 128, 86, 83, 54,
51, 128, 86, 83, 54, 50, 128, 86, 83, 54, 49, 128, 86, 83, 54, 48, 128,
86, 83, 54, 128, 86, 83, 53, 57, 128, 86, 83, 53, 56, 128, 86, 83, 53,
55, 128, 86, 83, 53, 54, 128, 86, 83, 53, 53, 128, 86, 83, 53, 52, 128,
86, 83, 53, 51, 128, 86, 83, 53, 50, 128, 86, 83, 53, 49, 128, 86, 83,
53, 48, 128, 86, 83, 53, 128, 86, 83, 52, 57, 128, 86, 83, 52, 56, 128,
86, 83, 52, 55, 128, 86, 83, 52, 54, 128, 86, 83, 52, 53, 128, 86, 83,
52, 52, 128, 86, 83, 52, 51, 128, 86, 83, 52, 50, 128, 86, 83, 52, 49,
128, 86, 83, 52, 48, 128, 86, 83, 52, 128, 86, 83, 51, 57, 128, 86, 83,
51, 56, 128, 86, 83, 51, 55, 128, 86, 83, 51, 54, 128, 86, 83, 51, 53,
128, 86, 83, 51, 52, 128, 86, 83, 51, 51, 128, 86, 83, 51, 50, 128, 86,
83, 51, 49, 128, 86, 83, 51, 48, 128, 86, 83, 51, 128, 86, 83, 50, 57,
128, 86, 83, 50, 56, 128, 86, 83, 50, 55, 128, 86, 83, 50, 54, 128, 86,
83, 50, 53, 54, 128, 86, 83, 50, 53, 53, 128, 86, 83, 50, 53, 52, 128,
86, 83, 50, 53, 51, 128, 86, 83, 50, 53, 50, 128, 86, 83, 50, 53, 49,
128, 86, 83, 50, 53, 48, 128, 86, 83, 50, 53, 128, 86, 83, 50, 52, 57,
128, 86, 83, 50, 52, 56, 128, 86, 83, 50, 52, 55, 128, 86, 83, 50, 52,
54, 128, 86, 83, 50, 52, 53, 128, 86, 83, 50, 52, 52, 128, 86, 83, 50,
52, 51, 128, 86, 83, 50, 52, 50, 128, 86, 83, 50, 52, 49, 128, 86, 83,
50, 52, 48, 128, 86, 83, 50, 52, 128, 86, 83, 50, 51, 57, 128, 86, 83,
50, 51, 56, 128, 86, 83, 50, 51, 55, 128, 86, 83, 50, 51, 54, 128, 86,
83, 50, 51, 53, 128, 86, 83, 50, 51, 52, 128, 86, 83, 50, 51, 51, 128,
86, 83, 50, 51, 50, 128, 86, 83, 50, 51, 49, 128, 86, 83, 50, 51, 48,
128, 86, 83, 50, 51, 128, 86, 83, 50, 50, 57, 128, 86, 83, 50, 50, 56,
128, 86, 83, 50, 50, 55, 128, 86, 83, 50, 50, 54, 128, 86, 83, 50, 50,
53, 128, 86, 83, 50, 50, 52, 128, 86, 83, 50, 50, 51, 128, 86, 83, 50,
50, 50, 128, 86, 83, 50, 50, 49, 128, 86, 83, 50, 50, 48, 128, 86, 83,
50, 50, 128, 86, 83, 50, 49, 57, 128, 86, 83, 50, 49, 56, 128, 86, 83,
50, 49, 55, 128, 86, 83, 50, 49, 54, 128, 86, 83, 50, 49, 53, 128, 86,
83, 50, 49, 52, 128, 86, 83, 50, 49, 51, 128, 86, 83, 50, 49, 50, 128,
86, 83, 50, 49, 49, 128, 86, 83, 50, 49, 48, 128, 86, 83, 50, 49, 128,
86, 83, 50, 48, 57, 128, 86, 83, 50, 48, 56, 128, 86, 83, 50, 48, 55,
128, 86, 83, 50, 48, 54, 128, 86, 83, 50, 48, 53, 128, 86, 83, 50, 48,
52, 128, 86, 83, 50, 48, 51, 128, 86, 83, 50, 48, 50, 128, 86, 83, 50,
48, 49, 128, 86, 83, 50, 48, 48, 128, 86, 83, 50, 48, 128, 86, 83, 50,
128, 86, 83, 49, 57, 57, 128, 86, 83, 49, 57, 56, 128, 86, 83, 49, 57,
55, 128, 86, 83, 49, 57, 54, 128, 86, 83, 49, 57, 53, 128, 86, 83, 49,
57, 52, 128, 86, 83, 49, 57, 51, 128, 86, 83, 49, 57, 50, 128, 86, 83,
49, 57, 49, 128, 86, 83, 49, 57, 48, 128, 86, 83, 49, 57, 128, 86, 83,
49, 56, 57, 128, 86, 83, 49, 56, 56, 128, 86, 83, 49, 56, 55, 128, 86,
83, 49, 56, 54, 128, 86, 83, 49, 56, 53, 128, 86, 83, 49, 56, 52, 128,
86, 83, 49, 56, 51, 128, 86, 83, 49, 56, 50, 128, 86, 83, 49, 56, 49,
128, 86, 83, 49, 56, 48, 128, 86, 83, 49, 56, 128, 86, 83, 49, 55, 57,
128, 86, 83, 49, 55, 56, 128, 86, 83, 49, 55, 55, 128, 86, 83, 49, 55,
54, 128, 86, 83, 49, 55, 53, 128, 86, 83, 49, 55, 52, 128, 86, 83, 49,
55, 51, 128, 86, 83, 49, 55, 50, 128, 86, 83, 49, 55, 49, 128, 86, 83,
49, 55, 48, 128, 86, 83, 49, 55, 128, 86, 83, 49, 54, 57, 128, 86, 83,
49, 54, 56, 128, 86, 83, 49, 54, 55, 128, 86, 83, 49, 54, 54, 128, 86,
83, 49, 54, 53, 128, 86, 83, 49, 54, 52, 128, 86, 83, 49, 54, 51, 128,
86, 83, 49, 54, 50, 128, 86, 83, 49, 54, 49, 128, 86, 83, 49, 54, 48,
128, 86, 83, 49, 54, 128, 86, 83, 49, 53, 57, 128, 86, 83, 49, 53, 56,
128, 86, 83, 49, 53, 55, 128, 86, 83, 49, 53, 54, 128, 86, 83, 49, 53,
53, 128, 86, 83, 49, 53, 52, 128, 86, 83, 49, 53, 51, 128, 86, 83, 49,
53, 50, 128, 86, 83, 49, 53, 49, 128, 86, 83, 49, 53, 48, 128, 86, 83,
49, 53, 128, 86, 83, 49, 52, 57, 128, 86, 83, 49, 52, 56, 128, 86, 83,
49, 52, 55, 128, 86, 83, 49, 52, 54, 128, 86, 83, 49, 52, 53, 128, 86,
83, 49, 52, 52, 128, 86, 83, 49, 52, 51, 128, 86, 83, 49, 52, 50, 128,
86, 83, 49, 52, 49, 128, 86, 83, 49, 52, 48, 128, 86, 83, 49, 52, 128,
86, 83, 49, 51, 57, 128, 86, 83, 49, 51, 56, 128, 86, 83, 49, 51, 55,
128, 86, 83, 49, 51, 54, 128, 86, 83, 49, 51, 53, 128, 86, 83, 49, 51,
52, 128, 86, 83, 49, 51, 51, 128, 86, 83, 49, 51, 50, 128, 86, 83, 49,
51, 49, 128, 86, 83, 49, 51, 48, 128, 86, 83, 49, 51, 128, 86, 83, 49,
50, 57, 128, 86, 83, 49, 50, 56, 128, 86, 83, 49, 50, 55, 128, 86, 83,
49, 50, 54, 128, 86, 83, 49, 50, 53, 128, 86, 83, 49, 50, 52, 128, 86,
83, 49, 50, 51, 128, 86, 83, 49, 50, 50, 128, 86, 83, 49, 50, 49, 128,
86, 83, 49, 50, 48, 128, 86, 83, 49, 50, 128, 86, 83, 49, 49, 57, 128,
86, 83, 49, 49, 56, 128, 86, 83, 49, 49, 55, 128, 86, 83, 49, 49, 54,
128, 86, 83, 49, 49, 53, 128, 86, 83, 49, 49, 52, 128, 86, 83, 49, 49,
51, 128, 86, 83, 49, 49, 50, 128, 86, 83, 49, 49, 49, 128, 86, 83, 49,
49, 48, 128, 86, 83, 49, 49, 128, 86, 83, 49, 48, 57, 128, 86, 83, 49,
48, 56, 128, 86, 83, 49, 48, 55, 128, 86, 83, 49, 48, 54, 128, 86, 83,
49, 48, 53, 128, 86, 83, 49, 48, 52, 128, 86, 83, 49, 48, 51, 128, 86,
83, 49, 48, 50, 128, 86, 83, 49, 48, 49, 128, 86, 83, 49, 48, 48, 128,
86, 83, 49, 48, 128, 86, 83, 49, 128, 86, 83, 128, 86, 82, 65, 67, 72,
89, 128, 86, 79, 88, 128, 86, 79, 87, 69, 76, 45, 67, 65, 82, 82, 73, 69,
210, 86, 79, 87, 128, 86, 79, 85, 128, 86, 79, 84, 128, 86, 79, 211, 86,
79, 80, 128, 86, 79, 79, 73, 128, 86, 79, 79, 128, 86, 79, 77, 73, 84,
73, 78, 71, 128, 86, 79, 77, 128, 86, 79, 76, 85, 77, 197, 86, 79, 76,
84, 65, 71, 197, 86, 79, 76, 76, 69, 89, 66, 65, 76, 76, 128, 86, 79, 76,
67, 65, 78, 79, 128, 86, 79, 76, 65, 80, 85, 203, 86, 79, 73, 68, 69,
196, 86, 79, 73, 196, 86, 79, 73, 67, 73, 78, 71, 128, 86, 79, 73, 67,
69, 76, 69, 83, 211, 86, 79, 73, 67, 69, 196, 86, 79, 68, 128, 86, 79,
67, 65, 76, 73, 90, 65, 84, 73, 79, 206, 86, 79, 67, 65, 204, 86, 79,
128, 86, 73, 89, 79, 128, 86, 73, 88, 128, 86, 73, 84, 82, 73, 79, 76,
45, 50, 128, 86, 73, 84, 82, 73, 79, 76, 128, 86, 73, 84, 65, 69, 45, 50,
128, 86, 73, 84, 65, 69, 128, 86, 73, 84, 128, 86, 73, 83, 73, 71, 79,
84, 72, 73, 195, 86, 73, 83, 65, 82, 71, 65, 89, 65, 128, 86, 73, 83, 65,
82, 71, 65, 128, 86, 73, 83, 65, 82, 71, 193, 86, 73, 82, 73, 65, 77,
128, 86, 73, 82, 71, 79, 128, 86, 73, 82, 71, 65, 128, 86, 73, 82, 65,
77, 65, 128, 86, 73, 80, 128, 86, 73, 79, 76, 73, 78, 128, 86, 73, 78,
69, 71, 65, 82, 45, 51, 128, 86, 73, 78, 69, 71, 65, 82, 45, 50, 128, 86,
73, 78, 69, 71, 65, 82, 128, 86, 73, 78, 69, 71, 65, 210, 86, 73, 78, 69,
128, 86, 73, 78, 197, 86, 73, 78, 128, 86, 73, 76, 76, 65, 71, 69, 128,
86, 73, 73, 128, 86, 73, 71, 73, 78, 84, 73, 76, 69, 128, 86, 73, 69, 88,
128, 86, 73, 69, 87, 73, 78, 199, 86, 73, 69, 87, 68, 65, 84, 193, 86,
73, 69, 84, 78, 65, 77, 69, 83, 197, 86, 73, 69, 84, 128, 86, 73, 69,
212, 86, 73, 69, 80, 128, 86, 73, 69, 128, 86, 73, 68, 74, 45, 50, 128,
86, 73, 68, 74, 128, 86, 73, 68, 69, 79, 67, 65, 83, 83, 69, 84, 84, 69,
128, 86, 73, 68, 69, 207, 86, 73, 68, 65, 128, 86, 73, 67, 84, 79, 82,
217, 86, 73, 66, 82, 65, 84, 73, 79, 206, 86, 72, 65, 128, 86, 70, 65,
128, 86, 69, 89, 90, 128, 86, 69, 88, 128, 86, 69, 87, 128, 86, 69, 215,
86, 69, 85, 88, 128, 86, 69, 85, 77, 128, 86, 69, 85, 65, 69, 80, 69, 78,
128, 86, 69, 85, 65, 69, 128, 86, 69, 83, 84, 65, 128, 86, 69, 83, 84,
128, 86, 69, 83, 83, 69, 204, 86, 69, 82, 217, 86, 69, 82, 84, 73, 67,
65, 76, 76, 89, 128, 86, 69, 82, 84, 73, 67, 65, 76, 76, 217, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 54, 45, 48, 54, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 54, 45, 48, 53, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 54, 45, 48, 52, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 54, 45,
48, 51, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 54, 45, 48, 50, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 54, 45, 48, 49, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 54, 45, 48, 48, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 53, 45, 48, 54, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 53, 45, 48, 53, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 53, 45,
48, 52, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 53, 45, 48, 51, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 53, 45, 48, 50, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 53, 45, 48, 49, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 53, 45, 48, 48, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 52, 45, 48, 54, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 52, 45,
48, 53, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 52, 45, 48, 52, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 52, 45, 48, 51, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 52, 45, 48, 50, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 52, 45, 48, 49, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 52, 45, 48, 48, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 51, 45,
48, 54, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 51, 45, 48, 53, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 51, 45, 48, 52, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 51, 45, 48, 51, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 51, 45, 48, 50, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 51, 45, 48, 49, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 51, 45,
48, 48, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 50, 45, 48, 54, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 50, 45, 48, 53, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 50, 45, 48, 52, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 50, 45, 48, 51, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 50, 45, 48, 50, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 50, 45,
48, 49, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 50, 45, 48, 48, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 49, 45, 48, 54, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 49, 45, 48, 53, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 49, 45, 48, 52, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 49, 45, 48, 51, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 49, 45,
48, 50, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 49, 45, 48, 49, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 49, 45, 48, 48, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 48, 45, 48, 54, 128, 86, 69, 82, 84, 73, 67,
65, 76, 45, 48, 48, 45, 48, 53, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45,
48, 48, 45, 48, 52, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 48, 45,
48, 51, 128, 86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 48, 45, 48, 50, 128,
86, 69, 82, 84, 73, 67, 65, 76, 45, 48, 48, 45, 48, 49, 128, 86, 69, 82,
84, 73, 67, 65, 76, 45, 48, 48, 45, 48, 48, 128, 86, 69, 82, 84, 73, 67,
65, 76, 128, 86, 69, 82, 83, 73, 67, 76, 69, 128, 86, 69, 82, 83, 197,
86, 69, 82, 71, 69, 128, 86, 69, 82, 68, 73, 71, 82, 73, 83, 128, 86, 69,
82, 128, 86, 69, 80, 128, 86, 69, 78, 68, 128, 86, 69, 76, 73, 128, 86,
69, 73, 76, 128, 86, 69, 72, 73, 67, 76, 69, 128, 86, 69, 72, 128, 86,
69, 200, 86, 69, 69, 128, 86, 69, 197, 86, 69, 68, 69, 128, 86, 69, 67,
84, 79, 210, 86, 65, 89, 65, 78, 78, 65, 128, 86, 65, 88, 128, 86, 65,
86, 128, 86, 65, 214, 86, 65, 85, 128, 86, 65, 84, 72, 89, 128, 86, 65,
84, 128, 86, 65, 83, 84, 78, 69, 83, 211, 86, 65, 83, 73, 83, 128, 86,
65, 82, 89, 211, 86, 65, 82, 73, 75, 65, 128, 86, 65, 82, 73, 65, 78, 84,
128, 86, 65, 82, 73, 65, 78, 212, 86, 65, 82, 73, 65, 128, 86, 65, 82,
73, 193, 86, 65, 82, 69, 73, 65, 201, 86, 65, 82, 69, 73, 193, 86, 65,
82, 65, 65, 75, 65, 78, 128, 86, 65, 80, 79, 85, 82, 83, 128, 86, 65, 80,
128, 86, 65, 78, 69, 128, 86, 65, 77, 80, 73, 82, 69, 128, 86, 65, 77,
65, 71, 79, 77, 85, 75, 72, 65, 128, 86, 65, 77, 65, 71, 79, 77, 85, 75,
72, 193, 86, 65, 76, 76, 69, 89, 128, 86, 65, 75, 65, 73, 89, 65, 82, 65,
65, 128, 86, 65, 74, 128, 86, 65, 73, 128, 86, 65, 72, 128, 86, 65, 200,
86, 65, 65, 86, 85, 128, 86, 65, 65, 128, 86, 193, 86, 48, 52, 48, 65,
128, 86, 48, 52, 48, 128, 86, 48, 51, 57, 128, 86, 48, 51, 56, 128, 86,
48, 51, 55, 65, 128, 86, 48, 51, 55, 128, 86, 48, 51, 54, 128, 86, 48,
51, 53, 128, 86, 48, 51, 52, 128, 86, 48, 51, 51, 65, 128, 86, 48, 51,
51, 128, 86, 48, 51, 50, 128, 86, 48, 51, 49, 65, 128, 86, 48, 51, 49,
128, 86, 48, 51, 48, 65, 128, 86, 48, 51, 48, 128, 86, 48, 50, 57, 65,
128, 86, 48, 50, 57, 128, 86, 48, 50, 56, 65, 128, 86, 48, 50, 56, 128,
86, 48, 50, 55, 128, 86, 48, 50, 54, 128, 86, 48, 50, 53, 128, 86, 48,
50, 52, 128, 86, 48, 50, 51, 65, 128, 86, 48, 50, 51, 128, 86, 48, 50,
50, 128, 86, 48, 50, 49, 128, 86, 48, 50, 48, 76, 128, 86, 48, 50, 48,
75, 128, 86, 48, 50, 48, 74, 128, 86, 48, 50, 48, 73, 128, 86, 48, 50,
48, 72, 128, 86, 48, 50, 48, 71, 128, 86, 48, 50, 48, 70, 128, 86, 48,
50, 48, 69, 128, 86, 48, 50, 48, 68, 128, 86, 48, 50, 48, 67, 128, 86,
48, 50, 48, 66, 128, 86, 48, 50, 48, 65, 128, 86, 48, 50, 48, 128, 86,
48, 49, 57, 128, 86, 48, 49, 56, 128, 86, 48, 49, 55, 128, 86, 48, 49,
54, 128, 86, 48, 49, 53, 128, 86, 48, 49, 52, 128, 86, 48, 49, 51, 128,
86, 48, 49, 50, 66, 128, 86, 48, 49, 50, 65, 128, 86, 48, 49, 50, 128,
86, 48, 49, 49, 67, 128, 86, 48, 49, 49, 66, 128, 86, 48, 49, 49, 65,
128, 86, 48, 49, 49, 128, 86, 48, 49, 48, 128, 86, 48, 48, 57, 128, 86,
48, 48, 56, 128, 86, 48, 48, 55, 66, 128, 86, 48, 48, 55, 65, 128, 86,
48, 48, 55, 128, 86, 48, 48, 54, 128, 86, 48, 48, 53, 128, 86, 48, 48,
52, 128, 86, 48, 48, 51, 128, 86, 48, 48, 50, 65, 128, 86, 48, 48, 50,
128, 86, 48, 48, 49, 73, 128, 86, 48, 48, 49, 72, 128, 86, 48, 48, 49,
71, 128, 86, 48, 48, 49, 70, 128, 86, 48, 48, 49, 69, 128, 86, 48, 48,
49, 68, 128, 86, 48, 48, 49, 67, 128, 86, 48, 48, 49, 66, 128, 86, 48,
48, 49, 65, 128, 86, 48, 48, 49, 128, 85, 90, 85, 128, 85, 90, 72, 65,
75, 75, 85, 128, 85, 90, 51, 128, 85, 90, 179, 85, 89, 65, 78, 78, 65,
128, 85, 89, 128, 85, 87, 85, 128, 85, 85, 89, 65, 78, 78, 65, 128, 85,
85, 85, 85, 128, 85, 85, 85, 51, 128, 85, 85, 85, 50, 128, 85, 85, 69,
128, 85, 84, 85, 75, 73, 128, 85, 83, 83, 85, 51, 128, 85, 83, 83, 85,
128, 85, 83, 72, 88, 128, 85, 83, 72, 85, 77, 88, 128, 85, 83, 72, 69,
78, 78, 65, 128, 85, 83, 72, 50, 128, 85, 83, 72, 128, 85, 83, 200, 85,
83, 69, 196, 85, 83, 69, 45, 50, 128, 85, 83, 69, 45, 49, 128, 85, 83,
69, 128, 85, 83, 197, 85, 82, 85, 218, 85, 82, 85, 83, 128, 85, 82, 85,
68, 65, 128, 85, 82, 85, 68, 193, 85, 82, 85, 128, 85, 82, 213, 85, 82,
78, 128, 85, 82, 73, 78, 69, 128, 85, 82, 73, 51, 128, 85, 82, 73, 128,
85, 82, 65, 78, 85, 83, 128, 85, 82, 65, 128, 85, 82, 52, 128, 85, 82,
50, 128, 85, 82, 178, 85, 210, 85, 80, 87, 65, 82, 68, 83, 128, 85, 80,
87, 65, 82, 68, 211, 85, 80, 87, 65, 82, 68, 128, 85, 80, 87, 65, 82,
196, 85, 80, 84, 85, 82, 78, 128, 85, 80, 83, 73, 76, 79, 78, 128, 85,
80, 83, 73, 76, 79, 206, 85, 80, 83, 73, 68, 69, 45, 68, 79, 87, 206, 85,
80, 82, 73, 71, 72, 212, 85, 80, 80, 69, 82, 128, 85, 80, 65, 68, 72, 77,
65, 78, 73, 89, 65, 128, 85, 80, 45, 80, 79, 73, 78, 84, 73, 78, 199, 85,
79, 78, 128, 85, 79, 71, 128, 85, 78, 78, 128, 85, 78, 77, 65, 82, 82,
73, 69, 196, 85, 78, 75, 78, 79, 87, 78, 128, 85, 78, 75, 128, 85, 78,
73, 86, 69, 82, 83, 65, 204, 85, 78, 73, 84, 89, 128, 85, 78, 73, 84, 69,
196, 85, 78, 73, 84, 128, 85, 78, 73, 212, 85, 78, 73, 79, 78, 128, 85,
78, 73, 79, 206, 85, 78, 73, 70, 79, 82, 77, 128, 85, 78, 73, 70, 73, 69,
196, 85, 78, 73, 67, 79, 82, 206, 85, 78, 69, 86, 69, 206, 85, 78, 68,
207, 85, 78, 68, 69, 82, 84, 73, 69, 128, 85, 78, 68, 69, 82, 76, 73, 78,
197, 85, 78, 68, 69, 82, 68, 79, 84, 128, 85, 78, 68, 69, 82, 66, 65, 82,
128, 85, 78, 68, 69, 82, 128, 85, 78, 68, 69, 210, 85, 78, 67, 73, 193,
85, 78, 67, 69, 82, 84, 65, 73, 78, 84, 217, 85, 78, 66, 76, 69, 78, 68,
69, 196, 85, 78, 65, 83, 80, 73, 82, 65, 84, 69, 68, 128, 85, 78, 65, 80,
128, 85, 78, 65, 77, 85, 83, 69, 196, 85, 78, 65, 128, 85, 206, 85, 77,
85, 77, 128, 85, 77, 85, 205, 85, 77, 66, 82, 69, 76, 76, 65, 128, 85,
77, 66, 82, 69, 76, 76, 193, 85, 77, 66, 73, 78, 128, 85, 75, 85, 128,
85, 75, 82, 65, 73, 78, 73, 65, 206, 85, 75, 65, 82, 65, 128, 85, 75, 65,
82, 193, 85, 75, 128, 85, 73, 76, 76, 69, 65, 78, 78, 128, 85, 73, 71,
72, 85, 210, 85, 72, 68, 128, 85, 71, 65, 82, 73, 84, 73, 195, 85, 69,
89, 128, 85, 69, 78, 128, 85, 69, 73, 128, 85, 69, 69, 128, 85, 69, 65,
128, 85, 68, 85, 71, 128, 85, 68, 65, 84, 84, 65, 128, 85, 68, 65, 84,
84, 193, 85, 68, 65, 65, 84, 128, 85, 68, 128, 85, 196, 85, 67, 128, 85,
66, 85, 70, 73, 76, 73, 128, 85, 66, 72, 65, 89, 65, 84, 207, 85, 66, 65,
68, 65, 77, 65, 128, 85, 66, 128, 85, 65, 84, 72, 128, 85, 65, 78, 71,
128, 85, 65, 128, 85, 178, 85, 48, 52, 50, 128, 85, 48, 52, 49, 128, 85,
48, 52, 48, 128, 85, 48, 51, 57, 128, 85, 48, 51, 56, 128, 85, 48, 51,
55, 128, 85, 48, 51, 54, 128, 85, 48, 51, 53, 128, 85, 48, 51, 52, 128,
85, 48, 51, 51, 128, 85, 48, 51, 50, 65, 128, 85, 48, 51, 50, 128, 85,
48, 51, 49, 128, 85, 48, 51, 48, 128, 85, 48, 50, 57, 65, 128, 85, 48,
50, 57, 128, 85, 48, 50, 56, 128, 85, 48, 50, 55, 128, 85, 48, 50, 54,
128, 85, 48, 50, 53, 128, 85, 48, 50, 52, 128, 85, 48, 50, 51, 65, 128,
85, 48, 50, 51, 128, 85, 48, 50, 50, 128, 85, 48, 50, 49, 128, 85, 48,
50, 48, 128, 85, 48, 49, 57, 128, 85, 48, 49, 56, 128, 85, 48, 49, 55,
128, 85, 48, 49, 54, 128, 85, 48, 49, 53, 128, 85, 48, 49, 52, 128, 85,
48, 49, 51, 128, 85, 48, 49, 50, 128, 85, 48, 49, 49, 128, 85, 48, 49,
48, 128, 85, 48, 48, 57, 128, 85, 48, 48, 56, 128, 85, 48, 48, 55, 128,
85, 48, 48, 54, 66, 128, 85, 48, 48, 54, 65, 128, 85, 48, 48, 54, 128,
85, 48, 48, 53, 128, 85, 48, 48, 52, 128, 85, 48, 48, 51, 128, 85, 48,
48, 50, 128, 85, 48, 48, 49, 128, 85, 45, 83, 72, 65, 80, 69, 196, 85,
45, 73, 45, 73, 128, 85, 45, 69, 79, 45, 69, 85, 128, 85, 45, 66, 82, 74,
71, 85, 128, 85, 45, 53, 128, 84, 90, 85, 128, 84, 90, 79, 65, 128, 84,
90, 79, 128, 84, 90, 73, 210, 84, 90, 73, 128, 84, 90, 69, 69, 128, 84,
90, 69, 128, 84, 90, 65, 65, 128, 84, 90, 65, 128, 84, 90, 128, 84, 89,
210, 84, 89, 80, 69, 45, 183, 84, 89, 80, 69, 45, 54, 128, 84, 89, 80,
69, 45, 182, 84, 89, 80, 69, 45, 53, 128, 84, 89, 80, 69, 45, 181, 84,
89, 80, 69, 45, 52, 128, 84, 89, 80, 69, 45, 180, 84, 89, 80, 69, 45, 51,
128, 84, 89, 80, 69, 45, 179, 84, 89, 80, 69, 45, 178, 84, 89, 80, 69,
45, 49, 45, 50, 128, 84, 89, 80, 69, 45, 177, 84, 89, 80, 197, 84, 89,
79, 128, 84, 89, 73, 128, 84, 89, 69, 128, 84, 89, 65, 89, 128, 84, 89,
65, 128, 84, 88, 87, 86, 128, 84, 88, 87, 214, 84, 88, 72, 69, 69, 202,
84, 88, 65, 128, 84, 87, 79, 79, 128, 84, 87, 79, 45, 87, 65, 217, 84,
87, 79, 45, 84, 72, 73, 82, 84, 89, 128, 84, 87, 79, 45, 76, 73, 78, 197,
84, 87, 79, 45, 72, 69, 65, 68, 69, 196, 84, 87, 79, 45, 69, 205, 84, 87,
79, 45, 67, 73, 82, 67, 76, 197, 84, 87, 73, 83, 84, 73, 78, 71, 128, 84,
87, 73, 83, 84, 69, 196, 84, 87, 73, 73, 128, 84, 87, 73, 128, 84, 87,
69, 78, 84, 89, 45, 84, 87, 79, 128, 84, 87, 69, 78, 84, 89, 45, 84, 87,
207, 84, 87, 69, 78, 84, 89, 45, 84, 72, 82, 69, 69, 128, 84, 87, 69, 78,
84, 89, 45, 83, 73, 88, 128, 84, 87, 69, 78, 84, 89, 45, 83, 69, 86, 69,
78, 128, 84, 87, 69, 78, 84, 89, 45, 79, 78, 69, 128, 84, 87, 69, 78, 84,
89, 45, 78, 73, 78, 69, 128, 84, 87, 69, 78, 84, 89, 45, 70, 79, 85, 82,
128, 84, 87, 69, 78, 84, 89, 45, 70, 73, 86, 69, 128, 84, 87, 69, 78, 84,
89, 45, 70, 73, 86, 197, 84, 87, 69, 78, 84, 89, 45, 69, 73, 71, 72, 84,
200, 84, 87, 69, 78, 84, 89, 45, 69, 73, 71, 72, 84, 128, 84, 87, 69, 78,
84, 89, 128, 84, 87, 69, 78, 84, 217, 84, 87, 69, 78, 84, 73, 69, 84, 72,
83, 128, 84, 87, 69, 78, 84, 73, 69, 84, 72, 128, 84, 87, 69, 76, 86, 69,
45, 84, 72, 73, 82, 84, 89, 128, 84, 87, 69, 76, 86, 69, 128, 84, 87, 69,
76, 86, 197, 84, 87, 69, 76, 70, 84, 72, 83, 128, 84, 87, 69, 76, 70, 84,
72, 128, 84, 87, 69, 128, 84, 87, 65, 65, 128, 84, 87, 65, 128, 84, 86,
82, 73, 68, 79, 128, 84, 86, 73, 77, 65, 68, 85, 210, 84, 85, 88, 69, 68,
79, 128, 84, 85, 88, 128, 84, 85, 85, 77, 85, 128, 84, 85, 85, 128, 84,
85, 84, 84, 89, 128, 84, 85, 84, 69, 89, 65, 83, 65, 84, 128, 84, 85, 84,
128, 84, 85, 82, 88, 128, 84, 85, 82, 85, 128, 84, 85, 82, 84, 76, 69,
128, 84, 85, 82, 79, 50, 128, 84, 85, 82, 78, 83, 84, 73, 76, 69, 128,
84, 85, 82, 206, 84, 85, 82, 75, 73, 83, 200, 84, 85, 82, 75, 73, 195,
84, 85, 82, 75, 69, 89, 128, 84, 85, 82, 66, 65, 78, 128, 84, 85, 82,
128, 84, 85, 210, 84, 85, 80, 78, 73, 128, 84, 85, 80, 128, 84, 85, 79,
88, 128, 84, 85, 79, 84, 128, 84, 85, 79, 80, 128, 84, 85, 79, 128, 84,
85, 78, 78, 89, 128, 84, 85, 77, 69, 84, 69, 83, 128, 84, 85, 77, 66, 76,
69, 210, 84, 85, 77, 65, 69, 128, 84, 85, 77, 128, 84, 85, 205, 84, 85,
76, 73, 80, 128, 84, 85, 75, 87, 69, 78, 84, 73, 83, 128, 84, 85, 75,
128, 84, 85, 71, 82, 73, 203, 84, 85, 71, 50, 128, 84, 85, 71, 178, 84,
85, 66, 69, 128, 84, 85, 66, 128, 84, 85, 65, 82, 69, 199, 84, 85, 65,
69, 80, 128, 84, 85, 65, 69, 128, 84, 85, 45, 84, 79, 128, 84, 85, 45,
52, 128, 84, 85, 45, 51, 128, 84, 85, 45, 50, 128, 84, 85, 45, 49, 128,
84, 213, 84, 84, 85, 85, 128, 84, 84, 85, 68, 68, 65, 71, 128, 84, 84,
85, 68, 68, 65, 65, 71, 128, 84, 84, 85, 128, 84, 84, 84, 72, 65, 128,
84, 84, 84, 65, 128, 84, 84, 83, 85, 128, 84, 84, 83, 79, 128, 84, 84,
83, 73, 128, 84, 84, 83, 69, 69, 128, 84, 84, 83, 69, 128, 84, 84, 83,
65, 128, 84, 84, 79, 79, 128, 84, 84, 73, 73, 128, 84, 84, 73, 128, 84,
84, 72, 87, 69, 128, 84, 84, 72, 85, 128, 84, 84, 72, 79, 79, 128, 84,
84, 72, 79, 128, 84, 84, 72, 73, 128, 84, 84, 72, 69, 69, 128, 84, 84,
72, 69, 128, 84, 84, 72, 65, 65, 128, 84, 84, 72, 128, 84, 84, 69, 72,
69, 72, 128, 84, 84, 69, 72, 69, 200, 84, 84, 69, 72, 128, 84, 84, 69,
200, 84, 84, 69, 69, 128, 84, 84, 65, 89, 65, 78, 78, 65, 128, 84, 84,
65, 85, 128, 84, 84, 65, 73, 128, 84, 84, 65, 65, 128, 84, 84, 50, 128,
84, 83, 87, 69, 128, 84, 83, 87, 66, 128, 84, 83, 87, 65, 128, 84, 83,
86, 128, 84, 83, 83, 69, 128, 84, 83, 83, 65, 128, 84, 83, 79, 214, 84,
83, 73, 85, 128, 84, 83, 72, 85, 71, 83, 128, 84, 83, 72, 79, 79, 75,
128, 84, 83, 72, 79, 79, 203, 84, 83, 72, 79, 79, 74, 128, 84, 83, 72,
69, 83, 128, 84, 83, 72, 69, 71, 128, 84, 83, 72, 69, 199, 84, 83, 72,
69, 69, 74, 128, 84, 83, 72, 69, 128, 84, 83, 72, 65, 194, 84, 83, 72,
65, 128, 84, 83, 69, 82, 69, 128, 84, 83, 69, 69, 66, 128, 84, 83, 65,
68, 73, 128, 84, 83, 65, 68, 201, 84, 83, 65, 66, 128, 84, 83, 65, 65,
68, 73, 89, 128, 84, 83, 65, 65, 128, 84, 83, 193, 84, 211, 84, 82, 89,
66, 76, 73, 79, 206, 84, 82, 85, 84, 72, 128, 84, 82, 85, 78, 75, 128,
84, 82, 85, 78, 67, 65, 84, 69, 196, 84, 82, 85, 77, 80, 69, 84, 128, 84,
82, 85, 77, 80, 45, 57, 128, 84, 82, 85, 77, 80, 45, 56, 128, 84, 82, 85,
77, 80, 45, 55, 128, 84, 82, 85, 77, 80, 45, 54, 128, 84, 82, 85, 77, 80,
45, 53, 128, 84, 82, 85, 77, 80, 45, 52, 128, 84, 82, 85, 77, 80, 45, 51,
128, 84, 82, 85, 77, 80, 45, 50, 49, 128, 84, 82, 85, 77, 80, 45, 50, 48,
128, 84, 82, 85, 77, 80, 45, 50, 128, 84, 82, 85, 77, 80, 45, 49, 57,
128, 84, 82, 85, 77, 80, 45, 49, 56, 128, 84, 82, 85, 77, 80, 45, 49, 55,
128, 84, 82, 85, 77, 80, 45, 49, 54, 128, 84, 82, 85, 77, 80, 45, 49, 53,
128, 84, 82, 85, 77, 80, 45, 49, 52, 128, 84, 82, 85, 77, 80, 45, 49, 51,
128, 84, 82, 85, 77, 80, 45, 49, 50, 128, 84, 82, 85, 77, 80, 45, 49, 49,
128, 84, 82, 85, 77, 80, 45, 49, 48, 128, 84, 82, 85, 77, 80, 45, 49,
128, 84, 82, 85, 69, 128, 84, 82, 85, 197, 84, 82, 85, 67, 75, 128, 84,
82, 79, 80, 73, 67, 65, 204, 84, 82, 79, 80, 72, 89, 128, 84, 82, 79, 77,
73, 75, 79, 83, 89, 78, 65, 71, 77, 65, 128, 84, 82, 79, 77, 73, 75, 79,
80, 83, 73, 70, 73, 83, 84, 79, 78, 128, 84, 82, 79, 77, 73, 75, 79, 80,
65, 82, 65, 75, 65, 76, 69, 83, 77, 65, 128, 84, 82, 79, 77, 73, 75, 79,
78, 128, 84, 82, 79, 77, 73, 75, 79, 206, 84, 82, 79, 77, 73, 75, 79, 76,
89, 71, 73, 83, 77, 65, 128, 84, 82, 79, 76, 76, 69, 89, 66, 85, 83, 128,
84, 82, 79, 76, 76, 69, 89, 128, 84, 82, 79, 75, 85, 84, 65, 83, 84, 201,
84, 82, 79, 69, 90, 69, 78, 73, 65, 206, 84, 82, 73, 85, 77, 80, 72, 128,
84, 82, 73, 84, 79, 211, 84, 82, 73, 84, 73, 77, 79, 82, 73, 79, 78, 128,
84, 82, 73, 83, 73, 77, 79, 85, 128, 84, 82, 73, 83, 69, 77, 69, 128, 84,
82, 73, 80, 79, 68, 128, 84, 82, 73, 80, 76, 73, 128, 84, 82, 73, 80, 76,
69, 128, 84, 82, 73, 80, 76, 197, 84, 82, 73, 79, 206, 84, 82, 73, 76,
76, 73, 79, 78, 83, 128, 84, 82, 73, 73, 83, 65, 80, 128, 84, 82, 73, 71,
82, 65, 77, 77, 79, 211, 84, 82, 73, 71, 82, 65, 205, 84, 82, 73, 71, 79,
82, 71, 79, 78, 128, 84, 82, 73, 70, 79, 78, 73, 65, 83, 128, 84, 82, 73,
70, 79, 76, 73, 65, 84, 197, 84, 82, 73, 68, 69, 78, 84, 128, 84, 82, 73,
68, 69, 78, 212, 84, 82, 73, 67, 79, 76, 79, 78, 128, 84, 82, 73, 65, 78,
71, 85, 76, 65, 210, 84, 82, 73, 65, 78, 71, 76, 69, 45, 82, 79, 85, 78,
196, 84, 82, 73, 65, 78, 71, 76, 69, 45, 72, 69, 65, 68, 69, 196, 84, 82,
73, 65, 78, 71, 76, 69, 128, 84, 82, 73, 65, 78, 71, 76, 197, 84, 82, 73,
65, 128, 84, 82, 73, 128, 84, 82, 69, 83, 73, 76, 76, 79, 128, 84, 82,
69, 78, 68, 128, 84, 82, 69, 78, 196, 84, 82, 69, 77, 79, 76, 79, 45, 51,
128, 84, 82, 69, 77, 79, 76, 79, 45, 50, 128, 84, 82, 69, 77, 79, 76, 79,
45, 49, 128, 84, 82, 69, 69, 128, 84, 82, 69, 197, 84, 82, 69, 68, 69,
67, 73, 76, 69, 128, 84, 82, 69, 65, 68, 73, 78, 71, 128, 84, 82, 65, 89,
128, 84, 82, 65, 86, 69, 76, 45, 87, 65, 76, 76, 80, 76, 65, 78, 197, 84,
82, 65, 86, 69, 76, 45, 70, 76, 79, 79, 82, 80, 76, 65, 78, 197, 84, 82,
65, 80, 69, 90, 73, 85, 77, 128, 84, 82, 65, 80, 128, 84, 82, 65, 78, 83,
86, 69, 82, 83, 65, 204, 84, 82, 65, 78, 83, 80, 79, 83, 73, 84, 73, 79,
206, 84, 82, 65, 78, 83, 80, 76, 85, 84, 79, 128, 84, 82, 65, 78, 83, 77,
73, 212, 84, 82, 65, 78, 83, 77, 73, 83, 83, 73, 79, 78, 128, 84, 82, 65,
78, 83, 77, 73, 83, 83, 73, 79, 206, 84, 82, 65, 77, 87, 65, 89, 128, 84,
82, 65, 77, 128, 84, 82, 65, 205, 84, 82, 65, 73, 78, 128, 84, 82, 65,
73, 206, 84, 82, 65, 73, 76, 73, 78, 199, 84, 82, 65, 70, 70, 73, 67,
128, 84, 82, 65, 70, 70, 73, 195, 84, 82, 65, 68, 73, 84, 73, 79, 78, 65,
204, 84, 82, 65, 68, 197, 84, 82, 65, 67, 84, 79, 82, 128, 84, 82, 65,
67, 75, 66, 65, 76, 76, 128, 84, 82, 65, 67, 75, 128, 84, 82, 65, 128,
84, 82, 128, 84, 79, 88, 128, 84, 79, 87, 69, 82, 128, 84, 79, 87, 65,
82, 68, 211, 84, 79, 86, 128, 84, 79, 85, 82, 78, 79, 73, 211, 84, 79,
85, 67, 72, 84, 79, 78, 197, 84, 79, 85, 67, 72, 73, 78, 199, 84, 79, 85,
67, 72, 69, 211, 84, 79, 85, 67, 200, 84, 79, 84, 65, 204, 84, 79, 84,
128, 84, 79, 83, 128, 84, 79, 82, 84, 79, 73, 83, 197, 84, 79, 82, 83,
79, 45, 87, 65, 76, 76, 80, 76, 65, 78, 197, 84, 79, 82, 83, 79, 45, 70,
76, 79, 79, 82, 80, 76, 65, 78, 197, 84, 79, 82, 83, 79, 128, 84, 79, 82,
78, 65, 68, 79, 128, 84, 79, 82, 67, 85, 76, 85, 83, 128, 84, 79, 82, 67,
85, 76, 85, 211, 84, 79, 82, 67, 72, 128, 84, 79, 81, 128, 84, 79, 80,
66, 65, 82, 128, 84, 79, 80, 45, 76, 73, 71, 72, 84, 69, 196, 84, 79, 80,
128, 84, 79, 208, 84, 79, 79, 84, 72, 66, 82, 85, 83, 72, 128, 84, 79,
79, 84, 72, 128, 84, 79, 79, 78, 128, 84, 79, 79, 76, 66, 79, 88, 128,
84, 79, 78, 79, 83, 128, 84, 79, 78, 71, 85, 69, 128, 84, 79, 78, 71, 85,
197, 84, 79, 78, 71, 128, 84, 79, 78, 69, 45, 86, 128, 84, 79, 78, 69,
45, 83, 128, 84, 79, 78, 69, 45, 77, 128, 84, 79, 78, 69, 45, 74, 128,
84, 79, 78, 69, 45, 71, 128, 84, 79, 78, 69, 45, 68, 128, 84, 79, 78, 69,
45, 66, 128, 84, 79, 78, 69, 45, 56, 128, 84, 79, 78, 69, 45, 55, 128,
84, 79, 78, 69, 45, 54, 128, 84, 79, 78, 69, 45, 53, 128, 84, 79, 78, 69,
45, 52, 128, 84, 79, 78, 69, 45, 51, 128, 84, 79, 78, 69, 45, 50, 128,
84, 79, 78, 69, 45, 49, 128, 84, 79, 78, 69, 128, 84, 79, 78, 65, 204,
84, 79, 77, 80, 73, 128, 84, 79, 77, 65, 84, 79, 128, 84, 79, 76, 79, 78,
71, 128, 84, 79, 75, 89, 207, 84, 79, 73, 76, 69, 84, 128, 84, 79, 71,
69, 84, 72, 69, 82, 128, 84, 79, 68, 207, 84, 79, 65, 78, 68, 65, 75, 72,
73, 65, 84, 128, 84, 79, 65, 128, 84, 79, 45, 82, 65, 128, 84, 79, 45,
54, 128, 84, 79, 45, 53, 128, 84, 79, 45, 52, 128, 84, 79, 45, 51, 128,
84, 79, 45, 50, 128, 84, 79, 45, 49, 128, 84, 78, 128, 84, 76, 86, 128,
84, 76, 85, 128, 84, 76, 79, 128, 84, 76, 73, 128, 84, 76, 72, 89, 65,
128, 84, 76, 72, 87, 69, 128, 84, 76, 72, 85, 128, 84, 76, 72, 79, 79,
128, 84, 76, 72, 79, 128, 84, 76, 72, 73, 128, 84, 76, 72, 69, 69, 128,
84, 76, 72, 69, 128, 84, 76, 72, 65, 128, 84, 76, 69, 69, 128, 84, 76,
65, 128, 84, 74, 69, 128, 84, 73, 88, 128, 84, 73, 87, 82, 128, 84, 73,
87, 78, 128, 84, 73, 87, 65, 218, 84, 73, 84, 85, 65, 69, 80, 128, 84,
73, 84, 76, 79, 128, 84, 73, 84, 76, 207, 84, 73, 84, 193, 84, 73, 84,
128, 84, 73, 82, 89, 65, 75, 128, 84, 73, 82, 84, 193, 84, 73, 82, 79,
78, 73, 65, 206, 84, 73, 82, 72, 85, 84, 193, 84, 73, 82, 69, 196, 84,
73, 82, 128, 84, 73, 210, 84, 73, 80, 80, 73, 128, 84, 73, 80, 69, 72,
65, 128, 84, 73, 80, 128, 84, 73, 208, 84, 73, 78, 89, 128, 84, 73, 78,
217, 84, 73, 78, 78, 69, 128, 84, 73, 78, 67, 84, 85, 82, 69, 128, 84,
73, 78, 65, 71, 77, 65, 128, 84, 73, 77, 69, 83, 128, 84, 73, 77, 69,
210, 84, 73, 77, 69, 128, 84, 73, 76, 84, 73, 78, 71, 128, 84, 73, 76,
84, 73, 78, 199, 84, 73, 76, 84, 128, 84, 73, 76, 69, 83, 128, 84, 73,
76, 68, 69, 128, 84, 73, 76, 68, 197, 84, 73, 76, 128, 84, 73, 204, 84,
73, 75, 69, 85, 84, 45, 84, 72, 73, 69, 85, 84, 72, 128, 84, 73, 75, 69,
85, 84, 45, 83, 73, 79, 83, 45, 75, 73, 89, 69, 79, 75, 128, 84, 73, 75,
69, 85, 84, 45, 83, 73, 79, 83, 128, 84, 73, 75, 69, 85, 84, 45, 82, 73,
69, 85, 76, 128, 84, 73, 75, 69, 85, 84, 45, 80, 73, 69, 85, 80, 128, 84,
73, 75, 69, 85, 84, 45, 77, 73, 69, 85, 77, 128, 84, 73, 75, 69, 85, 84,
45, 75, 73, 89, 69, 79, 75, 128, 84, 73, 75, 69, 85, 84, 45, 67, 73, 69,
85, 67, 128, 84, 73, 75, 69, 85, 84, 45, 67, 72, 73, 69, 85, 67, 72, 128,
84, 73, 75, 69, 85, 84, 128, 84, 73, 75, 69, 85, 212, 84, 73, 71, 72, 84,
76, 89, 45, 67, 76, 79, 83, 69, 196, 84, 73, 71, 72, 212, 84, 73, 71, 69,
82, 128, 84, 73, 71, 69, 210, 84, 73, 70, 73, 78, 65, 71, 200, 84, 73,
69, 88, 128, 84, 73, 69, 80, 128, 84, 73, 197, 84, 73, 67, 75, 69, 84,
83, 128, 84, 73, 67, 75, 69, 84, 128, 84, 73, 67, 75, 128, 84, 73, 67,
203, 84, 73, 65, 82, 65, 128, 84, 73, 50, 128, 84, 73, 45, 55, 128, 84,
73, 45, 54, 128, 84, 73, 45, 53, 128, 84, 73, 45, 52, 128, 84, 73, 45,
51, 128, 84, 73, 45, 50, 128, 84, 73, 45, 49, 128, 84, 72, 90, 128, 84,
72, 89, 79, 79, 205, 84, 72, 87, 79, 79, 128, 84, 72, 87, 79, 128, 84,
72, 87, 73, 73, 128, 84, 72, 87, 73, 128, 84, 72, 87, 69, 69, 128, 84,
72, 87, 65, 65, 128, 84, 72, 87, 65, 128, 84, 72, 85, 82, 211, 84, 72,
85, 82, 73, 83, 65, 218, 84, 72, 85, 78, 71, 128, 84, 72, 85, 78, 68, 69,
82, 83, 84, 79, 82, 77, 128, 84, 72, 85, 78, 68, 69, 82, 128, 84, 72, 85,
78, 68, 69, 210, 84, 72, 85, 77, 66, 211, 84, 72, 85, 77, 66, 128, 84,
72, 82, 79, 87, 73, 78, 199, 84, 72, 82, 79, 85, 71, 72, 128, 84, 72, 82,
79, 85, 71, 200, 84, 72, 82, 69, 69, 45, 84, 72, 73, 82, 84, 89, 128, 84,
72, 82, 69, 69, 45, 81, 85, 65, 82, 84, 69, 210, 84, 72, 82, 69, 69, 45,
80, 69, 82, 45, 69, 205, 84, 72, 82, 69, 69, 45, 76, 73, 78, 197, 84, 72,
82, 69, 69, 45, 76, 69, 71, 71, 69, 196, 84, 72, 82, 69, 69, 45, 72, 85,
78, 68, 82, 69, 68, 45, 65, 78, 68, 45, 84, 87, 69, 78, 84, 73, 69, 84,
72, 128, 84, 72, 82, 69, 69, 45, 69, 205, 84, 72, 82, 69, 69, 45, 68, 79,
212, 84, 72, 82, 69, 69, 45, 196, 84, 72, 82, 69, 69, 45, 67, 73, 82, 67,
76, 197, 84, 72, 82, 69, 65, 68, 128, 84, 72, 79, 85, 83, 65, 78, 68, 83,
128, 84, 72, 79, 85, 83, 65, 78, 68, 211, 84, 72, 79, 85, 83, 65, 78,
196, 84, 72, 79, 85, 71, 72, 212, 84, 72, 79, 85, 128, 84, 72, 79, 82,
78, 128, 84, 72, 79, 82, 206, 84, 72, 79, 78, 71, 128, 84, 72, 79, 78,
199, 84, 72, 79, 77, 128, 84, 72, 79, 74, 128, 84, 72, 79, 65, 128, 84,
72, 207, 84, 72, 73, 85, 84, 72, 128, 84, 72, 73, 84, 65, 128, 84, 72,
73, 82, 84, 89, 45, 83, 69, 67, 79, 78, 68, 128, 84, 72, 73, 82, 84, 89,
45, 83, 69, 67, 79, 78, 196, 84, 72, 73, 82, 84, 89, 45, 79, 78, 69, 128,
84, 72, 73, 82, 84, 89, 45, 70, 73, 86, 197, 84, 72, 73, 82, 84, 217, 84,
72, 73, 82, 84, 69, 69, 78, 128, 84, 72, 73, 82, 84, 69, 69, 206, 84, 72,
73, 82, 68, 83, 128, 84, 72, 73, 82, 68, 211, 84, 72, 73, 82, 68, 45, 83,
84, 65, 71, 197, 84, 72, 73, 82, 68, 128, 84, 72, 73, 82, 196, 84, 72,
73, 78, 75, 73, 78, 199, 84, 72, 73, 78, 71, 128, 84, 72, 73, 73, 128,
84, 72, 73, 71, 72, 128, 84, 72, 73, 69, 85, 84, 200, 84, 72, 73, 67,
203, 84, 72, 73, 65, 66, 128, 84, 72, 69, 89, 128, 84, 72, 69, 84, 72,
69, 128, 84, 72, 69, 84, 72, 128, 84, 72, 69, 84, 65, 128, 84, 72, 69,
84, 193, 84, 72, 69, 83, 80, 73, 65, 206, 84, 72, 69, 83, 69, 79, 83,
128, 84, 72, 69, 83, 69, 79, 211, 84, 72, 69, 211, 84, 72, 69, 82, 77,
79, 77, 69, 84, 69, 82, 128, 84, 72, 69, 82, 77, 79, 68, 89, 78, 65, 77,
73, 67, 128, 84, 72, 69, 82, 69, 70, 79, 82, 69, 128, 84, 72, 69, 82,
197, 84, 72, 69, 206, 84, 72, 69, 77, 65, 84, 73, 83, 77, 79, 211, 84,
72, 69, 77, 65, 128, 84, 72, 69, 77, 193, 84, 72, 69, 72, 128, 84, 72,
69, 200, 84, 72, 69, 65, 128, 84, 72, 197, 84, 72, 65, 87, 128, 84, 72,
65, 78, 84, 72, 65, 75, 72, 65, 84, 128, 84, 72, 65, 78, 78, 65, 128, 84,
72, 65, 78, 128, 84, 72, 65, 206, 84, 72, 65, 77, 69, 68, 72, 128, 84,
72, 65, 76, 128, 84, 72, 65, 204, 84, 72, 65, 74, 128, 84, 72, 65, 201,
84, 72, 65, 72, 65, 78, 128, 84, 72, 65, 65, 78, 193, 84, 72, 65, 65, 76,
85, 128, 84, 72, 45, 67, 82, 69, 197, 84, 69, 88, 84, 128, 84, 69, 88,
212, 84, 69, 88, 128, 84, 69, 86, 73, 82, 128, 84, 69, 85, 84, 69, 85,
88, 128, 84, 69, 85, 84, 69, 85, 87, 69, 78, 128, 84, 69, 85, 84, 128,
84, 69, 85, 78, 128, 84, 69, 85, 65, 69, 81, 128, 84, 69, 85, 65, 69, 78,
128, 84, 69, 85, 128, 84, 69, 84, 82, 65, 83, 73, 77, 79, 85, 128, 84,
69, 84, 82, 65, 83, 69, 77, 69, 128, 84, 69, 84, 82, 65, 80, 76, 73, 128,
84, 69, 84, 82, 65, 71, 82, 65, 205, 84, 69, 84, 82, 65, 70, 79, 78, 73,
65, 83, 128, 84, 69, 84, 72, 128, 84, 69, 84, 200, 84, 69, 84, 65, 82,
84, 79, 211, 84, 69, 84, 65, 82, 84, 73, 77, 79, 82, 73, 79, 78, 128, 84,
69, 84, 128, 84, 69, 212, 84, 69, 83, 212, 84, 69, 83, 83, 69, 82, 65,
128, 84, 69, 83, 83, 69, 82, 193, 84, 69, 83, 83, 65, 82, 79, 206, 84,
69, 83, 200, 84, 69, 82, 77, 73, 78, 65, 84, 79, 82, 128, 84, 69, 82, 77,
73, 78, 65, 204, 84, 69, 80, 128, 84, 69, 78, 85, 84, 79, 128, 84, 69,
78, 85, 128, 84, 69, 78, 213, 84, 69, 78, 84, 72, 128, 84, 69, 78, 84,
128, 84, 69, 78, 83, 69, 128, 84, 69, 78, 83, 197, 84, 69, 78, 83, 128,
84, 69, 78, 211, 84, 69, 78, 78, 73, 211, 84, 69, 78, 71, 197, 84, 69,
78, 45, 84, 72, 73, 82, 84, 89, 128, 84, 69, 78, 128, 84, 69, 206, 84,
69, 77, 80, 85, 211, 84, 69, 77, 80, 76, 69, 128, 84, 69, 76, 85, 71,
213, 84, 69, 76, 85, 128, 84, 69, 76, 79, 85, 211, 84, 69, 76, 76, 69,
210, 84, 69, 76, 73, 83, 72, 193, 84, 69, 76, 69, 86, 73, 83, 73, 79, 78,
128, 84, 69, 76, 69, 83, 67, 79, 80, 69, 128, 84, 69, 76, 69, 80, 72, 79,
78, 69, 128, 84, 69, 76, 69, 80, 72, 79, 78, 197, 84, 69, 76, 69, 73, 65,
128, 84, 69, 76, 69, 71, 82, 65, 80, 200, 84, 69, 75, 128, 84, 69, 73,
87, 83, 128, 84, 69, 71, 69, 72, 128, 84, 69, 69, 84, 72, 128, 84, 69,
69, 84, 200, 84, 69, 69, 78, 83, 128, 84, 69, 69, 69, 69, 128, 84, 69,
197, 84, 69, 68, 85, 78, 71, 128, 84, 69, 68, 68, 217, 84, 69, 65, 82,
211, 84, 69, 65, 82, 68, 82, 79, 80, 45, 83, 80, 79, 75, 69, 196, 84, 69,
65, 82, 68, 82, 79, 80, 45, 83, 72, 65, 78, 75, 69, 196, 84, 69, 65, 82,
68, 82, 79, 80, 45, 66, 65, 82, 66, 69, 196, 84, 69, 65, 82, 45, 79, 70,
198, 84, 69, 65, 82, 128, 84, 69, 65, 80, 79, 84, 128, 84, 69, 65, 67,
85, 208, 84, 69, 65, 128, 84, 69, 45, 85, 128, 84, 69, 45, 57, 128, 84,
69, 45, 56, 128, 84, 69, 45, 55, 128, 84, 69, 45, 54, 128, 84, 69, 45,
53, 128, 84, 69, 45, 52, 128, 84, 69, 45, 51, 128, 84, 69, 45, 50, 128,
84, 69, 45, 49, 128, 84, 67, 72, 69, 72, 69, 72, 128, 84, 67, 72, 69, 72,
69, 200, 84, 67, 72, 69, 72, 128, 84, 67, 72, 69, 200, 84, 67, 72, 69,
128, 84, 195, 84, 65, 89, 128, 84, 65, 88, 73, 128, 84, 65, 88, 128, 84,
65, 87, 69, 76, 76, 69, 77, 69, 212, 84, 65, 87, 65, 128, 84, 65, 87,
128, 84, 65, 215, 84, 65, 86, 73, 89, 65, 78, 73, 128, 84, 65, 86, 128,
84, 65, 214, 84, 65, 85, 82, 85, 83, 128, 84, 65, 85, 77, 128, 84, 65,
213, 84, 65, 84, 87, 69, 69, 76, 128, 84, 65, 84, 87, 69, 69, 204, 84,
65, 84, 84, 79, 79, 69, 196, 84, 65, 84, 128, 84, 65, 83, 83, 73, 128,
84, 65, 83, 128, 84, 65, 82, 85, 78, 71, 128, 84, 65, 82, 84, 65, 82, 45,
50, 128, 84, 65, 82, 84, 65, 82, 128, 84, 65, 82, 71, 69, 84, 128, 84,
65, 81, 128, 84, 65, 80, 69, 82, 128, 84, 65, 80, 197, 84, 65, 80, 128,
84, 65, 79, 128, 84, 65, 78, 78, 69, 196, 84, 65, 78, 71, 69, 82, 73, 78,
69, 128, 84, 65, 78, 71, 69, 78, 84, 128, 84, 65, 78, 71, 69, 78, 212,
84, 65, 78, 199, 84, 65, 78, 65, 66, 65, 84, 193, 84, 65, 78, 65, 128,
84, 65, 78, 128, 84, 65, 77, 73, 78, 71, 128, 84, 65, 77, 65, 206, 84,
65, 77, 65, 76, 69, 128, 84, 65, 77, 128, 84, 65, 76, 76, 217, 84, 65,
76, 76, 128, 84, 65, 76, 204, 84, 65, 76, 73, 78, 71, 128, 84, 65, 76,
73, 78, 199, 84, 65, 76, 69, 78, 84, 83, 128, 84, 65, 76, 69, 78, 212,
84, 65, 75, 82, 201, 84, 65, 75, 72, 65, 76, 76, 85, 83, 128, 84, 65, 75,
69, 79, 85, 212, 84, 65, 75, 69, 128, 84, 65, 75, 52, 128, 84, 65, 75,
180, 84, 65, 75, 128, 84, 65, 73, 83, 89, 79, 85, 128, 84, 65, 73, 76,
76, 69, 83, 211, 84, 65, 73, 76, 128, 84, 65, 73, 204, 84, 65, 72, 65,
76, 65, 128, 84, 65, 72, 128, 84, 65, 200, 84, 65, 71, 66, 65, 78, 87,
193, 84, 65, 71, 65, 76, 79, 199, 84, 65, 71, 128, 84, 65, 69, 206, 84,
65, 67, 79, 128, 84, 65, 67, 75, 128, 84, 65, 67, 203, 84, 65, 66, 85,
76, 65, 84, 73, 79, 78, 128, 84, 65, 66, 85, 76, 65, 84, 73, 79, 206, 84,
65, 66, 83, 128, 84, 65, 66, 76, 69, 128, 84, 65, 66, 76, 197, 84, 65,
66, 128, 84, 65, 194, 84, 65, 65, 83, 72, 65, 69, 128, 84, 65, 65, 81,
128, 84, 65, 65, 77, 128, 84, 65, 65, 76, 85, 74, 193, 84, 65, 65, 73,
128, 84, 65, 65, 70, 128, 84, 65, 50, 128, 84, 65, 45, 82, 79, 76, 128,
84, 65, 45, 52, 128, 84, 65, 45, 51, 128, 84, 65, 45, 50, 128, 84, 65,
45, 49, 128, 84, 48, 51, 54, 128, 84, 48, 51, 53, 128, 84, 48, 51, 52,
128, 84, 48, 51, 51, 65, 128, 84, 48, 51, 51, 128, 84, 48, 51, 50, 65,
128, 84, 48, 51, 50, 128, 84, 48, 51, 49, 128, 84, 48, 51, 48, 128, 84,
48, 50, 57, 128, 84, 48, 50, 56, 128, 84, 48, 50, 55, 128, 84, 48, 50,
54, 128, 84, 48, 50, 53, 128, 84, 48, 50, 52, 128, 84, 48, 50, 51, 128,
84, 48, 50, 50, 128, 84, 48, 50, 49, 128, 84, 48, 50, 48, 128, 84, 48,
49, 57, 128, 84, 48, 49, 56, 128, 84, 48, 49, 55, 128, 84, 48, 49, 54,
65, 128, 84, 48, 49, 54, 128, 84, 48, 49, 53, 128, 84, 48, 49, 52, 128,
84, 48, 49, 51, 128, 84, 48, 49, 50, 128, 84, 48, 49, 49, 65, 128, 84,
48, 49, 49, 128, 84, 48, 49, 48, 128, 84, 48, 48, 57, 65, 128, 84, 48,
48, 57, 128, 84, 48, 48, 56, 65, 128, 84, 48, 48, 56, 128, 84, 48, 48,
55, 65, 128, 84, 48, 48, 55, 128, 84, 48, 48, 54, 128, 84, 48, 48, 53,
128, 84, 48, 48, 52, 128, 84, 48, 48, 51, 65, 128, 84, 48, 48, 51, 128,
84, 48, 48, 50, 128, 84, 48, 48, 49, 128, 84, 45, 83, 72, 73, 82, 84,
128, 84, 45, 82, 69, 88, 128, 83, 90, 90, 128, 83, 90, 87, 71, 128, 83,
90, 87, 65, 128, 83, 90, 85, 128, 83, 90, 79, 128, 83, 90, 73, 128, 83,
90, 69, 69, 128, 83, 90, 69, 128, 83, 90, 65, 65, 128, 83, 90, 65, 128,
83, 90, 128, 83, 89, 88, 128, 83, 89, 84, 128, 83, 89, 83, 84, 69, 205,
83, 89, 82, 88, 128, 83, 89, 82, 77, 65, 84, 73, 75, 73, 128, 83, 89, 82,
77, 65, 128, 83, 89, 82, 73, 78, 71, 69, 128, 83, 89, 82, 73, 65, 195,
83, 89, 82, 128, 83, 89, 80, 128, 83, 89, 79, 85, 87, 65, 128, 83, 89,
78, 69, 86, 77, 65, 128, 83, 89, 78, 68, 69, 83, 77, 79, 211, 83, 89, 78,
67, 72, 82, 79, 78, 79, 85, 211, 83, 89, 78, 65, 71, 79, 71, 85, 69, 128,
83, 89, 78, 65, 71, 77, 193, 83, 89, 78, 65, 70, 73, 128, 83, 89, 78,
128, 83, 89, 77, 77, 69, 84, 82, 89, 128, 83, 89, 77, 77, 69, 84, 82, 73,
195, 83, 89, 77, 66, 79, 76, 83, 128, 83, 89, 77, 66, 79, 76, 211, 83,
89, 77, 66, 79, 76, 45, 57, 128, 83, 89, 77, 66, 79, 76, 45, 56, 128, 83,
89, 77, 66, 79, 76, 45, 55, 128, 83, 89, 77, 66, 79, 76, 45, 54, 128, 83,
89, 77, 66, 79, 76, 45, 53, 52, 128, 83, 89, 77, 66, 79, 76, 45, 53, 51,
128, 83, 89, 77, 66, 79, 76, 45, 53, 50, 128, 83, 89, 77, 66, 79, 76, 45,
53, 49, 128, 83, 89, 77, 66, 79, 76, 45, 53, 48, 128, 83, 89, 77, 66, 79,
76, 45, 53, 128, 83, 89, 77, 66, 79, 76, 45, 52, 57, 128, 83, 89, 77, 66,
79, 76, 45, 52, 56, 128, 83, 89, 77, 66, 79, 76, 45, 52, 55, 128, 83, 89,
77, 66, 79, 76, 45, 52, 53, 128, 83, 89, 77, 66, 79, 76, 45, 52, 51, 128,
83, 89, 77, 66, 79, 76, 45, 52, 50, 128, 83, 89, 77, 66, 79, 76, 45, 52,
48, 128, 83, 89, 77, 66, 79, 76, 45, 52, 128, 83, 89, 77, 66, 79, 76, 45,
51, 57, 128, 83, 89, 77, 66, 79, 76, 45, 51, 56, 128, 83, 89, 77, 66, 79,
76, 45, 51, 55, 128, 83, 89, 77, 66, 79, 76, 45, 51, 54, 128, 83, 89, 77,
66, 79, 76, 45, 51, 50, 128, 83, 89, 77, 66, 79, 76, 45, 51, 48, 128, 83,
89, 77, 66, 79, 76, 45, 51, 128, 83, 89, 77, 66, 79, 76, 45, 50, 57, 128,
83, 89, 77, 66, 79, 76, 45, 50, 55, 128, 83, 89, 77, 66, 79, 76, 45, 50,
54, 128, 83, 89, 77, 66, 79, 76, 45, 50, 53, 128, 83, 89, 77, 66, 79, 76,
45, 50, 52, 128, 83, 89, 77, 66, 79, 76, 45, 50, 51, 128, 83, 89, 77, 66,
79, 76, 45, 50, 50, 128, 83, 89, 77, 66, 79, 76, 45, 50, 49, 128, 83, 89,
77, 66, 79, 76, 45, 50, 48, 128, 83, 89, 77, 66, 79, 76, 45, 50, 128, 83,
89, 77, 66, 79, 76, 45, 49, 57, 128, 83, 89, 77, 66, 79, 76, 45, 49, 56,
128, 83, 89, 77, 66, 79, 76, 45, 49, 55, 128, 83, 89, 77, 66, 79, 76, 45,
49, 54, 128, 83, 89, 77, 66, 79, 76, 45, 49, 53, 128, 83, 89, 77, 66, 79,
76, 45, 49, 52, 128, 83, 89, 77, 66, 79, 76, 45, 49, 51, 128, 83, 89, 77,
66, 79, 76, 45, 49, 50, 128, 83, 89, 77, 66, 79, 76, 45, 49, 49, 128, 83,
89, 77, 66, 79, 76, 45, 49, 48, 128, 83, 89, 77, 66, 79, 76, 45, 49, 128,
83, 89, 76, 79, 84, 201, 83, 89, 73, 128, 83, 89, 128, 83, 87, 90, 128,
83, 87, 85, 78, 199, 83, 87, 79, 82, 68, 83, 128, 83, 87, 79, 82, 68,
128, 83, 87, 79, 79, 128, 83, 87, 79, 128, 83, 87, 73, 82, 204, 83, 87,
73, 77, 83, 85, 73, 84, 128, 83, 87, 73, 77, 77, 73, 78, 71, 128, 83, 87,
73, 77, 77, 69, 82, 128, 83, 87, 73, 73, 128, 83, 87, 73, 128, 83, 87,
71, 128, 83, 87, 69, 69, 84, 128, 83, 87, 69, 69, 212, 83, 87, 69, 65,
84, 128, 83, 87, 69, 65, 212, 83, 87, 65, 83, 200, 83, 87, 65, 80, 80,
73, 78, 71, 128, 83, 87, 65, 78, 128, 83, 87, 65, 65, 128, 83, 87, 128,
83, 86, 65, 83, 84, 201, 83, 86, 65, 82, 73, 84, 65, 128, 83, 86, 65, 82,
73, 84, 193, 83, 85, 88, 128, 83, 85, 85, 128, 83, 85, 84, 82, 193, 83,
85, 84, 128, 83, 85, 83, 80, 69, 78, 83, 73, 79, 206, 83, 85, 83, 72, 73,
128, 83, 85, 82, 89, 65, 128, 83, 85, 82, 88, 128, 83, 85, 82, 82, 79,
85, 78, 68, 128, 83, 85, 82, 82, 79, 85, 78, 196, 83, 85, 82, 70, 69, 82,
128, 83, 85, 82, 70, 65, 67, 197, 83, 85, 82, 69, 128, 83, 85, 82, 65,
78, 71, 128, 83, 85, 82, 57, 128, 83, 85, 82, 128, 83, 85, 210, 83, 85,
80, 82, 65, 76, 73, 78, 69, 65, 210, 83, 85, 80, 69, 82, 86, 73, 83, 69,
128, 83, 85, 80, 69, 82, 86, 73, 76, 76, 65, 73, 78, 128, 83, 85, 80, 69,
82, 83, 69, 84, 128, 83, 85, 80, 69, 82, 83, 69, 212, 83, 85, 80, 69, 82,
83, 67, 82, 73, 80, 212, 83, 85, 80, 69, 82, 73, 77, 80, 79, 83, 69, 196,
83, 85, 80, 69, 82, 72, 69, 82, 79, 128, 83, 85, 80, 69, 82, 70, 73, 88,
69, 196, 83, 85, 80, 69, 210, 83, 85, 80, 128, 83, 85, 79, 88, 128, 83,
85, 79, 80, 128, 83, 85, 79, 128, 83, 85, 78, 83, 69, 212, 83, 85, 78,
82, 73, 83, 69, 128, 83, 85, 78, 82, 73, 83, 197, 83, 85, 78, 71, 76, 65,
83, 83, 69, 83, 128, 83, 85, 78, 71, 128, 83, 85, 78, 70, 76, 79, 87, 69,
82, 128, 83, 85, 78, 68, 65, 78, 69, 83, 197, 83, 85, 78, 128, 83, 85,
206, 83, 85, 77, 77, 69, 82, 128, 83, 85, 77, 77, 65, 84, 73, 79, 78,
128, 83, 85, 77, 77, 65, 84, 73, 79, 206, 83, 85, 77, 65, 83, 72, 128,
83, 85, 77, 128, 83, 85, 76, 70, 85, 82, 128, 83, 85, 75, 85, 78, 128,
83, 85, 75, 85, 206, 83, 85, 75, 85, 128, 83, 85, 75, 213, 83, 85, 73,
84, 65, 66, 76, 69, 128, 83, 85, 73, 212, 83, 85, 72, 85, 82, 128, 83,
85, 69, 128, 83, 85, 68, 50, 128, 83, 85, 68, 128, 83, 85, 67, 75, 73,
78, 199, 83, 85, 67, 75, 69, 68, 128, 83, 85, 67, 203, 83, 85, 67, 67,
69, 69, 68, 83, 128, 83, 85, 67, 67, 69, 69, 68, 211, 83, 85, 67, 67, 69,
69, 68, 128, 83, 85, 67, 67, 69, 69, 196, 83, 85, 66, 85, 78, 73, 84,
128, 83, 85, 66, 83, 84, 73, 84, 85, 84, 73, 79, 206, 83, 85, 66, 83, 84,
73, 84, 85, 84, 69, 128, 83, 85, 66, 83, 84, 73, 84, 85, 84, 197, 83, 85,
66, 83, 69, 84, 128, 83, 85, 66, 83, 69, 212, 83, 85, 66, 83, 67, 82, 73,
80, 212, 83, 85, 66, 80, 85, 78, 67, 84, 73, 83, 128, 83, 85, 66, 76, 73,
78, 69, 65, 210, 83, 85, 66, 76, 73, 77, 65, 84, 73, 79, 78, 128, 83, 85,
66, 76, 73, 77, 65, 84, 69, 45, 51, 128, 83, 85, 66, 76, 73, 77, 65, 84,
69, 45, 50, 128, 83, 85, 66, 76, 73, 77, 65, 84, 69, 128, 83, 85, 66, 76,
73, 77, 65, 84, 197, 83, 85, 66, 74, 79, 73, 78, 69, 82, 128, 83, 85, 66,
74, 79, 73, 78, 69, 196, 83, 85, 66, 74, 69, 67, 84, 128, 83, 85, 66, 73,
84, 79, 128, 83, 85, 66, 71, 82, 79, 85, 80, 128, 83, 85, 66, 71, 82, 79,
85, 208, 83, 85, 66, 128, 83, 85, 65, 77, 128, 83, 85, 65, 69, 84, 128,
83, 85, 65, 69, 78, 128, 83, 85, 65, 69, 128, 83, 85, 65, 66, 128, 83,
85, 65, 128, 83, 85, 45, 56, 128, 83, 85, 45, 55, 128, 83, 85, 45, 54,
128, 83, 85, 45, 53, 128, 83, 85, 45, 52, 128, 83, 85, 45, 51, 128, 83,
85, 45, 50, 128, 83, 85, 45, 49, 128, 83, 213, 83, 84, 88, 128, 83, 84,
87, 65, 128, 83, 84, 85, 80, 65, 128, 83, 84, 85, 70, 70, 69, 196, 83,
84, 85, 68, 89, 128, 83, 84, 85, 68, 73, 207, 83, 84, 85, 67, 75, 45, 79,
85, 212, 83, 84, 83, 128, 83, 84, 82, 79, 78, 199, 83, 84, 82, 79, 75,
69, 83, 128, 83, 84, 82, 79, 75, 69, 211, 83, 84, 82, 79, 75, 69, 45, 57,
128, 83, 84, 82, 79, 75, 69, 45, 56, 128, 83, 84, 82, 79, 75, 69, 45, 55,
128, 83, 84, 82, 79, 75, 69, 45, 54, 128, 83, 84, 82, 79, 75, 69, 45, 53,
128, 83, 84, 82, 79, 75, 69, 45, 52, 128, 83, 84, 82, 79, 75, 69, 45, 51,
128, 83, 84, 82, 79, 75, 69, 45, 50, 128, 83, 84, 82, 79, 75, 69, 45, 49,
49, 128, 83, 84, 82, 79, 75, 69, 45, 49, 48, 128, 83, 84, 82, 79, 75, 69,
45, 49, 128, 83, 84, 82, 79, 75, 197, 83, 84, 82, 73, 80, 69, 128, 83,
84, 82, 73, 78, 71, 128, 83, 84, 82, 73, 78, 199, 83, 84, 82, 73, 75, 69,
84, 72, 82, 79, 85, 71, 72, 128, 83, 84, 82, 73, 75, 197, 83, 84, 82, 73,
68, 69, 128, 83, 84, 82, 73, 67, 84, 76, 217, 83, 84, 82, 69, 84, 67, 72,
69, 196, 83, 84, 82, 69, 84, 67, 72, 128, 83, 84, 82, 69, 83, 211, 83,
84, 82, 69, 78, 71, 84, 72, 128, 83, 84, 82, 69, 65, 77, 69, 82, 128, 83,
84, 82, 65, 87, 66, 69, 82, 82, 89, 128, 83, 84, 82, 65, 87, 128, 83, 84,
82, 65, 84, 85, 77, 45, 50, 128, 83, 84, 82, 65, 84, 85, 77, 128, 83, 84,
82, 65, 84, 85, 205, 83, 84, 82, 65, 84, 73, 65, 206, 83, 84, 82, 65, 73,
78, 69, 82, 128, 83, 84, 82, 65, 73, 71, 72, 84, 78, 69, 83, 83, 128, 83,
84, 82, 65, 73, 71, 72, 84, 128, 83, 84, 82, 65, 73, 71, 72, 212, 83, 84,
82, 65, 73, 70, 128, 83, 84, 82, 65, 71, 71, 73, 83, 77, 65, 84, 65, 128,
83, 84, 79, 86, 69, 128, 83, 84, 79, 82, 69, 128, 83, 84, 79, 80, 87, 65,
84, 67, 72, 128, 83, 84, 79, 80, 80, 73, 78, 71, 128, 83, 84, 79, 80, 80,
65, 71, 69, 128, 83, 84, 79, 80, 128, 83, 84, 79, 208, 83, 84, 79, 78,
69, 128, 83, 84, 79, 67, 75, 128, 83, 84, 79, 67, 203, 83, 84, 73, 82,
82, 85, 208, 83, 84, 73, 77, 77, 69, 128, 83, 84, 73, 76, 204, 83, 84,
73, 76, 197, 83, 84, 73, 71, 77, 65, 128, 83, 84, 73, 67, 75, 73, 78,
199, 83, 84, 73, 67, 203, 83, 84, 69, 84, 72, 79, 83, 67, 79, 80, 69,
128, 83, 84, 69, 82, 69, 79, 128, 83, 84, 69, 80, 128, 83, 84, 69, 78,
79, 71, 82, 65, 80, 72, 73, 195, 83, 84, 69, 77, 128, 83, 84, 69, 65, 77,
217, 83, 84, 69, 65, 77, 73, 78, 199, 83, 84, 69, 65, 77, 128, 83, 84,
69, 65, 205, 83, 84, 65, 86, 82, 79, 85, 128, 83, 84, 65, 86, 82, 79, 83,
128, 83, 84, 65, 86, 82, 79, 211, 83, 84, 65, 85, 82, 79, 83, 128, 83,
84, 65, 84, 85, 197, 83, 84, 65, 84, 73, 79, 78, 128, 83, 84, 65, 84, 69,
82, 83, 128, 83, 84, 65, 84, 69, 128, 83, 84, 65, 82, 84, 73, 78, 199,
83, 84, 65, 82, 84, 128, 83, 84, 65, 82, 212, 83, 84, 65, 82, 83, 128,
83, 84, 65, 82, 82, 69, 196, 83, 84, 65, 82, 75, 128, 83, 84, 65, 82,
128, 83, 84, 65, 210, 83, 84, 65, 78, 68, 83, 84, 73, 76, 76, 128, 83,
84, 65, 78, 68, 73, 78, 199, 83, 84, 65, 78, 68, 65, 82, 196, 83, 84, 65,
78, 68, 128, 83, 84, 65, 78, 128, 83, 84, 65, 77, 80, 69, 196, 83, 84,
65, 76, 76, 73, 79, 78, 128, 83, 84, 65, 70, 70, 128, 83, 84, 65, 70,
198, 83, 84, 65, 68, 73, 85, 77, 128, 83, 84, 65, 67, 75, 69, 196, 83,
84, 65, 67, 67, 65, 84, 79, 128, 83, 84, 65, 67, 67, 65, 84, 73, 83, 83,
73, 77, 79, 128, 83, 84, 50, 128, 83, 83, 89, 88, 128, 83, 83, 89, 84,
128, 83, 83, 89, 82, 88, 128, 83, 83, 89, 82, 128, 83, 83, 89, 80, 128,
83, 83, 89, 128, 83, 83, 85, 88, 128, 83, 83, 85, 85, 128, 83, 83, 85,
84, 128, 83, 83, 85, 80, 128, 83, 83, 79, 88, 128, 83, 83, 79, 84, 128,
83, 83, 79, 80, 128, 83, 83, 79, 79, 128, 83, 83, 79, 128, 83, 83, 73,
88, 128, 83, 83, 73, 84, 128, 83, 83, 73, 80, 128, 83, 83, 73, 73, 128,
83, 83, 73, 69, 88, 128, 83, 83, 73, 69, 80, 128, 83, 83, 73, 69, 128,
83, 83, 72, 73, 78, 128, 83, 83, 72, 69, 128, 83, 83, 69, 88, 128, 83,
83, 69, 80, 128, 83, 83, 69, 69, 128, 83, 83, 65, 88, 128, 83, 83, 65,
85, 128, 83, 83, 65, 84, 128, 83, 83, 65, 80, 128, 83, 83, 65, 78, 71,
89, 69, 83, 73, 69, 85, 78, 71, 128, 83, 83, 65, 78, 71, 89, 69, 79, 82,
73, 78, 72, 73, 69, 85, 72, 128, 83, 83, 65, 78, 71, 84, 73, 75, 69, 85,
84, 45, 80, 73, 69, 85, 80, 128, 83, 83, 65, 78, 71, 84, 73, 75, 69, 85,
84, 128, 83, 83, 65, 78, 71, 84, 72, 73, 69, 85, 84, 72, 128, 83, 83, 65,
78, 71, 83, 73, 79, 83, 45, 84, 73, 75, 69, 85, 84, 128, 83, 83, 65, 78,
71, 83, 73, 79, 83, 45, 80, 73, 69, 85, 80, 128, 83, 83, 65, 78, 71, 83,
73, 79, 83, 45, 75, 73, 89, 69, 79, 75, 128, 83, 83, 65, 78, 71, 83, 73,
79, 83, 128, 83, 83, 65, 78, 71, 82, 73, 69, 85, 76, 45, 75, 72, 73, 69,
85, 75, 72, 128, 83, 83, 65, 78, 71, 82, 73, 69, 85, 76, 128, 83, 83, 65,
78, 71, 80, 73, 69, 85, 80, 128, 83, 83, 65, 78, 71, 78, 73, 69, 85, 78,
128, 83, 83, 65, 78, 71, 77, 73, 69, 85, 77, 128, 83, 83, 65, 78, 71, 73,
69, 85, 78, 71, 128, 83, 83, 65, 78, 71, 72, 73, 69, 85, 72, 128, 83, 83,
65, 78, 71, 67, 73, 69, 85, 67, 45, 72, 73, 69, 85, 72, 128, 83, 83, 65,
78, 71, 67, 73, 69, 85, 67, 128, 83, 83, 65, 78, 71, 65, 82, 65, 69, 65,
128, 83, 83, 65, 73, 128, 83, 83, 65, 65, 128, 83, 83, 51, 128, 83, 83,
50, 128, 83, 82, 128, 83, 81, 85, 73, 83, 200, 83, 81, 85, 73, 82, 82,
69, 204, 83, 81, 85, 73, 71, 71, 76, 197, 83, 81, 85, 73, 68, 128, 83,
81, 85, 69, 69, 90, 69, 68, 128, 83, 81, 85, 69, 69, 90, 197, 83, 81, 85,
65, 212, 83, 81, 85, 65, 82, 69, 83, 128, 83, 81, 85, 65, 82, 69, 68,
128, 83, 81, 85, 65, 82, 69, 128, 83, 80, 89, 128, 83, 80, 87, 65, 128,
83, 80, 85, 78, 71, 211, 83, 80, 82, 79, 85, 84, 128, 83, 80, 82, 73, 78,
71, 83, 128, 83, 80, 82, 73, 78, 71, 128, 83, 80, 82, 69, 67, 72, 71, 69,
83, 65, 78, 199, 83, 80, 82, 69, 65, 68, 128, 83, 80, 82, 69, 65, 196,
83, 80, 79, 85, 84, 73, 78, 199, 83, 80, 79, 84, 128, 83, 80, 79, 82, 84,
211, 83, 80, 79, 79, 78, 128, 83, 80, 79, 79, 204, 83, 80, 79, 78, 71,
69, 128, 83, 80, 76, 73, 84, 84, 73, 78, 199, 83, 80, 76, 73, 84, 128,
83, 80, 76, 73, 212, 83, 80, 76, 65, 89, 69, 68, 128, 83, 80, 76, 65, 83,
72, 73, 78, 199, 83, 80, 73, 82, 73, 84, 85, 211, 83, 80, 73, 82, 73, 84,
128, 83, 80, 73, 82, 73, 212, 83, 80, 73, 82, 65, 78, 84, 128, 83, 80,
73, 82, 65, 76, 128, 83, 80, 73, 82, 65, 204, 83, 80, 73, 78, 69, 128,
83, 80, 73, 68, 69, 82, 217, 83, 80, 73, 68, 69, 82, 128, 83, 80, 73, 68,
69, 210, 83, 80, 73, 67, 69, 128, 83, 80, 72, 69, 82, 73, 67, 65, 204,
83, 80, 69, 83, 77, 73, 76, 207, 83, 80, 69, 78, 212, 83, 80, 69, 69, 68,
66, 79, 65, 84, 128, 83, 80, 69, 69, 67, 72, 128, 83, 80, 69, 69, 67,
200, 83, 80, 69, 67, 73, 65, 76, 128, 83, 80, 69, 65, 82, 128, 83, 80,
69, 65, 75, 73, 78, 199, 83, 80, 69, 65, 75, 69, 82, 128, 83, 80, 69, 65,
75, 69, 210, 83, 80, 69, 65, 75, 45, 78, 79, 45, 69, 86, 73, 204, 83, 80,
65, 84, 72, 73, 128, 83, 80, 65, 82, 75, 76, 73, 78, 199, 83, 80, 65, 82,
75, 76, 69, 83, 128, 83, 80, 65, 82, 75, 76, 69, 82, 128, 83, 80, 65, 82,
75, 76, 69, 128, 83, 80, 65, 71, 72, 69, 84, 84, 73, 128, 83, 80, 65, 68,
69, 83, 128, 83, 80, 65, 68, 197, 83, 80, 65, 67, 73, 78, 199, 83, 80,
65, 67, 197, 83, 80, 65, 128, 83, 79, 89, 79, 77, 66, 207, 83, 79, 89,
128, 83, 79, 87, 73, 76, 207, 83, 79, 87, 128, 83, 79, 85, 84, 72, 69,
82, 206, 83, 79, 85, 84, 72, 45, 83, 76, 65, 86, 69, 217, 83, 79, 85, 84,
200, 83, 79, 85, 82, 67, 69, 128, 83, 79, 85, 78, 68, 128, 83, 79, 85,
78, 196, 83, 79, 85, 78, 65, 80, 128, 83, 79, 85, 128, 83, 79, 83, 128,
83, 79, 82, 193, 83, 79, 81, 128, 83, 79, 79, 206, 83, 79, 78, 74, 65,
77, 128, 83, 79, 78, 71, 128, 83, 79, 78, 128, 83, 79, 77, 80, 69, 78,
199, 83, 79, 77, 128, 83, 79, 76, 73, 68, 85, 83, 128, 83, 79, 76, 73,
68, 85, 211, 83, 79, 76, 73, 196, 83, 79, 76, 68, 73, 69, 82, 128, 83,
79, 72, 128, 83, 79, 71, 68, 73, 65, 206, 83, 79, 70, 84, 87, 65, 82, 69,
45, 70, 85, 78, 67, 84, 73, 79, 206, 83, 79, 70, 84, 78, 69, 83, 83, 128,
83, 79, 70, 84, 66, 65, 76, 76, 128, 83, 79, 70, 212, 83, 79, 198, 83,
79, 67, 75, 83, 128, 83, 79, 67, 73, 69, 84, 89, 128, 83, 79, 67, 67, 69,
210, 83, 79, 65, 80, 128, 83, 79, 65, 128, 83, 79, 45, 55, 128, 83, 79,
45, 54, 128, 83, 79, 45, 53, 128, 83, 79, 45, 52, 128, 83, 79, 45, 51,
128, 83, 79, 45, 50, 128, 83, 79, 45, 49, 128, 83, 207, 83, 78, 79, 87,
77, 65, 78, 128, 83, 78, 79, 87, 77, 65, 206, 83, 78, 79, 87, 70, 76, 65,
75, 69, 128, 83, 78, 79, 87, 66, 79, 65, 82, 68, 69, 82, 128, 83, 78, 79,
87, 128, 83, 78, 79, 215, 83, 78, 79, 85, 84, 128, 83, 78, 79, 85, 212,
83, 78, 69, 69, 90, 73, 78, 199, 83, 78, 65, 208, 83, 78, 65, 75, 69,
128, 83, 78, 65, 75, 197, 83, 78, 65, 73, 76, 128, 83, 78, 193, 83, 77,
79, 75, 73, 78, 199, 83, 77, 73, 82, 75, 73, 78, 199, 83, 77, 73, 76, 73,
78, 199, 83, 77, 73, 76, 69, 128, 83, 77, 73, 76, 197, 83, 77, 69, 65,
82, 128, 83, 77, 65, 83, 200, 83, 77, 65, 76, 76, 69, 210, 83, 77, 65,
76, 76, 128, 83, 76, 85, 82, 128, 83, 76, 79, 87, 76, 89, 128, 83, 76,
79, 87, 128, 83, 76, 79, 215, 83, 76, 79, 86, 79, 128, 83, 76, 79, 84,
72, 128, 83, 76, 79, 212, 83, 76, 79, 80, 73, 78, 199, 83, 76, 79, 80,
69, 128, 83, 76, 79, 65, 206, 83, 76, 73, 78, 71, 128, 83, 76, 73, 71,
72, 84, 76, 217, 83, 76, 73, 68, 73, 78, 71, 128, 83, 76, 73, 68, 69, 82,
128, 83, 76, 73, 67, 69, 128, 83, 76, 73, 67, 197, 83, 76, 69, 85, 84,
200, 83, 76, 69, 69, 80, 217, 83, 76, 69, 69, 80, 73, 78, 199, 83, 76,
69, 69, 208, 83, 76, 69, 68, 128, 83, 76, 65, 86, 79, 78, 73, 195, 83,
76, 65, 86, 69, 128, 83, 76, 65, 83, 72, 128, 83, 76, 65, 83, 200, 83,
76, 65, 78, 84, 69, 196, 83, 75, 87, 65, 128, 83, 75, 87, 128, 83, 75,
85, 78, 75, 128, 83, 75, 85, 76, 76, 128, 83, 75, 85, 76, 204, 83, 75,
76, 73, 82, 79, 206, 83, 75, 73, 78, 128, 83, 75, 73, 69, 82, 128, 83,
75, 201, 83, 75, 69, 87, 69, 196, 83, 75, 65, 84, 69, 66, 79, 65, 82, 68,
128, 83, 75, 65, 84, 69, 128, 83, 75, 128, 83, 74, 69, 128, 83, 73, 90,
197, 83, 73, 88, 84, 89, 45, 70, 79, 85, 82, 84, 72, 83, 128, 83, 73, 88,
84, 89, 45, 70, 79, 85, 82, 84, 72, 128, 83, 73, 88, 84, 89, 45, 70, 79,
85, 82, 84, 200, 83, 73, 88, 84, 89, 128, 83, 73, 88, 84, 217, 83, 73,
88, 84, 72, 83, 128, 83, 73, 88, 84, 72, 211, 83, 73, 88, 84, 72, 128,
83, 73, 88, 84, 69, 69, 78, 84, 72, 83, 128, 83, 73, 88, 84, 69, 69, 78,
84, 72, 45, 50, 128, 83, 73, 88, 84, 69, 69, 78, 84, 72, 45, 49, 128, 83,
73, 88, 84, 69, 69, 78, 84, 72, 128, 83, 73, 88, 84, 69, 69, 78, 84, 200,
83, 73, 88, 84, 69, 69, 78, 128, 83, 73, 88, 84, 69, 69, 206, 83, 73, 88,
45, 84, 72, 73, 82, 84, 89, 128, 83, 73, 88, 45, 83, 84, 82, 73, 78, 199,
83, 73, 88, 45, 80, 69, 82, 45, 69, 205, 83, 73, 88, 45, 76, 73, 78, 197,
83, 73, 216, 83, 73, 84, 69, 128, 83, 73, 83, 65, 128, 83, 73, 82, 73,
78, 71, 85, 128, 83, 73, 79, 83, 45, 84, 72, 73, 69, 85, 84, 72, 128, 83,
73, 79, 83, 45, 83, 83, 65, 78, 71, 83, 73, 79, 83, 128, 83, 73, 79, 83,
45, 82, 73, 69, 85, 76, 128, 83, 73, 79, 83, 45, 80, 73, 69, 85, 80, 45,
75, 73, 89, 69, 79, 75, 128, 83, 73, 79, 83, 45, 80, 72, 73, 69, 85, 80,
72, 128, 83, 73, 79, 83, 45, 80, 65, 78, 83, 73, 79, 83, 128, 83, 73, 79,
83, 45, 78, 73, 69, 85, 78, 128, 83, 73, 79, 83, 45, 77, 73, 69, 85, 77,
128, 83, 73, 79, 83, 45, 75, 72, 73, 69, 85, 75, 72, 128, 83, 73, 79, 83,
45, 75, 65, 80, 89, 69, 79, 85, 78, 80, 73, 69, 85, 80, 128, 83, 73, 79,
83, 45, 73, 69, 85, 78, 71, 128, 83, 73, 79, 83, 45, 72, 73, 69, 85, 72,
128, 83, 73, 79, 83, 45, 67, 73, 69, 85, 67, 128, 83, 73, 79, 83, 45, 67,
72, 73, 69, 85, 67, 72, 128, 83, 73, 79, 211, 83, 73, 78, 85, 83, 79, 73,
196, 83, 73, 78, 79, 76, 79, 71, 73, 67, 65, 204, 83, 73, 78, 78, 89, 73,
73, 89, 72, 69, 128, 83, 73, 78, 75, 73, 78, 71, 128, 83, 73, 78, 71, 76,
69, 45, 83, 72, 73, 70, 84, 45, 51, 128, 83, 73, 78, 71, 76, 69, 45, 83,
72, 73, 70, 84, 45, 50, 128, 83, 73, 78, 71, 76, 69, 45, 76, 73, 78, 197,
83, 73, 78, 71, 76, 69, 128, 83, 73, 78, 71, 76, 197, 83, 73, 78, 71, 65,
65, 84, 128, 83, 73, 78, 197, 83, 73, 78, 68, 72, 201, 83, 73, 78, 128,
83, 73, 206, 83, 73, 77, 85, 76, 84, 65, 78, 69, 79, 85, 83, 128, 83, 73,
77, 85, 76, 84, 65, 78, 69, 79, 85, 211, 83, 73, 77, 80, 76, 73, 70, 73,
69, 196, 83, 73, 77, 73, 76, 65, 82, 128, 83, 73, 77, 73, 76, 65, 210,
83, 73, 77, 65, 78, 83, 73, 211, 83, 73, 77, 65, 76, 85, 78, 71, 85, 206,
83, 73, 77, 65, 128, 83, 73, 76, 86, 69, 82, 128, 83, 73, 76, 75, 128,
83, 73, 76, 73, 81, 85, 193, 83, 73, 76, 72, 79, 85, 69, 84, 84, 69, 128,
83, 73, 76, 72, 79, 85, 69, 84, 84, 197, 83, 73, 76, 65, 51, 128, 83, 73,
75, 73, 128, 83, 73, 75, 50, 128, 83, 73, 75, 178, 83, 73, 71, 78, 83,
128, 83, 73, 71, 77, 65, 128, 83, 73, 71, 77, 193, 83, 73, 71, 69, 204,
83, 73, 71, 52, 128, 83, 73, 71, 180, 83, 73, 71, 128, 83, 73, 69, 69,
128, 83, 73, 68, 69, 87, 65, 89, 211, 83, 73, 68, 69, 128, 83, 73, 68,
197, 83, 73, 68, 68, 72, 73, 128, 83, 73, 68, 68, 72, 65, 77, 128, 83,
73, 68, 68, 72, 65, 205, 83, 73, 67, 75, 78, 69, 83, 83, 128, 83, 73, 67,
75, 76, 69, 128, 83, 73, 66, 197, 83, 73, 65, 128, 83, 73, 45, 54, 128,
83, 73, 45, 53, 128, 83, 73, 45, 52, 128, 83, 73, 45, 51, 128, 83, 73,
45, 50, 128, 83, 73, 45, 49, 128, 83, 201, 83, 72, 89, 88, 128, 83, 72,
89, 84, 128, 83, 72, 89, 82, 88, 128, 83, 72, 89, 82, 128, 83, 72, 89,
80, 128, 83, 72, 89, 69, 128, 83, 72, 89, 65, 128, 83, 72, 89, 128, 83,
72, 87, 79, 89, 128, 83, 72, 87, 79, 79, 128, 83, 72, 87, 79, 128, 83,
72, 87, 73, 73, 128, 83, 72, 87, 73, 128, 83, 72, 87, 69, 128, 83, 72,
87, 197, 83, 72, 87, 65, 65, 128, 83, 72, 87, 65, 128, 83, 72, 86, 128,
83, 72, 85, 88, 128, 83, 72, 85, 85, 128, 83, 72, 85, 84, 84, 76, 69, 67,
79, 67, 75, 128, 83, 72, 85, 84, 128, 83, 72, 85, 82, 88, 128, 83, 72,
85, 82, 128, 83, 72, 85, 80, 128, 83, 72, 85, 79, 88, 128, 83, 72, 85,
79, 80, 128, 83, 72, 85, 79, 128, 83, 72, 85, 77, 128, 83, 72, 85, 76,
128, 83, 72, 85, 70, 70, 76, 197, 83, 72, 85, 69, 81, 128, 83, 72, 85,
69, 78, 83, 72, 85, 69, 84, 128, 83, 72, 85, 66, 85, 82, 128, 83, 72, 85,
65, 78, 71, 88, 73, 128, 83, 72, 85, 50, 128, 83, 72, 85, 178, 83, 72,
85, 128, 83, 72, 84, 65, 80, 73, 67, 128, 83, 72, 84, 65, 128, 83, 72,
82, 85, 71, 128, 83, 72, 82, 73, 78, 69, 128, 83, 72, 82, 73, 77, 80,
128, 83, 72, 82, 73, 73, 128, 83, 72, 82, 73, 128, 83, 72, 79, 89, 128,
83, 72, 79, 88, 128, 83, 72, 79, 87, 69, 82, 128, 83, 72, 79, 85, 76, 68,
69, 82, 69, 196, 83, 72, 79, 85, 76, 68, 69, 210, 83, 72, 79, 85, 128,
83, 72, 79, 84, 128, 83, 72, 79, 82, 84, 83, 128, 83, 72, 79, 82, 84,
211, 83, 72, 79, 82, 84, 72, 65, 78, 196, 83, 72, 79, 82, 84, 69, 78, 69,
82, 128, 83, 72, 79, 82, 84, 67, 65, 75, 69, 128, 83, 72, 79, 82, 84, 45,
84, 87, 73, 71, 45, 89, 82, 128, 83, 72, 79, 82, 84, 45, 84, 87, 73, 71,
45, 84, 89, 210, 83, 72, 79, 82, 84, 45, 84, 87, 73, 71, 45, 83, 79, 204,
83, 72, 79, 82, 84, 45, 84, 87, 73, 71, 45, 79, 83, 211, 83, 72, 79, 82,
84, 45, 84, 87, 73, 71, 45, 78, 65, 85, 196, 83, 72, 79, 82, 84, 45, 84,
87, 73, 71, 45, 77, 65, 68, 210, 83, 72, 79, 82, 84, 45, 84, 87, 73, 71,
45, 72, 65, 71, 65, 76, 204, 83, 72, 79, 82, 84, 45, 84, 87, 73, 71, 45,
66, 74, 65, 82, 75, 65, 206, 83, 72, 79, 82, 84, 45, 84, 87, 73, 71, 45,
65, 210, 83, 72, 79, 82, 84, 128, 83, 72, 79, 82, 212, 83, 72, 79, 81,
128, 83, 72, 79, 209, 83, 72, 79, 80, 80, 73, 78, 199, 83, 72, 79, 80,
128, 83, 72, 79, 79, 84, 73, 78, 199, 83, 72, 79, 79, 84, 128, 83, 72,
79, 79, 73, 128, 83, 72, 79, 79, 128, 83, 72, 79, 71, 201, 83, 72, 79,
199, 83, 72, 79, 69, 83, 128, 83, 72, 79, 69, 128, 83, 72, 79, 197, 83,
72, 79, 67, 75, 69, 196, 83, 72, 79, 65, 128, 83, 72, 79, 128, 83, 72,
73, 89, 89, 65, 65, 76, 65, 65, 128, 83, 72, 73, 84, 65, 128, 83, 72, 73,
84, 193, 83, 72, 73, 82, 212, 83, 72, 73, 82, 65, 69, 128, 83, 72, 73,
82, 128, 83, 72, 73, 210, 83, 72, 73, 81, 128, 83, 72, 73, 78, 84, 207,
83, 72, 73, 78, 73, 71, 128, 83, 72, 73, 78, 68, 193, 83, 72, 73, 206,
83, 72, 73, 77, 65, 128, 83, 72, 73, 77, 193, 83, 72, 73, 77, 128, 83,
72, 73, 205, 83, 72, 73, 73, 78, 128, 83, 72, 73, 73, 128, 83, 72, 73,
70, 212, 83, 72, 73, 69, 76, 68, 128, 83, 72, 73, 68, 128, 83, 72, 73,
196, 83, 72, 72, 65, 128, 83, 72, 72, 193, 83, 72, 69, 88, 128, 83, 72,
69, 86, 65, 128, 83, 72, 69, 85, 88, 128, 83, 72, 69, 85, 79, 81, 128,
83, 72, 69, 85, 65, 69, 81, 84, 85, 128, 83, 72, 69, 85, 65, 69, 81, 128,
83, 72, 69, 85, 65, 69, 128, 83, 72, 69, 84, 128, 83, 72, 69, 212, 83,
72, 69, 83, 72, 76, 65, 77, 128, 83, 72, 69, 83, 72, 73, 71, 128, 83, 72,
69, 83, 72, 73, 199, 83, 72, 69, 83, 72, 50, 128, 83, 72, 69, 83, 72,
128, 83, 72, 69, 83, 200, 83, 72, 69, 81, 69, 204, 83, 72, 69, 80, 128,
83, 72, 69, 78, 128, 83, 72, 69, 76, 76, 128, 83, 72, 69, 76, 204, 83,
72, 69, 76, 70, 128, 83, 72, 69, 73, 128, 83, 72, 69, 71, 57, 128, 83,
72, 69, 69, 80, 128, 83, 72, 69, 69, 78, 85, 128, 83, 72, 69, 69, 78,
128, 83, 72, 69, 69, 206, 83, 72, 69, 69, 128, 83, 72, 69, 45, 71, 79,
65, 84, 128, 83, 72, 197, 83, 72, 67, 72, 79, 79, 73, 128, 83, 72, 67,
72, 65, 128, 83, 72, 65, 89, 128, 83, 72, 65, 88, 128, 83, 72, 65, 86,
73, 89, 65, 78, 73, 128, 83, 72, 65, 86, 73, 65, 206, 83, 72, 65, 86, 69,
196, 83, 72, 65, 85, 128, 83, 72, 65, 84, 128, 83, 72, 65, 82, 85, 128,
83, 72, 65, 82, 213, 83, 72, 65, 82, 80, 128, 83, 72, 65, 82, 208, 83,
72, 65, 82, 75, 128, 83, 72, 65, 82, 65, 68, 193, 83, 72, 65, 82, 65,
128, 83, 72, 65, 82, 50, 128, 83, 72, 65, 82, 178, 83, 72, 65, 80, 73,
78, 71, 128, 83, 72, 65, 80, 69, 83, 128, 83, 72, 65, 80, 197, 83, 72,
65, 80, 128, 83, 72, 65, 78, 71, 128, 83, 72, 65, 78, 128, 83, 72, 65,
206, 83, 72, 65, 77, 82, 79, 67, 75, 128, 83, 72, 65, 76, 83, 72, 69, 76,
69, 84, 128, 83, 72, 65, 76, 76, 79, 215, 83, 72, 65, 75, 84, 73, 128,
83, 72, 65, 75, 73, 78, 71, 128, 83, 72, 65, 75, 73, 78, 199, 83, 72, 65,
75, 69, 82, 128, 83, 72, 65, 75, 128, 83, 72, 65, 73, 128, 83, 72, 65,
70, 84, 128, 83, 72, 65, 70, 212, 83, 72, 65, 68, 79, 87, 69, 196, 83,
72, 65, 68, 69, 196, 83, 72, 65, 68, 69, 128, 83, 72, 65, 68, 197, 83,
72, 65, 68, 68, 65, 128, 83, 72, 65, 68, 68, 193, 83, 72, 65, 68, 128,
83, 72, 65, 196, 83, 72, 65, 66, 54, 128, 83, 72, 65, 65, 128, 83, 72,
65, 54, 128, 83, 72, 65, 182, 83, 72, 65, 51, 128, 83, 72, 65, 179, 83,
71, 82, 193, 83, 71, 79, 210, 83, 71, 67, 128, 83, 71, 65, 215, 83, 71,
65, 194, 83, 71, 128, 83, 69, 89, 75, 128, 83, 69, 88, 84, 85, 76, 193,
83, 69, 88, 84, 73, 76, 69, 128, 83, 69, 88, 84, 65, 78, 84, 45, 54, 128,
83, 69, 88, 84, 65, 78, 84, 45, 53, 54, 128, 83, 69, 88, 84, 65, 78, 84,
45, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45, 52, 54, 128, 83, 69, 88, 84,
65, 78, 84, 45, 52, 53, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 52, 53,
128, 83, 69, 88, 84, 65, 78, 84, 45, 52, 128, 83, 69, 88, 84, 65, 78, 84,
45, 51, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 51, 53, 54, 128, 83, 69,
88, 84, 65, 78, 84, 45, 51, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45, 51,
52, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 51, 52, 53, 54, 128, 83, 69,
88, 84, 65, 78, 84, 45, 51, 52, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45,
51, 52, 128, 83, 69, 88, 84, 65, 78, 84, 45, 51, 128, 83, 69, 88, 84, 65,
78, 84, 45, 50, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 53, 54, 128,
83, 69, 88, 84, 65, 78, 84, 45, 50, 53, 128, 83, 69, 88, 84, 65, 78, 84,
45, 50, 52, 53, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 52, 53, 128,
83, 69, 88, 84, 65, 78, 84, 45, 50, 52, 128, 83, 69, 88, 84, 65, 78, 84,
45, 50, 51, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 51, 53, 54, 128,
83, 69, 88, 84, 65, 78, 84, 45, 50, 51, 53, 128, 83, 69, 88, 84, 65, 78,
84, 45, 50, 51, 52, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 51, 52,
53, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 51, 52, 53, 128, 83, 69,
88, 84, 65, 78, 84, 45, 50, 51, 52, 128, 83, 69, 88, 84, 65, 78, 84, 45,
50, 51, 128, 83, 69, 88, 84, 65, 78, 84, 45, 50, 128, 83, 69, 88, 84, 65,
78, 84, 45, 49, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 53, 54, 128,
83, 69, 88, 84, 65, 78, 84, 45, 49, 53, 128, 83, 69, 88, 84, 65, 78, 84,
45, 49, 52, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 52, 53, 54, 128,
83, 69, 88, 84, 65, 78, 84, 45, 49, 52, 53, 128, 83, 69, 88, 84, 65, 78,
84, 45, 49, 52, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 51, 54, 128, 83,
69, 88, 84, 65, 78, 84, 45, 49, 51, 53, 54, 128, 83, 69, 88, 84, 65, 78,
84, 45, 49, 51, 52, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 51, 52,
53, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 51, 52, 53, 128, 83, 69,
88, 84, 65, 78, 84, 45, 49, 51, 52, 128, 83, 69, 88, 84, 65, 78, 84, 45,
49, 51, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 54, 128, 83, 69, 88,
84, 65, 78, 84, 45, 49, 50, 53, 54, 128, 83, 69, 88, 84, 65, 78, 84, 45,
49, 50, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 52, 54, 128, 83,
69, 88, 84, 65, 78, 84, 45, 49, 50, 52, 53, 54, 128, 83, 69, 88, 84, 65,
78, 84, 45, 49, 50, 52, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50,
52, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 51, 54, 128, 83, 69, 88,
84, 65, 78, 84, 45, 49, 50, 51, 53, 54, 128, 83, 69, 88, 84, 65, 78, 84,
45, 49, 50, 51, 53, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 51, 52,
54, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 51, 52, 53, 128, 83, 69,
88, 84, 65, 78, 84, 45, 49, 50, 51, 52, 128, 83, 69, 88, 84, 65, 78, 84,
45, 49, 50, 51, 128, 83, 69, 88, 84, 65, 78, 84, 45, 49, 50, 128, 83, 69,
88, 84, 65, 78, 84, 45, 49, 128, 83, 69, 88, 84, 65, 78, 211, 83, 69, 87,
73, 78, 199, 83, 69, 86, 69, 82, 65, 78, 67, 69, 128, 83, 69, 86, 69, 78,
84, 89, 128, 83, 69, 86, 69, 78, 84, 217, 83, 69, 86, 69, 78, 84, 72,
128, 83, 69, 86, 69, 78, 84, 69, 69, 78, 128, 83, 69, 86, 69, 78, 84, 69,
69, 206, 83, 69, 86, 69, 78, 45, 84, 72, 73, 82, 84, 89, 128, 83, 69, 86,
69, 206, 83, 69, 85, 88, 128, 83, 69, 85, 78, 89, 65, 77, 128, 83, 69,
85, 65, 69, 81, 128, 83, 69, 84, 70, 79, 78, 128, 83, 69, 83, 84, 69, 82,
84, 73, 85, 211, 83, 69, 83, 81, 85, 73, 81, 85, 65, 68, 82, 65, 84, 69,
128, 83, 69, 83, 65, 77, 197, 83, 69, 82, 86, 73, 67, 197, 83, 69, 82,
73, 79, 85, 211, 83, 69, 82, 73, 70, 83, 128, 83, 69, 82, 73, 70, 211,
83, 69, 82, 73, 70, 128, 83, 69, 81, 85, 69, 78, 84, 73, 65, 76, 128, 83,
69, 81, 85, 69, 78, 67, 197, 83, 69, 80, 84, 85, 80, 76, 197, 83, 69, 80,
84, 69, 77, 66, 69, 82, 128, 83, 69, 80, 65, 82, 65, 84, 79, 82, 128, 83,
69, 80, 65, 82, 65, 84, 79, 210, 83, 69, 80, 65, 82, 65, 84, 69, 196, 83,
69, 78, 84, 79, 128, 83, 69, 78, 84, 73, 128, 83, 69, 78, 84, 65, 71, 79,
78, 128, 83, 69, 77, 85, 78, 67, 73, 193, 83, 69, 77, 75, 65, 84, 72,
128, 83, 69, 77, 75, 128, 83, 69, 77, 73, 86, 79, 87, 69, 204, 83, 69,
77, 73, 83, 79, 70, 212, 83, 69, 77, 73, 83, 69, 88, 84, 73, 76, 69, 128,
83, 69, 77, 73, 77, 73, 78, 73, 77, 193, 83, 69, 77, 73, 68, 73, 82, 69,
67, 212, 83, 69, 77, 73, 67, 79, 76, 79, 78, 128, 83, 69, 77, 73, 67, 79,
76, 79, 206, 83, 69, 77, 73, 67, 73, 82, 67, 85, 76, 65, 210, 83, 69, 77,
73, 67, 73, 82, 67, 76, 197, 83, 69, 77, 73, 66, 82, 69, 86, 73, 211, 83,
69, 77, 73, 45, 86, 79, 73, 67, 69, 196, 83, 69, 76, 70, 73, 69, 128, 83,
69, 76, 70, 128, 83, 69, 76, 69, 78, 65, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 57, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 57, 56, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 57, 55, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 57, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 57, 53, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 57, 52, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 57, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 57, 50, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 57, 49, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 57, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 57, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 56, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 56, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 56, 55, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 56, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 56, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 56, 52, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 56, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 56, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 56, 49, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 56, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 55, 57, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 55, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
55, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 55, 54, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 55, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
55, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 55, 51, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 55, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
55, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 55, 48, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54,
57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54, 56, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 54, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54,
54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54, 53, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 54, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54,
51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54, 50, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 54, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54,
48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 54, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 53, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 56,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 55, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 53, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 53,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 52, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 53, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 50,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 49, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 53, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 53, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 57, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 52, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 55, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 54, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 52, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 52, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 51, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 52, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 49, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 52, 48, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 51, 57, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 51, 56, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 51, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 51, 54, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 51, 53, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 51, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 51, 51, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 51, 50, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 51, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 51, 48, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 56, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 50, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 53, 54, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 50, 53, 53, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 50, 53, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 53,
51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 53, 50, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 50, 53, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 53, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 53, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 50, 52, 57, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 50, 52, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 52,
55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 52, 54, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 50, 52, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 52, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 52, 51, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 52, 50, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 50, 52, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50,
52, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 52, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 50, 51, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 51, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 51, 55, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 51, 54, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 50, 51, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50,
51, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 51, 51, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 50, 51, 50, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 50, 51, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 51, 48,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 51, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 50, 50, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50,
50, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 50, 55, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 50, 50, 54, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 50, 50, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 50, 52,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 50, 51, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 50, 50, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
50, 50, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 50, 48, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 50, 50, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 50, 49, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 49, 56,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 49, 55, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 50, 49, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
50, 49, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 49, 52, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 50, 49, 51, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 50, 49, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 49,
49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 49, 48, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 50, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
50, 48, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 48, 56, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 50, 48, 55, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 50, 48, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 48,
53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 48, 52, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 50, 48, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 50, 48, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 48, 49, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 48, 48, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 50, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 50, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 57, 57, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 57, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
57, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 57, 54, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 57, 53, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 57, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 57, 51,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 57, 50, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 57, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 57, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 57, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 56, 57, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 56, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 56, 55,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 56, 54, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 56, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 56, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 56, 51, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 49, 56, 50, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 56, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 56,
48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 56, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 55, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 55, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 55, 55, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 49, 55, 54, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 55, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 55,
52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 55, 51, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 49, 55, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 55, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 55, 48, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 55, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 54, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 54,
56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 54, 55, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 49, 54, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 54, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 54, 52, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 54, 51, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 54, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
54, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 54, 48, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 53, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 53, 56, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 53, 55, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 53, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
53, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 53, 52, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 53, 51, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 53, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 53, 49,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 53, 48, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 53, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
52, 57, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 52, 56, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 52, 55, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 52, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 52, 53,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 52, 52, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 52, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 52, 50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 52, 49, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 49, 52, 48, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 51, 57,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 51, 56, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 51, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 51, 54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 51, 53, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 49, 51, 52, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 51, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 51,
50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 51, 49, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 49, 51, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 50, 57, 128, 83,
69, 76, 69, 67, 84, 79, 82, 45, 49, 50, 56, 128, 83, 69, 76, 69, 67, 84,
79, 82, 45, 49, 50, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 50,
54, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 50, 53, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 49, 50, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 50, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 50, 50, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 50, 49, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 50, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
50, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 49, 57, 128, 83, 69, 76,
69, 67, 84, 79, 82, 45, 49, 49, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82,
45, 49, 49, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 49, 54, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 49, 53, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 49, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
49, 51, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 49, 50, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 49, 49, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 49, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 49, 128,
83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 48, 57, 128, 83, 69, 76, 69, 67,
84, 79, 82, 45, 49, 48, 56, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49,
48, 55, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 48, 54, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 48, 53, 128, 83, 69, 76, 69, 67, 84, 79,
82, 45, 49, 48, 52, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 48, 51,
128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 48, 50, 128, 83, 69, 76, 69,
67, 84, 79, 82, 45, 49, 48, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45,
49, 48, 48, 128, 83, 69, 76, 69, 67, 84, 79, 82, 45, 49, 48, 128, 83, 69,
76, 69, 67, 84, 79, 82, 45, 49, 128, 83, 69, 76, 69, 67, 84, 79, 82, 128,
83, 69, 76, 69, 67, 84, 79, 210, 83, 69, 76, 69, 67, 84, 69, 196, 83, 69,
73, 83, 77, 65, 128, 83, 69, 73, 83, 77, 193, 83, 69, 72, 128, 83, 69,
71, 79, 76, 128, 83, 69, 71, 78, 79, 128, 83, 69, 71, 77, 69, 78, 84, 69,
196, 83, 69, 71, 77, 69, 78, 84, 128, 83, 69, 69, 86, 128, 83, 69, 69,
78, 85, 128, 83, 69, 69, 78, 128, 83, 69, 69, 206, 83, 69, 69, 68, 76,
73, 78, 71, 128, 83, 69, 69, 45, 78, 79, 45, 69, 86, 73, 204, 83, 69, 68,
78, 65, 128, 83, 69, 67, 84, 79, 82, 128, 83, 69, 67, 84, 73, 79, 78,
128, 83, 69, 67, 84, 73, 79, 206, 83, 69, 67, 82, 69, 84, 128, 83, 69,
67, 65, 78, 84, 128, 83, 69, 66, 65, 84, 66, 69, 73, 212, 83, 69, 65, 84,
128, 83, 69, 65, 76, 128, 83, 69, 65, 71, 85, 76, 204, 83, 69, 45, 53,
128, 83, 69, 45, 52, 128, 83, 69, 45, 51, 128, 83, 68, 79, 78, 199, 83,
68, 128, 83, 67, 87, 65, 128, 83, 67, 82, 85, 80, 76, 69, 128, 83, 67,
82, 79, 76, 76, 128, 83, 67, 82, 73, 80, 84, 128, 83, 67, 82, 69, 87, 68,
82, 73, 86, 69, 82, 128, 83, 67, 82, 69, 69, 78, 128, 83, 67, 82, 69, 69,
206, 83, 67, 82, 69, 65, 77, 73, 78, 199, 83, 67, 79, 82, 80, 73, 85, 83,
128, 83, 67, 79, 82, 80, 73, 79, 78, 128, 83, 67, 79, 82, 69, 128, 83,
67, 79, 79, 84, 69, 82, 128, 83, 67, 73, 83, 83, 79, 82, 83, 128, 83, 67,
73, 128, 83, 67, 72, 87, 65, 128, 83, 67, 72, 87, 193, 83, 67, 72, 82,
79, 69, 68, 69, 82, 128, 83, 67, 72, 79, 79, 76, 128, 83, 67, 72, 79, 79,
204, 83, 67, 72, 79, 76, 65, 82, 128, 83, 67, 72, 69, 77, 193, 83, 67,
69, 80, 84, 69, 210, 83, 67, 65, 82, 70, 128, 83, 67, 65, 78, 68, 73, 67,
85, 83, 128, 83, 67, 65, 78, 68, 73, 67, 85, 211, 83, 67, 65, 206, 83,
67, 65, 76, 69, 83, 128, 83, 66, 85, 194, 83, 66, 82, 85, 204, 83, 65,
89, 73, 83, 201, 83, 65, 89, 65, 78, 78, 65, 128, 83, 65, 89, 128, 83,
65, 88, 79, 80, 72, 79, 78, 69, 128, 83, 65, 88, 73, 77, 65, 84, 65, 128,
83, 65, 87, 65, 78, 128, 83, 65, 87, 128, 83, 65, 86, 79, 85, 82, 73, 78,
199, 83, 65, 85, 82, 79, 80, 79, 68, 128, 83, 65, 85, 82, 65, 83, 72, 84,
82, 193, 83, 65, 85, 73, 76, 128, 83, 65, 85, 67, 69, 82, 128, 83, 65,
84, 85, 82, 78, 128, 83, 65, 84, 75, 65, 65, 78, 75, 85, 85, 128, 83, 65,
84, 75, 65, 65, 78, 128, 83, 65, 84, 69, 76, 76, 73, 84, 69, 128, 83, 65,
84, 69, 76, 76, 73, 84, 197, 83, 65, 84, 67, 72, 69, 76, 128, 83, 65, 84,
65, 78, 71, 65, 128, 83, 65, 83, 72, 128, 83, 65, 83, 65, 75, 128, 83,
65, 82, 73, 128, 83, 65, 82, 193, 83, 65, 82, 128, 83, 65, 81, 128, 83,
65, 80, 65, 128, 83, 65, 78, 89, 79, 79, 71, 193, 83, 65, 78, 89, 65, 75,
193, 83, 65, 78, 84, 73, 73, 77, 85, 128, 83, 65, 78, 83, 75, 82, 73,
212, 83, 65, 78, 78, 89, 65, 128, 83, 65, 78, 71, 65, 50, 128, 83, 65,
78, 68, 87, 73, 67, 72, 128, 83, 65, 78, 68, 72, 201, 83, 65, 78, 68, 65,
76, 128, 83, 65, 78, 65, 72, 128, 83, 65, 78, 128, 83, 65, 77, 89, 79,
203, 83, 65, 77, 86, 65, 84, 128, 83, 65, 77, 80, 73, 128, 83, 65, 77,
80, 72, 65, 79, 128, 83, 65, 77, 75, 65, 128, 83, 65, 77, 69, 75, 72,
128, 83, 65, 77, 69, 75, 200, 83, 65, 77, 66, 65, 128, 83, 65, 77, 65,
82, 73, 84, 65, 206, 83, 65, 77, 128, 83, 65, 76, 84, 73, 82, 69, 128,
83, 65, 76, 84, 73, 82, 197, 83, 65, 76, 84, 73, 76, 76, 79, 128, 83, 65,
76, 84, 45, 50, 128, 83, 65, 76, 84, 128, 83, 65, 76, 212, 83, 65, 76,
76, 65, 76, 76, 65, 72, 79, 213, 83, 65, 76, 76, 193, 83, 65, 76, 65,
205, 83, 65, 76, 65, 68, 128, 83, 65, 76, 65, 128, 83, 65, 76, 45, 65,
77, 77, 79, 78, 73, 65, 67, 128, 83, 65, 76, 128, 83, 65, 75, 84, 65,
128, 83, 65, 75, 79, 84, 128, 83, 65, 75, 73, 78, 128, 83, 65, 75, 72,
193, 83, 65, 75, 69, 85, 65, 69, 128, 83, 65, 75, 197, 83, 65, 74, 68,
65, 72, 128, 83, 65, 73, 76, 66, 79, 65, 84, 128, 83, 65, 73, 76, 128,
83, 65, 73, 75, 85, 82, 85, 128, 83, 65, 72, 128, 83, 65, 71, 73, 84, 84,
65, 82, 73, 85, 83, 128, 83, 65, 71, 65, 128, 83, 65, 71, 128, 83, 65,
199, 83, 65, 70, 72, 65, 128, 83, 65, 70, 69, 84, 217, 83, 65, 68, 72,
69, 128, 83, 65, 68, 72, 197, 83, 65, 68, 69, 128, 83, 65, 68, 128, 83,
65, 196, 83, 65, 67, 82, 73, 70, 73, 67, 73, 65, 204, 83, 65, 65, 73,
128, 83, 65, 65, 68, 72, 85, 128, 83, 65, 45, 73, 128, 83, 65, 45, 56,
128, 83, 65, 45, 55, 128, 83, 65, 45, 54, 128, 83, 65, 45, 53, 128, 83,
65, 45, 52, 128, 83, 65, 45, 51, 128, 83, 65, 45, 50, 128, 83, 65, 45,
49, 128, 83, 48, 52, 54, 128, 83, 48, 52, 53, 128, 83, 48, 52, 52, 128,
83, 48, 52, 51, 128, 83, 48, 52, 50, 128, 83, 48, 52, 49, 128, 83, 48,
52, 48, 128, 83, 48, 51, 57, 128, 83, 48, 51, 56, 128, 83, 48, 51, 55,
128, 83, 48, 51, 54, 128, 83, 48, 51, 53, 65, 128, 83, 48, 51, 53, 128,
83, 48, 51, 52, 128, 83, 48, 51, 51, 128, 83, 48, 51, 50, 128, 83, 48,
51, 49, 128, 83, 48, 51, 48, 128, 83, 48, 50, 57, 128, 83, 48, 50, 56,
128, 83, 48, 50, 55, 128, 83, 48, 50, 54, 66, 128, 83, 48, 50, 54, 65,
128, 83, 48, 50, 54, 128, 83, 48, 50, 53, 128, 83, 48, 50, 52, 128, 83,
48, 50, 51, 128, 83, 48, 50, 50, 128, 83, 48, 50, 49, 128, 83, 48, 50,
48, 128, 83, 48, 49, 57, 128, 83, 48, 49, 56, 128, 83, 48, 49, 55, 65,
128, 83, 48, 49, 55, 128, 83, 48, 49, 54, 128, 83, 48, 49, 53, 128, 83,
48, 49, 52, 66, 128, 83, 48, 49, 52, 65, 128, 83, 48, 49, 52, 128, 83,
48, 49, 51, 128, 83, 48, 49, 50, 128, 83, 48, 49, 49, 128, 83, 48, 49,
48, 128, 83, 48, 48, 57, 128, 83, 48, 48, 56, 128, 83, 48, 48, 55, 128,
83, 48, 48, 54, 65, 128, 83, 48, 48, 54, 128, 83, 48, 48, 53, 128, 83,
48, 48, 52, 128, 83, 48, 48, 51, 128, 83, 48, 48, 50, 65, 128, 83, 48,
48, 50, 128, 83, 48, 48, 49, 128, 83, 45, 87, 128, 83, 45, 83, 72, 65,
80, 69, 196, 82, 89, 89, 128, 82, 89, 88, 128, 82, 89, 84, 128, 82, 89,
82, 88, 128, 82, 89, 82, 128, 82, 89, 80, 128, 82, 87, 79, 79, 128, 82,
87, 79, 128, 82, 87, 73, 73, 128, 82, 87, 73, 128, 82, 87, 69, 69, 128,
82, 87, 69, 128, 82, 87, 65, 72, 65, 128, 82, 87, 65, 65, 128, 82, 87,
65, 128, 82, 85, 88, 128, 82, 85, 85, 66, 85, 82, 85, 128, 82, 85, 85,
128, 82, 85, 84, 128, 82, 85, 83, 83, 73, 65, 206, 82, 85, 83, 73, 128,
82, 85, 82, 88, 128, 82, 85, 82, 128, 82, 85, 80, 73, 73, 128, 82, 85,
80, 69, 197, 82, 85, 80, 128, 82, 85, 79, 88, 128, 82, 85, 79, 80, 128,
82, 85, 79, 128, 82, 85, 78, 79, 85, 84, 128, 82, 85, 78, 78, 73, 78,
199, 82, 85, 78, 78, 69, 82, 128, 82, 85, 78, 73, 195, 82, 85, 78, 128,
82, 85, 77, 201, 82, 85, 77, 65, 201, 82, 85, 77, 128, 82, 85, 205, 82,
85, 76, 69, 82, 128, 82, 85, 76, 69, 45, 68, 69, 76, 65, 89, 69, 68, 128,
82, 85, 76, 69, 128, 82, 85, 76, 65, 73, 128, 82, 85, 75, 75, 65, 75, 72,
65, 128, 82, 85, 73, 83, 128, 82, 85, 71, 66, 217, 82, 85, 68, 73, 77,
69, 78, 84, 193, 82, 85, 66, 76, 197, 82, 85, 194, 82, 85, 65, 128, 82,
85, 45, 54, 128, 82, 85, 45, 53, 128, 82, 85, 45, 52, 128, 82, 85, 45,
51, 128, 82, 85, 45, 50, 128, 82, 85, 45, 49, 128, 82, 84, 72, 65, 78,
199, 82, 84, 69, 128, 82, 84, 65, 71, 83, 128, 82, 84, 65, 71, 211, 82,
82, 89, 88, 128, 82, 82, 89, 84, 128, 82, 82, 89, 82, 88, 128, 82, 82,
89, 82, 128, 82, 82, 89, 80, 128, 82, 82, 85, 88, 128, 82, 82, 85, 85,
128, 82, 82, 85, 84, 128, 82, 82, 85, 82, 88, 128, 82, 82, 85, 82, 128,
82, 82, 85, 80, 128, 82, 82, 85, 79, 88, 128, 82, 82, 85, 79, 128, 82,
82, 85, 128, 82, 82, 82, 65, 128, 82, 82, 79, 88, 128, 82, 82, 79, 84,
128, 82, 82, 79, 80, 128, 82, 82, 79, 79, 128, 82, 82, 79, 128, 82, 82,
73, 73, 128, 82, 82, 73, 128, 82, 82, 69, 88, 128, 82, 82, 69, 84, 128,
82, 82, 69, 80, 128, 82, 82, 69, 72, 128, 82, 82, 69, 200, 82, 82, 69,
69, 128, 82, 82, 69, 128, 82, 82, 65, 88, 128, 82, 82, 65, 85, 128, 82,
82, 65, 73, 128, 82, 82, 65, 65, 128, 82, 79, 87, 66, 79, 65, 84, 128,
82, 79, 85, 78, 68, 69, 196, 82, 79, 85, 78, 68, 45, 84, 73, 80, 80, 69,
196, 82, 79, 84, 85, 78, 68, 65, 128, 82, 79, 84, 65, 84, 73, 79, 78, 83,
128, 82, 79, 84, 65, 84, 73, 79, 78, 45, 87, 65, 76, 76, 80, 76, 65, 78,
197, 82, 79, 84, 65, 84, 73, 79, 78, 45, 70, 76, 79, 79, 82, 80, 76, 65,
78, 197, 82, 79, 84, 65, 84, 73, 79, 78, 128, 82, 79, 84, 65, 84, 73, 79,
206, 82, 79, 84, 65, 84, 69, 196, 82, 79, 83, 72, 128, 82, 79, 83, 69,
84, 84, 69, 128, 82, 79, 83, 69, 128, 82, 79, 79, 84, 128, 82, 79, 79,
83, 84, 69, 82, 128, 82, 79, 79, 77, 128, 82, 79, 79, 75, 128, 82, 79,
79, 203, 82, 79, 79, 70, 128, 82, 79, 77, 65, 78, 73, 65, 206, 82, 79,
77, 65, 206, 82, 79, 77, 128, 82, 79, 76, 76, 73, 78, 199, 82, 79, 76,
76, 69, 210, 82, 79, 76, 76, 69, 68, 45, 85, 208, 82, 79, 76, 204, 82,
79, 72, 73, 78, 71, 89, 193, 82, 79, 71, 128, 82, 79, 196, 82, 79, 67,
75, 69, 84, 128, 82, 79, 67, 203, 82, 79, 67, 128, 82, 79, 66, 79, 212,
82, 79, 66, 65, 84, 128, 82, 79, 65, 83, 84, 69, 196, 82, 79, 65, 82,
128, 82, 79, 65, 128, 82, 79, 45, 54, 128, 82, 79, 45, 53, 128, 82, 79,
45, 52, 128, 82, 79, 45, 51, 128, 82, 79, 45, 50, 128, 82, 79, 45, 49,
128, 82, 78, 89, 73, 78, 199, 82, 78, 79, 79, 78, 128, 82, 78, 79, 79,
206, 82, 78, 65, 205, 82, 77, 84, 128, 82, 76, 79, 128, 82, 76, 77, 128,
82, 76, 73, 128, 82, 76, 69, 128, 82, 74, 69, 211, 82, 74, 69, 128, 82,
74, 197, 82, 73, 84, 85, 65, 76, 128, 82, 73, 84, 84, 79, 82, 85, 128,
82, 73, 84, 83, 73, 128, 82, 73, 83, 73, 78, 199, 82, 73, 83, 72, 128,
82, 73, 82, 65, 128, 82, 73, 80, 80, 76, 197, 82, 73, 80, 128, 82, 73,
78, 71, 211, 82, 73, 78, 71, 73, 78, 199, 82, 73, 78, 71, 69, 196, 82,
73, 78, 70, 79, 82, 90, 65, 78, 68, 79, 128, 82, 73, 206, 82, 73, 77, 71,
66, 65, 128, 82, 73, 77, 128, 82, 73, 75, 82, 73, 75, 128, 82, 73, 71,
86, 69, 68, 73, 195, 82, 73, 71, 72, 84, 87, 65, 82, 68, 83, 128, 82, 73,
71, 72, 84, 72, 65, 78, 196, 82, 73, 71, 72, 84, 45, 84, 79, 45, 76, 69,
70, 212, 82, 73, 71, 72, 84, 45, 83, 73, 68, 197, 82, 73, 71, 72, 84, 45,
83, 72, 65, 68, 79, 87, 69, 196, 82, 73, 71, 72, 84, 45, 83, 72, 65, 68,
69, 196, 82, 73, 71, 72, 84, 45, 80, 79, 73, 78, 84, 73, 78, 199, 82, 73,
71, 72, 84, 45, 76, 73, 71, 72, 84, 69, 196, 82, 73, 71, 72, 84, 45, 72,
65, 78, 68, 69, 196, 82, 73, 71, 72, 84, 45, 72, 65, 78, 196, 82, 73, 71,
72, 84, 45, 70, 65, 67, 73, 78, 199, 82, 73, 71, 72, 84, 128, 82, 73, 70,
76, 69, 128, 82, 73, 69, 85, 76, 45, 89, 69, 83, 73, 69, 85, 78, 71, 128,
82, 73, 69, 85, 76, 45, 89, 69, 79, 82, 73, 78, 72, 73, 69, 85, 72, 45,
72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 89, 69, 79, 82, 73, 78,
72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 84, 73, 75, 69, 85, 84,
45, 72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 84, 73, 75, 69, 85,
84, 128, 82, 73, 69, 85, 76, 45, 84, 72, 73, 69, 85, 84, 72, 128, 82, 73,
69, 85, 76, 45, 83, 83, 65, 78, 71, 84, 73, 75, 69, 85, 84, 128, 82, 73,
69, 85, 76, 45, 83, 83, 65, 78, 71, 83, 73, 79, 83, 128, 82, 73, 69, 85,
76, 45, 83, 83, 65, 78, 71, 80, 73, 69, 85, 80, 128, 82, 73, 69, 85, 76,
45, 83, 83, 65, 78, 71, 75, 73, 89, 69, 79, 75, 128, 82, 73, 69, 85, 76,
45, 83, 73, 79, 83, 128, 82, 73, 69, 85, 76, 45, 80, 73, 69, 85, 80, 45,
84, 73, 75, 69, 85, 84, 128, 82, 73, 69, 85, 76, 45, 80, 73, 69, 85, 80,
45, 83, 73, 79, 83, 128, 82, 73, 69, 85, 76, 45, 80, 73, 69, 85, 80, 45,
80, 72, 73, 69, 85, 80, 72, 128, 82, 73, 69, 85, 76, 45, 80, 73, 69, 85,
80, 45, 72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 80, 73, 69, 85,
80, 128, 82, 73, 69, 85, 76, 45, 80, 72, 73, 69, 85, 80, 72, 128, 82, 73,
69, 85, 76, 45, 80, 65, 78, 83, 73, 79, 83, 128, 82, 73, 69, 85, 76, 45,
78, 73, 69, 85, 78, 128, 82, 73, 69, 85, 76, 45, 77, 73, 69, 85, 77, 45,
83, 73, 79, 83, 128, 82, 73, 69, 85, 76, 45, 77, 73, 69, 85, 77, 45, 75,
73, 89, 69, 79, 75, 128, 82, 73, 69, 85, 76, 45, 77, 73, 69, 85, 77, 45,
72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 77, 73, 69, 85, 77, 128,
82, 73, 69, 85, 76, 45, 75, 73, 89, 69, 79, 75, 45, 83, 73, 79, 83, 128,
82, 73, 69, 85, 76, 45, 75, 73, 89, 69, 79, 75, 45, 72, 73, 69, 85, 72,
128, 82, 73, 69, 85, 76, 45, 75, 73, 89, 69, 79, 75, 128, 82, 73, 69, 85,
76, 45, 75, 65, 80, 89, 69, 79, 85, 78, 80, 73, 69, 85, 80, 128, 82, 73,
69, 85, 76, 45, 72, 73, 69, 85, 72, 128, 82, 73, 69, 85, 76, 45, 67, 73,
69, 85, 67, 128, 82, 73, 69, 85, 204, 82, 73, 69, 76, 128, 82, 73, 69,
69, 128, 82, 73, 67, 75, 83, 72, 65, 87, 128, 82, 73, 67, 69, 77, 128,
82, 73, 67, 69, 128, 82, 73, 67, 197, 82, 73, 66, 66, 79, 78, 128, 82,
73, 66, 66, 79, 206, 82, 73, 65, 204, 82, 73, 45, 55, 128, 82, 73, 45,
54, 128, 82, 73, 45, 53, 128, 82, 73, 45, 52, 128, 82, 73, 45, 51, 128,
82, 73, 45, 50, 128, 82, 73, 45, 49, 128, 82, 72, 79, 84, 73, 195, 82,
72, 79, 128, 82, 72, 207, 82, 72, 73, 78, 79, 67, 69, 82, 79, 83, 128,
82, 72, 65, 128, 82, 72, 128, 82, 71, 89, 73, 78, 71, 83, 128, 82, 71,
89, 65, 78, 128, 82, 71, 89, 193, 82, 69, 86, 79, 76, 86, 73, 78, 199,
82, 69, 86, 79, 76, 85, 84, 73, 79, 78, 128, 82, 69, 86, 77, 65, 128, 82,
69, 86, 73, 65, 128, 82, 69, 86, 69, 82, 83, 69, 68, 45, 83, 67, 72, 87,
65, 128, 82, 69, 86, 69, 82, 83, 69, 68, 128, 82, 69, 86, 69, 82, 83, 69,
196, 82, 69, 86, 69, 82, 83, 197, 82, 69, 85, 88, 128, 82, 69, 85, 128,
82, 69, 84, 85, 82, 78, 128, 82, 69, 84, 85, 82, 206, 82, 69, 84, 82, 79,
70, 76, 69, 216, 82, 69, 84, 82, 69, 65, 84, 128, 82, 69, 84, 79, 82, 84,
128, 82, 69, 83, 85, 80, 73, 78, 85, 83, 128, 82, 69, 83, 84, 82, 79, 79,
77, 128, 82, 69, 83, 84, 82, 73, 67, 84, 69, 196, 82, 69, 83, 84, 128,
82, 69, 83, 80, 79, 78, 83, 69, 128, 82, 69, 83, 79, 85, 82, 67, 69, 128,
82, 69, 83, 79, 76, 85, 84, 73, 79, 78, 128, 82, 69, 83, 73, 83, 84, 65,
78, 67, 69, 128, 82, 69, 83, 73, 68, 69, 78, 67, 69, 128, 82, 69, 83, 72,
45, 65, 89, 73, 78, 45, 68, 65, 76, 69, 84, 72, 128, 82, 69, 83, 72, 45,
65, 89, 73, 78, 128, 82, 69, 83, 200, 82, 69, 82, 69, 78, 71, 71, 65, 78,
128, 82, 69, 82, 69, 75, 65, 78, 128, 82, 69, 80, 82, 69, 83, 69, 78, 84,
128, 82, 69, 80, 76, 65, 67, 69, 77, 69, 78, 212, 82, 69, 80, 72, 65,
128, 82, 69, 80, 72, 128, 82, 69, 80, 69, 84, 73, 84, 73, 79, 206, 82,
69, 80, 69, 65, 84, 69, 196, 82, 69, 80, 69, 65, 84, 128, 82, 69, 80, 69,
65, 212, 82, 69, 80, 65, 89, 65, 128, 82, 69, 80, 65, 128, 82, 69, 80,
193, 82, 69, 78, 84, 79, 71, 69, 78, 128, 82, 69, 78, 128, 82, 69, 206,
82, 69, 77, 85, 128, 82, 69, 77, 73, 78, 68, 69, 210, 82, 69, 77, 69, 68,
89, 128, 82, 69, 76, 73, 71, 73, 79, 78, 128, 82, 69, 76, 73, 69, 86, 69,
196, 82, 69, 76, 69, 65, 83, 69, 128, 82, 69, 76, 65, 88, 69, 68, 128,
82, 69, 76, 65, 84, 73, 79, 78, 65, 204, 82, 69, 76, 65, 84, 73, 79, 78,
128, 82, 69, 76, 65, 65, 128, 82, 69, 74, 65, 78, 199, 82, 69, 73, 87,
65, 128, 82, 69, 73, 196, 82, 69, 73, 128, 82, 69, 71, 85, 76, 85, 83,
45, 52, 128, 82, 69, 71, 85, 76, 85, 83, 45, 51, 128, 82, 69, 71, 85, 76,
85, 83, 45, 50, 128, 82, 69, 71, 85, 76, 85, 83, 128, 82, 69, 71, 85, 76,
85, 211, 82, 69, 71, 73, 83, 84, 69, 82, 69, 196, 82, 69, 71, 73, 79, 78,
65, 204, 82, 69, 71, 73, 65, 45, 50, 128, 82, 69, 71, 73, 65, 128, 82,
69, 70, 79, 82, 77, 69, 196, 82, 69, 70, 69, 82, 69, 78, 67, 197, 82, 69,
68, 85, 80, 76, 73, 67, 65, 84, 73, 79, 78, 128, 82, 69, 67, 89, 67, 76,
73, 78, 199, 82, 69, 67, 89, 67, 76, 69, 196, 82, 69, 67, 84, 73, 76, 73,
78, 69, 65, 210, 82, 69, 67, 84, 65, 78, 71, 85, 76, 65, 210, 82, 69, 67,
84, 65, 78, 71, 76, 69, 128, 82, 69, 67, 84, 65, 78, 71, 76, 197, 82, 69,
67, 82, 69, 65, 84, 73, 79, 78, 65, 204, 82, 69, 67, 79, 82, 68, 73, 78,
199, 82, 69, 67, 79, 82, 68, 69, 82, 128, 82, 69, 67, 79, 82, 68, 128,
82, 69, 67, 79, 82, 196, 82, 69, 67, 73, 84, 65, 84, 73, 86, 197, 82, 69,
67, 69, 80, 84, 73, 86, 197, 82, 69, 67, 69, 73, 86, 69, 82, 128, 82, 69,
67, 69, 73, 86, 69, 210, 82, 69, 67, 69, 73, 80, 84, 128, 82, 69, 65, 76,
71, 65, 82, 45, 50, 128, 82, 69, 65, 76, 71, 65, 82, 128, 82, 69, 65, 72,
77, 85, 75, 128, 82, 69, 65, 68, 73, 78, 199, 82, 69, 65, 67, 72, 128,
82, 69, 45, 52, 128, 82, 69, 45, 51, 128, 82, 69, 45, 50, 128, 82, 69,
45, 49, 128, 82, 68, 207, 82, 68, 69, 204, 82, 66, 65, 83, 193, 82, 65,
90, 79, 82, 128, 82, 65, 89, 83, 128, 82, 65, 89, 211, 82, 65, 89, 65,
78, 78, 65, 128, 82, 65, 84, 73, 79, 128, 82, 65, 84, 72, 65, 128, 82,
65, 84, 72, 193, 82, 65, 84, 65, 128, 82, 65, 84, 128, 82, 65, 83, 87,
65, 68, 73, 128, 82, 65, 83, 79, 85, 204, 82, 65, 83, 72, 65, 128, 82,
65, 81, 128, 82, 65, 80, 73, 83, 77, 65, 128, 82, 65, 78, 71, 197, 82,
65, 78, 65, 128, 82, 65, 78, 128, 82, 65, 77, 211, 82, 65, 77, 66, 65,
84, 128, 82, 65, 75, 72, 65, 78, 71, 128, 82, 65, 75, 65, 65, 82, 65, 65,
78, 83, 65, 89, 65, 128, 82, 65, 73, 83, 73, 78, 199, 82, 65, 73, 83, 69,
68, 128, 82, 65, 73, 83, 69, 196, 82, 65, 73, 78, 66, 79, 87, 128, 82,
65, 73, 76, 87, 65, 89, 128, 82, 65, 73, 76, 87, 65, 217, 82, 65, 73, 76,
128, 82, 65, 73, 68, 207, 82, 65, 73, 68, 65, 128, 82, 65, 72, 77, 65,
84, 85, 76, 76, 65, 200, 82, 65, 72, 128, 82, 65, 70, 69, 128, 82, 65,
69, 77, 128, 82, 65, 68, 73, 79, 65, 67, 84, 73, 86, 197, 82, 65, 68, 73,
79, 128, 82, 65, 68, 73, 207, 82, 65, 68, 201, 82, 65, 68, 128, 82, 65,
196, 82, 65, 67, 81, 85, 69, 212, 82, 65, 67, 73, 78, 71, 128, 82, 65,
67, 73, 78, 199, 82, 65, 67, 67, 79, 79, 78, 128, 82, 65, 66, 66, 73, 84,
128, 82, 65, 66, 66, 73, 212, 82, 65, 66, 128, 82, 65, 65, 73, 128, 82,
65, 51, 128, 82, 65, 50, 128, 82, 65, 45, 75, 65, 82, 65, 128, 82, 65,
45, 52, 128, 82, 65, 45, 51, 128, 82, 65, 45, 50, 128, 82, 65, 45, 49,
128, 82, 48, 50, 57, 128, 82, 48, 50, 56, 128, 82, 48, 50, 55, 128, 82,
48, 50, 54, 128, 82, 48, 50, 53, 128, 82, 48, 50, 52, 128, 82, 48, 50,
51, 128, 82, 48, 50, 50, 128, 82, 48, 50, 49, 128, 82, 48, 50, 48, 128,
82, 48, 49, 57, 128, 82, 48, 49, 56, 128, 82, 48, 49, 55, 128, 82, 48,
49, 54, 65, 128, 82, 48, 49, 54, 128, 82, 48, 49, 53, 128, 82, 48, 49,
52, 128, 82, 48, 49, 51, 128, 82, 48, 49, 50, 128, 82, 48, 49, 49, 128,
82, 48, 49, 48, 65, 128, 82, 48, 49, 48, 128, 82, 48, 48, 57, 128, 82,
48, 48, 56, 128, 82, 48, 48, 55, 128, 82, 48, 48, 54, 128, 82, 48, 48,
53, 128, 82, 48, 48, 52, 128, 82, 48, 48, 51, 66, 128, 82, 48, 48, 51,
65, 128, 82, 48, 48, 51, 128, 82, 48, 48, 50, 65, 128, 82, 48, 48, 50,
128, 82, 48, 48, 49, 128, 82, 45, 67, 82, 69, 197, 81, 89, 88, 128, 81,
89, 85, 128, 81, 89, 84, 128, 81, 89, 82, 88, 128, 81, 89, 82, 128, 81,
89, 80, 128, 81, 89, 79, 128, 81, 89, 73, 128, 81, 89, 69, 69, 128, 81,
89, 69, 128, 81, 89, 65, 65, 128, 81, 89, 65, 128, 81, 89, 128, 81, 87,
73, 128, 81, 87, 69, 69, 128, 81, 87, 69, 128, 81, 87, 65, 65, 128, 81,
87, 65, 128, 81, 85, 88, 128, 81, 85, 86, 128, 81, 85, 85, 86, 128, 81,
85, 85, 128, 81, 85, 84, 128, 81, 85, 83, 72, 83, 72, 65, 89, 65, 128,
81, 85, 82, 88, 128, 81, 85, 82, 128, 81, 85, 80, 128, 81, 85, 79, 88,
128, 81, 85, 79, 84, 197, 81, 85, 79, 84, 65, 84, 73, 79, 206, 81, 85,
79, 84, 128, 81, 85, 79, 80, 128, 81, 85, 79, 128, 81, 85, 75, 128, 81,
85, 73, 78, 84, 73, 76, 69, 128, 81, 85, 73, 78, 84, 69, 83, 83, 69, 78,
67, 69, 128, 81, 85, 73, 78, 68, 73, 67, 69, 83, 73, 77, 193, 81, 85, 73,
78, 67, 85, 78, 88, 128, 81, 85, 73, 78, 65, 82, 73, 85, 211, 81, 85, 73,
76, 212, 81, 85, 73, 76, 76, 128, 81, 85, 73, 67, 203, 81, 85, 73, 128,
81, 85, 70, 128, 81, 85, 69, 83, 84, 73, 79, 78, 69, 196, 81, 85, 69, 83,
84, 73, 79, 78, 128, 81, 85, 69, 83, 84, 73, 79, 206, 81, 85, 69, 69, 78,
128, 81, 85, 69, 69, 206, 81, 85, 69, 128, 81, 85, 66, 85, 84, 83, 128,
81, 85, 65, 84, 69, 82, 78, 73, 79, 206, 81, 85, 65, 82, 84, 69, 82, 83,
128, 81, 85, 65, 82, 84, 69, 82, 211, 81, 85, 65, 82, 84, 69, 82, 128,
81, 85, 65, 78, 84, 73, 84, 217, 81, 85, 65, 68, 82, 85, 80, 76, 197, 81,
85, 65, 68, 82, 65, 78, 84, 128, 81, 85, 65, 68, 82, 65, 78, 212, 81, 85,
65, 68, 67, 79, 76, 79, 78, 128, 81, 85, 65, 68, 128, 81, 85, 65, 196,
81, 85, 65, 128, 81, 85, 128, 81, 208, 81, 79, 88, 128, 81, 79, 84, 128,
81, 79, 80, 72, 128, 81, 79, 80, 65, 128, 81, 79, 80, 128, 81, 79, 79,
128, 81, 79, 207, 81, 79, 70, 128, 81, 79, 198, 81, 79, 65, 128, 81, 79,
128, 81, 78, 128, 81, 73, 88, 128, 81, 73, 84, 83, 65, 128, 81, 73, 84,
128, 81, 73, 80, 128, 81, 73, 73, 128, 81, 73, 70, 128, 81, 73, 69, 88,
128, 81, 73, 69, 84, 128, 81, 73, 69, 80, 128, 81, 73, 69, 128, 81, 73,
128, 81, 72, 87, 73, 128, 81, 72, 87, 69, 69, 128, 81, 72, 87, 69, 128,
81, 72, 87, 65, 65, 128, 81, 72, 87, 65, 128, 81, 72, 85, 128, 81, 72,
79, 80, 72, 128, 81, 72, 79, 128, 81, 72, 73, 128, 81, 72, 69, 69, 128,
81, 72, 69, 128, 81, 72, 65, 85, 128, 81, 72, 65, 65, 128, 81, 72, 65,
128, 81, 71, 65, 128, 81, 69, 84, 65, 78, 65, 128, 81, 69, 69, 128, 81,
69, 128, 81, 65, 89, 128, 81, 65, 85, 128, 81, 65, 84, 65, 78, 128, 81,
65, 82, 78, 69, 217, 81, 65, 82, 128, 81, 65, 81, 128, 81, 65, 80, 72,
128, 81, 65, 77, 65, 84, 83, 128, 81, 65, 77, 65, 84, 211, 81, 65, 76,
193, 81, 65, 73, 82, 84, 72, 82, 65, 128, 81, 65, 73, 128, 81, 65, 70,
128, 81, 65, 198, 81, 65, 68, 77, 65, 128, 81, 65, 65, 73, 128, 81, 65,
65, 70, 85, 128, 81, 65, 65, 70, 128, 81, 48, 48, 55, 128, 81, 48, 48,
54, 128, 81, 48, 48, 53, 128, 81, 48, 48, 52, 128, 81, 48, 48, 51, 128,
81, 48, 48, 50, 128, 81, 48, 48, 49, 128, 80, 90, 128, 80, 89, 88, 128,
80, 89, 84, 128, 80, 89, 82, 88, 128, 80, 89, 82, 128, 80, 89, 80, 128,
80, 87, 79, 89, 128, 80, 87, 79, 79, 128, 80, 87, 79, 128, 80, 87, 207,
80, 87, 73, 73, 128, 80, 87, 73, 128, 80, 87, 69, 69, 128, 80, 87, 69,
128, 80, 87, 65, 65, 128, 80, 87, 128, 80, 86, 128, 80, 85, 90, 90, 76,
197, 80, 85, 88, 128, 80, 85, 85, 84, 128, 80, 85, 85, 128, 80, 85, 84,
82, 69, 70, 65, 67, 84, 73, 79, 78, 128, 80, 85, 84, 128, 80, 85, 212,
80, 85, 83, 72, 80, 73, 78, 128, 80, 85, 83, 72, 80, 73, 75, 65, 128, 80,
85, 83, 72, 73, 78, 199, 80, 85, 82, 88, 128, 80, 85, 82, 83, 69, 128,
80, 85, 82, 80, 76, 197, 80, 85, 82, 78, 65, 77, 65, 128, 80, 85, 82, 73,
84, 89, 128, 80, 85, 82, 73, 70, 89, 128, 80, 85, 82, 128, 80, 85, 81,
128, 80, 85, 80, 128, 80, 85, 79, 88, 128, 80, 85, 79, 80, 128, 80, 85,
79, 128, 80, 85, 78, 71, 65, 65, 77, 128, 80, 85, 78, 71, 128, 80, 85,
78, 67, 84, 85, 211, 80, 85, 78, 67, 84, 85, 65, 84, 73, 79, 78, 128, 80,
85, 78, 67, 84, 85, 65, 84, 73, 79, 206, 80, 85, 77, 80, 128, 80, 85, 77,
128, 80, 85, 70, 70, 69, 68, 128, 80, 85, 69, 128, 80, 85, 67, 75, 128,
80, 85, 66, 76, 73, 195, 80, 85, 194, 80, 85, 65, 81, 128, 80, 85, 65,
69, 128, 80, 85, 65, 67, 72, 85, 197, 80, 85, 50, 128, 80, 85, 49, 128,
80, 85, 128, 80, 84, 72, 65, 72, 193, 80, 84, 69, 128, 80, 83, 73, 76,
201, 80, 83, 73, 70, 73, 83, 84, 79, 83, 89, 78, 65, 71, 77, 65, 128, 80,
83, 73, 70, 73, 83, 84, 79, 80, 65, 82, 65, 75, 65, 76, 69, 83, 77, 65,
128, 80, 83, 73, 70, 73, 83, 84, 79, 206, 80, 83, 73, 70, 73, 83, 84, 79,
76, 89, 71, 73, 83, 77, 65, 128, 80, 83, 73, 128, 80, 83, 65, 76, 84, 69,
210, 80, 83, 128, 80, 82, 79, 86, 69, 128, 80, 82, 79, 84, 79, 86, 65,
82, 89, 211, 80, 82, 79, 84, 79, 211, 80, 82, 79, 84, 69, 67, 84, 69,
196, 80, 82, 79, 83, 71, 69, 71, 82, 65, 77, 77, 69, 78, 73, 128, 80, 82,
79, 83, 69, 82, 80, 73, 78, 65, 128, 80, 82, 79, 80, 79, 82, 84, 73, 79,
78, 65, 204, 80, 82, 79, 80, 79, 82, 84, 73, 79, 78, 128, 80, 82, 79, 80,
69, 82, 84, 217, 80, 82, 79, 80, 69, 76, 76, 69, 210, 80, 82, 79, 79, 70,
128, 80, 82, 79, 76, 79, 78, 71, 69, 196, 80, 82, 79, 76, 65, 84, 73, 79,
78, 197, 80, 82, 79, 74, 69, 67, 84, 79, 82, 128, 80, 82, 79, 74, 69, 67,
84, 73, 86, 69, 128, 80, 82, 79, 74, 69, 67, 84, 73, 79, 78, 128, 80, 82,
79, 72, 73, 66, 73, 84, 69, 196, 80, 82, 79, 71, 82, 69, 83, 83, 128, 80,
82, 79, 71, 82, 65, 205, 80, 82, 79, 70, 79, 85, 78, 68, 128, 80, 82, 79,
68, 85, 67, 84, 128, 80, 82, 79, 68, 85, 67, 212, 80, 82, 79, 66, 73, 78,
199, 80, 82, 73, 86, 65, 84, 69, 128, 80, 82, 73, 86, 65, 84, 197, 80,
82, 73, 86, 65, 67, 217, 80, 82, 73, 83, 72, 84, 72, 65, 77, 65, 84, 82,
193, 80, 82, 73, 78, 84, 83, 128, 80, 82, 73, 78, 84, 69, 82, 128, 80,
82, 73, 78, 84, 69, 210, 80, 82, 73, 78, 84, 128, 80, 82, 73, 78, 212,
80, 82, 73, 78, 67, 69, 83, 83, 128, 80, 82, 73, 78, 67, 69, 128, 80, 82,
73, 77, 69, 128, 80, 82, 73, 77, 197, 80, 82, 69, 86, 73, 79, 85, 211,
80, 82, 69, 84, 90, 69, 76, 128, 80, 82, 69, 83, 83, 69, 196, 80, 82, 69,
83, 69, 84, 128, 80, 82, 69, 83, 69, 78, 84, 65, 84, 73, 79, 206, 80, 82,
69, 83, 67, 82, 73, 80, 84, 73, 79, 206, 80, 82, 69, 80, 79, 78, 68, 69,
82, 65, 78, 67, 69, 128, 80, 82, 69, 78, 75, 72, 65, 128, 80, 82, 69, 71,
78, 65, 78, 212, 80, 82, 69, 70, 73, 88, 69, 196, 80, 82, 69, 70, 65, 67,
197, 80, 82, 69, 67, 73, 80, 73, 84, 65, 84, 69, 128, 80, 82, 69, 67, 69,
68, 73, 78, 199, 80, 82, 69, 67, 69, 68, 69, 83, 128, 80, 82, 69, 67, 69,
68, 69, 211, 80, 82, 69, 67, 69, 68, 69, 196, 80, 82, 69, 67, 69, 68, 69,
128, 80, 82, 69, 67, 69, 68, 197, 80, 82, 65, 89, 69, 210, 80, 82, 65,
77, 45, 80, 73, 73, 128, 80, 82, 65, 77, 45, 80, 73, 201, 80, 82, 65, 77,
45, 77, 85, 79, 89, 128, 80, 82, 65, 77, 45, 77, 85, 79, 217, 80, 82, 65,
77, 45, 66, 85, 79, 78, 128, 80, 82, 65, 77, 45, 66, 85, 79, 206, 80, 82,
65, 77, 45, 66, 69, 73, 128, 80, 82, 65, 77, 45, 66, 69, 201, 80, 82, 65,
77, 128, 80, 82, 65, 205, 80, 82, 128, 80, 80, 86, 128, 80, 80, 77, 128,
80, 80, 65, 128, 80, 79, 89, 128, 80, 79, 88, 128, 80, 79, 87, 69, 82,
211, 80, 79, 87, 69, 82, 128, 80, 79, 87, 69, 210, 80, 79, 87, 68, 69,
82, 69, 196, 80, 79, 87, 68, 69, 82, 128, 80, 79, 85, 78, 196, 80, 79,
85, 76, 84, 82, 217, 80, 79, 85, 67, 72, 128, 80, 79, 84, 84, 69, 196,
80, 79, 84, 65, 84, 79, 128, 80, 79, 84, 65, 66, 76, 197, 80, 79, 212,
80, 79, 83, 84, 80, 79, 83, 73, 84, 73, 79, 206, 80, 79, 83, 84, 66, 79,
88, 128, 80, 79, 83, 84, 65, 204, 80, 79, 83, 84, 128, 80, 79, 83, 212,
80, 79, 83, 83, 69, 83, 83, 73, 79, 78, 128, 80, 79, 83, 83, 69, 83, 83,
73, 79, 206, 80, 79, 83, 73, 84, 73, 79, 78, 83, 128, 80, 79, 83, 73, 84,
73, 79, 78, 128, 80, 79, 83, 69, 73, 68, 79, 78, 128, 80, 79, 82, 84, 65,
66, 76, 197, 80, 79, 82, 82, 69, 67, 84, 85, 83, 128, 80, 79, 82, 82, 69,
67, 84, 85, 211, 80, 79, 80, 80, 73, 78, 199, 80, 79, 80, 80, 69, 82,
128, 80, 79, 80, 67, 79, 82, 78, 128, 80, 79, 80, 128, 80, 79, 208, 80,
79, 79, 68, 76, 69, 128, 80, 79, 79, 128, 80, 79, 78, 68, 79, 128, 80,
79, 206, 80, 79, 77, 77, 69, 69, 128, 80, 79, 77, 77, 69, 197, 80, 79,
76, 79, 128, 80, 79, 76, 73, 83, 72, 128, 80, 79, 76, 73, 67, 197, 80,
79, 76, 201, 80, 79, 76, 69, 128, 80, 79, 76, 197, 80, 79, 75, 82, 89,
84, 73, 69, 128, 80, 79, 75, 79, 74, 73, 128, 80, 79, 73, 78, 84, 211,
80, 79, 73, 78, 84, 79, 128, 80, 79, 73, 78, 84, 69, 82, 128, 80, 79, 73,
78, 84, 69, 196, 80, 79, 73, 78, 84, 128, 80, 79, 73, 78, 212, 80, 79,
69, 84, 82, 217, 80, 79, 69, 84, 73, 195, 80, 79, 68, 65, 84, 85, 83,
128, 80, 79, 67, 75, 69, 212, 80, 79, 65, 128, 80, 79, 128, 80, 207, 80,
78, 69, 85, 77, 65, 84, 65, 128, 80, 76, 85, 84, 207, 80, 76, 85, 84, 65,
128, 80, 76, 85, 83, 45, 77, 73, 78, 85, 211, 80, 76, 85, 83, 128, 80,
76, 85, 82, 65, 76, 128, 80, 76, 85, 78, 71, 69, 82, 128, 80, 76, 85, 77,
69, 196, 80, 76, 85, 77, 128, 80, 76, 85, 75, 128, 80, 76, 85, 71, 128,
80, 76, 85, 128, 80, 76, 79, 87, 128, 80, 76, 79, 80, 72, 85, 128, 80,
76, 72, 65, 85, 128, 80, 76, 69, 84, 72, 82, 79, 78, 128, 80, 76, 69, 65,
68, 73, 78, 199, 80, 76, 68, 128, 80, 76, 65, 89, 73, 78, 199, 80, 76,
65, 84, 69, 128, 80, 76, 65, 83, 84, 73, 67, 83, 128, 80, 76, 65, 78, 84,
128, 80, 76, 65, 78, 69, 84, 128, 80, 76, 65, 78, 69, 128, 80, 76, 65,
78, 67, 203, 80, 76, 65, 75, 128, 80, 76, 65, 71, 73, 79, 211, 80, 76,
65, 67, 69, 72, 79, 76, 68, 69, 82, 128, 80, 76, 65, 67, 69, 72, 79, 76,
68, 69, 210, 80, 76, 65, 67, 197, 80, 76, 65, 67, 65, 82, 68, 128, 80,
76, 65, 128, 80, 73, 90, 90, 73, 67, 65, 84, 79, 128, 80, 73, 90, 90, 65,
128, 80, 73, 88, 128, 80, 73, 87, 82, 128, 80, 73, 84, 67, 72, 70, 79,
82, 75, 128, 80, 73, 84, 67, 72, 70, 79, 82, 203, 80, 73, 84, 128, 80,
73, 83, 84, 79, 76, 128, 80, 73, 83, 69, 76, 69, 72, 128, 80, 73, 83, 67,
69, 83, 128, 80, 73, 82, 73, 71, 128, 80, 73, 82, 73, 199, 80, 73, 82,
73, 69, 69, 78, 128, 80, 73, 82, 65, 67, 89, 128, 80, 73, 82, 50, 128,
80, 73, 80, 73, 78, 71, 128, 80, 73, 80, 65, 69, 77, 71, 66, 73, 69, 69,
128, 80, 73, 80, 65, 69, 77, 66, 65, 128, 80, 73, 80, 128, 80, 73, 78,
87, 72, 69, 69, 204, 80, 73, 78, 69, 65, 80, 80, 76, 69, 128, 80, 73, 78,
197, 80, 73, 78, 67, 72, 73, 78, 199, 80, 73, 78, 67, 72, 69, 196, 80,
73, 78, 65, 84, 65, 128, 80, 73, 78, 65, 82, 66, 79, 82, 65, 83, 128, 80,
73, 76, 76, 128, 80, 73, 76, 197, 80, 73, 76, 67, 82, 79, 215, 80, 73,
75, 85, 82, 85, 128, 80, 73, 75, 79, 128, 80, 73, 71, 128, 80, 73, 199,
80, 73, 69, 88, 128, 80, 73, 69, 85, 80, 45, 84, 72, 73, 69, 85, 84, 72,
128, 80, 73, 69, 85, 80, 45, 83, 83, 65, 78, 71, 83, 73, 79, 83, 128, 80,
73, 69, 85, 80, 45, 83, 73, 79, 83, 45, 84, 73, 75, 69, 85, 84, 128, 80,
73, 69, 85, 80, 45, 83, 73, 79, 83, 45, 84, 72, 73, 69, 85, 84, 72, 128,
80, 73, 69, 85, 80, 45, 83, 73, 79, 83, 45, 80, 73, 69, 85, 80, 128, 80,
73, 69, 85, 80, 45, 83, 73, 79, 83, 45, 75, 73, 89, 69, 79, 75, 128, 80,
73, 69, 85, 80, 45, 83, 73, 79, 83, 45, 67, 73, 69, 85, 67, 128, 80, 73,
69, 85, 80, 45, 82, 73, 69, 85, 76, 45, 80, 72, 73, 69, 85, 80, 72, 128,
80, 73, 69, 85, 80, 45, 82, 73, 69, 85, 76, 128, 80, 73, 69, 85, 80, 45,
78, 73, 69, 85, 78, 128, 80, 73, 69, 85, 80, 45, 77, 73, 69, 85, 77, 128,
80, 73, 69, 85, 80, 45, 75, 72, 73, 69, 85, 75, 72, 128, 80, 73, 69, 85,
80, 45, 67, 73, 69, 85, 67, 128, 80, 73, 69, 85, 80, 45, 67, 72, 73, 69,
85, 67, 72, 128, 80, 73, 69, 85, 208, 80, 73, 69, 84, 128, 80, 73, 69,
80, 128, 80, 73, 69, 69, 84, 128, 80, 73, 69, 69, 81, 128, 80, 73, 69,
67, 69, 128, 80, 73, 69, 128, 80, 73, 67, 84, 85, 82, 69, 128, 80, 73,
67, 75, 85, 208, 80, 73, 67, 75, 69, 84, 128, 80, 73, 67, 75, 128, 80,
73, 65, 83, 85, 84, 79, 82, 85, 128, 80, 73, 65, 83, 77, 193, 80, 73, 65,
78, 79, 128, 80, 201, 80, 72, 87, 65, 128, 80, 72, 85, 84, 72, 65, 79,
128, 80, 72, 85, 210, 80, 72, 85, 78, 71, 128, 80, 72, 82, 65, 83, 69,
128, 80, 72, 79, 78, 69, 83, 128, 80, 72, 79, 76, 85, 83, 128, 80, 72,
79, 69, 78, 73, 67, 73, 65, 206, 80, 72, 79, 65, 128, 80, 72, 79, 128,
80, 72, 207, 80, 72, 78, 65, 69, 203, 80, 72, 73, 78, 84, 72, 85, 128,
80, 72, 73, 76, 79, 83, 79, 80, 72, 69, 82, 211, 80, 72, 73, 76, 73, 80,
80, 73, 78, 197, 80, 72, 73, 69, 85, 80, 72, 45, 84, 72, 73, 69, 85, 84,
72, 128, 80, 72, 73, 69, 85, 80, 72, 45, 83, 73, 79, 83, 128, 80, 72, 73,
69, 85, 80, 72, 45, 80, 73, 69, 85, 80, 128, 80, 72, 73, 69, 85, 80, 72,
45, 72, 73, 69, 85, 72, 128, 80, 72, 73, 69, 85, 80, 200, 80, 72, 73,
128, 80, 72, 201, 80, 72, 69, 69, 128, 80, 72, 69, 128, 80, 72, 65, 83,
69, 45, 198, 80, 72, 65, 83, 69, 45, 195, 80, 72, 65, 83, 69, 45, 194,
80, 72, 65, 83, 69, 45, 193, 80, 72, 65, 82, 89, 78, 71, 69, 65, 204, 80,
72, 65, 82, 128, 80, 72, 65, 78, 128, 80, 72, 65, 77, 128, 80, 72, 65,
73, 83, 84, 79, 211, 80, 72, 65, 71, 83, 45, 80, 193, 80, 72, 65, 66,
128, 80, 72, 65, 65, 82, 75, 65, 65, 128, 80, 72, 65, 65, 128, 80, 71,
128, 80, 70, 128, 80, 69, 85, 88, 128, 80, 69, 85, 84, 65, 69, 128, 80,
69, 85, 84, 128, 80, 69, 84, 82, 201, 80, 69, 84, 65, 83, 84, 79, 75, 79,
85, 70, 73, 83, 77, 65, 128, 80, 69, 84, 65, 83, 84, 73, 128, 80, 69, 84,
65, 83, 77, 65, 128, 80, 69, 84, 65, 76, 76, 69, 196, 80, 69, 83, 79,
128, 80, 69, 83, 207, 80, 69, 83, 72, 50, 128, 80, 69, 83, 72, 178, 80,
69, 83, 69, 84, 193, 80, 69, 211, 80, 69, 82, 84, 72, 207, 80, 69, 82,
83, 80, 69, 67, 84, 73, 86, 69, 128, 80, 69, 82, 83, 79, 78, 65, 204, 80,
69, 82, 83, 79, 78, 128, 80, 69, 82, 83, 79, 206, 80, 69, 82, 83, 73, 65,
206, 80, 69, 82, 83, 69, 86, 69, 82, 73, 78, 199, 80, 69, 82, 80, 69, 78,
68, 73, 67, 85, 76, 65, 82, 128, 80, 69, 82, 80, 69, 78, 68, 73, 67, 85,
76, 65, 210, 80, 69, 82, 78, 73, 206, 80, 69, 82, 77, 73, 84, 84, 69,
196, 80, 69, 82, 77, 73, 195, 80, 69, 82, 77, 65, 78, 69, 78, 212, 80,
69, 82, 73, 83, 80, 79, 77, 69, 78, 73, 128, 80, 69, 82, 73, 83, 80, 79,
77, 69, 78, 201, 80, 69, 82, 70, 79, 82, 77, 73, 78, 199, 80, 69, 82, 70,
69, 67, 84, 85, 205, 80, 69, 82, 70, 69, 67, 84, 65, 128, 80, 69, 82, 70,
69, 67, 84, 193, 80, 69, 82, 67, 85, 83, 83, 73, 86, 69, 128, 80, 69, 82,
67, 69, 78, 212, 80, 69, 80, 80, 69, 82, 128, 80, 69, 80, 69, 84, 128,
80, 69, 80, 69, 212, 80, 69, 79, 82, 84, 200, 80, 69, 79, 80, 76, 69,
128, 80, 69, 79, 80, 76, 197, 80, 69, 78, 84, 65, 84, 72, 76, 79, 78,
128, 80, 69, 78, 84, 65, 83, 69, 77, 69, 128, 80, 69, 78, 84, 65, 71, 82,
65, 77, 128, 80, 69, 78, 84, 65, 71, 79, 78, 128, 80, 69, 78, 83, 85,
128, 80, 69, 78, 83, 73, 86, 197, 80, 69, 78, 78, 217, 80, 69, 78, 78,
65, 78, 84, 128, 80, 69, 78, 73, 72, 73, 128, 80, 69, 78, 71, 85, 73, 78,
128, 80, 69, 78, 71, 75, 65, 76, 128, 80, 69, 78, 69, 84, 82, 65, 84, 73,
79, 78, 128, 80, 69, 78, 67, 73, 76, 128, 80, 69, 206, 80, 69, 76, 65,
83, 84, 79, 78, 128, 80, 69, 76, 65, 83, 84, 79, 206, 80, 69, 73, 84, 72,
128, 80, 69, 72, 69, 72, 128, 80, 69, 72, 69, 200, 80, 69, 72, 128, 80,
69, 200, 80, 69, 69, 90, 73, 128, 80, 69, 69, 83, 72, 73, 128, 80, 69,
69, 80, 128, 80, 69, 69, 77, 128, 80, 69, 69, 73, 128, 80, 69, 69, 128,
80, 69, 68, 69, 83, 84, 82, 73, 65, 78, 83, 128, 80, 69, 68, 69, 83, 84,
82, 73, 65, 78, 128, 80, 69, 68, 69, 83, 84, 65, 76, 128, 80, 69, 68, 69,
83, 84, 65, 204, 80, 69, 68, 65, 204, 80, 69, 65, 78, 85, 84, 83, 128,
80, 69, 65, 75, 211, 80, 69, 65, 67, 79, 67, 75, 128, 80, 69, 65, 67, 72,
128, 80, 69, 65, 67, 69, 128, 80, 69, 65, 67, 197, 80, 68, 73, 128, 80,
68, 70, 128, 80, 68, 128, 80, 67, 128, 80, 65, 90, 69, 82, 128, 80, 65,
89, 69, 82, 79, 75, 128, 80, 65, 89, 65, 78, 78, 65, 128, 80, 65, 89,
128, 80, 65, 88, 128, 80, 65, 87, 78, 128, 80, 65, 87, 206, 80, 65, 215,
80, 65, 86, 73, 89, 65, 78, 73, 128, 80, 65, 85, 83, 197, 80, 65, 85,
128, 80, 65, 213, 80, 65, 84, 84, 217, 80, 65, 84, 84, 69, 82, 78, 128,
80, 65, 84, 72, 65, 77, 65, 83, 65, 84, 128, 80, 65, 84, 72, 65, 75, 75,
85, 128, 80, 65, 84, 200, 80, 65, 84, 65, 75, 128, 80, 65, 84, 65, 72,
128, 80, 65, 84, 128, 80, 65, 83, 85, 81, 128, 80, 65, 83, 83, 80, 79,
82, 212, 80, 65, 83, 83, 73, 86, 69, 45, 80, 85, 76, 76, 45, 85, 80, 45,
79, 85, 84, 80, 85, 212, 80, 65, 83, 83, 73, 86, 69, 45, 80, 85, 76, 76,
45, 68, 79, 87, 78, 45, 79, 85, 84, 80, 85, 212, 80, 65, 83, 83, 73, 77,
66, 65, 78, 71, 128, 80, 65, 83, 83, 69, 78, 71, 69, 210, 80, 65, 83, 83,
69, 196, 80, 65, 83, 72, 84, 65, 128, 80, 65, 83, 72, 65, 69, 128, 80,
65, 83, 69, 81, 128, 80, 65, 83, 65, 78, 71, 65, 206, 80, 65, 82, 85, 77,
128, 80, 65, 82, 84, 217, 80, 65, 82, 84, 78, 69, 82, 83, 72, 73, 208,
80, 65, 82, 84, 73, 65, 76, 76, 89, 45, 82, 69, 67, 89, 67, 76, 69, 196,
80, 65, 82, 84, 73, 65, 204, 80, 65, 82, 84, 72, 73, 65, 206, 80, 65, 82,
212, 80, 65, 82, 82, 79, 84, 128, 80, 65, 82, 75, 128, 80, 65, 82, 73,
67, 72, 79, 78, 128, 80, 65, 82, 69, 83, 84, 73, 71, 77, 69, 78, 79, 206,
80, 65, 82, 69, 82, 69, 78, 128, 80, 65, 82, 69, 78, 84, 72, 69, 83, 73,
83, 128, 80, 65, 82, 69, 78, 84, 72, 69, 83, 73, 211, 80, 65, 82, 69, 78,
84, 72, 69, 83, 69, 211, 80, 65, 82, 65, 80, 72, 82, 65, 83, 197, 80, 65,
82, 65, 76, 76, 69, 76, 79, 71, 82, 65, 77, 128, 80, 65, 82, 65, 76, 76,
69, 76, 128, 80, 65, 82, 65, 76, 76, 69, 204, 80, 65, 82, 65, 75, 76, 73,
84, 73, 75, 73, 128, 80, 65, 82, 65, 75, 76, 73, 84, 73, 75, 201, 80, 65,
82, 65, 75, 65, 76, 69, 83, 77, 193, 80, 65, 82, 65, 71, 82, 65, 80, 72,
85, 211, 80, 65, 82, 65, 71, 82, 65, 80, 72, 79, 83, 128, 80, 65, 82, 65,
71, 82, 65, 80, 72, 128, 80, 65, 82, 65, 71, 82, 65, 80, 200, 80, 65, 82,
65, 67, 72, 85, 84, 69, 128, 80, 65, 82, 65, 128, 80, 65, 82, 128, 80,
65, 80, 89, 82, 85, 83, 128, 80, 65, 80, 69, 82, 67, 76, 73, 80, 83, 128,
80, 65, 80, 69, 82, 67, 76, 73, 80, 128, 80, 65, 80, 69, 82, 128, 80, 65,
80, 69, 210, 80, 65, 80, 128, 80, 65, 208, 80, 65, 207, 80, 65, 78, 89,
85, 75, 85, 128, 80, 65, 78, 89, 73, 75, 85, 128, 80, 65, 78, 89, 69, 67,
69, 75, 128, 80, 65, 78, 89, 65, 78, 71, 71, 65, 128, 80, 65, 78, 89, 65,
75, 82, 65, 128, 80, 65, 78, 84, 73, 128, 80, 65, 78, 83, 73, 79, 83, 45,
80, 73, 69, 85, 80, 128, 80, 65, 78, 83, 73, 79, 83, 45, 75, 65, 80, 89,
69, 79, 85, 78, 80, 73, 69, 85, 80, 128, 80, 65, 78, 79, 78, 71, 79, 78,
65, 78, 128, 80, 65, 78, 79, 76, 79, 78, 71, 128, 80, 65, 78, 71, 87, 73,
83, 65, 68, 128, 80, 65, 78, 71, 82, 65, 78, 71, 75, 69, 80, 128, 80, 65,
78, 71, 79, 76, 65, 84, 128, 80, 65, 78, 71, 76, 79, 78, 71, 128, 80, 65,
78, 71, 76, 65, 89, 65, 82, 128, 80, 65, 78, 71, 75, 79, 78, 128, 80, 65,
78, 71, 75, 65, 84, 128, 80, 65, 78, 71, 72, 85, 76, 85, 128, 80, 65, 78,
71, 128, 80, 65, 78, 69, 85, 76, 69, 85, 78, 71, 128, 80, 65, 78, 68,
193, 80, 65, 78, 67, 65, 75, 69, 83, 128, 80, 65, 78, 65, 77, 128, 80,
65, 78, 65, 69, 76, 65, 69, 78, 71, 128, 80, 65, 78, 128, 80, 65, 206,
80, 65, 77, 85, 78, 71, 75, 65, 72, 128, 80, 65, 77, 85, 68, 80, 79, 68,
128, 80, 65, 77, 83, 72, 65, 69, 128, 80, 65, 77, 80, 72, 89, 76, 73, 65,
206, 80, 65, 77, 73, 78, 71, 75, 65, 76, 128, 80, 65, 77, 69, 80, 69, 84,
128, 80, 65, 77, 69, 78, 69, 78, 71, 128, 80, 65, 77, 65, 68, 65, 128,
80, 65, 77, 65, 65, 69, 72, 128, 80, 65, 76, 85, 84, 65, 128, 80, 65, 76,
79, 67, 72, 75, 65, 128, 80, 65, 76, 77, 89, 82, 69, 78, 197, 80, 65, 76,
77, 211, 80, 65, 76, 77, 128, 80, 65, 76, 205, 80, 65, 76, 76, 65, 87,
65, 128, 80, 65, 76, 76, 65, 83, 128, 80, 65, 76, 201, 80, 65, 76, 69,
84, 84, 69, 128, 80, 65, 76, 65, 85, 78, 199, 80, 65, 76, 65, 84, 65, 76,
73, 90, 69, 196, 80, 65, 76, 65, 84, 65, 76, 73, 90, 65, 84, 73, 79, 78,
128, 80, 65, 76, 65, 84, 65, 204, 80, 65, 75, 80, 65, 203, 80, 65, 73,
89, 65, 78, 78, 79, 73, 128, 80, 65, 73, 82, 84, 72, 82, 65, 128, 80, 65,
73, 82, 69, 196, 80, 65, 73, 78, 84, 66, 82, 85, 83, 72, 128, 80, 65, 73,
128, 80, 65, 72, 76, 65, 86, 201, 80, 65, 72, 128, 80, 65, 71, 79, 68,
65, 128, 80, 65, 71, 69, 83, 128, 80, 65, 71, 69, 82, 128, 80, 65, 71,
197, 80, 65, 68, 77, 193, 80, 65, 68, 68, 76, 197, 80, 65, 68, 68, 73,
78, 199, 80, 65, 68, 193, 80, 65, 68, 128, 80, 65, 67, 75, 73, 78, 71,
128, 80, 65, 67, 75, 65, 71, 69, 128, 80, 65, 65, 84, 85, 128, 80, 65,
65, 83, 69, 78, 84, 79, 128, 80, 65, 65, 82, 65, 77, 128, 80, 65, 65, 82,
65, 69, 128, 80, 65, 65, 77, 128, 80, 65, 65, 73, 128, 80, 65, 65, 45,
80, 73, 76, 76, 65, 128, 80, 65, 65, 128, 80, 50, 128, 80, 48, 49, 49,
128, 80, 48, 49, 48, 128, 80, 48, 48, 57, 128, 80, 48, 48, 56, 128, 80,
48, 48, 55, 128, 80, 48, 48, 54, 128, 80, 48, 48, 53, 128, 80, 48, 48,
52, 128, 80, 48, 48, 51, 65, 128, 80, 48, 48, 51, 128, 80, 48, 48, 50,
128, 80, 48, 48, 49, 65, 128, 80, 48, 48, 49, 128, 79, 89, 83, 84, 69,
82, 128, 79, 89, 82, 65, 78, 73, 83, 77, 193, 79, 89, 65, 78, 78, 65,
128, 79, 88, 73, 65, 128, 79, 88, 73, 193, 79, 88, 69, 73, 65, 201, 79,
88, 69, 73, 193, 79, 87, 76, 128, 79, 86, 69, 82, 82, 73, 68, 69, 128,
79, 86, 69, 82, 76, 79, 78, 199, 79, 86, 69, 82, 76, 73, 78, 69, 128, 79,
86, 69, 82, 76, 65, 89, 128, 79, 86, 69, 82, 76, 65, 217, 79, 86, 69, 82,
76, 65, 80, 80, 73, 78, 199, 79, 86, 69, 82, 76, 65, 80, 128, 79, 86, 69,
82, 76, 65, 73, 68, 128, 79, 86, 69, 82, 76, 65, 73, 196, 79, 86, 69, 82,
72, 69, 65, 84, 69, 196, 79, 86, 69, 82, 66, 65, 82, 128, 79, 86, 65, 76,
128, 79, 86, 65, 204, 79, 85, 84, 76, 73, 78, 69, 196, 79, 85, 84, 76,
73, 78, 69, 128, 79, 85, 84, 69, 210, 79, 85, 84, 66, 79, 216, 79, 85,
78, 75, 73, 193, 79, 85, 78, 67, 69, 128, 79, 85, 78, 67, 197, 79, 84,
85, 128, 79, 84, 84, 79, 77, 65, 206, 79, 84, 84, 69, 82, 128, 79, 84,
84, 65, 86, 193, 79, 84, 84, 128, 79, 84, 72, 69, 82, 211, 79, 84, 72,
69, 210, 79, 84, 72, 65, 76, 65, 206, 79, 84, 72, 65, 76, 128, 79, 83,
77, 65, 78, 89, 193, 79, 83, 67, 128, 79, 83, 65, 71, 197, 79, 82, 84,
72, 79, 71, 79, 78, 65, 204, 79, 82, 84, 72, 79, 68, 79, 216, 79, 82, 78,
65, 84, 197, 79, 82, 78, 65, 77, 69, 78, 84, 83, 128, 79, 82, 78, 65, 77,
69, 78, 84, 128, 79, 82, 78, 65, 77, 69, 78, 212, 79, 82, 75, 72, 79,
206, 79, 82, 73, 89, 193, 79, 82, 73, 71, 73, 78, 65, 204, 79, 82, 73,
71, 73, 78, 128, 79, 82, 69, 45, 50, 128, 79, 82, 68, 73, 78, 65, 204,
79, 82, 68, 69, 210, 79, 82, 67, 72, 73, 68, 128, 79, 82, 65, 78, 71, 85,
84, 65, 78, 128, 79, 82, 65, 78, 71, 197, 79, 80, 84, 73, 79, 206, 79,
80, 84, 73, 67, 65, 204, 79, 80, 80, 82, 69, 83, 83, 73, 79, 78, 128, 79,
80, 80, 79, 83, 73, 84, 73, 79, 78, 128, 79, 80, 80, 79, 83, 73, 78, 199,
79, 80, 80, 79, 83, 69, 128, 79, 80, 72, 73, 85, 67, 72, 85, 83, 128, 79,
80, 69, 82, 65, 84, 79, 82, 128, 79, 80, 69, 82, 65, 84, 79, 210, 79, 80,
69, 82, 65, 84, 73, 78, 199, 79, 80, 69, 78, 73, 78, 199, 79, 80, 69, 78,
45, 80, 128, 79, 80, 69, 78, 45, 79, 85, 84, 76, 73, 78, 69, 196, 79, 80,
69, 78, 45, 79, 128, 79, 80, 69, 78, 45, 207, 79, 80, 69, 78, 45, 72, 69,
65, 68, 69, 196, 79, 80, 69, 78, 45, 67, 73, 82, 67, 85, 73, 84, 45, 79,
85, 84, 80, 85, 212, 79, 80, 69, 78, 128, 79, 80, 69, 206, 79, 79, 90,
69, 128, 79, 79, 89, 65, 78, 78, 65, 128, 79, 79, 85, 128, 79, 79, 77,
85, 128, 79, 79, 72, 128, 79, 79, 69, 128, 79, 79, 66, 79, 79, 70, 73,
76, 73, 128, 79, 78, 85, 128, 79, 78, 83, 85, 128, 79, 78, 78, 128, 79,
78, 75, 65, 82, 128, 79, 78, 73, 79, 78, 128, 79, 78, 69, 83, 69, 76, 70,
128, 79, 78, 69, 45, 87, 65, 217, 79, 78, 69, 45, 84, 72, 73, 82, 84, 89,
128, 79, 78, 69, 45, 80, 73, 69, 67, 197, 79, 78, 69, 45, 76, 73, 78,
197, 79, 78, 69, 45, 72, 85, 78, 68, 82, 69, 68, 45, 65, 78, 68, 45, 83,
73, 88, 84, 73, 69, 84, 72, 128, 79, 78, 67, 79, 77, 73, 78, 199, 79, 78,
65, 80, 128, 79, 78, 45, 79, 70, 198, 79, 77, 73, 83, 83, 73, 79, 206,
79, 77, 73, 67, 82, 79, 78, 128, 79, 77, 73, 67, 82, 79, 206, 79, 77, 69,
71, 65, 128, 79, 77, 69, 71, 193, 79, 77, 65, 76, 79, 78, 128, 79, 76,
73, 86, 69, 128, 79, 76, 73, 71, 79, 206, 79, 76, 68, 128, 79, 75, 84,
207, 79, 75, 65, 82, 65, 128, 79, 75, 65, 82, 193, 79, 74, 73, 66, 87,
65, 217, 79, 74, 69, 79, 78, 128, 79, 73, 78, 128, 79, 73, 76, 128, 79,
73, 204, 79, 72, 77, 128, 79, 72, 205, 79, 71, 82, 69, 128, 79, 71, 79,
78, 69, 75, 128, 79, 71, 79, 78, 69, 203, 79, 71, 72, 65, 205, 79, 70,
70, 73, 67, 69, 82, 128, 79, 70, 70, 73, 67, 69, 128, 79, 70, 70, 73, 67,
197, 79, 70, 70, 128, 79, 69, 89, 128, 79, 69, 82, 128, 79, 69, 75, 128,
79, 69, 69, 128, 79, 68, 69, 78, 128, 79, 68, 68, 128, 79, 68, 196, 79,
67, 84, 79, 80, 85, 83, 128, 79, 67, 84, 79, 66, 69, 82, 128, 79, 67, 84,
69, 212, 79, 67, 84, 65, 71, 79, 78, 65, 204, 79, 67, 84, 65, 71, 79, 78,
128, 79, 67, 210, 79, 67, 76, 79, 67, 75, 128, 79, 67, 67, 76, 85, 83,
73, 79, 78, 128, 79, 66, 83, 84, 82, 85, 67, 84, 73, 79, 78, 128, 79, 66,
83, 69, 82, 86, 69, 210, 79, 66, 79, 76, 211, 79, 66, 79, 204, 79, 66,
79, 70, 73, 76, 73, 128, 79, 66, 76, 73, 81, 85, 197, 79, 66, 74, 69, 67,
212, 79, 66, 69, 76, 85, 83, 128, 79, 66, 69, 76, 79, 83, 128, 79, 66,
128, 79, 65, 89, 128, 79, 65, 75, 128, 79, 65, 66, 79, 65, 70, 73, 76,
73, 128, 79, 193, 79, 48, 53, 49, 128, 79, 48, 53, 48, 66, 128, 79, 48,
53, 48, 65, 128, 79, 48, 53, 48, 128, 79, 48, 52, 57, 128, 79, 48, 52,
56, 128, 79, 48, 52, 55, 128, 79, 48, 52, 54, 128, 79, 48, 52, 53, 128,
79, 48, 52, 52, 128, 79, 48, 52, 51, 128, 79, 48, 52, 50, 128, 79, 48,
52, 49, 128, 79, 48, 52, 48, 128, 79, 48, 51, 57, 128, 79, 48, 51, 56,
128, 79, 48, 51, 55, 128, 79, 48, 51, 54, 68, 128, 79, 48, 51, 54, 67,
128, 79, 48, 51, 54, 66, 128, 79, 48, 51, 54, 65, 128, 79, 48, 51, 54,
128, 79, 48, 51, 53, 128, 79, 48, 51, 52, 128, 79, 48, 51, 51, 65, 128,
79, 48, 51, 51, 128, 79, 48, 51, 50, 128, 79, 48, 51, 49, 128, 79, 48,
51, 48, 65, 128, 79, 48, 51, 48, 128, 79, 48, 50, 57, 65, 128, 79, 48,
50, 57, 128, 79, 48, 50, 56, 128, 79, 48, 50, 55, 128, 79, 48, 50, 54,
128, 79, 48, 50, 53, 65, 128, 79, 48, 50, 53, 128, 79, 48, 50, 52, 65,
128, 79, 48, 50, 52, 128, 79, 48, 50, 51, 128, 79, 48, 50, 50, 128, 79,
48, 50, 49, 128, 79, 48, 50, 48, 65, 128, 79, 48, 50, 48, 128, 79, 48,
49, 57, 65, 128, 79, 48, 49, 57, 128, 79, 48, 49, 56, 128, 79, 48, 49,
55, 128, 79, 48, 49, 54, 128, 79, 48, 49, 53, 128, 79, 48, 49, 52, 128,
79, 48, 49, 51, 128, 79, 48, 49, 50, 128, 79, 48, 49, 49, 128, 79, 48,
49, 48, 67, 128, 79, 48, 49, 48, 66, 128, 79, 48, 49, 48, 65, 128, 79,
48, 49, 48, 128, 79, 48, 48, 57, 128, 79, 48, 48, 56, 128, 79, 48, 48,
55, 128, 79, 48, 48, 54, 70, 128, 79, 48, 48, 54, 69, 128, 79, 48, 48,
54, 68, 128, 79, 48, 48, 54, 67, 128, 79, 48, 48, 54, 66, 128, 79, 48,
48, 54, 65, 128, 79, 48, 48, 54, 128, 79, 48, 48, 53, 65, 128, 79, 48,
48, 53, 128, 79, 48, 48, 52, 128, 79, 48, 48, 51, 128, 79, 48, 48, 50,
128, 79, 48, 48, 49, 65, 128, 79, 48, 48, 49, 128, 79, 45, 89, 69, 128,
79, 45, 79, 45, 73, 128, 79, 45, 69, 128, 78, 90, 89, 88, 128, 78, 90,
89, 84, 128, 78, 90, 89, 82, 88, 128, 78, 90, 89, 82, 128, 78, 90, 89,
80, 128, 78, 90, 89, 128, 78, 90, 85, 88, 128, 78, 90, 85, 82, 88, 128,
78, 90, 85, 82, 128, 78, 90, 85, 81, 128, 78, 90, 85, 80, 128, 78, 90,
85, 79, 88, 128, 78, 90, 85, 79, 128, 78, 90, 85, 206, 78, 90, 85, 128,
78, 90, 79, 88, 128, 78, 90, 79, 80, 128, 78, 90, 73, 88, 128, 78, 90,
73, 84, 128, 78, 90, 73, 80, 128, 78, 90, 73, 69, 88, 128, 78, 90, 73,
69, 80, 128, 78, 90, 73, 69, 128, 78, 90, 73, 128, 78, 90, 69, 88, 128,
78, 90, 69, 85, 77, 128, 78, 90, 69, 128, 78, 90, 65, 88, 128, 78, 90,
65, 84, 128, 78, 90, 65, 81, 128, 78, 90, 65, 80, 128, 78, 90, 65, 128,
78, 90, 193, 78, 89, 87, 65, 128, 78, 89, 85, 88, 128, 78, 89, 85, 85,
128, 78, 89, 85, 84, 128, 78, 89, 85, 80, 128, 78, 89, 85, 79, 88, 128,
78, 89, 85, 79, 80, 128, 78, 89, 85, 79, 128, 78, 89, 85, 78, 128, 78,
89, 85, 69, 128, 78, 89, 85, 128, 78, 89, 79, 88, 128, 78, 89, 79, 84,
128, 78, 89, 79, 80, 128, 78, 89, 79, 79, 128, 78, 89, 79, 78, 128, 78,
89, 79, 65, 128, 78, 89, 79, 128, 78, 89, 74, 65, 128, 78, 89, 73, 88,
128, 78, 89, 73, 84, 128, 78, 89, 73, 212, 78, 89, 73, 211, 78, 89, 73,
210, 78, 89, 73, 80, 128, 78, 89, 73, 78, 45, 68, 79, 128, 78, 89, 73,
78, 128, 78, 89, 73, 73, 128, 78, 89, 73, 69, 88, 128, 78, 89, 73, 69,
84, 128, 78, 89, 73, 69, 80, 128, 78, 89, 73, 69, 128, 78, 89, 73, 65,
75, 69, 78, 199, 78, 89, 73, 128, 78, 89, 201, 78, 89, 72, 65, 128, 78,
89, 69, 84, 128, 78, 89, 69, 212, 78, 89, 69, 78, 128, 78, 89, 69, 72,
128, 78, 89, 69, 200, 78, 89, 69, 69, 128, 78, 89, 69, 128, 78, 89, 196,
78, 89, 67, 65, 128, 78, 89, 65, 85, 128, 78, 89, 65, 74, 128, 78, 89,
65, 73, 128, 78, 89, 65, 72, 128, 78, 89, 65, 69, 77, 65, 69, 128, 78,
89, 65, 65, 128, 78, 87, 79, 79, 128, 78, 87, 79, 128, 78, 87, 73, 73,
128, 78, 87, 73, 128, 78, 87, 69, 128, 78, 87, 65, 65, 128, 78, 87, 65,
128, 78, 87, 128, 78, 86, 128, 78, 85, 88, 128, 78, 85, 85, 78, 128, 78,
85, 85, 128, 78, 85, 84, 73, 76, 76, 85, 128, 78, 85, 84, 128, 78, 85,
212, 78, 85, 82, 88, 128, 78, 85, 82, 128, 78, 85, 80, 128, 78, 85, 79,
88, 128, 78, 85, 79, 80, 128, 78, 85, 79, 128, 78, 85, 78, 85, 90, 128,
78, 85, 78, 85, 218, 78, 85, 78, 71, 128, 78, 85, 78, 65, 86, 85, 212,
78, 85, 78, 65, 86, 73, 203, 78, 85, 78, 128, 78, 85, 206, 78, 85, 77,
69, 82, 207, 78, 85, 77, 69, 82, 65, 84, 79, 210, 78, 85, 77, 69, 82, 65,
204, 78, 85, 77, 66, 69, 82, 83, 128, 78, 85, 77, 66, 69, 82, 128, 78,
85, 77, 128, 78, 85, 76, 76, 128, 78, 85, 76, 204, 78, 85, 76, 128, 78,
85, 75, 84, 65, 128, 78, 85, 75, 84, 193, 78, 85, 69, 78, 71, 128, 78,
85, 69, 128, 78, 85, 66, 73, 65, 206, 78, 85, 65, 69, 128, 78, 85, 49,
49, 128, 78, 85, 49, 177, 78, 85, 48, 50, 50, 65, 128, 78, 85, 48, 50,
50, 128, 78, 85, 48, 50, 49, 128, 78, 85, 48, 50, 48, 128, 78, 85, 48,
49, 57, 128, 78, 85, 48, 49, 56, 65, 128, 78, 85, 48, 49, 56, 128, 78,
85, 48, 49, 55, 128, 78, 85, 48, 49, 54, 128, 78, 85, 48, 49, 53, 128,
78, 85, 48, 49, 52, 128, 78, 85, 48, 49, 51, 128, 78, 85, 48, 49, 50,
128, 78, 85, 48, 49, 49, 65, 128, 78, 85, 48, 49, 49, 128, 78, 85, 48,
49, 48, 65, 128, 78, 85, 48, 49, 48, 128, 78, 85, 48, 48, 57, 128, 78,
85, 48, 48, 56, 128, 78, 85, 48, 48, 55, 128, 78, 85, 48, 48, 54, 128,
78, 85, 48, 48, 53, 128, 78, 85, 48, 48, 52, 128, 78, 85, 48, 48, 51,
128, 78, 85, 48, 48, 50, 128, 78, 85, 48, 48, 49, 128, 78, 85, 45, 51,
128, 78, 85, 45, 50, 128, 78, 85, 45, 49, 128, 78, 84, 88, 73, 86, 128,
78, 84, 88, 65, 128, 78, 84, 85, 85, 128, 78, 84, 85, 77, 128, 78, 84,
85, 74, 128, 78, 84, 213, 78, 84, 83, 65, 85, 128, 78, 84, 83, 65, 128,
78, 84, 79, 81, 80, 69, 78, 128, 78, 84, 79, 71, 128, 78, 84, 79, 199,
78, 84, 73, 69, 197, 78, 84, 72, 65, 85, 128, 78, 84, 69, 85, 78, 71, 66,
65, 128, 78, 84, 69, 85, 77, 128, 78, 84, 69, 78, 128, 78, 84, 69, 69,
128, 78, 84, 65, 80, 128, 78, 84, 65, 208, 78, 84, 65, 65, 128, 78, 84,
65, 128, 78, 83, 85, 79, 212, 78, 83, 85, 78, 128, 78, 83, 85, 77, 128,
78, 83, 79, 77, 128, 78, 83, 73, 69, 69, 84, 128, 78, 83, 73, 69, 69, 80,
128, 78, 83, 73, 69, 69, 128, 78, 83, 72, 85, 84, 128, 78, 83, 72, 85,
212, 78, 83, 72, 85, 79, 80, 128, 78, 83, 72, 85, 69, 128, 78, 83, 72,
73, 69, 69, 128, 78, 83, 72, 69, 69, 128, 78, 83, 72, 65, 81, 128, 78,
83, 72, 65, 128, 78, 83, 69, 85, 65, 69, 78, 128, 78, 83, 69, 78, 128,
78, 83, 65, 128, 78, 82, 89, 88, 128, 78, 82, 89, 84, 128, 78, 82, 89,
82, 88, 128, 78, 82, 89, 82, 128, 78, 82, 89, 80, 128, 78, 82, 89, 128,
78, 82, 85, 88, 128, 78, 82, 85, 84, 128, 78, 82, 85, 82, 88, 128, 78,
82, 85, 82, 128, 78, 82, 85, 80, 128, 78, 82, 85, 65, 128, 78, 82, 85,
128, 78, 82, 79, 88, 128, 78, 82, 79, 80, 128, 78, 82, 79, 128, 78, 82,
69, 88, 128, 78, 82, 69, 84, 128, 78, 82, 69, 211, 78, 82, 69, 80, 128,
78, 82, 69, 128, 78, 82, 65, 88, 128, 78, 82, 65, 84, 128, 78, 82, 65,
80, 128, 78, 82, 65, 128, 78, 81, 73, 71, 128, 78, 81, 65, 128, 78, 80,
76, 65, 128, 78, 80, 65, 128, 78, 79, 89, 128, 78, 79, 88, 128, 78, 79,
87, 67, 128, 78, 79, 86, 73, 76, 69, 128, 78, 79, 86, 69, 77, 66, 69, 82,
128, 78, 79, 84, 84, 79, 128, 78, 79, 84, 69, 83, 128, 78, 79, 84, 69,
72, 69, 65, 68, 128, 78, 79, 84, 69, 72, 69, 65, 196, 78, 79, 84, 69, 66,
79, 79, 75, 128, 78, 79, 84, 69, 66, 79, 79, 203, 78, 79, 84, 69, 128,
78, 79, 84, 197, 78, 79, 84, 67, 72, 69, 196, 78, 79, 84, 67, 72, 128,
78, 79, 84, 65, 84, 73, 79, 206, 78, 79, 84, 128, 78, 79, 212, 78, 79,
83, 69, 128, 78, 79, 83, 197, 78, 79, 82, 84, 72, 87, 69, 83, 212, 78,
79, 82, 84, 72, 69, 82, 206, 78, 79, 82, 84, 72, 69, 65, 83, 84, 45, 80,
79, 73, 78, 84, 73, 78, 199, 78, 79, 82, 77, 65, 204, 78, 79, 82, 68, 73,
195, 78, 79, 210, 78, 79, 80, 128, 78, 79, 79, 78, 85, 128, 78, 79, 79,
128, 78, 79, 78, 70, 79, 82, 75, 73, 78, 71, 128, 78, 79, 78, 45, 80, 79,
84, 65, 66, 76, 197, 78, 79, 78, 45, 74, 79, 73, 78, 69, 82, 128, 78, 79,
78, 45, 66, 82, 69, 65, 75, 73, 78, 199, 78, 79, 78, 128, 78, 79, 77, 73,
83, 77, 193, 78, 79, 77, 73, 78, 65, 204, 78, 79, 75, 72, 85, 75, 128,
78, 79, 68, 69, 128, 78, 79, 65, 128, 78, 79, 45, 66, 82, 69, 65, 203,
78, 79, 45, 53, 128, 78, 79, 45, 52, 128, 78, 79, 45, 51, 128, 78, 79,
45, 50, 128, 78, 79, 45, 49, 128, 78, 78, 85, 85, 128, 78, 78, 85, 128,
78, 78, 79, 79, 128, 78, 78, 79, 128, 78, 78, 78, 85, 85, 128, 78, 78,
78, 85, 128, 78, 78, 78, 79, 79, 128, 78, 78, 78, 79, 128, 78, 78, 78,
73, 73, 128, 78, 78, 78, 73, 128, 78, 78, 78, 69, 69, 128, 78, 78, 78,
69, 128, 78, 78, 78, 65, 85, 128, 78, 78, 78, 65, 73, 128, 78, 78, 78,
65, 65, 128, 78, 78, 78, 65, 128, 78, 78, 78, 128, 78, 78, 72, 65, 128,
78, 78, 71, 79, 79, 128, 78, 78, 71, 79, 128, 78, 78, 71, 73, 73, 128,
78, 78, 71, 73, 128, 78, 78, 71, 65, 65, 128, 78, 78, 71, 65, 128, 78,
78, 71, 128, 78, 78, 66, 83, 80, 128, 78, 77, 128, 78, 76, 65, 85, 128,
78, 76, 48, 50, 48, 128, 78, 76, 48, 49, 57, 128, 78, 76, 48, 49, 56,
128, 78, 76, 48, 49, 55, 65, 128, 78, 76, 48, 49, 55, 128, 78, 76, 48,
49, 54, 128, 78, 76, 48, 49, 53, 128, 78, 76, 48, 49, 52, 128, 78, 76,
48, 49, 51, 128, 78, 76, 48, 49, 50, 128, 78, 76, 48, 49, 49, 128, 78,
76, 48, 49, 48, 128, 78, 76, 48, 48, 57, 128, 78, 76, 48, 48, 56, 128,
78, 76, 48, 48, 55, 128, 78, 76, 48, 48, 54, 128, 78, 76, 48, 48, 53, 65,
128, 78, 76, 48, 48, 53, 128, 78, 76, 48, 48, 52, 128, 78, 76, 48, 48,
51, 128, 78, 76, 48, 48, 50, 128, 78, 76, 48, 48, 49, 128, 78, 76, 128,
78, 75, 79, 77, 128, 78, 75, 207, 78, 75, 73, 78, 68, 73, 128, 78, 75,
65, 85, 128, 78, 75, 65, 65, 82, 65, 69, 128, 78, 75, 65, 128, 78, 74,
89, 88, 128, 78, 74, 89, 84, 128, 78, 74, 89, 82, 88, 128, 78, 74, 89,
82, 128, 78, 74, 89, 80, 128, 78, 74, 89, 128, 78, 74, 85, 88, 128, 78,
74, 85, 82, 88, 128, 78, 74, 85, 82, 128, 78, 74, 85, 81, 65, 128, 78,
74, 85, 80, 128, 78, 74, 85, 79, 88, 128, 78, 74, 85, 79, 128, 78, 74,
85, 69, 81, 128, 78, 74, 85, 65, 69, 128, 78, 74, 85, 128, 78, 74, 79,
88, 128, 78, 74, 79, 84, 128, 78, 74, 79, 80, 128, 78, 74, 79, 79, 128,
78, 74, 79, 128, 78, 74, 73, 88, 128, 78, 74, 73, 84, 128, 78, 74, 73,
80, 128, 78, 74, 73, 69, 88, 128, 78, 74, 73, 69, 84, 128, 78, 74, 73,
69, 80, 128, 78, 74, 73, 69, 69, 128, 78, 74, 73, 69, 128, 78, 74, 73,
128, 78, 74, 201, 78, 74, 69, 85, 88, 128, 78, 74, 69, 85, 84, 128, 78,
74, 69, 85, 65, 69, 78, 65, 128, 78, 74, 69, 85, 65, 69, 77, 128, 78, 74,
69, 69, 69, 69, 128, 78, 74, 69, 69, 128, 78, 74, 69, 197, 78, 74, 69,
128, 78, 74, 65, 81, 128, 78, 74, 65, 80, 128, 78, 74, 65, 69, 77, 76,
73, 128, 78, 74, 65, 69, 77, 128, 78, 74, 65, 65, 128, 78, 73, 88, 128,
78, 73, 84, 82, 69, 128, 78, 73, 83, 65, 71, 128, 78, 73, 82, 85, 71, 85,
128, 78, 73, 80, 128, 78, 73, 78, 84, 72, 128, 78, 73, 78, 74, 65, 128,
78, 73, 78, 69, 84, 89, 128, 78, 73, 78, 69, 84, 217, 78, 73, 78, 69, 84,
69, 69, 78, 128, 78, 73, 78, 69, 84, 69, 69, 206, 78, 73, 78, 69, 45, 84,
72, 73, 82, 84, 89, 128, 78, 73, 78, 197, 78, 73, 78, 68, 65, 50, 128,
78, 73, 78, 68, 65, 178, 78, 73, 78, 57, 128, 78, 73, 78, 128, 78, 73,
77, 128, 78, 73, 205, 78, 73, 75, 79, 76, 83, 66, 85, 82, 199, 78, 73,
75, 72, 65, 72, 73, 84, 128, 78, 73, 75, 65, 72, 73, 84, 128, 78, 73, 75,
65, 128, 78, 73, 72, 83, 72, 86, 65, 83, 65, 128, 78, 73, 71, 73, 68, 65,
77, 73, 78, 128, 78, 73, 71, 73, 68, 65, 69, 83, 72, 128, 78, 73, 71, 72,
84, 128, 78, 73, 71, 72, 212, 78, 73, 71, 71, 65, 72, 73, 84, 65, 128,
78, 73, 69, 88, 128, 78, 73, 69, 85, 78, 45, 84, 73, 75, 69, 85, 84, 128,
78, 73, 69, 85, 78, 45, 84, 72, 73, 69, 85, 84, 72, 128, 78, 73, 69, 85,
78, 45, 83, 73, 79, 83, 128, 78, 73, 69, 85, 78, 45, 82, 73, 69, 85, 76,
128, 78, 73, 69, 85, 78, 45, 80, 73, 69, 85, 80, 128, 78, 73, 69, 85, 78,
45, 80, 65, 78, 83, 73, 79, 83, 128, 78, 73, 69, 85, 78, 45, 75, 73, 89,
69, 79, 75, 128, 78, 73, 69, 85, 78, 45, 72, 73, 69, 85, 72, 128, 78, 73,
69, 85, 78, 45, 67, 73, 69, 85, 67, 128, 78, 73, 69, 85, 78, 45, 67, 72,
73, 69, 85, 67, 72, 128, 78, 73, 69, 85, 206, 78, 73, 69, 80, 128, 78,
73, 69, 128, 78, 73, 66, 128, 78, 73, 65, 128, 78, 73, 50, 128, 78, 73,
45, 84, 69, 128, 78, 73, 45, 55, 128, 78, 73, 45, 54, 128, 78, 73, 45,
53, 128, 78, 73, 45, 52, 128, 78, 73, 45, 51, 128, 78, 73, 45, 50, 128,
78, 73, 45, 49, 128, 78, 72, 85, 69, 128, 78, 72, 74, 65, 128, 78, 72,
65, 89, 128, 78, 72, 128, 78, 71, 89, 69, 128, 78, 71, 86, 69, 128, 78,
71, 85, 85, 128, 78, 71, 85, 79, 88, 128, 78, 71, 85, 79, 84, 128, 78,
71, 85, 79, 128, 78, 71, 85, 65, 78, 128, 78, 71, 85, 65, 69, 84, 128,
78, 71, 85, 65, 69, 128, 78, 71, 79, 88, 128, 78, 71, 79, 85, 128, 78,
71, 79, 213, 78, 71, 79, 84, 128, 78, 71, 79, 81, 128, 78, 71, 79, 80,
128, 78, 71, 79, 78, 128, 78, 71, 79, 77, 128, 78, 71, 79, 69, 72, 128,
78, 71, 79, 69, 200, 78, 71, 207, 78, 71, 75, 89, 69, 69, 128, 78, 71,
75, 87, 65, 69, 78, 128, 78, 71, 75, 85, 80, 128, 78, 71, 75, 85, 78,
128, 78, 71, 75, 85, 77, 128, 78, 71, 75, 85, 69, 78, 90, 69, 85, 77,
128, 78, 71, 75, 85, 197, 78, 71, 75, 73, 78, 68, 201, 78, 71, 75, 73,
69, 69, 128, 78, 71, 75, 69, 85, 88, 128, 78, 71, 75, 69, 85, 82, 73,
128, 78, 71, 75, 69, 85, 65, 69, 81, 128, 78, 71, 75, 69, 85, 65, 69, 77,
128, 78, 71, 75, 65, 81, 128, 78, 71, 75, 65, 80, 128, 78, 71, 75, 65,
65, 77, 73, 128, 78, 71, 75, 65, 128, 78, 71, 73, 69, 88, 128, 78, 71,
73, 69, 80, 128, 78, 71, 73, 69, 128, 78, 71, 72, 65, 128, 78, 71, 71,
87, 65, 69, 78, 128, 78, 71, 71, 85, 82, 65, 69, 128, 78, 71, 71, 85, 80,
128, 78, 71, 71, 85, 79, 81, 128, 78, 71, 71, 85, 79, 209, 78, 71, 71,
85, 79, 78, 128, 78, 71, 71, 85, 79, 77, 128, 78, 71, 71, 85, 77, 128,
78, 71, 71, 85, 69, 69, 84, 128, 78, 71, 71, 85, 65, 69, 83, 72, 65, 197,
78, 71, 71, 85, 65, 69, 206, 78, 71, 71, 85, 65, 128, 78, 71, 71, 85,
128, 78, 71, 71, 79, 79, 128, 78, 71, 71, 79, 128, 78, 71, 71, 73, 128,
78, 71, 71, 69, 85, 88, 128, 78, 71, 71, 69, 85, 65, 69, 84, 128, 78, 71,
71, 69, 85, 65, 69, 128, 78, 71, 71, 69, 213, 78, 71, 71, 69, 78, 128,
78, 71, 71, 69, 69, 84, 128, 78, 71, 71, 69, 69, 69, 69, 128, 78, 71, 71,
69, 69, 128, 78, 71, 71, 69, 128, 78, 71, 71, 65, 80, 128, 78, 71, 71,
65, 65, 77, 65, 69, 128, 78, 71, 71, 65, 65, 77, 128, 78, 71, 71, 65, 65,
128, 78, 71, 71, 128, 78, 71, 69, 88, 128, 78, 71, 69, 85, 82, 69, 85,
84, 128, 78, 71, 69, 80, 128, 78, 71, 69, 78, 128, 78, 71, 69, 69, 128,
78, 71, 69, 65, 68, 65, 76, 128, 78, 71, 65, 88, 128, 78, 71, 65, 85,
128, 78, 71, 65, 84, 128, 78, 71, 65, 211, 78, 71, 65, 81, 128, 78, 71,
65, 80, 128, 78, 71, 65, 78, 71, 85, 128, 78, 71, 65, 78, 128, 78, 71,
65, 73, 128, 78, 71, 65, 72, 128, 78, 71, 65, 65, 73, 128, 78, 71, 193,
78, 70, 128, 78, 69, 88, 212, 78, 69, 88, 128, 78, 69, 87, 83, 80, 65,
80, 69, 82, 128, 78, 69, 87, 76, 73, 78, 69, 128, 78, 69, 87, 76, 73, 78,
197, 78, 69, 87, 193, 78, 69, 87, 128, 78, 69, 215, 78, 69, 85, 84, 82,
65, 76, 128, 78, 69, 85, 84, 82, 65, 204, 78, 69, 85, 84, 69, 82, 128,
78, 69, 84, 87, 79, 82, 75, 69, 196, 78, 69, 212, 78, 69, 83, 84, 73, 78,
199, 78, 69, 83, 84, 69, 196, 78, 69, 83, 83, 85, 83, 128, 78, 69, 82,
196, 78, 69, 81, 85, 68, 65, 65, 128, 78, 69, 80, 84, 85, 78, 69, 128,
78, 69, 80, 84, 85, 78, 197, 78, 69, 80, 128, 78, 69, 79, 128, 78, 69,
207, 78, 69, 78, 79, 69, 128, 78, 69, 78, 65, 78, 79, 128, 78, 69, 78,
128, 78, 69, 76, 128, 78, 69, 73, 84, 72, 69, 210, 78, 69, 71, 65, 84,
73, 86, 197, 78, 69, 71, 65, 84, 73, 79, 206, 78, 69, 71, 65, 84, 69,
196, 78, 69, 69, 68, 76, 69, 128, 78, 69, 67, 75, 84, 73, 69, 128, 78,
69, 67, 75, 128, 78, 69, 66, 69, 78, 83, 84, 73, 77, 77, 69, 128, 78, 69,
45, 75, 79, 128, 78, 68, 85, 88, 128, 78, 68, 85, 84, 128, 78, 68, 85,
82, 88, 128, 78, 68, 85, 82, 128, 78, 68, 85, 80, 128, 78, 68, 85, 78,
128, 78, 68, 213, 78, 68, 79, 88, 128, 78, 68, 79, 84, 128, 78, 68, 79,
80, 128, 78, 68, 79, 79, 128, 78, 68, 79, 78, 128, 78, 68, 79, 77, 66,
85, 128, 78, 68, 79, 76, 197, 78, 68, 73, 88, 128, 78, 68, 73, 84, 128,
78, 68, 73, 81, 128, 78, 68, 73, 80, 128, 78, 68, 73, 69, 88, 128, 78,
68, 73, 69, 128, 78, 68, 73, 68, 65, 128, 78, 68, 73, 65, 81, 128, 78,
68, 69, 88, 128, 78, 68, 69, 85, 88, 128, 78, 68, 69, 85, 84, 128, 78,
68, 69, 85, 65, 69, 82, 69, 69, 128, 78, 68, 69, 80, 128, 78, 68, 69, 69,
128, 78, 68, 69, 128, 78, 68, 65, 88, 128, 78, 68, 65, 84, 128, 78, 68,
65, 80, 128, 78, 68, 65, 77, 128, 78, 68, 65, 65, 78, 71, 71, 69, 85, 65,
69, 84, 128, 78, 68, 65, 65, 128, 78, 68, 65, 193, 78, 67, 72, 65, 85,
128, 78, 67, 65, 128, 78, 66, 89, 88, 128, 78, 66, 89, 84, 128, 78, 66,
89, 82, 88, 128, 78, 66, 89, 82, 128, 78, 66, 89, 80, 128, 78, 66, 89,
128, 78, 66, 85, 88, 128, 78, 66, 85, 84, 128, 78, 66, 85, 82, 88, 128,
78, 66, 85, 82, 128, 78, 66, 85, 80, 128, 78, 66, 85, 128, 78, 66, 79,
88, 128, 78, 66, 79, 84, 128, 78, 66, 79, 80, 128, 78, 66, 79, 128, 78,
66, 73, 88, 128, 78, 66, 73, 84, 128, 78, 66, 73, 80, 128, 78, 66, 73,
69, 88, 128, 78, 66, 73, 69, 80, 128, 78, 66, 73, 69, 128, 78, 66, 73,
128, 78, 66, 72, 128, 78, 66, 65, 88, 128, 78, 66, 65, 84, 128, 78, 66,
65, 80, 128, 78, 66, 65, 128, 78, 65, 90, 65, 210, 78, 65, 89, 65, 78,
78, 65, 128, 78, 65, 89, 128, 78, 65, 88, 73, 65, 206, 78, 65, 88, 128,
78, 65, 85, 84, 72, 83, 128, 78, 65, 85, 83, 69, 65, 84, 69, 196, 78, 65,
85, 68, 73, 218, 78, 65, 84, 85, 82, 65, 204, 78, 65, 84, 73, 79, 78, 65,
204, 78, 65, 83, 75, 65, 80, 201, 78, 65, 83, 72, 73, 128, 78, 65, 83,
65, 76, 73, 90, 65, 84, 73, 79, 78, 128, 78, 65, 83, 65, 76, 73, 90, 65,
84, 73, 79, 206, 78, 65, 83, 65, 204, 78, 65, 82, 82, 79, 215, 78, 65,
82, 128, 78, 65, 81, 128, 78, 65, 79, 211, 78, 65, 78, 83, 65, 78, 65,
81, 128, 78, 65, 78, 71, 77, 79, 78, 84, 72, 79, 128, 78, 65, 78, 68, 73,
78, 65, 71, 65, 82, 201, 78, 65, 78, 68, 128, 78, 65, 78, 65, 128, 78,
65, 77, 69, 128, 78, 65, 77, 197, 78, 65, 77, 50, 128, 78, 65, 75, 128,
78, 65, 73, 82, 193, 78, 65, 73, 204, 78, 65, 71, 82, 201, 78, 65, 71,
65, 82, 128, 78, 65, 71, 65, 128, 78, 65, 71, 193, 78, 65, 71, 128, 78,
65, 199, 78, 65, 69, 128, 78, 65, 66, 76, 65, 128, 78, 65, 66, 65, 84,
65, 69, 65, 206, 78, 65, 65, 83, 73, 75, 89, 65, 89, 65, 128, 78, 65, 65,
75, 83, 73, 75, 89, 65, 89, 65, 128, 78, 65, 65, 73, 128, 78, 65, 193,
78, 65, 52, 128, 78, 65, 50, 128, 78, 65, 45, 57, 128, 78, 65, 45, 56,
128, 78, 65, 45, 55, 128, 78, 65, 45, 54, 128, 78, 65, 45, 53, 128, 78,
65, 45, 52, 128, 78, 65, 45, 51, 128, 78, 65, 45, 50, 128, 78, 65, 45,
49, 128, 78, 48, 52, 50, 128, 78, 48, 52, 49, 128, 78, 48, 52, 48, 128,
78, 48, 51, 57, 128, 78, 48, 51, 56, 128, 78, 48, 51, 55, 65, 128, 78,
48, 51, 55, 128, 78, 48, 51, 54, 128, 78, 48, 51, 53, 65, 128, 78, 48,
51, 53, 128, 78, 48, 51, 52, 65, 128, 78, 48, 51, 52, 128, 78, 48, 51,
51, 65, 128, 78, 48, 51, 51, 128, 78, 48, 51, 50, 128, 78, 48, 51, 49,
128, 78, 48, 51, 48, 128, 78, 48, 50, 57, 128, 78, 48, 50, 56, 128, 78,
48, 50, 55, 128, 78, 48, 50, 54, 128, 78, 48, 50, 53, 65, 128, 78, 48,
50, 53, 128, 78, 48, 50, 52, 128, 78, 48, 50, 51, 128, 78, 48, 50, 50,
128, 78, 48, 50, 49, 128, 78, 48, 50, 48, 128, 78, 48, 49, 57, 128, 78,
48, 49, 56, 66, 128, 78, 48, 49, 56, 65, 128, 78, 48, 49, 56, 128, 78,
48, 49, 55, 128, 78, 48, 49, 54, 128, 78, 48, 49, 53, 128, 78, 48, 49,
52, 128, 78, 48, 49, 51, 128, 78, 48, 49, 50, 128, 78, 48, 49, 49, 128,
78, 48, 49, 48, 128, 78, 48, 48, 57, 128, 78, 48, 48, 56, 128, 78, 48,
48, 55, 128, 78, 48, 48, 54, 128, 78, 48, 48, 53, 128, 78, 48, 48, 52,
128, 78, 48, 48, 51, 128, 78, 48, 48, 50, 128, 78, 48, 48, 49, 128, 78,
45, 77, 85, 45, 77, 79, 45, 50, 128, 78, 45, 77, 85, 45, 77, 79, 45, 49,
128, 78, 45, 67, 82, 69, 197, 78, 45, 65, 82, 217, 77, 89, 88, 128, 77,
89, 84, 128, 77, 89, 83, 76, 73, 84, 69, 128, 77, 89, 80, 128, 77, 89,
65, 128, 77, 89, 193, 77, 89, 128, 77, 87, 79, 79, 128, 77, 87, 79, 128,
77, 87, 73, 73, 128, 77, 87, 73, 128, 77, 87, 69, 69, 128, 77, 87, 69,
128, 77, 87, 65, 65, 128, 77, 87, 65, 128, 77, 87, 128, 77, 215, 77, 86,
83, 128, 77, 86, 79, 80, 128, 77, 86, 73, 128, 77, 86, 69, 85, 65, 69,
78, 71, 65, 77, 128, 77, 86, 128, 77, 214, 77, 85, 88, 128, 77, 85, 85,
86, 85, 90, 72, 65, 75, 75, 85, 128, 77, 85, 85, 83, 73, 75, 65, 84, 79,
65, 78, 128, 77, 85, 85, 82, 68, 72, 65, 74, 193, 77, 85, 85, 128, 77,
85, 84, 72, 65, 76, 73, 89, 65, 128, 77, 85, 84, 128, 77, 85, 83, 73, 67,
128, 77, 85, 83, 73, 195, 77, 85, 83, 72, 82, 79, 79, 77, 128, 77, 85,
83, 72, 51, 128, 77, 85, 83, 72, 179, 77, 85, 83, 72, 128, 77, 85, 83,
200, 77, 85, 83, 128, 77, 85, 82, 88, 128, 77, 85, 82, 71, 85, 50, 128,
77, 85, 82, 69, 128, 77, 85, 82, 68, 65, 128, 77, 85, 82, 68, 193, 77,
85, 82, 128, 77, 85, 81, 68, 65, 77, 128, 77, 85, 80, 128, 77, 85, 79,
88, 128, 77, 85, 79, 84, 128, 77, 85, 79, 80, 128, 77, 85, 79, 77, 65,
69, 128, 77, 85, 79, 128, 77, 85, 78, 83, 85, 66, 128, 77, 85, 78, 65,
72, 128, 77, 85, 78, 128, 77, 85, 76, 84, 73, 83, 69, 84, 128, 77, 85,
76, 84, 73, 83, 69, 212, 77, 85, 76, 84, 73, 80, 76, 73, 67, 65, 84, 73,
79, 78, 128, 77, 85, 76, 84, 73, 80, 76, 73, 67, 65, 84, 73, 79, 206, 77,
85, 76, 84, 73, 80, 76, 69, 128, 77, 85, 76, 84, 73, 80, 76, 197, 77, 85,
76, 84, 73, 79, 67, 85, 76, 65, 210, 77, 85, 76, 84, 73, 77, 65, 80, 128,
77, 85, 76, 84, 201, 77, 85, 76, 84, 65, 78, 201, 77, 85, 75, 80, 72, 82,
69, 78, 71, 128, 77, 85, 75, 75, 85, 82, 85, 78, 73, 128, 77, 85, 73, 78,
128, 77, 85, 71, 83, 128, 77, 85, 71, 128, 77, 85, 199, 77, 85, 69, 78,
128, 77, 85, 69, 128, 77, 85, 67, 72, 128, 77, 85, 67, 200, 77, 85, 67,
65, 65, 68, 128, 77, 85, 65, 83, 128, 77, 85, 65, 78, 128, 77, 85, 65,
69, 128, 77, 85, 45, 71, 65, 65, 72, 76, 65, 193, 77, 85, 45, 52, 128,
77, 85, 45, 51, 128, 77, 85, 45, 50, 128, 77, 85, 45, 49, 128, 77, 213,
77, 84, 65, 86, 82, 85, 76, 201, 77, 83, 128, 77, 82, 207, 77, 210, 77,
80, 65, 128, 77, 79, 89, 65, 73, 128, 77, 79, 88, 128, 77, 79, 86, 73,
197, 77, 79, 86, 69, 211, 77, 79, 86, 69, 77, 69, 78, 84, 45, 87, 65, 76,
76, 80, 76, 65, 78, 197, 77, 79, 86, 69, 77, 69, 78, 84, 45, 72, 73, 78,
71, 197, 77, 79, 86, 69, 77, 69, 78, 84, 45, 70, 76, 79, 79, 82, 80, 76,
65, 78, 197, 77, 79, 86, 69, 77, 69, 78, 84, 45, 68, 73, 65, 71, 79, 78,
65, 204, 77, 79, 86, 69, 77, 69, 78, 84, 128, 77, 79, 86, 69, 77, 69, 78,
212, 77, 79, 86, 69, 196, 77, 79, 86, 69, 128, 77, 79, 85, 84, 72, 128,
77, 79, 85, 83, 69, 128, 77, 79, 85, 83, 197, 77, 79, 85, 78, 84, 65, 73,
78, 83, 128, 77, 79, 85, 78, 84, 65, 73, 78, 128, 77, 79, 85, 78, 84, 65,
73, 206, 77, 79, 85, 78, 212, 77, 79, 85, 78, 68, 128, 77, 79, 85, 78,
196, 77, 79, 84, 79, 82, 87, 65, 89, 128, 77, 79, 84, 79, 82, 73, 90, 69,
196, 77, 79, 84, 79, 82, 67, 89, 67, 76, 69, 128, 77, 79, 84, 79, 210,
77, 79, 84, 72, 69, 82, 128, 77, 79, 84, 72, 69, 210, 77, 79, 84, 128,
77, 79, 83, 81, 85, 73, 84, 79, 128, 77, 79, 83, 81, 85, 69, 128, 77, 79,
82, 84, 85, 85, 77, 128, 77, 79, 82, 84, 65, 82, 128, 77, 79, 82, 80, 72,
79, 76, 79, 71, 73, 67, 65, 204, 77, 79, 82, 78, 73, 78, 71, 128, 77, 79,
80, 128, 77, 79, 79, 83, 69, 45, 67, 82, 69, 197, 77, 79, 79, 78, 128,
77, 79, 79, 206, 77, 79, 79, 77, 80, 85, 81, 128, 77, 79, 79, 77, 69, 85,
84, 128, 77, 79, 79, 68, 128, 77, 79, 79, 196, 77, 79, 79, 128, 77, 79,
78, 84, 73, 69, 69, 78, 128, 77, 79, 78, 84, 72, 128, 77, 79, 78, 84,
200, 77, 79, 78, 83, 84, 69, 82, 128, 77, 79, 78, 79, 83, 84, 65, 66, 76,
197, 77, 79, 78, 79, 83, 80, 65, 67, 197, 77, 79, 78, 79, 82, 65, 73, 76,
128, 77, 79, 78, 79, 71, 82, 65, 80, 200, 77, 79, 78, 79, 71, 82, 65, 77,
77, 79, 211, 77, 79, 78, 79, 71, 82, 65, 205, 77, 79, 78, 79, 70, 79, 78,
73, 65, 83, 128, 77, 79, 78, 79, 67, 85, 76, 65, 210, 77, 79, 78, 79, 67,
76, 69, 128, 77, 79, 78, 75, 69, 89, 128, 77, 79, 78, 75, 69, 217, 77,
79, 78, 73, 128, 77, 79, 78, 71, 75, 69, 85, 65, 69, 81, 128, 77, 79, 78,
69, 89, 45, 77, 79, 85, 84, 200, 77, 79, 78, 69, 217, 77, 79, 78, 128,
77, 79, 206, 77, 79, 76, 128, 77, 79, 72, 65, 77, 77, 65, 196, 77, 79,
68, 85, 76, 207, 77, 79, 68, 73, 70, 73, 69, 82, 45, 57, 128, 77, 79, 68,
73, 70, 73, 69, 82, 45, 56, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 55,
128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 54, 128, 77, 79, 68, 73, 70, 73,
69, 82, 45, 53, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 52, 128, 77, 79,
68, 73, 70, 73, 69, 82, 45, 51, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45,
50, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 49, 54, 128, 77, 79, 68, 73,
70, 73, 69, 82, 45, 49, 53, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 49,
52, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 49, 51, 128, 77, 79, 68, 73,
70, 73, 69, 82, 45, 49, 50, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 49,
49, 128, 77, 79, 68, 73, 70, 73, 69, 82, 45, 49, 48, 128, 77, 79, 68, 73,
70, 73, 69, 82, 128, 77, 79, 68, 201, 77, 79, 68, 69, 83, 84, 89, 128,
77, 79, 68, 69, 82, 206, 77, 79, 68, 69, 77, 128, 77, 79, 68, 69, 76, 83,
128, 77, 79, 68, 69, 76, 128, 77, 79, 68, 69, 128, 77, 79, 66, 73, 76,
197, 77, 79, 65, 128, 77, 79, 45, 54, 128, 77, 79, 45, 53, 128, 77, 79,
45, 52, 128, 77, 79, 45, 51, 128, 77, 207, 77, 78, 89, 65, 205, 77, 78,
65, 83, 128, 77, 77, 83, 80, 128, 77, 77, 128, 77, 205, 77, 76, 65, 128,
77, 76, 128, 77, 75, 80, 65, 82, 65, 209, 77, 73, 88, 128, 77, 73, 84,
128, 77, 73, 83, 82, 65, 128, 77, 73, 82, 82, 79, 82, 128, 77, 73, 82,
73, 66, 65, 65, 82, 85, 128, 77, 73, 82, 73, 128, 77, 73, 82, 69, 68,
128, 77, 73, 80, 128, 77, 73, 78, 89, 128, 77, 73, 78, 85, 83, 45, 79,
82, 45, 80, 76, 85, 211, 77, 73, 78, 85, 83, 128, 77, 73, 78, 73, 83, 84,
69, 82, 128, 77, 73, 78, 73, 77, 73, 90, 69, 128, 77, 73, 78, 73, 77, 65,
128, 77, 73, 78, 73, 68, 73, 83, 67, 128, 77, 73, 78, 73, 66, 85, 83,
128, 77, 73, 77, 69, 128, 77, 73, 77, 128, 77, 73, 76, 76, 73, 79, 78,
83, 128, 77, 73, 76, 76, 73, 79, 78, 211, 77, 73, 76, 76, 69, 84, 128,
77, 73, 76, 76, 197, 77, 73, 76, 204, 77, 73, 76, 75, 217, 77, 73, 76,
75, 128, 77, 73, 76, 73, 84, 65, 82, 217, 77, 73, 76, 128, 77, 73, 75,
85, 82, 79, 78, 128, 77, 73, 75, 82, 79, 206, 77, 73, 75, 82, 73, 128,
77, 73, 73, 78, 128, 77, 73, 73, 77, 128, 77, 73, 73, 128, 77, 73, 199,
77, 73, 69, 88, 128, 77, 73, 69, 85, 77, 45, 84, 73, 75, 69, 85, 84, 128,
77, 73, 69, 85, 77, 45, 83, 83, 65, 78, 71, 83, 73, 79, 83, 128, 77, 73,
69, 85, 77, 45, 83, 83, 65, 78, 71, 78, 73, 69, 85, 78, 128, 77, 73, 69,
85, 77, 45, 82, 73, 69, 85, 76, 128, 77, 73, 69, 85, 77, 45, 80, 73, 69,
85, 80, 45, 83, 73, 79, 83, 128, 77, 73, 69, 85, 77, 45, 80, 73, 69, 85,
80, 128, 77, 73, 69, 85, 77, 45, 80, 65, 78, 83, 73, 79, 83, 128, 77, 73,
69, 85, 77, 45, 78, 73, 69, 85, 78, 128, 77, 73, 69, 85, 77, 45, 67, 73,
69, 85, 67, 128, 77, 73, 69, 85, 77, 45, 67, 72, 73, 69, 85, 67, 72, 128,
77, 73, 69, 85, 205, 77, 73, 69, 80, 128, 77, 73, 69, 69, 128, 77, 73,
69, 128, 77, 73, 68, 76, 73, 78, 197, 77, 73, 68, 68, 76, 69, 45, 87, 69,
76, 83, 200, 77, 73, 68, 68, 76, 69, 128, 77, 73, 68, 45, 76, 69, 86, 69,
204, 77, 73, 196, 77, 73, 67, 82, 79, 83, 67, 79, 80, 69, 128, 77, 73,
67, 82, 79, 80, 72, 79, 78, 69, 128, 77, 73, 67, 82, 79, 66, 69, 128, 77,
73, 67, 82, 207, 77, 73, 67, 210, 77, 73, 45, 55, 128, 77, 73, 45, 54,
128, 77, 73, 45, 53, 128, 77, 73, 45, 52, 128, 77, 73, 45, 51, 128, 77,
73, 45, 50, 128, 77, 73, 45, 49, 128, 77, 72, 90, 128, 77, 72, 65, 128,
77, 72, 128, 77, 71, 85, 88, 128, 77, 71, 85, 84, 128, 77, 71, 85, 82,
88, 128, 77, 71, 85, 82, 128, 77, 71, 85, 80, 128, 77, 71, 85, 79, 88,
128, 77, 71, 85, 79, 80, 128, 77, 71, 85, 79, 128, 77, 71, 85, 128, 77,
71, 79, 88, 128, 77, 71, 79, 84, 128, 77, 71, 79, 80, 128, 77, 71, 79,
128, 77, 71, 207, 77, 71, 73, 69, 88, 128, 77, 71, 73, 69, 128, 77, 71,
69, 88, 128, 77, 71, 69, 80, 128, 77, 71, 69, 128, 77, 71, 66, 85, 128,
77, 71, 66, 79, 79, 128, 77, 71, 66, 79, 70, 85, 77, 128, 77, 71, 66, 79,
128, 77, 71, 66, 73, 128, 77, 71, 66, 69, 85, 78, 128, 77, 71, 66, 69,
78, 128, 77, 71, 66, 69, 69, 128, 77, 71, 66, 69, 128, 77, 71, 66, 65,
83, 65, 81, 128, 77, 71, 66, 65, 83, 65, 128, 77, 71, 65, 88, 128, 77,
71, 65, 84, 128, 77, 71, 65, 80, 128, 77, 71, 65, 128, 77, 71, 128, 77,
70, 79, 78, 128, 77, 70, 79, 206, 77, 70, 79, 128, 77, 70, 73, 89, 65,
81, 128, 77, 70, 73, 69, 69, 128, 77, 70, 69, 85, 84, 128, 77, 70, 69,
85, 81, 128, 77, 70, 69, 85, 65, 69, 128, 77, 70, 65, 65, 128, 77, 69,
90, 90, 79, 128, 77, 69, 88, 128, 77, 69, 85, 212, 77, 69, 85, 81, 128,
77, 69, 85, 78, 74, 79, 77, 78, 68, 69, 85, 81, 128, 77, 69, 85, 78, 128,
77, 69, 84, 82, 79, 128, 77, 69, 84, 82, 73, 67, 65, 204, 77, 69, 84, 82,
73, 65, 128, 77, 69, 84, 82, 69, 84, 69, 211, 77, 69, 84, 79, 66, 69, 76,
85, 83, 128, 77, 69, 84, 69, 75, 128, 77, 69, 84, 69, 71, 128, 77, 69,
84, 65, 76, 128, 77, 69, 84, 193, 77, 69, 83, 83, 69, 78, 73, 65, 206,
77, 69, 83, 83, 65, 71, 69, 128, 77, 69, 83, 83, 65, 71, 197, 77, 69, 83,
79, 128, 77, 69, 83, 73, 128, 77, 69, 83, 72, 128, 77, 69, 82, 80, 69,
82, 83, 79, 78, 128, 77, 69, 82, 75, 72, 65, 128, 77, 69, 82, 75, 72,
193, 77, 69, 82, 73, 68, 73, 65, 78, 83, 128, 77, 69, 82, 73, 128, 77,
69, 82, 71, 69, 128, 77, 69, 82, 67, 85, 82, 89, 128, 77, 69, 82, 67, 85,
82, 217, 77, 69, 78, 79, 82, 65, 200, 77, 69, 78, 79, 69, 128, 77, 69,
78, 68, 85, 84, 128, 77, 69, 78, 128, 77, 69, 77, 79, 128, 77, 69, 77,
66, 69, 82, 83, 72, 73, 80, 128, 77, 69, 77, 66, 69, 82, 128, 77, 69, 77,
66, 69, 210, 77, 69, 77, 45, 81, 79, 80, 72, 128, 77, 69, 77, 128, 77,
69, 205, 77, 69, 76, 79, 68, 73, 195, 77, 69, 76, 73, 75, 128, 77, 69,
73, 90, 73, 128, 77, 69, 71, 65, 84, 79, 78, 128, 77, 69, 71, 65, 80, 72,
79, 78, 69, 128, 77, 69, 71, 65, 76, 73, 128, 77, 69, 69, 84, 79, 82, 85,
128, 77, 69, 69, 84, 69, 201, 77, 69, 69, 84, 128, 77, 69, 69, 77, 85,
128, 77, 69, 69, 77, 128, 77, 69, 69, 202, 77, 69, 69, 69, 69, 128, 77,
69, 68, 73, 85, 77, 128, 77, 69, 68, 73, 85, 205, 77, 69, 68, 73, 69, 86,
65, 204, 77, 69, 68, 73, 67, 73, 78, 69, 128, 77, 69, 68, 73, 67, 65,
204, 77, 69, 68, 73, 65, 204, 77, 69, 68, 69, 70, 65, 73, 68, 82, 73,
206, 77, 69, 68, 65, 76, 128, 77, 69, 67, 72, 65, 78, 73, 67, 65, 204,
77, 69, 65, 84, 128, 77, 69, 65, 212, 77, 69, 65, 83, 85, 82, 69, 196,
77, 69, 65, 83, 85, 82, 69, 128, 77, 69, 65, 83, 85, 82, 197, 77, 69, 45,
77, 65, 128, 77, 69, 45, 50, 128, 77, 69, 45, 49, 128, 77, 68, 85, 206,
77, 196, 77, 67, 72, 213, 77, 67, 72, 65, 206, 77, 195, 77, 66, 85, 85,
128, 77, 66, 85, 79, 81, 128, 77, 66, 85, 79, 128, 77, 66, 85, 69, 128,
77, 66, 85, 65, 69, 77, 128, 77, 66, 85, 65, 69, 128, 77, 66, 79, 79,
128, 77, 66, 79, 128, 77, 66, 73, 84, 128, 77, 66, 73, 212, 77, 66, 73,
82, 73, 69, 69, 78, 128, 77, 66, 73, 128, 77, 66, 69, 85, 88, 128, 77,
66, 69, 85, 82, 73, 128, 77, 66, 69, 85, 77, 128, 77, 66, 69, 82, 65, 69,
128, 77, 66, 69, 78, 128, 77, 66, 69, 69, 75, 69, 69, 84, 128, 77, 66,
69, 69, 128, 77, 66, 69, 128, 77, 66, 65, 81, 128, 77, 66, 65, 78, 89,
73, 128, 77, 66, 65, 65, 82, 65, 69, 128, 77, 66, 65, 65, 75, 69, 84,
128, 77, 66, 65, 65, 128, 77, 66, 65, 193, 77, 66, 193, 77, 66, 52, 128,
77, 66, 51, 128, 77, 66, 50, 128, 77, 65, 89, 69, 203, 77, 65, 89, 65,
78, 78, 65, 128, 77, 65, 89, 65, 206, 77, 65, 89, 128, 77, 65, 88, 73,
77, 73, 90, 69, 128, 77, 65, 88, 73, 77, 65, 128, 77, 65, 88, 128, 77,
65, 85, 128, 77, 65, 84, 84, 79, 67, 75, 128, 77, 65, 84, 82, 73, 88,
128, 77, 65, 84, 69, 82, 73, 65, 76, 83, 128, 77, 65, 84, 128, 77, 65,
83, 213, 77, 65, 83, 83, 73, 78, 71, 128, 77, 65, 83, 83, 65, 71, 69,
128, 77, 65, 83, 79, 82, 193, 77, 65, 83, 75, 128, 77, 65, 83, 203, 77,
65, 83, 72, 70, 65, 65, 84, 128, 77, 65, 83, 72, 50, 128, 77, 65, 83, 67,
85, 76, 73, 78, 197, 77, 65, 83, 65, 82, 65, 205, 77, 65, 82, 89, 128,
77, 65, 82, 87, 65, 82, 201, 77, 65, 82, 85, 75, 85, 128, 77, 65, 82, 84,
89, 82, 73, 193, 77, 65, 82, 84, 73, 65, 204, 77, 65, 82, 82, 89, 73, 78,
199, 77, 65, 82, 82, 73, 65, 71, 197, 77, 65, 82, 82, 65, 84, 65, 78,
128, 77, 65, 82, 75, 211, 77, 65, 82, 75, 69, 82, 128, 77, 65, 82, 75,
45, 52, 128, 77, 65, 82, 75, 45, 51, 128, 77, 65, 82, 75, 45, 50, 128,
77, 65, 82, 75, 45, 49, 128, 77, 65, 82, 69, 128, 77, 65, 82, 67, 72, 69,
206, 77, 65, 82, 67, 72, 128, 77, 65, 82, 67, 65, 84, 79, 45, 83, 84, 65,
67, 67, 65, 84, 79, 128, 77, 65, 82, 67, 65, 84, 79, 128, 77, 65, 82, 67,
65, 83, 73, 84, 69, 128, 77, 65, 82, 66, 85, 84, 65, 128, 77, 65, 82, 66,
85, 84, 193, 77, 65, 82, 128, 77, 65, 81, 65, 70, 128, 77, 65, 81, 128,
77, 65, 80, 76, 197, 77, 65, 80, 73, 81, 128, 77, 65, 208, 77, 65, 79,
128, 77, 65, 78, 85, 65, 204, 77, 65, 78, 84, 69, 76, 80, 73, 69, 67,
197, 77, 65, 78, 83, 89, 79, 78, 128, 77, 65, 78, 83, 85, 65, 69, 128,
77, 65, 78, 78, 65, 218, 77, 65, 78, 78, 65, 128, 77, 65, 78, 73, 67, 72,
65, 69, 65, 206, 77, 65, 78, 71, 79, 128, 77, 65, 78, 71, 65, 76, 65, 77,
128, 77, 65, 78, 68, 65, 82, 73, 78, 128, 77, 65, 78, 68, 65, 73, 76, 73,
78, 199, 77, 65, 78, 68, 65, 73, 195, 77, 65, 78, 67, 72, 213, 77, 65,
78, 65, 212, 77, 65, 78, 65, 67, 76, 69, 83, 128, 77, 65, 77, 77, 79, 84,
72, 128, 77, 65, 76, 84, 69, 83, 197, 77, 65, 76, 69, 69, 82, 73, 128,
77, 65, 76, 197, 77, 65, 76, 65, 75, 79, 206, 77, 65, 75, 83, 85, 82, 65,
128, 77, 65, 75, 83, 85, 82, 193, 77, 65, 75, 65, 83, 65, 210, 77, 65,
73, 90, 69, 128, 77, 65, 73, 89, 65, 77, 79, 75, 128, 77, 65, 73, 84, 65,
73, 75, 72, 85, 128, 77, 65, 73, 82, 85, 128, 77, 65, 73, 77, 85, 65, 78,
128, 77, 65, 73, 77, 65, 76, 65, 73, 128, 77, 65, 73, 76, 66, 79, 216,
77, 65, 73, 75, 85, 82, 79, 128, 77, 65, 73, 68, 69, 78, 128, 77, 65, 73,
128, 77, 65, 72, 74, 79, 78, 199, 77, 65, 72, 72, 65, 128, 77, 65, 72,
65, 80, 82, 65, 78, 65, 128, 77, 65, 72, 65, 80, 65, 75, 72, 128, 77, 65,
72, 65, 74, 65, 78, 201, 77, 65, 72, 65, 65, 80, 82, 65, 65, 78, 193, 77,
65, 72, 128, 77, 65, 71, 78, 73, 70, 89, 73, 78, 199, 77, 65, 71, 78, 69,
84, 128, 77, 65, 71, 73, 195, 77, 65, 71, 69, 128, 77, 65, 69, 83, 73,
128, 77, 65, 69, 78, 89, 73, 128, 77, 65, 69, 78, 74, 69, 84, 128, 77,
65, 69, 77, 86, 69, 85, 88, 128, 77, 65, 69, 77, 75, 80, 69, 78, 128, 77,
65, 69, 77, 71, 66, 73, 69, 69, 128, 77, 65, 69, 77, 66, 71, 66, 73, 69,
69, 128, 77, 65, 69, 77, 66, 65, 128, 77, 65, 69, 77, 128, 77, 65, 69,
76, 69, 69, 128, 77, 65, 69, 75, 69, 85, 80, 128, 77, 65, 68, 89, 65,
128, 77, 65, 68, 85, 128, 77, 65, 68, 68, 65, 72, 128, 77, 65, 68, 68,
65, 200, 77, 65, 68, 68, 65, 128, 77, 65, 68, 68, 193, 77, 65, 67, 82,
79, 78, 45, 71, 82, 65, 86, 69, 128, 77, 65, 67, 82, 79, 78, 45, 66, 82,
69, 86, 69, 128, 77, 65, 67, 82, 79, 78, 45, 65, 67, 85, 84, 69, 128, 77,
65, 67, 82, 79, 78, 128, 77, 65, 67, 82, 79, 206, 77, 65, 67, 72, 73, 78,
69, 128, 77, 65, 65, 89, 89, 65, 65, 128, 77, 65, 65, 73, 128, 77, 65,
65, 128, 77, 65, 50, 128, 77, 65, 45, 55, 128, 77, 65, 45, 54, 128, 77,
65, 45, 53, 128, 77, 65, 45, 52, 128, 77, 65, 45, 51, 128, 77, 65, 45,
50, 128, 77, 65, 45, 49, 128, 77, 49, 57, 183, 77, 49, 57, 182, 77, 49,
57, 181, 77, 49, 57, 180, 77, 49, 57, 179, 77, 49, 57, 178, 77, 49, 57,
177, 77, 49, 57, 176, 77, 49, 56, 185, 77, 49, 56, 184, 77, 49, 56, 183,
77, 49, 56, 182, 77, 49, 56, 181, 77, 49, 56, 180, 77, 49, 56, 179, 77,
49, 56, 178, 77, 49, 56, 177, 77, 49, 56, 176, 77, 49, 55, 185, 77, 49,
55, 184, 77, 49, 55, 183, 77, 49, 55, 182, 77, 49, 55, 181, 77, 49, 55,
180, 77, 49, 55, 179, 77, 49, 55, 178, 77, 49, 55, 177, 77, 49, 55, 176,
77, 49, 54, 185, 77, 49, 54, 184, 77, 49, 54, 183, 77, 49, 54, 182, 77,
49, 54, 181, 77, 49, 54, 180, 77, 49, 54, 179, 77, 49, 54, 178, 77, 49,
54, 177, 77, 49, 54, 176, 77, 49, 53, 185, 77, 49, 53, 184, 77, 49, 53,
183, 77, 49, 53, 182, 77, 49, 53, 181, 77, 49, 53, 180, 77, 49, 53, 179,
77, 49, 53, 178, 77, 49, 53, 177, 77, 49, 53, 176, 77, 49, 52, 185, 77,
49, 52, 184, 77, 49, 52, 183, 77, 49, 52, 182, 77, 49, 52, 181, 77, 49,
52, 180, 77, 49, 52, 179, 77, 49, 52, 178, 77, 49, 52, 177, 77, 49, 52,
176, 77, 49, 51, 185, 77, 49, 51, 184, 77, 49, 51, 183, 77, 49, 51, 182,
77, 49, 51, 181, 77, 49, 51, 180, 77, 49, 51, 179, 77, 49, 51, 178, 77,
49, 51, 177, 77, 49, 51, 176, 77, 49, 50, 185, 77, 49, 50, 184, 77, 49,
50, 183, 77, 49, 50, 182, 77, 49, 50, 181, 77, 49, 50, 180, 77, 49, 50,
179, 77, 49, 50, 178, 77, 49, 50, 177, 77, 49, 50, 176, 77, 49, 49, 185,
77, 49, 49, 184, 77, 49, 49, 183, 77, 49, 49, 182, 77, 49, 49, 181, 77,
49, 49, 180, 77, 49, 49, 179, 77, 49, 49, 178, 77, 49, 49, 177, 77, 49,
49, 176, 77, 49, 48, 185, 77, 49, 48, 184, 77, 49, 48, 183, 77, 49, 48,
182, 77, 49, 48, 181, 77, 49, 48, 180, 77, 49, 48, 179, 77, 49, 48, 178,
77, 49, 48, 177, 77, 49, 48, 176, 77, 48, 57, 185, 77, 48, 57, 184, 77,
48, 57, 183, 77, 48, 57, 182, 77, 48, 57, 181, 77, 48, 57, 180, 77, 48,
57, 179, 77, 48, 57, 178, 77, 48, 57, 177, 77, 48, 57, 176, 77, 48, 56,
185, 77, 48, 56, 184, 77, 48, 56, 183, 77, 48, 56, 182, 77, 48, 56, 181,
77, 48, 56, 180, 77, 48, 56, 179, 77, 48, 56, 178, 77, 48, 56, 177, 77,
48, 56, 176, 77, 48, 55, 185, 77, 48, 55, 184, 77, 48, 55, 183, 77, 48,
55, 182, 77, 48, 55, 181, 77, 48, 55, 180, 77, 48, 55, 179, 77, 48, 55,
178, 77, 48, 55, 177, 77, 48, 55, 176, 77, 48, 54, 185, 77, 48, 54, 184,
77, 48, 54, 183, 77, 48, 54, 182, 77, 48, 54, 181, 77, 48, 54, 180, 77,
48, 54, 179, 77, 48, 54, 178, 77, 48, 54, 177, 77, 48, 54, 176, 77, 48,
53, 185, 77, 48, 53, 184, 77, 48, 53, 183, 77, 48, 53, 182, 77, 48, 53,
181, 77, 48, 53, 180, 77, 48, 53, 179, 77, 48, 53, 178, 77, 48, 53, 177,
77, 48, 53, 176, 77, 48, 52, 185, 77, 48, 52, 184, 77, 48, 52, 183, 77,
48, 52, 182, 77, 48, 52, 181, 77, 48, 52, 52, 128, 77, 48, 52, 180, 77,
48, 52, 51, 128, 77, 48, 52, 179, 77, 48, 52, 50, 128, 77, 48, 52, 178,
77, 48, 52, 49, 128, 77, 48, 52, 177, 77, 48, 52, 48, 65, 128, 77, 48,
52, 48, 128, 77, 48, 52, 176, 77, 48, 51, 57, 128, 77, 48, 51, 185, 77,
48, 51, 56, 128, 77, 48, 51, 184, 77, 48, 51, 55, 128, 77, 48, 51, 183,
77, 48, 51, 54, 128, 77, 48, 51, 182, 77, 48, 51, 53, 128, 77, 48, 51,
181, 77, 48, 51, 52, 128, 77, 48, 51, 180, 77, 48, 51, 51, 66, 128, 77,
48, 51, 51, 65, 128, 77, 48, 51, 51, 128, 77, 48, 51, 179, 77, 48, 51,
50, 128, 77, 48, 51, 178, 77, 48, 51, 49, 65, 128, 77, 48, 51, 49, 128,
77, 48, 51, 177, 77, 48, 51, 48, 128, 77, 48, 51, 176, 77, 48, 50, 57,
128, 77, 48, 50, 185, 77, 48, 50, 56, 65, 128, 77, 48, 50, 56, 128, 77,
48, 50, 184, 77, 48, 50, 55, 128, 77, 48, 50, 183, 77, 48, 50, 54, 128,
77, 48, 50, 182, 77, 48, 50, 53, 128, 77, 48, 50, 181, 77, 48, 50, 52,
65, 128, 77, 48, 50, 52, 128, 77, 48, 50, 180, 77, 48, 50, 51, 128, 77,
48, 50, 179, 77, 48, 50, 50, 65, 128, 77, 48, 50, 50, 128, 77, 48, 50,
178, 77, 48, 50, 49, 128, 77, 48, 50, 177, 77, 48, 50, 48, 128, 77, 48,
50, 176, 77, 48, 49, 57, 128, 77, 48, 49, 185, 77, 48, 49, 56, 128, 77,
48, 49, 184, 77, 48, 49, 55, 65, 128, 77, 48, 49, 55, 128, 77, 48, 49,
183, 77, 48, 49, 54, 65, 128, 77, 48, 49, 54, 128, 77, 48, 49, 182, 77,
48, 49, 53, 65, 128, 77, 48, 49, 53, 128, 77, 48, 49, 181, 77, 48, 49,
52, 128, 77, 48, 49, 180, 77, 48, 49, 51, 128, 77, 48, 49, 179, 77, 48,
49, 50, 72, 128, 77, 48, 49, 50, 71, 128, 77, 48, 49, 50, 70, 128, 77,
48, 49, 50, 69, 128, 77, 48, 49, 50, 68, 128, 77, 48, 49, 50, 67, 128,
77, 48, 49, 50, 66, 128, 77, 48, 49, 50, 65, 128, 77, 48, 49, 50, 128,
77, 48, 49, 178, 77, 48, 49, 49, 128, 77, 48, 49, 177, 77, 48, 49, 48,
65, 128, 77, 48, 49, 48, 128, 77, 48, 49, 176, 77, 48, 48, 57, 128, 77,
48, 48, 185, 77, 48, 48, 56, 128, 77, 48, 48, 184, 77, 48, 48, 55, 128,
77, 48, 48, 183, 77, 48, 48, 54, 128, 77, 48, 48, 182, 77, 48, 48, 53,
128, 77, 48, 48, 181, 77, 48, 48, 52, 128, 77, 48, 48, 180, 77, 48, 48,
51, 65, 128, 77, 48, 48, 51, 128, 77, 48, 48, 179, 77, 48, 48, 50, 128,
77, 48, 48, 178, 77, 48, 48, 49, 66, 128, 77, 48, 48, 49, 65, 128, 77,
48, 48, 49, 128, 77, 48, 48, 177, 76, 218, 76, 89, 89, 128, 76, 89, 88,
128, 76, 89, 84, 128, 76, 89, 82, 88, 128, 76, 89, 82, 128, 76, 89, 80,
128, 76, 89, 73, 84, 128, 76, 89, 73, 78, 199, 76, 89, 68, 73, 65, 206,
76, 89, 67, 73, 65, 206, 76, 88, 128, 76, 87, 79, 79, 128, 76, 87, 79,
128, 76, 87, 73, 73, 128, 76, 87, 73, 128, 76, 87, 69, 128, 76, 87, 65,
65, 128, 76, 87, 65, 128, 76, 85, 88, 128, 76, 85, 85, 128, 76, 85, 84,
128, 76, 85, 82, 88, 128, 76, 85, 80, 128, 76, 85, 79, 88, 128, 76, 85,
79, 84, 128, 76, 85, 79, 80, 128, 76, 85, 79, 128, 76, 85, 78, 71, 83,
73, 128, 76, 85, 78, 71, 83, 128, 76, 85, 78, 65, 84, 197, 76, 85, 205,
76, 85, 76, 128, 76, 85, 73, 83, 128, 76, 85, 72, 85, 82, 128, 76, 85,
72, 128, 76, 85, 200, 76, 85, 71, 71, 65, 71, 69, 128, 76, 85, 71, 65,
76, 128, 76, 85, 71, 65, 204, 76, 85, 69, 128, 76, 85, 197, 76, 85, 66,
128, 76, 85, 65, 69, 80, 128, 76, 85, 51, 128, 76, 85, 50, 128, 76, 85,
178, 76, 82, 79, 128, 76, 82, 77, 128, 76, 82, 73, 128, 76, 82, 69, 128,
76, 79, 90, 69, 78, 71, 69, 128, 76, 79, 90, 69, 78, 71, 197, 76, 79, 88,
128, 76, 79, 87, 69, 82, 69, 196, 76, 79, 87, 45, 82, 69, 86, 69, 82, 83,
69, 68, 45, 185, 76, 79, 87, 45, 77, 73, 196, 76, 79, 87, 45, 70, 65, 76,
76, 73, 78, 199, 76, 79, 87, 45, 185, 76, 79, 86, 197, 76, 79, 85, 82,
69, 128, 76, 79, 85, 68, 83, 80, 69, 65, 75, 69, 82, 128, 76, 79, 85, 68,
76, 217, 76, 79, 84, 85, 83, 128, 76, 79, 84, 85, 211, 76, 79, 84, 73,
79, 206, 76, 79, 84, 128, 76, 79, 83, 83, 76, 69, 83, 83, 128, 76, 79,
82, 82, 89, 128, 76, 79, 82, 82, 65, 73, 78, 69, 128, 76, 79, 81, 128,
76, 79, 80, 128, 76, 79, 79, 84, 128, 76, 79, 79, 80, 69, 196, 76, 79,
79, 80, 128, 76, 79, 79, 208, 76, 79, 79, 78, 128, 76, 79, 79, 203, 76,
79, 79, 128, 76, 79, 78, 83, 85, 77, 128, 76, 79, 78, 71, 65, 128, 76,
79, 78, 71, 193, 76, 79, 78, 71, 45, 76, 69, 71, 71, 69, 196, 76, 79, 78,
71, 45, 66, 82, 65, 78, 67, 72, 45, 89, 82, 128, 76, 79, 78, 71, 45, 66,
82, 65, 78, 67, 72, 45, 83, 79, 204, 76, 79, 78, 71, 45, 66, 82, 65, 78,
67, 72, 45, 79, 83, 211, 76, 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45,
77, 65, 68, 210, 76, 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 72, 65,
71, 65, 76, 204, 76, 79, 78, 71, 45, 66, 82, 65, 78, 67, 72, 45, 65, 210,
76, 79, 77, 77, 65, 69, 128, 76, 79, 77, 128, 76, 79, 205, 76, 79, 76,
76, 73, 80, 79, 80, 128, 76, 79, 76, 76, 128, 76, 79, 71, 210, 76, 79,
71, 79, 84, 89, 80, 197, 76, 79, 71, 79, 71, 82, 65, 205, 76, 79, 71,
128, 76, 79, 68, 69, 83, 84, 79, 78, 69, 128, 76, 79, 67, 79, 77, 79, 84,
73, 86, 69, 128, 76, 79, 67, 75, 73, 78, 71, 45, 83, 72, 73, 70, 212, 76,
79, 67, 65, 84, 73, 86, 69, 128, 76, 79, 67, 65, 84, 73, 79, 78, 45, 87,
65, 76, 76, 80, 76, 65, 78, 197, 76, 79, 67, 65, 84, 73, 79, 78, 45, 70,
76, 79, 79, 82, 80, 76, 65, 78, 197, 76, 79, 67, 65, 84, 73, 79, 78, 128,
76, 79, 67, 65, 84, 73, 79, 206, 76, 79, 66, 83, 84, 69, 82, 128, 76, 79,
65, 128, 76, 78, 128, 76, 76, 85, 85, 128, 76, 76, 79, 79, 128, 76, 76,
76, 85, 85, 128, 76, 76, 76, 85, 128, 76, 76, 76, 79, 79, 128, 76, 76,
76, 79, 128, 76, 76, 76, 73, 73, 128, 76, 76, 76, 73, 128, 76, 76, 76,
69, 69, 128, 76, 76, 76, 69, 128, 76, 76, 76, 65, 85, 128, 76, 76, 76,
65, 73, 128, 76, 76, 76, 65, 65, 128, 76, 76, 76, 65, 128, 76, 76, 76,
128, 76, 76, 72, 65, 128, 76, 76, 65, 77, 65, 128, 76, 74, 85, 68, 73,
74, 69, 128, 76, 74, 69, 128, 76, 74, 128, 76, 73, 90, 65, 82, 68, 128,
76, 73, 88, 128, 76, 73, 87, 78, 128, 76, 73, 86, 82, 197, 76, 73, 84,
84, 76, 69, 128, 76, 73, 84, 84, 76, 197, 76, 73, 84, 84, 69, 210, 76,
73, 84, 82, 193, 76, 73, 84, 200, 76, 73, 83, 213, 76, 73, 83, 128, 76,
73, 82, 193, 76, 73, 81, 85, 73, 196, 76, 73, 81, 128, 76, 73, 80, 83,
84, 73, 67, 75, 128, 76, 73, 80, 211, 76, 73, 208, 76, 73, 78, 75, 73,
78, 199, 76, 73, 78, 75, 69, 196, 76, 73, 78, 203, 76, 73, 78, 71, 83,
65, 128, 76, 73, 78, 69, 83, 128, 76, 73, 78, 69, 211, 76, 73, 78, 69,
45, 57, 128, 76, 73, 78, 69, 45, 55, 128, 76, 73, 78, 69, 45, 51, 128,
76, 73, 78, 69, 45, 49, 128, 76, 73, 77, 77, 85, 52, 128, 76, 73, 77, 77,
85, 50, 128, 76, 73, 77, 77, 85, 128, 76, 73, 77, 77, 213, 76, 73, 77,
73, 84, 69, 196, 76, 73, 77, 73, 84, 65, 84, 73, 79, 78, 128, 76, 73, 77,
73, 84, 128, 76, 73, 77, 69, 128, 76, 73, 77, 66, 213, 76, 73, 77, 66,
211, 76, 73, 77, 194, 76, 73, 76, 89, 128, 76, 73, 76, 73, 84, 72, 128,
76, 73, 76, 128, 76, 73, 71, 72, 84, 78, 73, 78, 71, 128, 76, 73, 71, 72,
84, 78, 73, 78, 199, 76, 73, 71, 72, 84, 72, 79, 85, 83, 69, 128, 76, 73,
71, 72, 84, 128, 76, 73, 71, 65, 84, 73, 78, 199, 76, 73, 70, 84, 69, 82,
128, 76, 73, 70, 69, 128, 76, 73, 69, 88, 128, 76, 73, 69, 84, 128, 76,
73, 69, 80, 128, 76, 73, 69, 69, 128, 76, 73, 69, 128, 76, 73, 68, 128,
76, 73, 67, 75, 73, 78, 199, 76, 73, 66, 82, 65, 128, 76, 73, 66, 69, 82,
84, 89, 128, 76, 73, 65, 66, 73, 76, 73, 84, 217, 76, 72, 73, 73, 128,
76, 72, 65, 86, 73, 89, 65, 78, 73, 128, 76, 72, 65, 199, 76, 72, 65, 65,
128, 76, 72, 128, 76, 69, 90, 72, 128, 76, 69, 88, 128, 76, 69, 86, 73,
84, 65, 84, 73, 78, 71, 128, 76, 69, 85, 77, 128, 76, 69, 85, 65, 69, 80,
128, 76, 69, 85, 65, 69, 77, 128, 76, 69, 85, 128, 76, 69, 213, 76, 69,
84, 84, 69, 82, 83, 128, 76, 69, 84, 84, 69, 82, 128, 76, 69, 212, 76,
69, 83, 83, 69, 210, 76, 69, 83, 83, 45, 84, 72, 65, 78, 128, 76, 69, 83,
83, 45, 84, 72, 65, 206, 76, 69, 83, 72, 128, 76, 69, 80, 67, 72, 193,
76, 69, 80, 128, 76, 69, 79, 80, 65, 82, 68, 128, 76, 69, 79, 128, 76,
69, 78, 84, 73, 67, 85, 76, 65, 210, 76, 69, 78, 73, 83, 128, 76, 69, 78,
73, 211, 76, 69, 78, 71, 84, 72, 69, 78, 69, 82, 128, 76, 69, 78, 71, 84,
72, 45, 55, 128, 76, 69, 78, 71, 84, 72, 45, 54, 128, 76, 69, 78, 71, 84,
72, 45, 53, 128, 76, 69, 78, 71, 84, 72, 45, 52, 128, 76, 69, 78, 71, 84,
72, 45, 51, 128, 76, 69, 78, 71, 84, 72, 45, 50, 128, 76, 69, 78, 71, 84,
72, 45, 49, 128, 76, 69, 78, 71, 84, 200, 76, 69, 78, 71, 65, 128, 76,
69, 78, 71, 193, 76, 69, 77, 79, 78, 128, 76, 69, 77, 79, 73, 128, 76,
69, 76, 69, 84, 128, 76, 69, 76, 69, 212, 76, 69, 203, 76, 69, 73, 77,
77, 65, 128, 76, 69, 73, 77, 77, 193, 76, 69, 73, 128, 76, 69, 71, 83,
128, 76, 69, 71, 73, 79, 78, 128, 76, 69, 71, 69, 84, 79, 211, 76, 69,
71, 128, 76, 69, 199, 76, 69, 70, 84, 87, 65, 82, 68, 83, 128, 76, 69,
70, 84, 45, 84, 79, 45, 82, 73, 71, 72, 212, 76, 69, 70, 84, 45, 83, 84,
69, 205, 76, 69, 70, 84, 45, 83, 73, 68, 197, 76, 69, 70, 84, 45, 83, 72,
65, 68, 69, 196, 76, 69, 70, 84, 45, 80, 79, 73, 78, 84, 73, 78, 199, 76,
69, 70, 84, 45, 76, 73, 71, 72, 84, 69, 196, 76, 69, 70, 84, 45, 72, 65,
78, 68, 69, 196, 76, 69, 70, 84, 45, 72, 65, 78, 196, 76, 69, 70, 84, 45,
70, 65, 67, 73, 78, 199, 76, 69, 70, 84, 128, 76, 69, 69, 82, 65, 69, 87,
65, 128, 76, 69, 69, 75, 128, 76, 69, 69, 69, 69, 128, 76, 69, 68, 71,
69, 82, 128, 76, 69, 65, 84, 72, 69, 82, 128, 76, 69, 65, 78, 73, 78,
199, 76, 69, 65, 70, 217, 76, 69, 65, 70, 128, 76, 69, 65, 198, 76, 69,
65, 68, 69, 82, 128, 76, 69, 65, 196, 76, 68, 65, 78, 128, 76, 68, 50,
128, 76, 67, 201, 76, 67, 197, 76, 65, 90, 217, 76, 65, 89, 65, 78, 78,
65, 128, 76, 65, 88, 128, 76, 65, 87, 128, 76, 65, 215, 76, 65, 85, 76,
65, 128, 76, 65, 85, 75, 65, 218, 76, 65, 85, 74, 128, 76, 65, 85, 71,
72, 73, 78, 71, 128, 76, 65, 84, 73, 78, 65, 84, 197, 76, 65, 84, 73, 75,
128, 76, 65, 84, 69, 82, 65, 204, 76, 65, 84, 197, 76, 65, 83, 212, 76,
65, 82, 89, 78, 71, 69, 65, 204, 76, 65, 82, 201, 76, 65, 82, 71, 69, 83,
84, 128, 76, 65, 82, 71, 69, 210, 76, 65, 82, 71, 69, 128, 76, 65, 82,
71, 197, 76, 65, 81, 128, 76, 65, 80, 65, 81, 128, 76, 65, 207, 76, 65,
78, 84, 69, 82, 78, 128, 76, 65, 78, 71, 85, 65, 71, 197, 76, 65, 78, 69,
83, 128, 76, 65, 78, 196, 76, 65, 78, 128, 76, 65, 77, 80, 128, 76, 65,
77, 69, 68, 72, 128, 76, 65, 77, 69, 68, 128, 76, 65, 77, 69, 196, 76,
65, 77, 69, 128, 76, 65, 77, 197, 76, 65, 77, 68, 65, 128, 76, 65, 77,
68, 128, 76, 65, 77, 66, 68, 193, 76, 65, 77, 65, 68, 72, 128, 76, 65,
76, 128, 76, 65, 204, 76, 65, 75, 75, 72, 65, 78, 71, 89, 65, 79, 128,
76, 65, 75, 72, 65, 78, 128, 76, 65, 75, 72, 128, 76, 65, 75, 200, 76,
65, 75, 45, 55, 52, 57, 128, 76, 65, 75, 45, 55, 50, 52, 128, 76, 65, 75,
45, 54, 54, 56, 128, 76, 65, 75, 45, 54, 52, 56, 128, 76, 65, 75, 45, 54,
52, 184, 76, 65, 75, 45, 54, 51, 54, 128, 76, 65, 75, 45, 54, 49, 55,
128, 76, 65, 75, 45, 54, 49, 183, 76, 65, 75, 45, 54, 48, 56, 128, 76,
65, 75, 45, 53, 53, 48, 128, 76, 65, 75, 45, 52, 57, 53, 128, 76, 65, 75,
45, 52, 57, 51, 128, 76, 65, 75, 45, 52, 57, 50, 128, 76, 65, 75, 45, 52,
57, 48, 128, 76, 65, 75, 45, 52, 56, 51, 128, 76, 65, 75, 45, 52, 55, 48,
128, 76, 65, 75, 45, 52, 53, 55, 128, 76, 65, 75, 45, 52, 53, 48, 128,
76, 65, 75, 45, 52, 52, 57, 128, 76, 65, 75, 45, 52, 52, 185, 76, 65, 75,
45, 52, 52, 49, 128, 76, 65, 75, 45, 51, 57, 48, 128, 76, 65, 75, 45, 51,
56, 52, 128, 76, 65, 75, 45, 51, 56, 51, 128, 76, 65, 75, 45, 51, 52, 56,
128, 76, 65, 75, 45, 51, 52, 55, 128, 76, 65, 75, 45, 51, 52, 51, 128,
76, 65, 75, 45, 50, 54, 54, 128, 76, 65, 75, 45, 50, 54, 53, 128, 76, 65,
75, 45, 50, 51, 56, 128, 76, 65, 75, 45, 50, 50, 56, 128, 76, 65, 75, 45,
50, 50, 53, 128, 76, 65, 75, 45, 50, 50, 48, 128, 76, 65, 75, 45, 50, 49,
57, 128, 76, 65, 75, 45, 50, 49, 48, 128, 76, 65, 75, 45, 49, 52, 50,
128, 76, 65, 75, 45, 49, 51, 48, 128, 76, 65, 75, 45, 48, 57, 50, 128,
76, 65, 75, 45, 48, 56, 49, 128, 76, 65, 75, 45, 48, 56, 177, 76, 65, 75,
45, 48, 56, 48, 128, 76, 65, 75, 45, 48, 55, 185, 76, 65, 75, 45, 48, 54,
50, 128, 76, 65, 75, 45, 48, 53, 49, 128, 76, 65, 75, 45, 48, 53, 48,
128, 76, 65, 75, 45, 48, 51, 48, 128, 76, 65, 75, 45, 48, 50, 53, 128,
76, 65, 75, 45, 48, 50, 49, 128, 76, 65, 75, 45, 48, 50, 48, 128, 76, 65,
75, 45, 48, 48, 51, 128, 76, 65, 74, 65, 78, 89, 65, 76, 65, 78, 128, 76,
65, 73, 78, 199, 76, 65, 201, 76, 65, 72, 83, 72, 85, 128, 76, 65, 72,
128, 76, 65, 71, 85, 83, 128, 76, 65, 71, 213, 76, 65, 71, 65, 82, 128,
76, 65, 71, 65, 210, 76, 65, 71, 65, 66, 128, 76, 65, 71, 65, 194, 76,
65, 69, 86, 128, 76, 65, 69, 128, 76, 65, 68, 217, 76, 65, 68, 68, 69,
82, 128, 76, 65, 67, 82, 79, 83, 83, 197, 76, 65, 67, 75, 128, 76, 65,
67, 65, 128, 76, 65, 66, 79, 85, 82, 73, 78, 71, 128, 76, 65, 66, 79, 82,
128, 76, 65, 66, 73, 65, 76, 73, 90, 65, 84, 73, 79, 206, 76, 65, 66, 73,
65, 204, 76, 65, 66, 69, 76, 128, 76, 65, 66, 65, 84, 128, 76, 65, 194,
76, 65, 65, 78, 65, 69, 128, 76, 65, 65, 78, 128, 76, 65, 65, 77, 85,
128, 76, 65, 65, 77, 128, 76, 65, 65, 73, 128, 76, 54, 128, 76, 52, 128,
76, 51, 128, 76, 50, 128, 76, 48, 48, 54, 65, 128, 76, 48, 48, 50, 65,
128, 76, 45, 84, 89, 80, 197, 76, 45, 83, 72, 65, 80, 69, 196, 75, 89,
85, 82, 73, 73, 128, 75, 89, 85, 128, 75, 89, 79, 128, 75, 89, 76, 73,
83, 77, 65, 128, 75, 89, 73, 128, 75, 89, 69, 128, 75, 89, 65, 84, 72,
79, 211, 75, 89, 65, 65, 128, 75, 89, 65, 128, 75, 88, 87, 73, 128, 75,
88, 87, 69, 69, 128, 75, 88, 87, 69, 128, 75, 88, 87, 65, 65, 128, 75,
88, 87, 65, 128, 75, 88, 85, 128, 75, 88, 79, 128, 75, 88, 73, 128, 75,
88, 69, 69, 128, 75, 88, 69, 128, 75, 88, 65, 65, 128, 75, 88, 65, 128,
75, 87, 86, 128, 75, 87, 85, 51, 49, 56, 128, 75, 87, 79, 79, 128, 75,
87, 79, 128, 75, 87, 77, 128, 75, 87, 73, 73, 128, 75, 87, 73, 128, 75,
87, 69, 69, 128, 75, 87, 69, 128, 75, 87, 66, 128, 75, 87, 65, 89, 128,
75, 87, 65, 69, 84, 128, 75, 87, 65, 65, 128, 75, 86, 65, 128, 75, 86,
128, 75, 85, 90, 72, 73, 128, 75, 85, 88, 128, 75, 85, 86, 128, 75, 85,
85, 72, 128, 75, 85, 84, 128, 75, 85, 83, 77, 65, 128, 75, 85, 83, 72,
85, 50, 128, 75, 85, 83, 72, 85, 178, 75, 85, 82, 88, 128, 75, 85, 82,
85, 90, 69, 73, 82, 79, 128, 75, 85, 82, 84, 128, 75, 85, 82, 79, 79, 78,
69, 128, 75, 85, 82, 128, 75, 85, 210, 75, 85, 81, 128, 75, 85, 79, 88,
128, 75, 85, 79, 80, 128, 75, 85, 79, 208, 75, 85, 79, 77, 128, 75, 85,
79, 128, 75, 85, 78, 71, 128, 75, 85, 78, 68, 68, 65, 76, 73, 89, 65,
128, 75, 85, 76, 128, 75, 85, 204, 75, 85, 71, 128, 75, 85, 69, 84, 128,
75, 85, 66, 128, 75, 85, 65, 86, 128, 75, 85, 65, 66, 128, 75, 85, 65,
128, 75, 85, 55, 128, 75, 85, 52, 128, 75, 85, 180, 75, 85, 51, 128, 75,
85, 179, 75, 85, 45, 55, 128, 75, 85, 45, 54, 128, 75, 85, 45, 53, 128,
75, 85, 45, 52, 128, 75, 85, 45, 51, 128, 75, 85, 45, 50, 128, 75, 85,
45, 49, 128, 75, 84, 128, 75, 83, 83, 85, 85, 128, 75, 83, 83, 85, 128,
75, 83, 83, 79, 79, 128, 75, 83, 83, 79, 128, 75, 83, 83, 73, 73, 128,
75, 83, 83, 73, 128, 75, 83, 83, 69, 69, 128, 75, 83, 83, 69, 128, 75,
83, 83, 65, 85, 128, 75, 83, 83, 65, 73, 128, 75, 83, 83, 65, 65, 128,
75, 83, 83, 65, 128, 75, 83, 83, 128, 75, 83, 73, 128, 75, 82, 79, 78,
79, 83, 128, 75, 82, 69, 77, 65, 83, 84, 73, 128, 75, 82, 65, 84, 73, 77,
79, 89, 80, 79, 82, 82, 79, 79, 78, 128, 75, 82, 65, 84, 73, 77, 79, 75,
79, 85, 70, 73, 83, 77, 65, 128, 75, 82, 65, 84, 73, 77, 65, 84, 65, 128,
75, 82, 65, 84, 73, 77, 193, 75, 80, 85, 128, 75, 80, 79, 81, 128, 75,
80, 79, 79, 128, 75, 80, 79, 128, 75, 80, 73, 128, 75, 80, 69, 85, 88,
128, 75, 80, 69, 69, 128, 75, 80, 69, 128, 75, 80, 65, 82, 65, 81, 128,
75, 80, 65, 78, 128, 75, 80, 65, 72, 128, 75, 80, 65, 128, 75, 80, 128,
75, 79, 88, 128, 75, 79, 86, 85, 85, 128, 75, 79, 86, 128, 75, 79, 84,
79, 128, 75, 79, 82, 85, 78, 65, 128, 75, 79, 82, 79, 78, 73, 83, 128,
75, 79, 82, 69, 65, 206, 75, 79, 82, 65, 78, 73, 195, 75, 79, 81, 78, 68,
79, 78, 128, 75, 79, 80, 80, 65, 128, 75, 79, 80, 128, 75, 79, 79, 86,
128, 75, 79, 79, 80, 79, 128, 75, 79, 79, 77, 85, 85, 84, 128, 75, 79,
79, 66, 128, 75, 79, 79, 128, 75, 79, 78, 84, 69, 86, 77, 65, 128, 75,
79, 78, 84, 69, 86, 77, 193, 75, 79, 77, 201, 75, 79, 77, 66, 85, 86, 65,
128, 75, 79, 77, 66, 85, 86, 193, 75, 79, 77, 66, 213, 75, 79, 75, 79,
128, 75, 79, 75, 69, 128, 75, 79, 75, 128, 75, 79, 203, 75, 79, 73, 78,
73, 128, 75, 79, 73, 128, 75, 79, 201, 75, 79, 72, 128, 75, 79, 71, 72,
79, 77, 128, 75, 79, 69, 84, 128, 75, 79, 66, 128, 75, 79, 65, 76, 65,
128, 75, 79, 65, 128, 75, 79, 45, 75, 73, 128, 75, 79, 45, 51, 128, 75,
79, 45, 50, 128, 75, 79, 45, 49, 128, 75, 78, 85, 67, 75, 76, 69, 83,
128, 75, 78, 85, 67, 75, 76, 69, 128, 75, 78, 79, 84, 128, 75, 78, 79,
66, 83, 128, 75, 78, 73, 71, 72, 84, 45, 82, 79, 79, 75, 128, 75, 78, 73,
71, 72, 84, 45, 81, 85, 69, 69, 78, 128, 75, 78, 73, 71, 72, 84, 45, 66,
73, 83, 72, 79, 80, 128, 75, 78, 73, 71, 72, 84, 128, 75, 78, 73, 71, 72,
212, 75, 78, 73, 70, 69, 128, 75, 78, 73, 70, 197, 75, 78, 69, 69, 76,
73, 78, 199, 75, 77, 128, 75, 205, 75, 76, 73, 84, 79, 78, 128, 75, 76,
65, 83, 77, 65, 128, 75, 76, 65, 83, 77, 193, 75, 76, 65, 128, 75, 76,
128, 75, 75, 79, 128, 75, 75, 73, 128, 75, 75, 69, 69, 128, 75, 75, 69,
128, 75, 75, 65, 128, 75, 75, 128, 75, 74, 69, 128, 75, 73, 89, 69, 79,
75, 45, 84, 73, 75, 69, 85, 84, 128, 75, 73, 89, 69, 79, 75, 45, 83, 73,
79, 83, 45, 75, 73, 89, 69, 79, 75, 128, 75, 73, 89, 69, 79, 75, 45, 82,
73, 69, 85, 76, 128, 75, 73, 89, 69, 79, 75, 45, 80, 73, 69, 85, 80, 128,
75, 73, 89, 69, 79, 75, 45, 78, 73, 69, 85, 78, 128, 75, 73, 89, 69, 79,
75, 45, 75, 72, 73, 69, 85, 75, 72, 128, 75, 73, 89, 69, 79, 75, 45, 67,
72, 73, 69, 85, 67, 72, 128, 75, 73, 89, 69, 79, 203, 75, 73, 88, 128,
75, 73, 87, 73, 70, 82, 85, 73, 84, 128, 75, 73, 87, 128, 75, 73, 86,
128, 75, 73, 84, 69, 128, 75, 73, 84, 128, 75, 73, 83, 83, 73, 78, 199,
75, 73, 83, 83, 128, 75, 73, 83, 211, 75, 73, 83, 73, 77, 53, 128, 75,
73, 83, 73, 77, 181, 75, 73, 83, 72, 128, 75, 73, 83, 65, 76, 128, 75,
73, 82, 79, 87, 65, 84, 84, 79, 128, 75, 73, 82, 79, 77, 69, 69, 84, 79,
82, 85, 128, 75, 73, 82, 79, 71, 85, 82, 65, 77, 85, 128, 75, 73, 82, 79,
128, 75, 73, 82, 71, 72, 73, 218, 75, 73, 81, 128, 75, 73, 80, 128, 75,
73, 208, 75, 73, 78, 83, 72, 73, 80, 128, 75, 73, 78, 78, 193, 75, 73,
78, 68, 69, 82, 71, 65, 82, 84, 69, 78, 128, 75, 73, 77, 79, 78, 79, 128,
75, 73, 76, 76, 69, 82, 128, 75, 73, 73, 90, 72, 128, 75, 73, 73, 128,
75, 73, 72, 128, 75, 73, 69, 88, 128, 75, 73, 69, 86, 65, 206, 75, 73,
69, 80, 128, 75, 73, 69, 69, 77, 128, 75, 73, 69, 128, 75, 73, 68, 128,
75, 73, 196, 75, 73, 67, 75, 128, 75, 73, 66, 128, 75, 73, 65, 86, 128,
75, 73, 65, 66, 128, 75, 73, 45, 56, 128, 75, 73, 45, 55, 128, 75, 73,
45, 54, 128, 75, 73, 45, 53, 128, 75, 73, 45, 52, 128, 75, 73, 45, 51,
128, 75, 73, 45, 50, 128, 75, 73, 45, 49, 128, 75, 72, 90, 128, 75, 72,
87, 65, 73, 128, 75, 72, 85, 69, 78, 45, 76, 85, 197, 75, 72, 85, 69,
206, 75, 72, 85, 68, 65, 87, 65, 68, 201, 75, 72, 85, 68, 65, 77, 128,
75, 72, 85, 65, 84, 128, 75, 72, 79, 85, 128, 75, 72, 79, 212, 75, 72,
79, 78, 78, 65, 128, 75, 72, 79, 78, 128, 75, 72, 79, 77, 85, 84, 128,
75, 72, 79, 74, 75, 201, 75, 72, 79, 128, 75, 72, 207, 75, 72, 77, 213,
75, 72, 73, 84, 128, 75, 72, 73, 78, 89, 65, 128, 75, 72, 73, 69, 85, 75,
200, 75, 72, 73, 128, 75, 72, 201, 75, 72, 72, 79, 128, 75, 72, 72, 65,
128, 75, 72, 69, 84, 72, 128, 75, 72, 69, 73, 128, 75, 72, 69, 69, 128,
75, 72, 69, 128, 75, 72, 65, 86, 128, 75, 72, 65, 82, 79, 83, 72, 84, 72,
201, 75, 72, 65, 82, 128, 75, 72, 65, 80, 72, 128, 75, 72, 65, 78, 199,
75, 72, 65, 78, 68, 193, 75, 72, 65, 77, 84, 201, 75, 72, 65, 75, 65, 83,
83, 73, 65, 206, 75, 72, 65, 73, 128, 75, 72, 65, 72, 128, 75, 72, 65,
200, 75, 72, 65, 70, 128, 75, 72, 65, 66, 128, 75, 72, 65, 65, 128, 75,
71, 128, 75, 69, 89, 67, 65, 80, 128, 75, 69, 89, 67, 65, 208, 75, 69,
89, 66, 79, 65, 82, 68, 128, 75, 69, 89, 66, 79, 65, 82, 196, 75, 69, 88,
128, 75, 69, 86, 128, 75, 69, 85, 89, 69, 85, 88, 128, 75, 69, 85, 83,
72, 69, 85, 65, 69, 80, 128, 75, 69, 85, 83, 69, 85, 88, 128, 75, 69, 85,
80, 85, 81, 128, 75, 69, 85, 79, 212, 75, 69, 85, 77, 128, 75, 69, 85,
75, 69, 85, 84, 78, 68, 65, 128, 75, 69, 85, 75, 65, 81, 128, 75, 69, 85,
65, 69, 84, 77, 69, 85, 78, 128, 75, 69, 85, 65, 69, 82, 73, 128, 75, 69,
84, 84, 201, 75, 69, 83, 72, 50, 128, 75, 69, 82, 69, 84, 128, 75, 69,
79, 87, 128, 75, 69, 78, 84, 73, 77, 65, 84, 65, 128, 75, 69, 78, 84, 73,
77, 65, 84, 193, 75, 69, 78, 84, 73, 77, 193, 75, 69, 78, 65, 84, 128,
75, 69, 78, 128, 75, 69, 206, 75, 69, 77, 80, 85, 76, 128, 75, 69, 77,
80, 85, 204, 75, 69, 77, 80, 76, 73, 128, 75, 69, 77, 80, 76, 201, 75,
69, 77, 80, 72, 82, 69, 78, 71, 128, 75, 69, 77, 66, 65, 78, 71, 128, 75,
69, 76, 86, 73, 206, 75, 69, 72, 69, 72, 128, 75, 69, 72, 69, 200, 75,
69, 72, 128, 75, 69, 70, 85, 76, 65, 128, 75, 69, 69, 86, 128, 75, 69,
69, 83, 85, 128, 75, 69, 69, 80, 73, 78, 199, 75, 69, 69, 78, 71, 128,
75, 69, 69, 66, 128, 75, 69, 66, 128, 75, 69, 65, 65, 69, 128, 75, 67,
65, 76, 128, 75, 66, 128, 75, 65, 90, 65, 75, 200, 75, 65, 89, 65, 78,
78, 65, 128, 75, 65, 89, 65, 200, 75, 65, 88, 128, 75, 65, 87, 86, 128,
75, 65, 87, 73, 128, 75, 65, 87, 66, 128, 75, 65, 86, 89, 75, 65, 128,
75, 65, 86, 89, 75, 193, 75, 65, 86, 128, 75, 65, 85, 86, 128, 75, 65,
85, 78, 65, 128, 75, 65, 85, 206, 75, 65, 85, 66, 128, 75, 65, 84, 79,
128, 75, 65, 84, 72, 73, 83, 84, 73, 128, 75, 65, 84, 72, 65, 75, 193,
75, 65, 84, 65, 86, 65, 83, 77, 65, 128, 75, 65, 84, 65, 86, 193, 75, 65,
84, 65, 75, 65, 78, 65, 45, 72, 73, 82, 65, 71, 65, 78, 193, 75, 65, 83,
82, 65, 84, 65, 78, 128, 75, 65, 83, 82, 65, 84, 65, 206, 75, 65, 83, 82,
65, 128, 75, 65, 83, 82, 193, 75, 65, 83, 75, 65, 76, 128, 75, 65, 83,
75, 65, 204, 75, 65, 83, 72, 77, 73, 82, 201, 75, 65, 82, 83, 72, 65, 78,
65, 128, 75, 65, 82, 79, 82, 73, 73, 128, 75, 65, 82, 79, 82, 65, 78,
128, 75, 65, 82, 79, 82, 128, 75, 65, 82, 207, 75, 65, 82, 69, 206, 75,
65, 82, 65, 84, 84, 79, 128, 75, 65, 82, 65, 78, 128, 75, 65, 80, 89, 69,
79, 85, 78, 83, 83, 65, 78, 71, 80, 73, 69, 85, 80, 128, 75, 65, 80, 89,
69, 79, 85, 78, 82, 73, 69, 85, 76, 128, 75, 65, 80, 89, 69, 79, 85, 78,
80, 72, 73, 69, 85, 80, 72, 128, 75, 65, 80, 89, 69, 79, 85, 78, 77, 73,
69, 85, 77, 128, 75, 65, 80, 80, 65, 128, 75, 65, 80, 80, 193, 75, 65,
80, 79, 128, 75, 65, 80, 72, 128, 75, 65, 80, 65, 76, 128, 75, 65, 80,
65, 128, 75, 65, 208, 75, 65, 78, 84, 65, 74, 193, 75, 65, 78, 78, 65,
68, 193, 75, 65, 78, 71, 65, 82, 79, 79, 128, 75, 65, 78, 71, 128, 75,
65, 78, 199, 75, 65, 78, 65, 75, 79, 128, 75, 65, 77, 52, 128, 75, 65,
77, 50, 128, 75, 65, 77, 128, 75, 65, 75, 79, 128, 75, 65, 75, 65, 66,
65, 84, 128, 75, 65, 75, 128, 75, 65, 203, 75, 65, 73, 86, 128, 75, 65,
73, 84, 72, 201, 75, 65, 73, 82, 73, 128, 75, 65, 73, 66, 128, 75, 65,
73, 128, 75, 65, 201, 75, 65, 70, 65, 128, 75, 65, 70, 128, 75, 65, 198,
75, 65, 68, 53, 128, 75, 65, 68, 181, 75, 65, 68, 52, 128, 75, 65, 68,
51, 128, 75, 65, 68, 179, 75, 65, 68, 50, 128, 75, 65, 68, 128, 75, 65,
66, 193, 75, 65, 66, 128, 75, 65, 65, 86, 128, 75, 65, 65, 73, 128, 75,
65, 65, 70, 85, 128, 75, 65, 65, 70, 128, 75, 65, 65, 67, 85, 128, 75,
65, 65, 66, 65, 128, 75, 65, 65, 66, 128, 75, 65, 50, 128, 75, 65, 178,
75, 65, 45, 75, 69, 128, 75, 65, 45, 57, 128, 75, 65, 45, 56, 128, 75,
65, 45, 55, 128, 75, 65, 45, 54, 128, 75, 65, 45, 53, 128, 75, 65, 45,
52, 128, 75, 65, 45, 51, 128, 75, 65, 45, 50, 128, 75, 65, 45, 49, 49,
128, 75, 65, 45, 49, 48, 128, 75, 65, 45, 49, 128, 75, 48, 48, 56, 128,
75, 48, 48, 55, 128, 75, 48, 48, 54, 128, 75, 48, 48, 53, 128, 75, 48,
48, 52, 128, 75, 48, 48, 51, 128, 75, 48, 48, 50, 128, 75, 48, 48, 49,
128, 74, 87, 65, 128, 74, 85, 85, 128, 74, 85, 84, 128, 74, 85, 83, 84,
73, 70, 73, 67, 65, 84, 73, 79, 78, 128, 74, 85, 80, 73, 84, 69, 82, 128,
74, 85, 79, 84, 128, 74, 85, 79, 80, 128, 74, 85, 78, 79, 128, 74, 85,
78, 71, 83, 69, 79, 78, 199, 74, 85, 78, 69, 128, 74, 85, 76, 89, 128,
74, 85, 71, 71, 76, 73, 78, 71, 128, 74, 85, 69, 85, 73, 128, 74, 85, 68,
85, 76, 128, 74, 85, 68, 71, 69, 128, 74, 85, 68, 69, 79, 45, 83, 80, 65,
78, 73, 83, 200, 74, 79, 89, 83, 84, 73, 67, 75, 128, 74, 79, 89, 79, 85,
211, 74, 79, 89, 128, 74, 79, 86, 69, 128, 74, 79, 212, 74, 79, 78, 71,
128, 74, 79, 78, 193, 74, 79, 75, 69, 82, 128, 74, 79, 73, 78, 84, 83,
128, 74, 79, 73, 78, 69, 68, 128, 74, 79, 73, 78, 128, 74, 79, 65, 128,
74, 78, 89, 65, 128, 74, 74, 89, 88, 128, 74, 74, 89, 84, 128, 74, 74,
89, 80, 128, 74, 74, 89, 128, 74, 74, 85, 88, 128, 74, 74, 85, 84, 128,
74, 74, 85, 82, 88, 128, 74, 74, 85, 82, 128, 74, 74, 85, 80, 128, 74,
74, 85, 79, 88, 128, 74, 74, 85, 79, 80, 128, 74, 74, 85, 79, 128, 74,
74, 85, 128, 74, 74, 79, 88, 128, 74, 74, 79, 84, 128, 74, 74, 79, 80,
128, 74, 74, 79, 128, 74, 74, 73, 88, 128, 74, 74, 73, 84, 128, 74, 74,
73, 80, 128, 74, 74, 73, 69, 88, 128, 74, 74, 73, 69, 84, 128, 74, 74,
73, 69, 80, 128, 74, 74, 73, 69, 128, 74, 74, 73, 128, 74, 74, 69, 69,
128, 74, 74, 69, 128, 74, 74, 65, 128, 74, 73, 76, 128, 74, 73, 73, 77,
128, 74, 73, 73, 128, 74, 73, 72, 86, 65, 77, 85, 76, 73, 89, 65, 128,
74, 73, 71, 83, 65, 215, 74, 73, 65, 128, 74, 72, 79, 88, 128, 74, 72,
79, 128, 74, 72, 69, 72, 128, 74, 72, 65, 89, 73, 78, 128, 74, 72, 65,
78, 128, 74, 72, 65, 77, 128, 74, 72, 65, 65, 128, 74, 72, 65, 128, 74,
69, 85, 128, 74, 69, 82, 85, 83, 65, 76, 69, 77, 128, 74, 69, 82, 65,
206, 74, 69, 82, 65, 128, 74, 69, 82, 128, 74, 69, 72, 128, 74, 69, 200,
74, 69, 71, 79, 71, 65, 78, 128, 74, 69, 69, 77, 128, 74, 69, 69, 205,
74, 69, 65, 78, 83, 128, 74, 65, 89, 78, 128, 74, 65, 89, 73, 78, 128,
74, 65, 89, 65, 78, 78, 65, 128, 74, 65, 87, 128, 74, 65, 86, 73, 89, 65,
78, 73, 128, 74, 65, 86, 65, 78, 69, 83, 197, 74, 65, 85, 128, 74, 65,
82, 128, 74, 65, 80, 65, 78, 69, 83, 197, 74, 65, 80, 65, 78, 128, 74,
65, 78, 85, 65, 82, 89, 128, 74, 65, 76, 76, 65, 74, 65, 76, 65, 76, 79,
85, 72, 79, 85, 128, 74, 65, 73, 206, 74, 65, 73, 128, 74, 65, 72, 128,
74, 65, 68, 69, 128, 74, 65, 67, 75, 83, 128, 74, 65, 67, 75, 45, 79, 45,
76, 65, 78, 84, 69, 82, 78, 128, 74, 65, 67, 203, 74, 45, 83, 73, 77, 80,
76, 73, 70, 73, 69, 196, 73, 90, 72, 73, 84, 83, 65, 128, 73, 90, 72, 73,
84, 83, 193, 73, 90, 72, 69, 128, 73, 90, 65, 75, 65, 89, 193, 73, 89,
69, 75, 128, 73, 89, 65, 78, 78, 65, 128, 73, 85, 74, 65, 128, 73, 84,
211, 73, 84, 69, 82, 65, 84, 73, 79, 206, 73, 84, 69, 77, 128, 73, 83,
83, 72, 65, 82, 128, 73, 83, 79, 83, 67, 69, 76, 69, 211, 73, 83, 79, 78,
128, 73, 83, 79, 206, 73, 83, 79, 76, 65, 84, 69, 128, 73, 83, 76, 65,
78, 68, 128, 73, 83, 69, 78, 45, 73, 83, 69, 78, 128, 73, 83, 65, 75, 73,
193, 73, 83, 45, 80, 73, 76, 76, 65, 128, 73, 82, 85, 89, 65, 78, 78, 65,
128, 73, 82, 85, 85, 89, 65, 78, 78, 65, 128, 73, 82, 79, 78, 45, 67, 79,
80, 80, 69, 210, 73, 82, 79, 78, 128, 73, 82, 66, 128, 73, 79, 84, 73,
70, 73, 69, 196, 73, 79, 84, 65, 84, 69, 196, 73, 79, 84, 65, 128, 73,
79, 84, 193, 73, 79, 82, 128, 73, 79, 78, 71, 128, 73, 79, 68, 72, 65,
68, 72, 128, 73, 78, 86, 73, 83, 73, 66, 76, 197, 73, 78, 86, 69, 82, 84,
69, 68, 128, 73, 78, 86, 69, 82, 84, 69, 196, 73, 78, 86, 69, 82, 84, 69,
66, 82, 65, 84, 69, 128, 73, 78, 86, 69, 82, 83, 197, 73, 78, 84, 82, 79,
68, 85, 67, 69, 82, 128, 73, 78, 84, 73, 128, 73, 78, 84, 69, 82, 83, 89,
76, 76, 65, 66, 73, 195, 73, 78, 84, 69, 82, 83, 69, 67, 84, 73, 79, 78,
128, 73, 78, 84, 69, 82, 83, 69, 67, 84, 73, 79, 206, 73, 78, 84, 69, 82,
83, 69, 67, 84, 73, 78, 199, 73, 78, 84, 69, 82, 82, 79, 66, 65, 78, 71,
128, 73, 78, 84, 69, 82, 82, 79, 66, 65, 78, 199, 73, 78, 84, 69, 82, 80,
79, 76, 65, 84, 73, 79, 206, 73, 78, 84, 69, 82, 76, 79, 67, 75, 69, 196,
73, 78, 84, 69, 82, 76, 73, 78, 69, 65, 210, 73, 78, 84, 69, 82, 76, 65,
67, 69, 196, 73, 78, 84, 69, 82, 73, 79, 210, 73, 78, 84, 69, 82, 69, 83,
212, 73, 78, 84, 69, 82, 67, 65, 76, 65, 84, 69, 128, 73, 78, 84, 69, 71,
82, 65, 84, 73, 79, 78, 128, 73, 78, 84, 69, 71, 82, 65, 84, 73, 79, 206,
73, 78, 84, 69, 71, 82, 65, 76, 128, 73, 78, 84, 69, 71, 82, 65, 204, 73,
78, 83, 85, 76, 65, 210, 73, 78, 83, 84, 82, 85, 77, 69, 78, 84, 65, 204,
73, 78, 83, 73, 68, 69, 128, 73, 78, 83, 73, 68, 197, 73, 78, 83, 69, 82,
84, 73, 79, 206, 73, 78, 83, 69, 82, 212, 73, 78, 83, 69, 67, 84, 128,
73, 78, 83, 67, 82, 73, 80, 84, 73, 79, 78, 65, 204, 73, 78, 80, 85, 212,
73, 78, 78, 79, 67, 69, 78, 67, 69, 128, 73, 78, 78, 78, 128, 73, 78, 78,
69, 82, 128, 73, 78, 78, 69, 210, 73, 78, 78, 128, 73, 78, 73, 78, 71,
85, 128, 73, 78, 72, 73, 66, 73, 212, 73, 78, 72, 69, 82, 69, 78, 212,
73, 78, 72, 65, 76, 69, 128, 73, 78, 71, 87, 65, 90, 128, 73, 78, 70, 79,
82, 77, 65, 84, 73, 79, 206, 73, 78, 70, 76, 85, 69, 78, 67, 69, 128, 73,
78, 70, 73, 78, 73, 84, 89, 128, 73, 78, 70, 73, 78, 73, 84, 217, 73, 78,
68, 85, 83, 84, 82, 73, 65, 204, 73, 78, 68, 73, 82, 69, 67, 212, 73, 78,
68, 73, 67, 84, 73, 79, 206, 73, 78, 68, 73, 67, 65, 84, 79, 82, 128, 73,
78, 68, 73, 67, 65, 84, 79, 210, 73, 78, 68, 73, 195, 73, 78, 68, 73, 65,
206, 73, 78, 68, 69, 88, 128, 73, 78, 68, 69, 80, 69, 78, 68, 69, 78,
212, 73, 78, 67, 82, 69, 77, 69, 78, 84, 128, 73, 78, 67, 82, 69, 65, 83,
69, 211, 73, 78, 67, 82, 69, 65, 83, 69, 128, 73, 78, 67, 82, 69, 65, 83,
197, 73, 78, 67, 79, 77, 80, 76, 69, 84, 197, 73, 78, 67, 79, 77, 73, 78,
199, 73, 78, 67, 76, 85, 68, 73, 78, 199, 73, 78, 67, 72, 128, 73, 78,
66, 79, 216, 73, 78, 65, 80, 128, 73, 78, 45, 65, 76, 65, 70, 128, 73,
77, 80, 69, 82, 73, 65, 204, 73, 77, 80, 69, 82, 70, 69, 67, 84, 85, 205,
73, 77, 80, 69, 82, 70, 69, 67, 84, 65, 128, 73, 77, 80, 69, 82, 70, 69,
67, 84, 193, 73, 77, 78, 128, 73, 77, 73, 83, 69, 79, 211, 73, 77, 73,
78, 51, 128, 73, 77, 73, 78, 128, 73, 77, 73, 206, 73, 77, 73, 70, 84,
72, 79, 82, 79, 78, 128, 73, 77, 73, 70, 84, 72, 79, 82, 65, 128, 73, 77,
73, 70, 79, 78, 79, 78, 128, 73, 77, 73, 68, 73, 65, 82, 71, 79, 78, 128,
73, 77, 65, 71, 197, 73, 76, 85, 89, 65, 78, 78, 65, 128, 73, 76, 85, 89,
128, 73, 76, 85, 85, 89, 65, 78, 78, 65, 128, 73, 76, 85, 84, 128, 73,
76, 73, 77, 77, 85, 52, 128, 73, 76, 73, 77, 77, 85, 51, 128, 73, 76, 73,
77, 77, 85, 128, 73, 76, 73, 77, 77, 213, 73, 76, 50, 128, 73, 75, 65,
82, 65, 128, 73, 75, 65, 82, 193, 73, 74, 128, 73, 73, 89, 65, 78, 78,
65, 128, 73, 71, 73, 128, 73, 71, 201, 73, 71, 71, 87, 83, 128, 73, 70,
73, 78, 128, 73, 69, 85, 78, 71, 45, 84, 73, 75, 69, 85, 84, 128, 73, 69,
85, 78, 71, 45, 84, 72, 73, 69, 85, 84, 72, 128, 73, 69, 85, 78, 71, 45,
82, 73, 69, 85, 76, 128, 73, 69, 85, 78, 71, 45, 80, 73, 69, 85, 80, 128,
73, 69, 85, 78, 71, 45, 80, 72, 73, 69, 85, 80, 72, 128, 73, 69, 85, 78,
71, 45, 67, 73, 69, 85, 67, 128, 73, 69, 85, 78, 71, 45, 67, 72, 73, 69,
85, 67, 72, 128, 73, 69, 85, 78, 199, 73, 68, 76, 69, 128, 73, 68, 73,
77, 128, 73, 68, 73, 205, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
68, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 68, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 68, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
68, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 68, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 67, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 67, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
67, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 67, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 67, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
67, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 67, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 67, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
67, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 67, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 66, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 66, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
66, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 66, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 66, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
66, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 66, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 66, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 66, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
65, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 65, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 65, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
65, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 65, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 65, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
65, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 65, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 57, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 57, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
57, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 57, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 57, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
57, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 57, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 57, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
57, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 57, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 56, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 56, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
56, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 56, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 56, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
56, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 56, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 56, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 56, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
55, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 55, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 55, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
55, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 55, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 55, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
55, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 55, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 54, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 54, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
54, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 54, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 54, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
54, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 54, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 54, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 54, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
53, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 53, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 53, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
53, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 53, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 53, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
53, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 53, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 52, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 52, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
52, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 52, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 52, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
52, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 52, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 52, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
52, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 52, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 51, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 51, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
51, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 51, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 51, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
51, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 51, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 51, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 51, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
50, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 50, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 50, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
50, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 50, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 50, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
50, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 50, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 49, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 49, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
49, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 49, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 49, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
49, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 49, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 49, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
49, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 49, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 48, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 48, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
48, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 48, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 48, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65,
48, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 65, 48, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 65, 48, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 65, 48, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
70, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 70, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 70, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
70, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 70, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 70, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
70, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 70, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 69, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 69, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
69, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 69, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 69, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
69, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 69, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 69, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
69, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 69, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 68, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 68, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
68, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 68, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 68, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
68, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 68, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 68, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 68, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
67, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 67, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 67, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
67, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 67, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 67, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
67, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 67, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 66, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 66, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
66, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 66, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 66, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
66, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 66, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 66, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
66, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 66, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 65, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 65, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
65, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 65, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 65, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
65, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 65, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 65, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 65, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
57, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 57, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 57, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
57, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 57, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 57, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
57, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 57, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 56, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 56, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
56, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 56, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 56, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
56, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 56, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 56, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
56, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 56, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 55, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 55, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
55, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 55, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 55, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
55, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 55, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 55, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 55, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
54, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 54, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 54, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
54, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 54, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 54, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
54, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 54, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 53, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 53, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
53, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 53, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 53, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
53, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 53, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 53, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
53, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 53, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 52, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 52, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
52, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 52, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 52, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
52, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 52, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 52, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 52, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
51, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 51, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 51, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
51, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 51, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 51, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
51, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 51, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 50, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 50, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
50, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 65, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 50, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 50, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
50, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 54, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 52, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 50, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 50, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
50, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 50, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 69, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 49, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 49, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
49, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 65, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 49, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 49, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
49, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 52, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 49, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 49, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 49, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
48, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 69, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 67, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 48, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 48, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
48, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 56, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 54, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 70, 57, 48, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 70, 57, 48, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57,
48, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 50, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 70, 57, 48, 48, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 57, 49, 52, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 57, 48, 52, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 56, 68,
55, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 56, 67, 65, 57, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 56, 57, 69, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 55, 68, 52, 50, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 55, 65, 55, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 55, 57, 56, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 55, 54,
68, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 55, 53, 51, 51, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 55, 53, 49, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 55, 49, 50, 49, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 55, 48, 66, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 54, 70, 49, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 69,
56, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 55, 50, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 55, 48, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 54, 55, 48, 56, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 54, 54, 50, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 54, 53, 66, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 53,
57, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 53, 53, 55, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 51, 53, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 54, 51, 48, 55, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 54, 50, 57, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 54, 50, 53, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 54, 50,
52, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 70, 56, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 68, 69, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 53, 66, 56, 57, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 53, 66, 53, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 53, 57, 50, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 57,
49, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 56, 70, 48, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 53, 66, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 53, 52, 51, 57, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 53, 52, 48, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 53, 51, 70, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 51,
67, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 50, 68, 68, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 53, 50, 55, 50, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 53, 50, 52, 68, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 53, 50, 49, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 53, 49, 56, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 52, 69,
65, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 52, 69, 56, 67, 128,
73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 52, 69, 50, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 52, 69, 48, 57, 128, 73, 68, 69, 79, 71, 82,
65, 80, 72, 45, 52, 69, 48, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 65, 49, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 65, 49, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65,
49, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 65,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 57, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 56, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 55, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 65, 49, 54, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 65, 49, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 65, 49, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 65, 49, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65,
49, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 49,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 49, 48, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 69, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 65, 48, 68, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 65, 48, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 65, 48, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 65, 48, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65,
48, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 56,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 55, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 65, 48, 53, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 65, 48, 52, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 65, 48, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 65, 48, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 65, 48, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 65,
48, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 70,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 69, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 67, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 70, 66, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 70, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 70, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 70, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
70, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 54,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 53, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 52, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 70, 51, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 70, 50, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 70, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 70, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 69, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
69, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 68,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 67, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 65, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 69, 57, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 69, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 69, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 69, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
69, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 52,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 51, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 50, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 69, 49, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 69, 48, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 68, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 68, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 68, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
68, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 66,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 65, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 56, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 68, 55, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 68, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 68, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 68, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
68, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 50,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 49, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 68, 48, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 70, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 67, 69, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 67, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 67, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 67, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
67, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 57,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 56, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 54, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 67, 53, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 67, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 67, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 67, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
67, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 67, 48,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 70, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 69, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 68, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 66, 67, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 66, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 66, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 66, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
66, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 55,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 54, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 66, 52, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 66, 51, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 66, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 66, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 66, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
65, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 69,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 68, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 67, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 66, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 65, 65, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 65, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 65, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 65, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
65, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 53,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 52, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 65, 50, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 65, 49, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 65, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 57, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 57, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
57, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 67,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 66, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 65, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 57, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 57, 56, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 57, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 57, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 57, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
57, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 51,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 50, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 57, 48, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 56, 70, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 56, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 56, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 56, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
56, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 65,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 57, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 56, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 55, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 56, 54, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 56, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 56, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 56, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
56, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 49,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 56, 48, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 69, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 55, 68, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 55, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 55, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 55, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
55, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 56,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 55, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 55, 53, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 55, 52, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 55, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 55, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 55, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
55, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 70,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 69, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 67, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 54, 66, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 54, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 54, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 54, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
54, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 54,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 53, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 52, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 54, 51, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 54, 50, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 54, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 54, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 53, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
53, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 68,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 67, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 65, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 53, 57, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 53, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 53, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 53, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
53, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 52,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 51, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 50, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 53, 49, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 53, 48, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 52, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 52, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 52, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
52, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 66,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 65, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 56, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 52, 55, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 52, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 52, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 52, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
52, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 50,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 49, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 52, 48, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 70, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 51, 69, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 51, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 51, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 51, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
51, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 57,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 56, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 54, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 51, 53, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 51, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 51, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 51, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
51, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 51, 48,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 70, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 69, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 68, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 50, 67, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 50, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 50, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 50, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
50, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 55,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 54, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 50, 52, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 50, 51, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 50, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 50, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 50, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
49, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 69,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 68, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 67, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 66, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 49, 65, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 49, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 49, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 49, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
49, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 53,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 52, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 49, 50, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 49, 49, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 49, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 48, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 48, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
48, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 67,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 66, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 65, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 57, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 57, 48, 56, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 57, 48, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 57, 48, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 57, 48, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57,
48, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 51,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 50, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 57, 48, 48, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 70, 70, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 70, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 70, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 70, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
70, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 65,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 57, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 56, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 55, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 70, 54, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 70, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 70, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 70, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
70, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 49,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 70, 48, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 69, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 69, 68, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 69, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 69, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 69, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
69, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 56,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 55, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 69, 53, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 69, 52, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 69, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 69, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 69, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
69, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 70,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 69, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 67, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 68, 66, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 68, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 68, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 68, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
68, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 54,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 53, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 52, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 68, 51, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 68, 50, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 68, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 68, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 67, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
67, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 68,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 67, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 65, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 67, 57, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 67, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 67, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 67, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
67, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 52,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 51, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 50, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 67, 49, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 67, 48, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 66, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 66, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 66, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
66, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 66,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 65, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 56, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 66, 55, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 66, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 66, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 66, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
66, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 50,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 49, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 66, 48, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 70, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 65, 69, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 65, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 65, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 65, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
65, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 57,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 56, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 54, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 65, 53, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 65, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 65, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 65, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
65, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 65, 48,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 70, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 69, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 68, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 57, 67, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 57, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 57, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 57, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
57, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 55,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 54, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 57, 52, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 57, 51, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 57, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 57, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 57, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
56, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 69,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 68, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 67, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 66, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 56, 65, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 56, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 56, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 56, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
56, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 53,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 52, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 51, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 56, 50, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 56, 49, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 56, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 55, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 55, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
55, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 67,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 66, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 65, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 57, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 55, 56, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 55, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 55, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 55, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
55, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 51,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 50, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 49, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 55, 48, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 54, 70, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 54, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 54, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 54, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
54, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 65,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 57, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 56, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 55, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 54, 54, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 54, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 54, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 54, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
54, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 49,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 54, 48, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 70, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 69, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 53, 68, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 53, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 53, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 53, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
53, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 56,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 55, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 54, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 53, 53, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 53, 52, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 53, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 53, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 53, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
53, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 70,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 69, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 68, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 67, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 52, 66, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 52, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 52, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 52, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
52, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 54,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 53, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 52, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 52, 51, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 52, 50, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 52, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 52, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 51, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
51, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 68,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 67, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 66, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 65, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 51, 57, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 51, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 51, 55, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 51, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
51, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 52,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 51, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 50, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 51, 49, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 51, 48, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 50, 70, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 50, 69, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 50, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
50, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 66,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 65, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 57, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 56, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 50, 55, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 50, 54, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 50, 53, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 50, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
50, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 50,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 49, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 50, 48, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 70, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 49, 69, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 49, 68, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 49, 67, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 49, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
49, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 57,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 56, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 55, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 54, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 49, 53, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 49, 52, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 49, 51, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 49, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
49, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 49, 48,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 70, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 69, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 68, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 48, 67, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 48, 66, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 48, 65, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 48, 57, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56,
48, 56, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 55,
128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 54, 128, 73,
68, 69, 79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 53, 128, 73, 68, 69,
79, 71, 82, 65, 80, 72, 45, 50, 70, 56, 48, 52, 128, 73, 68, 69, 79, 71,
82, 65, 80, 72, 45, 50, 70, 56, 48, 51, 128, 73, 68, 69, 79, 71, 82, 65,
80, 72, 45, 50, 70, 56, 48, 50, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72,
45, 50, 70, 56, 48, 49, 128, 73, 68, 69, 79, 71, 82, 65, 80, 72, 45, 50,
70, 56, 48, 48, 128, 73, 68, 69, 79, 71, 82, 65, 80, 200, 73, 68, 69, 78,
84, 73, 70, 73, 67, 65, 84, 73, 79, 78, 128, 73, 68, 69, 78, 84, 73, 67,
65, 204, 73, 67, 79, 78, 128, 73, 67, 72, 79, 85, 128, 73, 67, 72, 79,
83, 128, 73, 67, 72, 73, 77, 65, 84, 79, 83, 128, 73, 67, 72, 65, 68, 73,
78, 128, 73, 67, 69, 76, 65, 78, 68, 73, 67, 45, 89, 82, 128, 73, 66, 73,
70, 73, 76, 73, 128, 73, 65, 85, 68, 65, 128, 73, 48, 49, 53, 128, 73,
48, 49, 52, 128, 73, 48, 49, 51, 128, 73, 48, 49, 50, 128, 73, 48, 49,
49, 65, 128, 73, 48, 49, 49, 128, 73, 48, 49, 48, 65, 128, 73, 48, 49,
48, 128, 73, 48, 48, 57, 65, 128, 73, 48, 48, 57, 128, 73, 48, 48, 56,
128, 73, 48, 48, 55, 128, 73, 48, 48, 54, 128, 73, 48, 48, 53, 65, 128,
73, 48, 48, 53, 128, 73, 48, 48, 52, 128, 73, 48, 48, 51, 128, 73, 48,
48, 50, 128, 73, 48, 48, 49, 128, 73, 45, 89, 85, 128, 73, 45, 89, 79,
128, 73, 45, 89, 69, 79, 128, 73, 45, 89, 69, 128, 73, 45, 89, 65, 69,
128, 73, 45, 89, 65, 45, 79, 128, 73, 45, 89, 65, 128, 73, 45, 79, 45,
73, 128, 73, 45, 79, 128, 73, 45, 69, 85, 128, 73, 45, 66, 69, 65, 77,
128, 73, 45, 65, 82, 65, 69, 65, 128, 73, 45, 65, 128, 72, 90, 90, 90,
71, 128, 72, 90, 90, 90, 128, 72, 90, 90, 80, 128, 72, 90, 90, 128, 72,
90, 87, 71, 128, 72, 90, 87, 128, 72, 90, 84, 128, 72, 90, 71, 128, 72,
89, 83, 84, 69, 82, 69, 83, 73, 211, 72, 89, 80, 79, 68, 73, 65, 83, 84,
79, 76, 69, 128, 72, 89, 80, 72, 69, 78, 65, 84, 73, 79, 206, 72, 89, 80,
72, 69, 78, 45, 77, 73, 78, 85, 83, 128, 72, 89, 80, 72, 69, 78, 128, 72,
89, 80, 72, 69, 206, 72, 89, 71, 73, 69, 73, 65, 128, 72, 89, 71, 73, 69,
65, 128, 72, 88, 87, 71, 128, 72, 88, 85, 79, 88, 128, 72, 88, 85, 79,
84, 128, 72, 88, 85, 79, 80, 128, 72, 88, 85, 79, 128, 72, 88, 79, 88,
128, 72, 88, 79, 84, 128, 72, 88, 79, 80, 128, 72, 88, 79, 128, 72, 88,
73, 88, 128, 72, 88, 73, 84, 128, 72, 88, 73, 80, 128, 72, 88, 73, 69,
88, 128, 72, 88, 73, 69, 84, 128, 72, 88, 73, 69, 80, 128, 72, 88, 73,
69, 128, 72, 88, 73, 128, 72, 88, 69, 88, 128, 72, 88, 69, 80, 128, 72,
88, 69, 128, 72, 88, 65, 88, 128, 72, 88, 65, 84, 128, 72, 88, 65, 80,
128, 72, 88, 65, 128, 72, 87, 85, 128, 72, 87, 65, 73, 82, 128, 72, 87,
65, 72, 128, 72, 85, 86, 65, 128, 72, 85, 83, 72, 69, 196, 72, 85, 83,
72, 128, 72, 85, 82, 65, 78, 128, 72, 85, 79, 84, 128, 72, 85, 78, 68,
82, 69, 68, 83, 128, 72, 85, 78, 68, 82, 69, 68, 211, 72, 85, 78, 68, 82,
69, 68, 128, 72, 85, 78, 68, 82, 69, 196, 72, 85, 78, 128, 72, 85, 77,
208, 72, 85, 77, 65, 78, 128, 72, 85, 77, 65, 206, 72, 85, 76, 50, 128,
72, 85, 73, 73, 84, 79, 128, 72, 85, 71, 71, 73, 78, 71, 128, 72, 85, 71,
71, 73, 78, 199, 72, 85, 66, 50, 128, 72, 85, 66, 178, 72, 85, 66, 128,
72, 85, 65, 82, 65, 68, 68, 79, 128, 72, 85, 65, 78, 128, 72, 85, 45, 51,
128, 72, 85, 45, 50, 128, 72, 85, 45, 49, 128, 72, 84, 83, 128, 72, 84,
74, 128, 72, 82, 89, 86, 78, 73, 193, 72, 80, 87, 71, 128, 72, 80, 65,
128, 72, 80, 128, 72, 79, 85, 83, 197, 72, 79, 85, 82, 71, 76, 65, 83,
83, 128, 72, 79, 85, 82, 71, 76, 65, 83, 211, 72, 79, 85, 82, 128, 72,
79, 85, 210, 72, 79, 84, 69, 76, 128, 72, 79, 84, 65, 128, 72, 79, 83,
80, 73, 84, 65, 76, 128, 72, 79, 82, 83, 69, 128, 72, 79, 82, 83, 197,
72, 79, 82, 82, 128, 72, 79, 82, 78, 83, 128, 72, 79, 82, 73, 90, 79, 78,
84, 65, 76, 76, 217, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54,
45, 48, 54, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45,
48, 53, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45, 48,
52, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45, 48, 51,
128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45, 48, 50, 128,
72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45, 48, 49, 128, 72,
79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 54, 45, 48, 48, 128, 72, 79,
82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 53, 45, 48, 54, 128, 72, 79, 82,
73, 90, 79, 78, 84, 65, 76, 45, 48, 53, 45, 48, 53, 128, 72, 79, 82, 73,
90, 79, 78, 84, 65, 76, 45, 48, 53, 45, 48, 52, 128, 72, 79, 82, 73, 90,
79, 78, 84, 65, 76, 45, 48, 53, 45, 48, 51, 128, 72, 79, 82, 73, 90, 79,
78, 84, 65, 76, 45, 48, 53, 45, 48, 50, 128, 72, 79, 82, 73, 90, 79, 78,
84, 65, 76, 45, 48, 53, 45, 48, 49, 128, 72, 79, 82, 73, 90, 79, 78, 84,
65, 76, 45, 48, 53, 45, 48, 48, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65,
76, 45, 48, 52, 45, 48, 54, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76,
45, 48, 52, 45, 48, 53, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45,
48, 52, 45, 48, 52, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48,
52, 45, 48, 51, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 52,
45, 48, 50, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 52, 45,
48, 49, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 52, 45, 48,
48, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 54,
128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 53, 128,
72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 52, 128, 72,
79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 51, 128, 72, 79,
82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 50, 128, 72, 79, 82,
73, 90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 49, 128, 72, 79, 82, 73,
90, 79, 78, 84, 65, 76, 45, 48, 51, 45, 48, 48, 128, 72, 79, 82, 73, 90,
79, 78, 84, 65, 76, 45, 48, 50, 45, 48, 54, 128, 72, 79, 82, 73, 90, 79,
78, 84, 65, 76, 45, 48, 50, 45, 48, 53, 128, 72, 79, 82, 73, 90, 79, 78,
84, 65, 76, 45, 48, 50, 45, 48, 52, 128, 72, 79, 82, 73, 90, 79, 78, 84,
65, 76, 45, 48, 50, 45, 48, 51, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65,
76, 45, 48, 50, 45, 48, 50, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76,
45, 48, 50, 45, 48, 49, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45,
48, 50, 45, 48, 48, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48,
49, 45, 48, 54, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49,
45, 48, 53, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49, 45,
48, 52, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49, 45, 48,
51, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49, 45, 48, 50,
128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49, 45, 48, 49, 128,
72, 79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 49, 45, 48, 48, 128, 72,
79, 82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 48, 45, 48, 54, 128, 72, 79,
82, 73, 90, 79, 78, 84, 65, 76, 45, 48, 48, 45, 48, 53, 128, 72, 79, 82,
73, 90, 79, 78, 84, 65, 76, 45, 48, 48, 45, 48, 52, 128, 72, 79, 82, 73,
90, 79, 78, 84, 65, 76, 45, 48, 48, 45, 48, 51, 128, 72, 79, 82, 73, 90,
79, 78, 84, 65, 76, 45, 48, 48, 45, 48, 50, 128, 72, 79, 82, 73, 90, 79,
78, 84, 65, 76, 45, 48, 48, 45, 48, 49, 128, 72, 79, 82, 73, 90, 79, 78,
84, 65, 76, 45, 48, 48, 45, 48, 48, 128, 72, 79, 82, 73, 90, 79, 78, 84,
65, 76, 128, 72, 79, 82, 73, 90, 79, 78, 84, 65, 204, 72, 79, 82, 73,
128, 72, 79, 82, 193, 72, 79, 79, 85, 128, 72, 79, 79, 82, 85, 128, 72,
79, 79, 80, 128, 72, 79, 79, 78, 128, 72, 79, 79, 75, 69, 68, 128, 72,
79, 79, 75, 69, 196, 72, 79, 78, 69, 89, 66, 69, 69, 128, 72, 79, 78, 69,
217, 72, 79, 77, 79, 84, 72, 69, 84, 73, 67, 128, 72, 79, 77, 79, 84, 72,
69, 84, 73, 195, 72, 79, 76, 79, 128, 72, 79, 76, 76, 79, 215, 72, 79,
76, 69, 128, 72, 79, 76, 68, 73, 78, 199, 72, 79, 76, 65, 77, 128, 72,
79, 76, 65, 205, 72, 79, 75, 65, 128, 72, 79, 67, 75, 69, 217, 72, 79,
67, 72, 79, 128, 72, 79, 45, 56, 128, 72, 79, 45, 55, 128, 72, 79, 45,
54, 128, 72, 79, 45, 53, 128, 72, 79, 45, 52, 128, 72, 79, 45, 51, 128,
72, 79, 45, 50, 128, 72, 79, 45, 49, 128, 72, 78, 85, 84, 128, 72, 78,
85, 79, 88, 128, 72, 78, 85, 79, 128, 72, 78, 85, 66, 128, 72, 78, 79,
88, 128, 72, 78, 79, 84, 128, 72, 78, 79, 80, 128, 72, 78, 73, 88, 128,
72, 78, 73, 84, 128, 72, 78, 73, 80, 128, 72, 78, 73, 69, 88, 128, 72,
78, 73, 69, 84, 128, 72, 78, 73, 69, 80, 128, 72, 78, 73, 69, 128, 72,
78, 73, 128, 72, 78, 69, 88, 128, 72, 78, 69, 80, 128, 72, 78, 69, 128,
72, 78, 65, 88, 128, 72, 78, 65, 85, 128, 72, 78, 65, 84, 128, 72, 78,
65, 80, 128, 72, 78, 65, 128, 72, 77, 89, 88, 128, 72, 77, 89, 82, 88,
128, 72, 77, 89, 82, 128, 72, 77, 89, 80, 128, 72, 77, 89, 128, 72, 77,
85, 88, 128, 72, 77, 85, 84, 128, 72, 77, 85, 82, 88, 128, 72, 77, 85,
82, 128, 72, 77, 85, 80, 128, 72, 77, 85, 79, 88, 128, 72, 77, 85, 79,
80, 128, 72, 77, 85, 79, 128, 72, 77, 85, 128, 72, 77, 79, 88, 128, 72,
77, 79, 84, 128, 72, 77, 79, 80, 128, 72, 77, 79, 128, 72, 77, 73, 88,
128, 72, 77, 73, 84, 128, 72, 77, 73, 80, 128, 72, 77, 73, 69, 88, 128,
72, 77, 73, 69, 80, 128, 72, 77, 73, 69, 128, 72, 77, 73, 128, 72, 77,
69, 128, 72, 77, 65, 88, 128, 72, 77, 65, 84, 128, 72, 77, 65, 80, 128,
72, 77, 65, 128, 72, 76, 89, 88, 128, 72, 76, 89, 84, 128, 72, 76, 89,
82, 88, 128, 72, 76, 89, 82, 128, 72, 76, 89, 80, 128, 72, 76, 89, 128,
72, 76, 85, 88, 128, 72, 76, 85, 84, 128, 72, 76, 85, 82, 88, 128, 72,
76, 85, 82, 128, 72, 76, 85, 80, 128, 72, 76, 85, 79, 88, 128, 72, 76,
85, 79, 80, 128, 72, 76, 85, 79, 128, 72, 76, 85, 128, 72, 76, 79, 88,
128, 72, 76, 79, 80, 128, 72, 76, 79, 128, 72, 76, 73, 88, 128, 72, 76,
73, 84, 128, 72, 76, 73, 80, 128, 72, 76, 73, 69, 88, 128, 72, 76, 73,
69, 80, 128, 72, 76, 73, 69, 128, 72, 76, 73, 128, 72, 76, 69, 88, 128,
72, 76, 69, 80, 128, 72, 76, 69, 128, 72, 76, 65, 88, 128, 72, 76, 65,
85, 128, 72, 76, 65, 84, 128, 72, 76, 65, 80, 128, 72, 76, 65, 128, 72,
76, 128, 72, 75, 128, 72, 73, 90, 66, 128, 72, 73, 89, 79, 128, 72, 73,
84, 84, 73, 78, 199, 72, 73, 83, 84, 79, 82, 73, 195, 72, 73, 82, 73, 81,
128, 72, 73, 80, 80, 79, 80, 79, 84, 65, 77, 85, 83, 128, 72, 73, 78, 71,
69, 68, 128, 72, 73, 78, 71, 69, 196, 72, 73, 78, 71, 69, 128, 72, 73,
78, 68, 213, 72, 73, 75, 73, 78, 199, 72, 73, 71, 72, 45, 83, 80, 69, 69,
196, 72, 73, 71, 72, 45, 82, 69, 86, 69, 82, 83, 69, 68, 45, 185, 72, 73,
71, 72, 45, 76, 79, 215, 72, 73, 71, 72, 45, 72, 69, 69, 76, 69, 196, 72,
73, 69, 88, 128, 72, 73, 69, 85, 72, 45, 83, 73, 79, 83, 128, 72, 73, 69,
85, 72, 45, 82, 73, 69, 85, 76, 128, 72, 73, 69, 85, 72, 45, 80, 73, 69,
85, 80, 128, 72, 73, 69, 85, 72, 45, 78, 73, 69, 85, 78, 128, 72, 73, 69,
85, 72, 45, 77, 73, 69, 85, 77, 128, 72, 73, 69, 85, 200, 72, 73, 69, 82,
79, 71, 76, 89, 80, 72, 73, 195, 72, 73, 69, 128, 72, 73, 68, 73, 78,
199, 72, 73, 68, 69, 84, 128, 72, 73, 68, 69, 128, 72, 73, 66, 73, 83,
67, 85, 83, 128, 72, 73, 45, 82, 69, 83, 128, 72, 73, 45, 55, 128, 72,
73, 45, 54, 128, 72, 73, 45, 53, 128, 72, 73, 45, 52, 128, 72, 73, 45,
51, 128, 72, 73, 45, 50, 128, 72, 73, 45, 49, 128, 72, 72, 87, 65, 128,
72, 72, 85, 128, 72, 72, 73, 128, 72, 72, 69, 69, 128, 72, 72, 69, 128,
72, 72, 65, 65, 128, 72, 71, 128, 72, 69, 89, 84, 128, 72, 69, 88, 73,
70, 79, 82, 205, 72, 69, 88, 65, 71, 82, 65, 205, 72, 69, 88, 65, 71, 79,
78, 128, 72, 69, 82, 85, 84, 85, 128, 72, 69, 82, 85, 128, 72, 69, 82,
77, 73, 84, 73, 65, 206, 72, 69, 82, 77, 73, 79, 78, 73, 65, 206, 72, 69,
82, 77, 69, 83, 128, 72, 69, 82, 69, 128, 72, 69, 82, 66, 128, 72, 69,
82, 65, 69, 85, 205, 72, 69, 78, 71, 128, 72, 69, 78, 199, 72, 69, 77,
80, 128, 72, 69, 76, 77, 69, 84, 128, 72, 69, 76, 77, 69, 212, 72, 69,
76, 205, 72, 69, 76, 76, 83, 67, 72, 82, 69, 73, 66, 69, 210, 72, 69, 76,
73, 88, 128, 72, 69, 76, 73, 67, 79, 80, 84, 69, 82, 128, 72, 69, 75, 85,
84, 65, 65, 82, 85, 128, 72, 69, 73, 83, 69, 73, 128, 72, 69, 73, 71, 72,
84, 128, 72, 69, 69, 73, 128, 72, 69, 68, 71, 69, 72, 79, 71, 128, 72,
69, 65, 86, 89, 128, 72, 69, 65, 86, 69, 78, 76, 217, 72, 69, 65, 86, 69,
78, 128, 72, 69, 65, 86, 69, 206, 72, 69, 65, 82, 84, 83, 128, 72, 69,
65, 82, 84, 45, 83, 72, 65, 80, 69, 196, 72, 69, 65, 82, 84, 128, 72, 69,
65, 82, 212, 72, 69, 65, 82, 73, 78, 199, 72, 69, 65, 82, 45, 78, 79, 45,
69, 86, 73, 204, 72, 69, 65, 68, 83, 84, 82, 79, 75, 69, 128, 72, 69, 65,
68, 83, 84, 79, 78, 69, 128, 72, 69, 65, 68, 83, 84, 79, 78, 197, 72, 69,
65, 68, 83, 67, 65, 82, 70, 128, 72, 69, 65, 68, 80, 72, 79, 78, 69, 128,
72, 69, 65, 68, 73, 78, 71, 128, 72, 69, 65, 68, 45, 66, 65, 78, 68, 65,
71, 69, 128, 72, 69, 45, 55, 128, 72, 69, 45, 54, 128, 72, 69, 45, 53,
128, 72, 69, 45, 52, 128, 72, 69, 45, 51, 128, 72, 69, 45, 50, 128, 72,
69, 45, 49, 128, 72, 68, 82, 128, 72, 67, 128, 72, 66, 65, 83, 65, 45,
69, 83, 65, 83, 193, 72, 66, 65, 83, 193, 72, 65, 89, 65, 78, 78, 65,
128, 72, 65, 87, 74, 128, 72, 65, 86, 69, 128, 72, 65, 85, 80, 84, 83,
84, 73, 77, 77, 69, 128, 72, 65, 213, 72, 65, 84, 82, 65, 206, 72, 65,
84, 72, 73, 128, 72, 65, 84, 69, 128, 72, 65, 84, 67, 72, 73, 78, 199,
72, 65, 84, 65, 198, 72, 65, 83, 69, 210, 72, 65, 83, 65, 78, 84, 65,
128, 72, 65, 82, 80, 79, 79, 78, 128, 72, 65, 82, 80, 79, 79, 206, 72,
65, 82, 77, 79, 78, 73, 67, 128, 72, 65, 82, 75, 76, 69, 65, 206, 72, 65,
82, 68, 78, 69, 83, 83, 128, 72, 65, 82, 196, 72, 65, 82, 66, 65, 72, 65,
89, 128, 72, 65, 80, 80, 217, 72, 65, 78, 85, 78, 79, 207, 72, 65, 78,
73, 70, 201, 72, 65, 78, 71, 90, 72, 79, 213, 72, 65, 78, 68, 83, 72, 65,
75, 69, 128, 72, 65, 78, 68, 83, 128, 72, 65, 78, 68, 211, 72, 65, 78,
68, 76, 69, 83, 128, 72, 65, 78, 68, 76, 69, 128, 72, 65, 78, 68, 66, 65,
76, 76, 128, 72, 65, 78, 68, 66, 65, 71, 128, 72, 65, 78, 68, 45, 79, 86,
65, 76, 128, 72, 65, 78, 68, 45, 79, 86, 65, 204, 72, 65, 78, 68, 45, 72,
79, 79, 75, 128, 72, 65, 78, 68, 45, 72, 79, 79, 203, 72, 65, 78, 68, 45,
72, 73, 78, 71, 69, 128, 72, 65, 78, 68, 45, 72, 73, 78, 71, 197, 72, 65,
78, 68, 45, 70, 76, 65, 84, 128, 72, 65, 78, 68, 45, 70, 76, 65, 212, 72,
65, 78, 68, 45, 70, 73, 83, 84, 128, 72, 65, 78, 68, 45, 67, 85, 82, 76,
73, 67, 85, 69, 128, 72, 65, 78, 68, 45, 67, 85, 82, 76, 73, 67, 85, 197,
72, 65, 78, 68, 45, 67, 85, 80, 128, 72, 65, 78, 68, 45, 67, 85, 208, 72,
65, 78, 68, 45, 67, 76, 65, 87, 128, 72, 65, 78, 68, 45, 67, 76, 65, 215,
72, 65, 78, 68, 45, 67, 73, 82, 67, 76, 69, 128, 72, 65, 78, 68, 45, 67,
73, 82, 67, 76, 197, 72, 65, 78, 68, 45, 65, 78, 71, 76, 69, 128, 72, 65,
78, 68, 45, 65, 78, 71, 76, 197, 72, 65, 78, 68, 128, 72, 65, 78, 45, 65,
75, 65, 84, 128, 72, 65, 77, 90, 65, 128, 72, 65, 77, 90, 193, 72, 65,
77, 83, 84, 69, 210, 72, 65, 77, 77, 69, 82, 128, 72, 65, 77, 77, 69,
210, 72, 65, 77, 66, 85, 82, 71, 69, 82, 128, 72, 65, 76, 81, 65, 128,
72, 65, 76, 79, 128, 72, 65, 76, 70, 45, 67, 73, 82, 67, 76, 197, 72, 65,
76, 70, 45, 50, 128, 72, 65, 76, 70, 45, 49, 128, 72, 65, 76, 70, 128,
72, 65, 76, 66, 69, 82, 68, 128, 72, 65, 76, 65, 78, 84, 65, 128, 72, 65,
73, 84, 85, 128, 72, 65, 73, 211, 72, 65, 73, 82, 67, 85, 84, 128, 72,
65, 71, 76, 65, 218, 72, 65, 71, 76, 128, 72, 65, 70, 85, 75, 72, 65,
128, 72, 65, 70, 85, 75, 72, 128, 72, 65, 69, 71, 204, 72, 65, 68, 69,
83, 128, 72, 65, 65, 82, 85, 128, 72, 65, 65, 77, 128, 72, 65, 193, 72,
65, 45, 72, 65, 128, 72, 65, 45, 57, 128, 72, 65, 45, 56, 128, 72, 65,
45, 55, 128, 72, 65, 45, 54, 128, 72, 65, 45, 53, 128, 72, 65, 45, 52,
128, 72, 65, 45, 51, 128, 72, 65, 45, 50, 128, 72, 65, 45, 49, 49, 128,
72, 65, 45, 49, 48, 128, 72, 65, 45, 49, 128, 72, 48, 48, 56, 128, 72,
48, 48, 55, 128, 72, 48, 48, 54, 65, 128, 72, 48, 48, 54, 128, 72, 48,
48, 53, 128, 72, 48, 48, 52, 128, 72, 48, 48, 51, 128, 72, 48, 48, 50,
128, 72, 48, 48, 49, 128, 72, 45, 84, 89, 80, 197, 71, 89, 85, 128, 71,
89, 79, 78, 128, 71, 89, 79, 128, 71, 89, 73, 128, 71, 89, 70, 213, 71,
89, 69, 69, 128, 71, 89, 65, 83, 128, 71, 89, 65, 65, 128, 71, 89, 65,
128, 71, 89, 128, 71, 87, 85, 128, 71, 87, 73, 128, 71, 87, 69, 69, 128,
71, 87, 69, 128, 71, 87, 65, 65, 128, 71, 87, 65, 128, 71, 87, 128, 71,
86, 65, 78, 71, 128, 71, 86, 128, 71, 85, 82, 85, 83, 72, 128, 71, 85,
82, 85, 78, 128, 71, 85, 82, 77, 85, 75, 72, 201, 71, 85, 82, 65, 77, 85,
84, 79, 78, 128, 71, 85, 82, 55, 128, 71, 85, 78, 85, 128, 71, 85, 78,
213, 71, 85, 78, 74, 65, 76, 193, 71, 85, 205, 71, 85, 76, 128, 71, 85,
74, 65, 82, 65, 84, 201, 71, 85, 73, 84, 65, 82, 128, 71, 85, 73, 68,
197, 71, 85, 199, 71, 85, 69, 73, 128, 71, 85, 69, 72, 128, 71, 85, 69,
200, 71, 85, 68, 128, 71, 85, 196, 71, 85, 65, 82, 68, 83, 77, 65, 78,
128, 71, 85, 65, 82, 68, 69, 68, 78, 69, 83, 83, 128, 71, 85, 65, 82, 68,
69, 196, 71, 85, 65, 82, 68, 128, 71, 85, 65, 82, 65, 78, 201, 71, 85,
193, 71, 85, 178, 71, 84, 69, 210, 71, 83, 85, 77, 128, 71, 83, 85, 205,
71, 82, 213, 71, 82, 79, 87, 73, 78, 199, 71, 82, 79, 85, 78, 68, 128,
71, 82, 79, 78, 84, 72, 73, 83, 77, 65, 84, 65, 128, 71, 82, 73, 78, 78,
73, 78, 199, 71, 82, 73, 77, 65, 67, 73, 78, 199, 71, 82, 69, 71, 79, 82,
73, 65, 206, 71, 82, 69, 69, 78, 128, 71, 82, 69, 69, 206, 71, 82, 69,
65, 84, 78, 69, 83, 83, 128, 71, 82, 69, 65, 84, 69, 82, 45, 84, 72, 65,
78, 128, 71, 82, 69, 65, 84, 69, 82, 45, 84, 72, 65, 206, 71, 82, 69, 65,
84, 69, 210, 71, 82, 69, 65, 212, 71, 82, 65, 86, 69, 89, 65, 82, 196,
71, 82, 65, 86, 69, 45, 77, 65, 67, 82, 79, 78, 128, 71, 82, 65, 86, 69,
45, 65, 67, 85, 84, 69, 45, 71, 82, 65, 86, 69, 128, 71, 82, 65, 86, 197,
71, 82, 65, 84, 69, 82, 128, 71, 82, 65, 83, 83, 128, 71, 82, 65, 83,
211, 71, 82, 65, 83, 208, 71, 82, 65, 80, 72, 69, 77, 197, 71, 82, 65,
80, 69, 83, 128, 71, 82, 65, 78, 84, 72, 193, 71, 82, 65, 77, 77, 193,
71, 82, 65, 73, 78, 128, 71, 82, 65, 68, 85, 65, 84, 73, 79, 206, 71, 82,
65, 68, 85, 65, 76, 128, 71, 82, 65, 67, 69, 128, 71, 82, 65, 67, 197,
71, 80, 65, 128, 71, 79, 82, 84, 72, 77, 73, 75, 79, 206, 71, 79, 82, 84,
128, 71, 79, 82, 73, 76, 76, 65, 128, 71, 79, 82, 71, 79, 84, 69, 82, 73,
128, 71, 79, 82, 71, 79, 83, 89, 78, 84, 72, 69, 84, 79, 78, 128, 71, 79,
82, 71, 79, 206, 71, 79, 82, 71, 73, 128, 71, 79, 82, 65, 128, 71, 79,
79, 196, 71, 79, 78, 71, 128, 71, 79, 76, 70, 69, 82, 128, 71, 79, 76,
68, 128, 71, 79, 75, 128, 71, 79, 73, 78, 199, 71, 79, 71, 71, 76, 69,
83, 128, 71, 79, 66, 76, 73, 78, 128, 71, 79, 65, 76, 128, 71, 79, 65,
204, 71, 79, 65, 128, 71, 78, 89, 73, 83, 128, 71, 78, 65, 86, 73, 89,
65, 78, 73, 128, 71, 76, 79, 87, 73, 78, 199, 71, 76, 79, 86, 69, 83,
128, 71, 76, 79, 86, 69, 128, 71, 76, 79, 84, 84, 65, 204, 71, 76, 79,
66, 197, 71, 76, 73, 83, 83, 65, 78, 68, 207, 71, 76, 69, 73, 67, 200,
71, 76, 65, 71, 79, 76, 73, 128, 71, 76, 65, 128, 71, 74, 69, 128, 71,
73, 88, 128, 71, 73, 84, 128, 71, 73, 83, 72, 128, 71, 73, 83, 200, 71,
73, 83, 65, 76, 128, 71, 73, 82, 85, 68, 65, 65, 128, 71, 73, 82, 76,
211, 71, 73, 82, 76, 128, 71, 73, 82, 65, 70, 70, 197, 71, 73, 82, 51,
128, 71, 73, 82, 179, 71, 73, 82, 50, 128, 71, 73, 82, 178, 71, 73, 80,
128, 71, 73, 78, 73, 73, 128, 71, 73, 77, 69, 76, 128, 71, 73, 77, 69,
204, 71, 73, 77, 128, 71, 73, 71, 65, 128, 71, 73, 71, 128, 71, 73, 70,
212, 71, 73, 69, 84, 128, 71, 73, 68, 73, 77, 128, 71, 73, 66, 66, 79,
85, 211, 71, 73, 66, 65, 128, 71, 73, 52, 128, 71, 73, 180, 71, 72, 90,
128, 71, 72, 87, 65, 128, 71, 72, 85, 78, 78, 65, 128, 71, 72, 85, 78,
78, 193, 71, 72, 85, 128, 71, 72, 79, 85, 128, 71, 72, 79, 83, 84, 128,
71, 72, 79, 128, 71, 72, 73, 77, 69, 76, 128, 71, 72, 73, 128, 71, 72,
72, 65, 128, 71, 72, 69, 89, 83, 128, 71, 72, 69, 85, 88, 128, 71, 72,
69, 85, 78, 128, 71, 72, 69, 85, 71, 72, 69, 85, 65, 69, 77, 128, 71, 72,
69, 85, 71, 72, 69, 78, 128, 71, 72, 69, 85, 65, 69, 82, 65, 69, 128, 71,
72, 69, 85, 65, 69, 71, 72, 69, 85, 65, 69, 128, 71, 72, 69, 84, 128, 71,
72, 69, 69, 128, 71, 72, 69, 128, 71, 72, 197, 71, 72, 65, 89, 78, 128,
71, 72, 65, 82, 65, 69, 128, 71, 72, 65, 80, 128, 71, 72, 65, 78, 128,
71, 72, 65, 77, 77, 65, 128, 71, 72, 65, 77, 65, 76, 128, 71, 72, 65, 73,
78, 85, 128, 71, 72, 65, 73, 78, 128, 71, 72, 65, 73, 206, 71, 72, 65,
68, 128, 71, 72, 65, 65, 77, 65, 69, 128, 71, 72, 65, 65, 128, 71, 71,
87, 73, 128, 71, 71, 87, 69, 69, 128, 71, 71, 87, 69, 128, 71, 71, 87,
65, 65, 128, 71, 71, 87, 65, 128, 71, 71, 85, 88, 128, 71, 71, 85, 84,
128, 71, 71, 85, 82, 88, 128, 71, 71, 85, 82, 128, 71, 71, 85, 79, 88,
128, 71, 71, 85, 79, 84, 128, 71, 71, 85, 79, 80, 128, 71, 71, 85, 79,
128, 71, 71, 79, 88, 128, 71, 71, 79, 84, 128, 71, 71, 79, 80, 128, 71,
71, 73, 88, 128, 71, 71, 73, 84, 128, 71, 71, 73, 69, 88, 128, 71, 71,
73, 69, 80, 128, 71, 71, 73, 69, 128, 71, 71, 69, 88, 128, 71, 71, 69,
84, 128, 71, 71, 69, 80, 128, 71, 71, 65, 88, 128, 71, 71, 65, 84, 128,
71, 69, 84, 193, 71, 69, 83, 84, 85, 82, 69, 128, 71, 69, 83, 72, 85,
128, 71, 69, 83, 72, 84, 73, 78, 128, 71, 69, 83, 72, 84, 73, 206, 71,
69, 83, 72, 50, 128, 71, 69, 82, 83, 72, 65, 89, 73, 77, 128, 71, 69, 82,
77, 65, 206, 71, 69, 82, 69, 83, 72, 128, 71, 69, 82, 69, 83, 200, 71,
69, 79, 77, 69, 84, 82, 73, 67, 65, 76, 76, 217, 71, 69, 79, 77, 69, 84,
82, 73, 195, 71, 69, 78, 84, 76, 197, 71, 69, 78, 73, 84, 73, 86, 69,
128, 71, 69, 78, 73, 75, 201, 71, 69, 78, 73, 69, 128, 71, 69, 78, 69,
82, 73, 195, 71, 69, 78, 69, 82, 65, 76, 128, 71, 69, 77, 73, 78, 73,
128, 71, 69, 77, 73, 78, 65, 84, 73, 79, 206, 71, 69, 77, 73, 78, 65, 84,
197, 71, 69, 205, 71, 69, 69, 77, 128, 71, 69, 68, 79, 76, 65, 128, 71,
69, 68, 69, 128, 71, 69, 66, 207, 71, 69, 66, 193, 71, 69, 65, 82, 128,
71, 69, 65, 210, 71, 69, 50, 50, 128, 71, 68, 65, 78, 128, 71, 67, 73,
71, 128, 71, 67, 65, 206, 71, 66, 79, 78, 128, 71, 66, 73, 69, 197, 71,
66, 69, 85, 88, 128, 71, 66, 69, 84, 128, 71, 66, 65, 89, 73, 128, 71,
66, 65, 75, 85, 82, 85, 78, 69, 78, 128, 71, 66, 128, 71, 65, 89, 65, 78,
85, 75, 73, 84, 84, 65, 128, 71, 65, 89, 65, 78, 78, 65, 128, 71, 65, 89,
128, 71, 65, 85, 78, 84, 76, 69, 84, 128, 71, 65, 84, 72, 69, 82, 73, 78,
71, 128, 71, 65, 84, 72, 69, 82, 73, 78, 199, 71, 65, 84, 69, 128, 71,
65, 83, 72, 65, 78, 128, 71, 65, 82, 83, 72, 85, 78, 73, 128, 71, 65, 82,
79, 78, 128, 71, 65, 82, 77, 69, 78, 84, 128, 71, 65, 82, 76, 73, 67,
128, 71, 65, 82, 68, 69, 78, 128, 71, 65, 82, 51, 128, 71, 65, 80, 80,
69, 196, 71, 65, 208, 71, 65, 78, 77, 65, 128, 71, 65, 78, 71, 73, 65,
128, 71, 65, 78, 68, 193, 71, 65, 78, 50, 128, 71, 65, 78, 178, 71, 65,
77, 77, 65, 128, 71, 65, 77, 76, 65, 128, 71, 65, 77, 76, 128, 71, 65,
77, 69, 128, 71, 65, 77, 197, 71, 65, 77, 65, 78, 128, 71, 65, 77, 65,
76, 128, 71, 65, 77, 65, 204, 71, 65, 76, 201, 71, 65, 71, 128, 71, 65,
70, 128, 71, 65, 198, 71, 65, 69, 84, 84, 65, 45, 80, 73, 76, 76, 65,
128, 71, 65, 68, 79, 76, 128, 71, 65, 68, 128, 71, 65, 196, 71, 65, 66,
65, 128, 71, 65, 66, 193, 71, 65, 65, 70, 85, 128, 71, 65, 178, 71, 48,
53, 52, 128, 71, 48, 53, 51, 128, 71, 48, 53, 50, 128, 71, 48, 53, 49,
128, 71, 48, 53, 48, 128, 71, 48, 52, 57, 128, 71, 48, 52, 56, 128, 71,
48, 52, 55, 128, 71, 48, 52, 54, 128, 71, 48, 52, 53, 65, 128, 71, 48,
52, 53, 128, 71, 48, 52, 52, 128, 71, 48, 52, 51, 65, 128, 71, 48, 52,
51, 128, 71, 48, 52, 50, 128, 71, 48, 52, 49, 128, 71, 48, 52, 48, 128,
71, 48, 51, 57, 128, 71, 48, 51, 56, 128, 71, 48, 51, 55, 65, 128, 71,
48, 51, 55, 128, 71, 48, 51, 54, 65, 128, 71, 48, 51, 54, 128, 71, 48,
51, 53, 128, 71, 48, 51, 52, 128, 71, 48, 51, 51, 128, 71, 48, 51, 50,
128, 71, 48, 51, 49, 128, 71, 48, 51, 48, 128, 71, 48, 50, 57, 128, 71,
48, 50, 56, 128, 71, 48, 50, 55, 128, 71, 48, 50, 54, 65, 128, 71, 48,
50, 54, 128, 71, 48, 50, 53, 128, 71, 48, 50, 52, 128, 71, 48, 50, 51,
128, 71, 48, 50, 50, 128, 71, 48, 50, 49, 128, 71, 48, 50, 48, 65, 128,
71, 48, 50, 48, 128, 71, 48, 49, 57, 128, 71, 48, 49, 56, 128, 71, 48,
49, 55, 128, 71, 48, 49, 54, 128, 71, 48, 49, 53, 128, 71, 48, 49, 52,
128, 71, 48, 49, 51, 128, 71, 48, 49, 50, 128, 71, 48, 49, 49, 65, 128,
71, 48, 49, 49, 128, 71, 48, 49, 48, 128, 71, 48, 48, 57, 128, 71, 48,
48, 56, 128, 71, 48, 48, 55, 66, 128, 71, 48, 48, 55, 65, 128, 71, 48,
48, 55, 128, 71, 48, 48, 54, 65, 128, 71, 48, 48, 54, 128, 71, 48, 48,
53, 128, 71, 48, 48, 52, 128, 71, 48, 48, 51, 128, 71, 48, 48, 50, 128,
71, 48, 48, 49, 128, 70, 89, 88, 128, 70, 89, 84, 128, 70, 89, 80, 128,
70, 89, 65, 128, 70, 87, 73, 128, 70, 87, 69, 69, 128, 70, 87, 69, 128,
70, 87, 65, 65, 128, 70, 87, 65, 128, 70, 86, 83, 51, 128, 70, 86, 83,
50, 128, 70, 86, 83, 49, 128, 70, 85, 88, 128, 70, 85, 84, 128, 70, 85,
83, 69, 128, 70, 85, 83, 193, 70, 85, 82, 88, 128, 70, 85, 80, 128, 70,
85, 78, 69, 82, 65, 204, 70, 85, 78, 67, 84, 73, 79, 78, 65, 204, 70, 85,
78, 67, 84, 73, 79, 78, 128, 70, 85, 76, 76, 78, 69, 83, 83, 128, 70, 85,
76, 204, 70, 85, 74, 73, 128, 70, 85, 69, 84, 128, 70, 85, 69, 204, 70,
85, 69, 128, 70, 85, 65, 128, 70, 84, 72, 79, 82, 193, 70, 83, 73, 128,
70, 82, 79, 87, 78, 73, 78, 71, 128, 70, 82, 79, 87, 78, 73, 78, 199, 70,
82, 79, 87, 78, 128, 70, 82, 79, 87, 206, 70, 82, 79, 78, 84, 45, 84, 73,
76, 84, 69, 196, 70, 82, 79, 78, 84, 45, 70, 65, 67, 73, 78, 199, 70, 82,
79, 78, 212, 70, 82, 79, 205, 70, 82, 79, 71, 128, 70, 82, 79, 199, 70,
82, 73, 84, 85, 128, 70, 82, 73, 69, 83, 128, 70, 82, 73, 69, 196, 70,
82, 73, 67, 65, 84, 73, 86, 69, 128, 70, 82, 69, 84, 66, 79, 65, 82, 68,
128, 70, 82, 69, 78, 67, 200, 70, 82, 69, 69, 90, 73, 78, 199, 70, 82,
69, 69, 128, 70, 82, 69, 197, 70, 82, 65, 78, 75, 211, 70, 82, 65, 78,
195, 70, 82, 65, 77, 69, 83, 128, 70, 82, 65, 77, 69, 128, 70, 82, 65,
77, 197, 70, 82, 65, 75, 84, 85, 210, 70, 82, 65, 71, 82, 65, 78, 84,
128, 70, 82, 65, 71, 77, 69, 78, 84, 128, 70, 82, 65, 67, 84, 73, 79,
206, 70, 79, 88, 128, 70, 79, 216, 70, 79, 85, 82, 84, 69, 69, 78, 128,
70, 79, 85, 82, 84, 69, 69, 206, 70, 79, 85, 82, 45, 84, 72, 73, 82, 84,
89, 128, 70, 79, 85, 82, 45, 83, 84, 82, 73, 78, 199, 70, 79, 85, 82, 45,
80, 69, 82, 45, 69, 205, 70, 79, 85, 82, 45, 76, 73, 78, 197, 70, 79, 85,
210, 70, 79, 85, 78, 84, 65, 73, 78, 128, 70, 79, 85, 78, 84, 65, 73,
206, 70, 79, 83, 84, 69, 82, 73, 78, 71, 128, 70, 79, 82, 87, 65, 82, 68,
128, 70, 79, 82, 87, 65, 82, 196, 70, 79, 82, 84, 89, 45, 70, 73, 86,
197, 70, 79, 82, 84, 89, 128, 70, 79, 82, 84, 217, 70, 79, 82, 84, 85,
78, 197, 70, 79, 82, 84, 73, 69, 84, 72, 128, 70, 79, 82, 84, 69, 128,
70, 79, 82, 77, 211, 70, 79, 82, 77, 69, 69, 128, 70, 79, 82, 77, 69,
197, 70, 79, 82, 77, 65, 84, 84, 73, 78, 71, 128, 70, 79, 82, 77, 65,
212, 70, 79, 82, 75, 69, 196, 70, 79, 82, 69, 72, 69, 65, 196, 70, 79,
82, 67, 69, 83, 128, 70, 79, 82, 67, 69, 128, 70, 79, 80, 128, 70, 79,
79, 84, 83, 84, 79, 79, 76, 128, 70, 79, 79, 84, 80, 82, 73, 78, 84, 83,
128, 70, 79, 79, 84, 78, 79, 84, 197, 70, 79, 79, 84, 66, 65, 76, 76,
128, 70, 79, 79, 84, 128, 70, 79, 79, 76, 128, 70, 79, 79, 68, 128, 70,
79, 79, 128, 70, 79, 78, 212, 70, 79, 78, 71, 77, 65, 78, 128, 70, 79,
78, 68, 85, 69, 128, 70, 79, 77, 128, 70, 79, 76, 76, 89, 128, 70, 79,
76, 76, 79, 87, 73, 78, 71, 128, 70, 79, 76, 68, 69, 82, 128, 70, 79, 76,
68, 69, 196, 70, 79, 71, 71, 89, 128, 70, 79, 71, 128, 70, 207, 70, 77,
128, 70, 76, 89, 73, 78, 199, 70, 76, 89, 128, 70, 76, 85, 84, 84, 69,
82, 73, 78, 71, 128, 70, 76, 85, 84, 84, 69, 82, 73, 78, 199, 70, 76, 85,
84, 69, 128, 70, 76, 85, 83, 72, 69, 196, 70, 76, 79, 87, 73, 78, 199,
70, 76, 79, 87, 69, 82, 83, 128, 70, 76, 79, 87, 69, 210, 70, 76, 79, 85,
82, 73, 83, 72, 128, 70, 76, 79, 82, 69, 84, 84, 69, 128, 70, 76, 79, 82,
65, 204, 70, 76, 79, 80, 80, 217, 70, 76, 79, 79, 82, 128, 70, 76, 79,
79, 210, 70, 76, 73, 80, 128, 70, 76, 73, 71, 72, 84, 128, 70, 76, 73,
67, 203, 70, 76, 69, 88, 85, 83, 128, 70, 76, 69, 88, 69, 196, 70, 76,
69, 88, 128, 70, 76, 69, 85, 82, 79, 78, 128, 70, 76, 69, 85, 82, 45, 68,
69, 45, 76, 73, 83, 128, 70, 76, 65, 84, 84, 69, 78, 69, 196, 70, 76, 65,
84, 78, 69, 83, 83, 128, 70, 76, 65, 84, 66, 82, 69, 65, 68, 128, 70, 76,
65, 83, 72, 128, 70, 76, 65, 77, 73, 78, 71, 79, 128, 70, 76, 65, 77, 69,
128, 70, 76, 65, 71, 83, 128, 70, 76, 65, 71, 45, 53, 128, 70, 76, 65,
71, 45, 52, 128, 70, 76, 65, 71, 45, 51, 128, 70, 76, 65, 71, 45, 50,
128, 70, 76, 65, 71, 45, 49, 128, 70, 76, 65, 71, 128, 70, 76, 65, 199,
70, 76, 65, 128, 70, 76, 128, 70, 73, 88, 69, 68, 45, 70, 79, 82, 205,
70, 73, 88, 128, 70, 73, 86, 69, 45, 84, 72, 73, 82, 84, 89, 128, 70, 73,
86, 69, 45, 76, 73, 78, 197, 70, 73, 84, 90, 80, 65, 84, 82, 73, 67, 203,
70, 73, 84, 65, 128, 70, 73, 84, 128, 70, 73, 83, 84, 69, 196, 70, 73,
83, 72, 73, 78, 199, 70, 73, 83, 72, 72, 79, 79, 75, 128, 70, 73, 83, 72,
72, 79, 79, 203, 70, 73, 83, 72, 69, 89, 69, 128, 70, 73, 83, 72, 128,
70, 73, 83, 200, 70, 73, 82, 83, 212, 70, 73, 82, 73, 128, 70, 73, 82,
69, 87, 79, 82, 75, 83, 128, 70, 73, 82, 69, 87, 79, 82, 203, 70, 73, 82,
69, 67, 82, 65, 67, 75, 69, 82, 128, 70, 73, 82, 69, 128, 70, 73, 82,
197, 70, 73, 80, 128, 70, 73, 78, 73, 84, 197, 70, 73, 78, 71, 69, 82,
83, 128, 70, 73, 78, 71, 69, 82, 211, 70, 73, 78, 71, 69, 82, 78, 65, 73,
76, 83, 128, 70, 73, 78, 71, 69, 82, 69, 196, 70, 73, 78, 71, 69, 82, 45,
80, 79, 83, 212, 70, 73, 78, 71, 69, 82, 128, 70, 73, 78, 71, 69, 210,
70, 73, 78, 65, 78, 67, 73, 65, 76, 128, 70, 73, 78, 65, 76, 128, 70, 73,
76, 205, 70, 73, 76, 76, 69, 82, 45, 50, 128, 70, 73, 76, 76, 69, 82, 45,
49, 128, 70, 73, 76, 76, 69, 82, 128, 70, 73, 76, 76, 69, 196, 70, 73,
76, 76, 128, 70, 73, 76, 204, 70, 73, 76, 197, 70, 73, 73, 128, 70, 73,
71, 85, 82, 69, 45, 51, 128, 70, 73, 71, 85, 82, 69, 45, 50, 128, 70, 73,
71, 85, 82, 69, 45, 49, 128, 70, 73, 71, 85, 82, 69, 128, 70, 73, 71, 85,
82, 197, 70, 73, 71, 72, 84, 128, 70, 73, 70, 84, 89, 128, 70, 73, 70,
84, 217, 70, 73, 70, 84, 72, 83, 128, 70, 73, 70, 84, 72, 128, 70, 73,
70, 84, 69, 69, 78, 128, 70, 73, 70, 84, 69, 69, 206, 70, 73, 69, 76, 68,
128, 70, 73, 69, 76, 196, 70, 72, 84, 79, 82, 193, 70, 70, 76, 128, 70,
70, 73, 128, 70, 69, 85, 88, 128, 70, 69, 85, 70, 69, 85, 65, 69, 84,
128, 70, 69, 84, 72, 128, 70, 69, 83, 84, 73, 86, 65, 76, 128, 70, 69,
82, 82, 89, 128, 70, 69, 82, 82, 73, 211, 70, 69, 82, 77, 65, 84, 65,
128, 70, 69, 82, 77, 65, 84, 193, 70, 69, 79, 200, 70, 69, 78, 199, 70,
69, 78, 67, 69, 82, 128, 70, 69, 78, 67, 69, 128, 70, 69, 77, 73, 78, 73,
78, 197, 70, 69, 77, 65, 76, 69, 128, 70, 69, 77, 65, 76, 197, 70, 69,
76, 76, 79, 87, 83, 72, 73, 80, 128, 70, 69, 73, 128, 70, 69, 72, 213,
70, 69, 72, 128, 70, 69, 200, 70, 69, 69, 78, 71, 128, 70, 69, 69, 77,
128, 70, 69, 69, 68, 128, 70, 69, 69, 196, 70, 69, 69, 128, 70, 69, 66,
82, 85, 65, 82, 89, 128, 70, 69, 65, 84, 72, 69, 82, 128, 70, 69, 65, 84,
72, 69, 210, 70, 69, 65, 82, 78, 128, 70, 69, 65, 82, 70, 85, 204, 70,
69, 65, 82, 128, 70, 65, 89, 65, 78, 78, 65, 128, 70, 65, 89, 128, 70,
65, 88, 128, 70, 65, 216, 70, 65, 84, 73, 71, 85, 69, 128, 70, 65, 84,
72, 69, 82, 128, 70, 65, 84, 72, 69, 210, 70, 65, 84, 72, 65, 84, 65, 78,
128, 70, 65, 84, 72, 65, 84, 65, 206, 70, 65, 84, 72, 65, 128, 70, 65,
84, 72, 193, 70, 65, 84, 128, 70, 65, 83, 84, 128, 70, 65, 82, 83, 201,
70, 65, 82, 128, 70, 65, 81, 128, 70, 65, 80, 128, 70, 65, 78, 71, 128,
70, 65, 78, 69, 82, 79, 83, 73, 211, 70, 65, 78, 128, 70, 65, 77, 73, 76,
89, 128, 70, 65, 77, 128, 70, 65, 76, 76, 69, 206, 70, 65, 76, 65, 70,
69, 76, 128, 70, 65, 74, 128, 70, 65, 73, 82, 89, 128, 70, 65, 73, 76,
85, 82, 69, 128, 70, 65, 73, 72, 85, 128, 70, 65, 73, 66, 128, 70, 65,
72, 82, 69, 78, 72, 69, 73, 84, 128, 70, 65, 67, 84, 79, 82, 89, 128, 70,
65, 67, 84, 79, 210, 70, 65, 67, 83, 73, 77, 73, 76, 197, 70, 65, 67, 73,
78, 71, 83, 128, 70, 65, 67, 69, 45, 54, 128, 70, 65, 67, 69, 45, 53,
128, 70, 65, 67, 69, 45, 52, 128, 70, 65, 67, 69, 45, 51, 128, 70, 65,
67, 69, 45, 50, 128, 70, 65, 67, 69, 45, 49, 128, 70, 65, 65, 77, 65, 69,
128, 70, 65, 65, 73, 128, 70, 65, 65, 70, 85, 128, 70, 48, 53, 51, 128,
70, 48, 53, 50, 128, 70, 48, 53, 49, 67, 128, 70, 48, 53, 49, 66, 128,
70, 48, 53, 49, 65, 128, 70, 48, 53, 49, 128, 70, 48, 53, 48, 128, 70,
48, 52, 57, 128, 70, 48, 52, 56, 128, 70, 48, 52, 55, 65, 128, 70, 48,
52, 55, 128, 70, 48, 52, 54, 65, 128, 70, 48, 52, 54, 128, 70, 48, 52,
53, 65, 128, 70, 48, 52, 53, 128, 70, 48, 52, 52, 128, 70, 48, 52, 51,
128, 70, 48, 52, 50, 128, 70, 48, 52, 49, 128, 70, 48, 52, 48, 128, 70,
48, 51, 57, 128, 70, 48, 51, 56, 65, 128, 70, 48, 51, 56, 128, 70, 48,
51, 55, 65, 128, 70, 48, 51, 55, 128, 70, 48, 51, 54, 128, 70, 48, 51,
53, 128, 70, 48, 51, 52, 128, 70, 48, 51, 51, 128, 70, 48, 51, 50, 128,
70, 48, 51, 49, 65, 128, 70, 48, 51, 49, 128, 70, 48, 51, 48, 128, 70,
48, 50, 57, 128, 70, 48, 50, 56, 128, 70, 48, 50, 55, 128, 70, 48, 50,
54, 128, 70, 48, 50, 53, 128, 70, 48, 50, 52, 128, 70, 48, 50, 51, 128,
70, 48, 50, 50, 128, 70, 48, 50, 49, 65, 128, 70, 48, 50, 49, 128, 70,
48, 50, 48, 128, 70, 48, 49, 57, 128, 70, 48, 49, 56, 128, 70, 48, 49,
55, 128, 70, 48, 49, 54, 128, 70, 48, 49, 53, 128, 70, 48, 49, 52, 128,
70, 48, 49, 51, 65, 128, 70, 48, 49, 51, 128, 70, 48, 49, 50, 128, 70,
48, 49, 49, 128, 70, 48, 49, 48, 128, 70, 48, 48, 57, 128, 70, 48, 48,
56, 128, 70, 48, 48, 55, 128, 70, 48, 48, 54, 128, 70, 48, 48, 53, 128,
70, 48, 48, 52, 128, 70, 48, 48, 51, 128, 70, 48, 48, 50, 128, 70, 48,
48, 49, 65, 128, 70, 48, 48, 49, 128, 69, 90, 83, 128, 69, 90, 200, 69,
90, 69, 78, 128, 69, 90, 69, 206, 69, 90, 128, 69, 89, 89, 89, 128, 69,
89, 69, 83, 128, 69, 89, 69, 211, 69, 89, 69, 76, 65, 83, 72, 69, 211,
69, 89, 69, 71, 76, 65, 83, 83, 69, 83, 128, 69, 89, 69, 71, 65, 90, 69,
45, 87, 65, 76, 76, 80, 76, 65, 78, 197, 69, 89, 69, 71, 65, 90, 69, 45,
70, 76, 79, 79, 82, 80, 76, 65, 78, 197, 69, 89, 69, 66, 82, 79, 87, 211,
69, 89, 69, 66, 82, 79, 215, 69, 89, 197, 69, 89, 66, 69, 89, 70, 73, 76,
73, 128, 69, 89, 65, 78, 78, 65, 128, 69, 88, 84, 82, 69, 77, 69, 76,
217, 69, 88, 84, 82, 65, 84, 69, 82, 82, 69, 83, 84, 82, 73, 65, 204, 69,
88, 84, 82, 65, 45, 76, 79, 215, 69, 88, 84, 82, 65, 45, 72, 73, 71, 200,
69, 88, 84, 82, 193, 69, 88, 84, 73, 78, 71, 85, 73, 83, 72, 69, 82, 128,
69, 88, 84, 69, 78, 83, 73, 79, 78, 128, 69, 88, 84, 69, 78, 68, 69, 68,
128, 69, 88, 84, 69, 78, 68, 69, 196, 69, 88, 80, 82, 69, 83, 83, 73, 79,
78, 76, 69, 83, 211, 69, 88, 80, 79, 78, 69, 78, 212, 69, 88, 80, 76, 79,
68, 73, 78, 199, 69, 88, 79, 128, 69, 88, 207, 69, 88, 73, 83, 84, 83,
128, 69, 88, 73, 83, 84, 128, 69, 88, 72, 65, 85, 83, 84, 73, 79, 78,
128, 69, 88, 72, 65, 76, 69, 128, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79,
78, 128, 69, 88, 67, 76, 65, 77, 65, 84, 73, 79, 206, 69, 88, 67, 73, 84,
69, 77, 69, 78, 84, 128, 69, 88, 67, 72, 65, 78, 71, 69, 128, 69, 88, 67,
69, 83, 83, 128, 69, 88, 67, 69, 76, 76, 69, 78, 84, 128, 69, 87, 69,
128, 69, 86, 69, 82, 217, 69, 86, 69, 82, 71, 82, 69, 69, 206, 69, 86,
69, 78, 73, 78, 71, 128, 69, 85, 82, 79, 80, 69, 65, 206, 69, 85, 82, 79,
80, 69, 45, 65, 70, 82, 73, 67, 65, 128, 69, 85, 82, 79, 45, 67, 85, 82,
82, 69, 78, 67, 217, 69, 85, 82, 207, 69, 85, 76, 69, 210, 69, 85, 45,
85, 128, 69, 85, 45, 79, 128, 69, 85, 45, 69, 85, 128, 69, 85, 45, 69,
79, 128, 69, 85, 45, 69, 128, 69, 85, 45, 65, 128, 69, 84, 88, 128, 69,
84, 78, 65, 72, 84, 65, 128, 69, 84, 72, 69, 204, 69, 84, 69, 82, 79,
206, 69, 84, 69, 82, 78, 73, 84, 89, 128, 69, 84, 69, 82, 78, 73, 84,
217, 69, 84, 66, 128, 69, 83, 90, 128, 69, 83, 85, 75, 85, 85, 68, 79,
128, 69, 83, 84, 73, 77, 65, 84, 69, 83, 128, 69, 83, 84, 73, 77, 65, 84,
69, 196, 69, 83, 72, 69, 51, 128, 69, 83, 72, 50, 49, 128, 69, 83, 72,
49, 54, 128, 69, 83, 67, 65, 80, 69, 128, 69, 83, 67, 128, 69, 83, 65,
128, 69, 83, 45, 84, 69, 128, 69, 83, 45, 51, 128, 69, 83, 45, 50, 128,
69, 83, 45, 49, 128, 69, 82, 82, 79, 82, 45, 66, 65, 82, 82, 69, 196, 69,
82, 82, 128, 69, 82, 73, 211, 69, 82, 73, 78, 50, 128, 69, 82, 73, 78,
178, 69, 82, 71, 128, 69, 82, 65, 83, 197, 69, 81, 85, 73, 86, 65, 76,
69, 78, 212, 69, 81, 85, 73, 76, 65, 84, 69, 82, 65, 204, 69, 81, 85, 73,
72, 79, 80, 80, 69, 82, 128, 69, 81, 85, 73, 72, 79, 80, 80, 69, 210, 69,
81, 85, 73, 68, 128, 69, 81, 85, 73, 65, 78, 71, 85, 76, 65, 210, 69, 81,
85, 65, 76, 83, 128, 69, 81, 85, 65, 76, 211, 69, 81, 85, 65, 76, 128,
69, 80, 83, 73, 76, 79, 78, 128, 69, 80, 83, 73, 76, 79, 206, 69, 80, 79,
67, 72, 128, 69, 80, 73, 71, 82, 65, 80, 72, 73, 195, 69, 80, 73, 68, 65,
85, 82, 69, 65, 206, 69, 80, 69, 78, 84, 72, 69, 84, 73, 195, 69, 80, 69,
71, 69, 82, 77, 65, 128, 69, 80, 65, 67, 212, 69, 79, 84, 128, 69, 79,
77, 128, 69, 79, 76, 72, 88, 128, 69, 79, 76, 128, 69, 79, 72, 128, 69,
78, 89, 128, 69, 78, 86, 69, 76, 79, 80, 69, 128, 69, 78, 86, 69, 76, 79,
80, 197, 69, 78, 85, 77, 69, 82, 65, 84, 73, 79, 206, 69, 78, 84, 82, 89,
45, 50, 128, 69, 78, 84, 82, 89, 45, 49, 128, 69, 78, 84, 82, 89, 128,
69, 78, 84, 82, 217, 69, 78, 84, 72, 85, 83, 73, 65, 83, 77, 128, 69, 78,
84, 69, 82, 80, 82, 73, 83, 69, 128, 69, 78, 84, 69, 82, 73, 78, 199, 69,
78, 84, 69, 82, 128, 69, 78, 84, 69, 210, 69, 78, 84, 45, 83, 72, 65, 80,
69, 196, 69, 78, 81, 85, 73, 82, 89, 128, 69, 78, 81, 128, 69, 78, 79,
211, 69, 78, 78, 73, 128, 69, 78, 78, 128, 69, 78, 76, 65, 82, 71, 69,
77, 69, 78, 84, 128, 69, 78, 71, 73, 78, 69, 128, 69, 78, 68, 79, 70, 79,
78, 79, 78, 128, 69, 78, 68, 73, 78, 199, 69, 78, 68, 69, 80, 128, 69,
78, 68, 69, 65, 86, 79, 85, 82, 128, 69, 78, 67, 79, 85, 78, 84, 69, 82,
83, 128, 69, 78, 67, 76, 79, 83, 85, 82, 69, 83, 128, 69, 78, 67, 76, 79,
83, 85, 82, 69, 128, 69, 78, 67, 76, 79, 83, 73, 78, 199, 69, 78, 67,
128, 69, 78, 65, 82, 88, 73, 211, 69, 78, 65, 82, 77, 79, 78, 73, 79,
211, 69, 77, 80, 84, 217, 69, 77, 80, 72, 65, 84, 73, 195, 69, 77, 80,
72, 65, 83, 73, 211, 69, 77, 79, 74, 201, 69, 77, 66, 82, 79, 73, 68, 69,
82, 89, 128, 69, 77, 66, 76, 69, 77, 128, 69, 77, 66, 69, 76, 76, 73, 83,
72, 77, 69, 78, 84, 128, 69, 77, 66, 69, 68, 68, 73, 78, 71, 128, 69, 76,
89, 77, 65, 73, 195, 69, 76, 89, 128, 69, 76, 84, 128, 69, 76, 76, 73,
80, 84, 73, 195, 69, 76, 76, 73, 80, 83, 73, 83, 128, 69, 76, 76, 73, 80,
83, 69, 128, 69, 76, 73, 70, 73, 128, 69, 76, 73, 70, 128, 69, 76, 69,
86, 69, 78, 45, 84, 72, 73, 82, 84, 89, 128, 69, 76, 69, 86, 69, 78, 128,
69, 76, 69, 86, 69, 206, 69, 76, 69, 86, 65, 84, 85, 211, 69, 76, 69, 86,
65, 84, 79, 82, 128, 69, 76, 69, 80, 72, 65, 78, 84, 128, 69, 76, 69, 77,
69, 78, 212, 69, 76, 69, 67, 84, 82, 79, 78, 73, 67, 83, 128, 69, 76, 69,
67, 84, 82, 73, 67, 65, 204, 69, 76, 69, 67, 84, 82, 73, 195, 69, 76, 66,
65, 83, 65, 206, 69, 76, 65, 77, 73, 84, 69, 128, 69, 76, 65, 77, 73, 84,
197, 69, 76, 65, 70, 82, 79, 78, 128, 69, 75, 83, 84, 82, 69, 80, 84, 79,
78, 128, 69, 75, 83, 128, 69, 75, 70, 79, 78, 73, 84, 73, 75, 79, 78,
128, 69, 75, 65, 82, 65, 128, 69, 75, 65, 77, 128, 69, 74, 69, 67, 212,
69, 73, 83, 128, 69, 73, 71, 72, 84, 89, 128, 69, 73, 71, 72, 84, 217,
69, 73, 71, 72, 84, 73, 69, 84, 72, 83, 128, 69, 73, 71, 72, 84, 73, 69,
84, 72, 128, 69, 73, 71, 72, 84, 72, 83, 128, 69, 73, 71, 72, 84, 72,
211, 69, 73, 71, 72, 84, 72, 128, 69, 73, 71, 72, 84, 69, 69, 78, 128,
69, 73, 71, 72, 84, 69, 69, 206, 69, 73, 71, 72, 84, 45, 84, 72, 73, 82,
84, 89, 128, 69, 73, 69, 128, 69, 72, 87, 65, 218, 69, 72, 84, 83, 65,
128, 69, 72, 84, 65, 128, 69, 72, 80, 65, 128, 69, 72, 75, 65, 128, 69,
72, 67, 72, 65, 128, 69, 71, 89, 80, 84, 79, 76, 79, 71, 73, 67, 65, 204,
69, 71, 89, 128, 69, 71, 73, 82, 128, 69, 71, 71, 128, 69, 69, 89, 65,
78, 78, 65, 128, 69, 69, 75, 65, 65, 128, 69, 69, 72, 128, 69, 69, 66,
69, 69, 70, 73, 76, 73, 128, 69, 68, 73, 84, 79, 82, 73, 65, 204, 69, 68,
73, 78, 128, 69, 68, 68, 128, 69, 67, 83, 128, 69, 66, 69, 70, 73, 76,
73, 128, 69, 65, 83, 84, 69, 82, 206, 69, 65, 83, 84, 128, 69, 65, 83,
212, 69, 65, 82, 84, 72, 76, 217, 69, 65, 82, 84, 72, 128, 69, 65, 82,
84, 200, 69, 65, 82, 83, 128, 69, 65, 82, 76, 217, 69, 65, 77, 72, 65,
78, 67, 72, 79, 76, 76, 128, 69, 65, 71, 76, 69, 128, 69, 65, 68, 72, 65,
68, 72, 128, 69, 65, 66, 72, 65, 68, 72, 128, 69, 178, 69, 48, 51, 56,
128, 69, 48, 51, 55, 128, 69, 48, 51, 54, 128, 69, 48, 51, 52, 65, 128,
69, 48, 51, 52, 128, 69, 48, 51, 51, 128, 69, 48, 51, 50, 128, 69, 48,
51, 49, 128, 69, 48, 51, 48, 128, 69, 48, 50, 57, 128, 69, 48, 50, 56,
65, 128, 69, 48, 50, 56, 128, 69, 48, 50, 55, 128, 69, 48, 50, 54, 128,
69, 48, 50, 53, 128, 69, 48, 50, 52, 128, 69, 48, 50, 51, 128, 69, 48,
50, 50, 128, 69, 48, 50, 49, 128, 69, 48, 50, 48, 65, 128, 69, 48, 50,
48, 128, 69, 48, 49, 57, 128, 69, 48, 49, 56, 128, 69, 48, 49, 55, 65,
128, 69, 48, 49, 55, 128, 69, 48, 49, 54, 65, 128, 69, 48, 49, 54, 128,
69, 48, 49, 53, 128, 69, 48, 49, 52, 128, 69, 48, 49, 51, 128, 69, 48,
49, 50, 128, 69, 48, 49, 49, 128, 69, 48, 49, 48, 128, 69, 48, 48, 57,
65, 128, 69, 48, 48, 57, 128, 69, 48, 48, 56, 65, 128, 69, 48, 48, 56,
128, 69, 48, 48, 55, 128, 69, 48, 48, 54, 128, 69, 48, 48, 53, 128, 69,
48, 48, 52, 128, 69, 48, 48, 51, 128, 69, 48, 48, 50, 128, 69, 48, 48,
49, 128, 69, 45, 77, 65, 73, 204, 68, 90, 90, 72, 69, 128, 68, 90, 90,
69, 128, 68, 90, 90, 65, 128, 68, 90, 89, 73, 128, 68, 90, 89, 65, 89,
128, 68, 90, 87, 69, 128, 68, 90, 85, 128, 68, 90, 79, 128, 68, 90, 74,
69, 128, 68, 90, 73, 84, 65, 128, 68, 90, 73, 128, 68, 90, 72, 79, 73,
128, 68, 90, 72, 69, 128, 68, 90, 72, 65, 128, 68, 90, 69, 76, 79, 128,
68, 90, 69, 69, 128, 68, 90, 69, 128, 68, 90, 65, 89, 128, 68, 90, 65,
65, 128, 68, 90, 65, 128, 68, 90, 128, 68, 218, 68, 89, 79, 128, 68, 89,
207, 68, 89, 78, 65, 77, 73, 195, 68, 89, 69, 72, 128, 68, 89, 69, 200,
68, 89, 65, 78, 128, 68, 87, 79, 128, 68, 87, 69, 128, 68, 87, 65, 128,
68, 86, 73, 83, 86, 65, 82, 65, 128, 68, 86, 68, 128, 68, 86, 128, 68,
85, 84, 73, 69, 83, 128, 68, 85, 83, 75, 128, 68, 85, 83, 72, 69, 78, 78,
65, 128, 68, 85, 82, 65, 84, 73, 79, 78, 128, 68, 85, 82, 50, 128, 68,
85, 80, 79, 78, 68, 73, 85, 211, 68, 85, 79, 88, 128, 68, 85, 79, 128,
68, 85, 78, 52, 128, 68, 85, 78, 51, 128, 68, 85, 78, 179, 68, 85, 77,
80, 76, 73, 78, 71, 128, 68, 85, 77, 128, 68, 85, 204, 68, 85, 72, 128,
68, 85, 71, 85, 68, 128, 68, 85, 199, 68, 85, 67, 75, 128, 68, 85, 66,
50, 128, 68, 85, 66, 128, 68, 85, 194, 68, 82, 89, 128, 68, 82, 217, 68,
82, 85, 77, 83, 84, 73, 67, 75, 83, 128, 68, 82, 85, 77, 128, 68, 82, 85,
205, 68, 82, 79, 80, 83, 128, 68, 82, 79, 80, 76, 69, 84, 128, 68, 82,
79, 80, 45, 83, 72, 65, 68, 79, 87, 69, 196, 68, 82, 79, 208, 68, 82, 79,
79, 76, 73, 78, 199, 68, 82, 79, 77, 69, 68, 65, 82, 217, 68, 82, 73, 86,
69, 128, 68, 82, 73, 86, 197, 68, 82, 73, 78, 75, 128, 68, 82, 73, 204,
68, 82, 69, 83, 83, 128, 68, 82, 69, 65, 77, 217, 68, 82, 65, 85, 71, 72,
84, 211, 68, 82, 65, 77, 128, 68, 82, 65, 205, 68, 82, 65, 71, 79, 78,
128, 68, 82, 65, 71, 79, 206, 68, 82, 65, 70, 84, 73, 78, 199, 68, 82,
65, 67, 72, 77, 65, 83, 128, 68, 82, 65, 67, 72, 77, 65, 128, 68, 82, 65,
67, 72, 77, 193, 68, 79, 87, 78, 87, 65, 82, 68, 83, 128, 68, 79, 87, 78,
87, 65, 82, 68, 211, 68, 79, 87, 78, 87, 65, 82, 196, 68, 79, 87, 78, 83,
67, 65, 76, 73, 78, 199, 68, 79, 87, 78, 45, 80, 79, 73, 78, 84, 73, 78,
199, 68, 79, 87, 78, 128, 68, 79, 86, 69, 128, 68, 79, 86, 197, 68, 79,
85, 71, 72, 78, 85, 84, 128, 68, 79, 85, 66, 84, 128, 68, 79, 85, 66, 76,
69, 196, 68, 79, 85, 66, 76, 69, 45, 83, 84, 82, 85, 67, 203, 68, 79, 85,
66, 76, 69, 45, 76, 73, 78, 69, 196, 68, 79, 85, 66, 76, 69, 45, 76, 73,
78, 197, 68, 79, 85, 66, 76, 69, 45, 69, 78, 68, 69, 196, 68, 79, 85, 66,
76, 69, 128, 68, 79, 84, 84, 69, 68, 45, 80, 128, 68, 79, 84, 84, 69, 68,
45, 78, 128, 68, 79, 84, 84, 69, 68, 45, 76, 128, 68, 79, 84, 84, 69, 68,
128, 68, 79, 84, 84, 69, 196, 68, 79, 84, 83, 45, 56, 128, 68, 79, 84,
83, 45, 55, 56, 128, 68, 79, 84, 83, 45, 55, 128, 68, 79, 84, 83, 45, 54,
56, 128, 68, 79, 84, 83, 45, 54, 55, 56, 128, 68, 79, 84, 83, 45, 54, 55,
128, 68, 79, 84, 83, 45, 54, 128, 68, 79, 84, 83, 45, 53, 56, 128, 68,
79, 84, 83, 45, 53, 55, 56, 128, 68, 79, 84, 83, 45, 53, 55, 128, 68, 79,
84, 83, 45, 53, 54, 56, 128, 68, 79, 84, 83, 45, 53, 54, 55, 56, 128, 68,
79, 84, 83, 45, 53, 54, 55, 128, 68, 79, 84, 83, 45, 53, 54, 128, 68, 79,
84, 83, 45, 53, 128, 68, 79, 84, 83, 45, 52, 56, 128, 68, 79, 84, 83, 45,
52, 55, 56, 128, 68, 79, 84, 83, 45, 52, 55, 128, 68, 79, 84, 83, 45, 52,
54, 56, 128, 68, 79, 84, 83, 45, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45,
52, 54, 55, 128, 68, 79, 84, 83, 45, 52, 54, 128, 68, 79, 84, 83, 45, 52,
53, 56, 128, 68, 79, 84, 83, 45, 52, 53, 55, 56, 128, 68, 79, 84, 83, 45,
52, 53, 55, 128, 68, 79, 84, 83, 45, 52, 53, 54, 56, 128, 68, 79, 84, 83,
45, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 52, 53, 54, 55, 128, 68,
79, 84, 83, 45, 52, 53, 54, 128, 68, 79, 84, 83, 45, 52, 53, 128, 68, 79,
84, 83, 45, 52, 128, 68, 79, 84, 83, 45, 51, 56, 128, 68, 79, 84, 83, 45,
51, 55, 56, 128, 68, 79, 84, 83, 45, 51, 55, 128, 68, 79, 84, 83, 45, 51,
54, 56, 128, 68, 79, 84, 83, 45, 51, 54, 55, 56, 128, 68, 79, 84, 83, 45,
51, 54, 55, 128, 68, 79, 84, 83, 45, 51, 54, 128, 68, 79, 84, 83, 45, 51,
53, 56, 128, 68, 79, 84, 83, 45, 51, 53, 55, 56, 128, 68, 79, 84, 83, 45,
51, 53, 55, 128, 68, 79, 84, 83, 45, 51, 53, 54, 56, 128, 68, 79, 84, 83,
45, 51, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 51, 53, 54, 55, 128, 68,
79, 84, 83, 45, 51, 53, 54, 128, 68, 79, 84, 83, 45, 51, 53, 128, 68, 79,
84, 83, 45, 51, 52, 56, 128, 68, 79, 84, 83, 45, 51, 52, 55, 56, 128, 68,
79, 84, 83, 45, 51, 52, 55, 128, 68, 79, 84, 83, 45, 51, 52, 54, 56, 128,
68, 79, 84, 83, 45, 51, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45, 51, 52,
54, 55, 128, 68, 79, 84, 83, 45, 51, 52, 54, 128, 68, 79, 84, 83, 45, 51,
52, 53, 56, 128, 68, 79, 84, 83, 45, 51, 52, 53, 55, 56, 128, 68, 79, 84,
83, 45, 51, 52, 53, 55, 128, 68, 79, 84, 83, 45, 51, 52, 53, 54, 56, 128,
68, 79, 84, 83, 45, 51, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 51,
52, 53, 54, 55, 128, 68, 79, 84, 83, 45, 51, 52, 53, 54, 128, 68, 79, 84,
83, 45, 51, 52, 53, 128, 68, 79, 84, 83, 45, 51, 52, 128, 68, 79, 84, 83,
45, 51, 128, 68, 79, 84, 83, 45, 50, 56, 128, 68, 79, 84, 83, 45, 50, 55,
56, 128, 68, 79, 84, 83, 45, 50, 55, 128, 68, 79, 84, 83, 45, 50, 54, 56,
128, 68, 79, 84, 83, 45, 50, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 54,
55, 128, 68, 79, 84, 83, 45, 50, 54, 128, 68, 79, 84, 83, 45, 50, 53, 56,
128, 68, 79, 84, 83, 45, 50, 53, 55, 56, 128, 68, 79, 84, 83, 45, 50, 53,
55, 128, 68, 79, 84, 83, 45, 50, 53, 54, 56, 128, 68, 79, 84, 83, 45, 50,
53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 53, 54, 55, 128, 68, 79, 84,
83, 45, 50, 53, 54, 128, 68, 79, 84, 83, 45, 50, 53, 128, 68, 79, 84, 83,
45, 50, 52, 56, 128, 68, 79, 84, 83, 45, 50, 52, 55, 56, 128, 68, 79, 84,
83, 45, 50, 52, 55, 128, 68, 79, 84, 83, 45, 50, 52, 54, 56, 128, 68, 79,
84, 83, 45, 50, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 52, 54, 55,
128, 68, 79, 84, 83, 45, 50, 52, 54, 128, 68, 79, 84, 83, 45, 50, 52, 53,
56, 128, 68, 79, 84, 83, 45, 50, 52, 53, 55, 56, 128, 68, 79, 84, 83, 45,
50, 52, 53, 55, 128, 68, 79, 84, 83, 45, 50, 52, 53, 54, 56, 128, 68, 79,
84, 83, 45, 50, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 52, 53,
54, 55, 128, 68, 79, 84, 83, 45, 50, 52, 53, 54, 128, 68, 79, 84, 83, 45,
50, 52, 53, 128, 68, 79, 84, 83, 45, 50, 52, 128, 68, 79, 84, 83, 45, 50,
51, 56, 128, 68, 79, 84, 83, 45, 50, 51, 55, 56, 128, 68, 79, 84, 83, 45,
50, 51, 55, 128, 68, 79, 84, 83, 45, 50, 51, 54, 56, 128, 68, 79, 84, 83,
45, 50, 51, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51, 54, 55, 128, 68,
79, 84, 83, 45, 50, 51, 54, 128, 68, 79, 84, 83, 45, 50, 51, 53, 56, 128,
68, 79, 84, 83, 45, 50, 51, 53, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51,
53, 55, 128, 68, 79, 84, 83, 45, 50, 51, 53, 54, 56, 128, 68, 79, 84, 83,
45, 50, 51, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51, 53, 54, 55,
128, 68, 79, 84, 83, 45, 50, 51, 53, 54, 128, 68, 79, 84, 83, 45, 50, 51,
53, 128, 68, 79, 84, 83, 45, 50, 51, 52, 56, 128, 68, 79, 84, 83, 45, 50,
51, 52, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51, 52, 55, 128, 68, 79, 84,
83, 45, 50, 51, 52, 54, 56, 128, 68, 79, 84, 83, 45, 50, 51, 52, 54, 55,
56, 128, 68, 79, 84, 83, 45, 50, 51, 52, 54, 55, 128, 68, 79, 84, 83, 45,
50, 51, 52, 54, 128, 68, 79, 84, 83, 45, 50, 51, 52, 53, 56, 128, 68, 79,
84, 83, 45, 50, 51, 52, 53, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51, 52,
53, 55, 128, 68, 79, 84, 83, 45, 50, 51, 52, 53, 54, 56, 128, 68, 79, 84,
83, 45, 50, 51, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 50, 51, 52,
53, 54, 55, 128, 68, 79, 84, 83, 45, 50, 51, 52, 53, 54, 128, 68, 79, 84,
83, 45, 50, 51, 52, 53, 128, 68, 79, 84, 83, 45, 50, 51, 52, 128, 68, 79,
84, 83, 45, 50, 51, 128, 68, 79, 84, 83, 45, 50, 128, 68, 79, 84, 83, 45,
49, 56, 128, 68, 79, 84, 83, 45, 49, 55, 56, 128, 68, 79, 84, 83, 45, 49,
55, 128, 68, 79, 84, 83, 45, 49, 54, 56, 128, 68, 79, 84, 83, 45, 49, 54,
55, 56, 128, 68, 79, 84, 83, 45, 49, 54, 55, 128, 68, 79, 84, 83, 45, 49,
54, 128, 68, 79, 84, 83, 45, 49, 53, 56, 128, 68, 79, 84, 83, 45, 49, 53,
55, 56, 128, 68, 79, 84, 83, 45, 49, 53, 55, 128, 68, 79, 84, 83, 45, 49,
53, 54, 56, 128, 68, 79, 84, 83, 45, 49, 53, 54, 55, 56, 128, 68, 79, 84,
83, 45, 49, 53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 53, 54, 128, 68, 79,
84, 83, 45, 49, 53, 128, 68, 79, 84, 83, 45, 49, 52, 56, 128, 68, 79, 84,
83, 45, 49, 52, 55, 56, 128, 68, 79, 84, 83, 45, 49, 52, 55, 128, 68, 79,
84, 83, 45, 49, 52, 54, 56, 128, 68, 79, 84, 83, 45, 49, 52, 54, 55, 56,
128, 68, 79, 84, 83, 45, 49, 52, 54, 55, 128, 68, 79, 84, 83, 45, 49, 52,
54, 128, 68, 79, 84, 83, 45, 49, 52, 53, 56, 128, 68, 79, 84, 83, 45, 49,
52, 53, 55, 56, 128, 68, 79, 84, 83, 45, 49, 52, 53, 55, 128, 68, 79, 84,
83, 45, 49, 52, 53, 54, 56, 128, 68, 79, 84, 83, 45, 49, 52, 53, 54, 55,
56, 128, 68, 79, 84, 83, 45, 49, 52, 53, 54, 55, 128, 68, 79, 84, 83, 45,
49, 52, 53, 54, 128, 68, 79, 84, 83, 45, 49, 52, 53, 128, 68, 79, 84, 83,
45, 49, 52, 128, 68, 79, 84, 83, 45, 49, 51, 56, 128, 68, 79, 84, 83, 45,
49, 51, 55, 56, 128, 68, 79, 84, 83, 45, 49, 51, 55, 128, 68, 79, 84, 83,
45, 49, 51, 54, 56, 128, 68, 79, 84, 83, 45, 49, 51, 54, 55, 56, 128, 68,
79, 84, 83, 45, 49, 51, 54, 55, 128, 68, 79, 84, 83, 45, 49, 51, 54, 128,
68, 79, 84, 83, 45, 49, 51, 53, 56, 128, 68, 79, 84, 83, 45, 49, 51, 53,
55, 56, 128, 68, 79, 84, 83, 45, 49, 51, 53, 55, 128, 68, 79, 84, 83, 45,
49, 51, 53, 54, 56, 128, 68, 79, 84, 83, 45, 49, 51, 53, 54, 55, 56, 128,
68, 79, 84, 83, 45, 49, 51, 53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 51,
53, 54, 128, 68, 79, 84, 83, 45, 49, 51, 53, 128, 68, 79, 84, 83, 45, 49,
51, 52, 56, 128, 68, 79, 84, 83, 45, 49, 51, 52, 55, 56, 128, 68, 79, 84,
83, 45, 49, 51, 52, 55, 128, 68, 79, 84, 83, 45, 49, 51, 52, 54, 56, 128,
68, 79, 84, 83, 45, 49, 51, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49,
51, 52, 54, 55, 128, 68, 79, 84, 83, 45, 49, 51, 52, 54, 128, 68, 79, 84,
83, 45, 49, 51, 52, 53, 56, 128, 68, 79, 84, 83, 45, 49, 51, 52, 53, 55,
56, 128, 68, 79, 84, 83, 45, 49, 51, 52, 53, 55, 128, 68, 79, 84, 83, 45,
49, 51, 52, 53, 54, 56, 128, 68, 79, 84, 83, 45, 49, 51, 52, 53, 54, 55,
56, 128, 68, 79, 84, 83, 45, 49, 51, 52, 53, 54, 55, 128, 68, 79, 84, 83,
45, 49, 51, 52, 53, 54, 128, 68, 79, 84, 83, 45, 49, 51, 52, 53, 128, 68,
79, 84, 83, 45, 49, 51, 52, 128, 68, 79, 84, 83, 45, 49, 51, 128, 68, 79,
84, 83, 45, 49, 50, 56, 128, 68, 79, 84, 83, 45, 49, 50, 55, 56, 128, 68,
79, 84, 83, 45, 49, 50, 55, 128, 68, 79, 84, 83, 45, 49, 50, 54, 56, 128,
68, 79, 84, 83, 45, 49, 50, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50,
54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 54, 128, 68, 79, 84, 83, 45, 49,
50, 53, 56, 128, 68, 79, 84, 83, 45, 49, 50, 53, 55, 56, 128, 68, 79, 84,
83, 45, 49, 50, 53, 55, 128, 68, 79, 84, 83, 45, 49, 50, 53, 54, 56, 128,
68, 79, 84, 83, 45, 49, 50, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49,
50, 53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 53, 54, 128, 68, 79, 84,
83, 45, 49, 50, 53, 128, 68, 79, 84, 83, 45, 49, 50, 52, 56, 128, 68, 79,
84, 83, 45, 49, 50, 52, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 52, 55,
128, 68, 79, 84, 83, 45, 49, 50, 52, 54, 56, 128, 68, 79, 84, 83, 45, 49,
50, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 52, 54, 55, 128, 68,
79, 84, 83, 45, 49, 50, 52, 54, 128, 68, 79, 84, 83, 45, 49, 50, 52, 53,
56, 128, 68, 79, 84, 83, 45, 49, 50, 52, 53, 55, 56, 128, 68, 79, 84, 83,
45, 49, 50, 52, 53, 55, 128, 68, 79, 84, 83, 45, 49, 50, 52, 53, 54, 56,
128, 68, 79, 84, 83, 45, 49, 50, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83,
45, 49, 50, 52, 53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 52, 53, 54,
128, 68, 79, 84, 83, 45, 49, 50, 52, 53, 128, 68, 79, 84, 83, 45, 49, 50,
52, 128, 68, 79, 84, 83, 45, 49, 50, 51, 56, 128, 68, 79, 84, 83, 45, 49,
50, 51, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51, 55, 128, 68, 79, 84,
83, 45, 49, 50, 51, 54, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51, 54, 55,
56, 128, 68, 79, 84, 83, 45, 49, 50, 51, 54, 55, 128, 68, 79, 84, 83, 45,
49, 50, 51, 54, 128, 68, 79, 84, 83, 45, 49, 50, 51, 53, 56, 128, 68, 79,
84, 83, 45, 49, 50, 51, 53, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51,
53, 55, 128, 68, 79, 84, 83, 45, 49, 50, 51, 53, 54, 56, 128, 68, 79, 84,
83, 45, 49, 50, 51, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51,
53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 51, 53, 54, 128, 68, 79, 84,
83, 45, 49, 50, 51, 53, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52, 56, 128,
68, 79, 84, 83, 45, 49, 50, 51, 52, 55, 56, 128, 68, 79, 84, 83, 45, 49,
50, 51, 52, 55, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52, 54, 56, 128, 68,
79, 84, 83, 45, 49, 50, 51, 52, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49,
50, 51, 52, 54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52, 54, 128, 68,
79, 84, 83, 45, 49, 50, 51, 52, 53, 56, 128, 68, 79, 84, 83, 45, 49, 50,
51, 52, 53, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52, 53, 55, 128,
68, 79, 84, 83, 45, 49, 50, 51, 52, 53, 54, 56, 128, 68, 79, 84, 83, 45,
49, 50, 51, 52, 53, 54, 55, 56, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52,
53, 54, 55, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52, 53, 54, 128, 68, 79,
84, 83, 45, 49, 50, 51, 52, 53, 128, 68, 79, 84, 83, 45, 49, 50, 51, 52,
128, 68, 79, 84, 83, 45, 49, 50, 51, 128, 68, 79, 84, 83, 45, 49, 50,
128, 68, 79, 84, 83, 45, 49, 128, 68, 79, 84, 83, 128, 68, 79, 84, 211,
68, 79, 84, 76, 69, 83, 211, 68, 79, 82, 85, 128, 68, 79, 82, 79, 77,
197, 68, 79, 79, 82, 128, 68, 79, 79, 78, 71, 128, 68, 79, 78, 71, 128,
68, 79, 77, 65, 73, 206, 68, 79, 76, 80, 72, 73, 78, 128, 68, 79, 76, 76,
83, 128, 68, 79, 76, 76, 65, 210, 68, 79, 76, 73, 85, 77, 128, 68, 79,
75, 77, 65, 73, 128, 68, 79, 73, 84, 128, 68, 79, 73, 78, 199, 68, 79,
73, 128, 68, 79, 71, 82, 193, 68, 79, 71, 128, 68, 79, 199, 68, 79, 69,
211, 68, 79, 68, 79, 128, 68, 79, 68, 69, 75, 65, 84, 65, 128, 68, 79,
67, 85, 77, 69, 78, 84, 128, 68, 79, 67, 85, 77, 69, 78, 212, 68, 79, 66,
82, 79, 128, 68, 79, 65, 67, 72, 65, 83, 72, 77, 69, 69, 128, 68, 79, 65,
67, 72, 65, 83, 72, 77, 69, 197, 68, 79, 65, 128, 68, 79, 45, 79, 128,
68, 78, 193, 68, 77, 128, 68, 205, 68, 76, 85, 128, 68, 76, 79, 128, 68,
76, 73, 128, 68, 76, 72, 89, 65, 128, 68, 76, 72, 65, 128, 68, 76, 69,
69, 128, 68, 76, 65, 128, 68, 76, 128, 68, 75, 65, 82, 128, 68, 75, 65,
210, 68, 74, 69, 82, 86, 73, 128, 68, 74, 69, 82, 86, 128, 68, 74, 69,
128, 68, 74, 65, 128, 68, 73, 90, 90, 217, 68, 73, 89, 193, 68, 73, 86,
79, 82, 67, 197, 68, 73, 86, 73, 83, 73, 79, 78, 128, 68, 73, 86, 73, 83,
73, 79, 206, 68, 73, 86, 73, 78, 199, 68, 73, 86, 73, 78, 65, 84, 73, 79,
78, 128, 68, 73, 86, 73, 68, 69, 83, 128, 68, 73, 86, 73, 68, 69, 82, 83,
128, 68, 73, 86, 73, 68, 69, 82, 128, 68, 73, 86, 73, 68, 69, 196, 68,
73, 86, 73, 68, 69, 128, 68, 73, 86, 73, 68, 197, 68, 73, 86, 69, 211,
68, 73, 86, 69, 82, 71, 69, 78, 67, 69, 128, 68, 73, 84, 84, 207, 68, 73,
83, 84, 79, 82, 84, 73, 79, 78, 128, 68, 73, 83, 84, 73, 78, 71, 85, 73,
83, 72, 128, 68, 73, 83, 84, 73, 76, 76, 128, 68, 73, 83, 83, 79, 76, 86,
69, 45, 50, 128, 68, 73, 83, 83, 79, 76, 86, 69, 128, 68, 73, 83, 80, 85,
84, 69, 196, 68, 73, 83, 80, 69, 82, 83, 73, 79, 78, 128, 68, 73, 83, 75,
128, 68, 73, 83, 73, 77, 79, 85, 128, 68, 73, 83, 72, 128, 68, 73, 83,
71, 85, 73, 83, 69, 196, 68, 73, 83, 67, 79, 78, 84, 73, 78, 85, 79, 85,
211, 68, 73, 83, 195, 68, 73, 83, 65, 80, 80, 79, 73, 78, 84, 69, 196,
68, 73, 83, 65, 66, 76, 69, 196, 68, 73, 82, 71, 193, 68, 73, 82, 69, 67,
84, 76, 217, 68, 73, 82, 69, 67, 84, 73, 79, 78, 65, 204, 68, 73, 82, 69,
67, 84, 73, 79, 206, 68, 73, 80, 84, 69, 128, 68, 73, 80, 80, 69, 82,
128, 68, 73, 80, 76, 79, 85, 78, 128, 68, 73, 80, 76, 73, 128, 68, 73,
80, 76, 201, 68, 73, 78, 71, 66, 65, 212, 68, 73, 206, 68, 73, 77, 77,
73, 78, 71, 128, 68, 73, 77, 73, 78, 85, 84, 73, 79, 78, 45, 51, 128, 68,
73, 77, 73, 78, 85, 84, 73, 79, 78, 45, 50, 128, 68, 73, 77, 73, 78, 85,
84, 73, 79, 78, 45, 49, 128, 68, 73, 77, 73, 78, 73, 83, 72, 77, 69, 78,
84, 128, 68, 73, 77, 73, 68, 73, 193, 68, 73, 77, 69, 78, 83, 73, 79, 78,
65, 204, 68, 73, 77, 69, 78, 83, 73, 79, 206, 68, 73, 77, 50, 128, 68,
73, 77, 178, 68, 73, 76, 128, 68, 73, 71, 82, 65, 80, 72, 128, 68, 73,
71, 82, 65, 80, 200, 68, 73, 71, 82, 65, 77, 77, 79, 211, 68, 73, 71, 82,
65, 77, 77, 193, 68, 73, 71, 82, 65, 205, 68, 73, 71, 79, 82, 71, 79, 78,
128, 68, 73, 71, 79, 82, 71, 79, 206, 68, 73, 71, 73, 84, 83, 128, 68,
73, 71, 65, 77, 77, 65, 128, 68, 73, 71, 193, 68, 73, 70, 84, 79, 71, 71,
79, 211, 68, 73, 70, 79, 78, 73, 65, 83, 128, 68, 73, 70, 70, 73, 67, 85,
76, 84, 217, 68, 73, 70, 70, 73, 67, 85, 76, 84, 73, 69, 83, 128, 68, 73,
70, 70, 69, 82, 69, 78, 84, 73, 65, 76, 128, 68, 73, 70, 70, 69, 82, 69,
78, 67, 197, 68, 73, 70, 65, 84, 128, 68, 73, 69, 83, 73, 83, 128, 68,
73, 69, 83, 73, 211, 68, 73, 69, 83, 69, 204, 68, 73, 69, 80, 128, 68,
73, 197, 68, 73, 66, 128, 68, 73, 65, 84, 79, 78, 79, 206, 68, 73, 65,
84, 79, 78, 73, 75, 201, 68, 73, 65, 83, 84, 79, 76, 201, 68, 73, 65, 77,
79, 78, 68, 83, 128, 68, 73, 65, 77, 79, 78, 68, 128, 68, 73, 65, 77, 79,
78, 196, 68, 73, 65, 77, 69, 84, 69, 210, 68, 73, 65, 76, 89, 84, 73, 75,
65, 128, 68, 73, 65, 76, 89, 84, 73, 75, 193, 68, 73, 65, 76, 69, 67, 84,
45, 208, 68, 73, 65, 71, 79, 78, 65, 76, 128, 68, 73, 65, 69, 82, 69, 83,
73, 90, 69, 196, 68, 73, 65, 69, 82, 69, 83, 73, 83, 45, 82, 73, 78, 71,
128, 68, 73, 65, 69, 82, 69, 83, 73, 83, 128, 68, 73, 65, 69, 82, 69, 83,
73, 211, 68, 72, 79, 85, 128, 68, 72, 79, 79, 128, 68, 72, 79, 128, 68,
72, 73, 73, 128, 68, 72, 72, 85, 128, 68, 72, 72, 79, 79, 128, 68, 72,
72, 79, 128, 68, 72, 72, 73, 128, 68, 72, 72, 69, 69, 128, 68, 72, 72,
69, 128, 68, 72, 72, 65, 128, 68, 72, 69, 69, 128, 68, 72, 65, 82, 77,
65, 128, 68, 72, 65, 77, 69, 68, 72, 128, 68, 72, 65, 76, 69, 84, 72,
128, 68, 72, 65, 76, 65, 84, 72, 128, 68, 72, 65, 76, 128, 68, 72, 65,
68, 72, 69, 128, 68, 72, 65, 65, 76, 85, 128, 68, 72, 65, 65, 128, 68,
72, 65, 128, 68, 69, 90, 200, 68, 69, 89, 84, 69, 82, 79, 213, 68, 69,
89, 84, 69, 82, 79, 211, 68, 69, 88, 73, 65, 128, 68, 69, 86, 73, 67,
197, 68, 69, 86, 69, 76, 79, 80, 77, 69, 78, 84, 128, 68, 69, 85, 78, 71,
128, 68, 69, 83, 75, 84, 79, 208, 68, 69, 83, 203, 68, 69, 83, 73, 71,
78, 128, 68, 69, 83, 73, 128, 68, 69, 83, 69, 82, 84, 128, 68, 69, 83,
69, 82, 212, 68, 69, 83, 69, 82, 69, 212, 68, 69, 83, 67, 82, 73, 80, 84,
73, 79, 206, 68, 69, 83, 67, 69, 78, 68, 73, 78, 199, 68, 69, 83, 67, 69,
78, 68, 69, 82, 128, 68, 69, 82, 69, 84, 45, 72, 73, 68, 69, 84, 128, 68,
69, 82, 69, 84, 128, 68, 69, 82, 69, 76, 73, 67, 212, 68, 69, 80, 84, 72,
128, 68, 69, 80, 65, 82, 84, 85, 82, 69, 128, 68, 69, 80, 65, 82, 84, 77,
69, 78, 212, 68, 69, 80, 65, 82, 84, 73, 78, 199, 68, 69, 78, 84, 73, 83,
84, 82, 217, 68, 69, 78, 84, 65, 204, 68, 69, 78, 79, 77, 73, 78, 65, 84,
79, 82, 128, 68, 69, 78, 79, 77, 73, 78, 65, 84, 79, 210, 68, 69, 78, 78,
69, 78, 128, 68, 69, 78, 71, 128, 68, 69, 78, 197, 68, 69, 78, 65, 82,
73, 85, 211, 68, 69, 76, 84, 65, 128, 68, 69, 76, 84, 193, 68, 69, 76,
84, 128, 68, 69, 76, 80, 72, 73, 195, 68, 69, 76, 73, 86, 69, 82, 217,
68, 69, 76, 73, 86, 69, 82, 65, 78, 67, 69, 128, 68, 69, 76, 73, 77, 73,
84, 69, 82, 128, 68, 69, 76, 73, 77, 73, 84, 69, 210, 68, 69, 76, 73, 67,
73, 79, 85, 211, 68, 69, 76, 69, 84, 73, 79, 206, 68, 69, 76, 69, 84, 69,
128, 68, 69, 76, 69, 84, 197, 68, 69, 75, 65, 128, 68, 69, 75, 128, 68,
69, 73, 128, 68, 69, 72, 73, 128, 68, 69, 71, 82, 69, 69, 83, 128, 68,
69, 71, 82, 69, 197, 68, 69, 70, 73, 78, 73, 84, 73, 79, 78, 128, 68, 69,
70, 69, 67, 84, 73, 86, 69, 78, 69, 83, 211, 68, 69, 69, 82, 128, 68, 69,
69, 80, 76, 89, 128, 68, 69, 69, 76, 128, 68, 69, 67, 82, 69, 83, 67, 69,
78, 68, 79, 128, 68, 69, 67, 82, 69, 65, 83, 69, 128, 68, 69, 67, 82, 69,
65, 83, 197, 68, 69, 67, 79, 82, 65, 84, 73, 86, 197, 68, 69, 67, 79, 82,
65, 84, 73, 79, 78, 128, 68, 69, 67, 73, 83, 73, 86, 69, 78, 69, 83, 83,
128, 68, 69, 67, 73, 77, 65, 204, 68, 69, 67, 73, 68, 85, 79, 85, 211,
68, 69, 67, 69, 77, 66, 69, 82, 128, 68, 69, 67, 65, 89, 69, 68, 128, 68,
69, 66, 73, 212, 68, 69, 65, 84, 72, 128, 68, 69, 65, 198, 68, 69, 65,
68, 128, 68, 68, 87, 65, 128, 68, 68, 85, 88, 128, 68, 68, 85, 84, 128,
68, 68, 85, 82, 88, 128, 68, 68, 85, 82, 128, 68, 68, 85, 80, 128, 68,
68, 85, 79, 88, 128, 68, 68, 85, 79, 80, 128, 68, 68, 85, 79, 128, 68,
68, 85, 128, 68, 68, 79, 88, 128, 68, 68, 79, 84, 128, 68, 68, 79, 80,
128, 68, 68, 79, 65, 128, 68, 68, 73, 88, 128, 68, 68, 73, 84, 128, 68,
68, 73, 80, 128, 68, 68, 73, 69, 88, 128, 68, 68, 73, 69, 80, 128, 68,
68, 73, 69, 128, 68, 68, 73, 128, 68, 68, 72, 85, 128, 68, 68, 72, 79,
128, 68, 68, 72, 69, 69, 128, 68, 68, 72, 69, 128, 68, 68, 72, 65, 65,
128, 68, 68, 72, 65, 128, 68, 68, 69, 88, 128, 68, 68, 69, 80, 128, 68,
68, 69, 69, 128, 68, 68, 69, 128, 68, 68, 68, 72, 65, 128, 68, 68, 68,
65, 128, 68, 68, 65, 89, 65, 78, 78, 65, 128, 68, 68, 65, 88, 128, 68,
68, 65, 84, 128, 68, 68, 65, 80, 128, 68, 68, 65, 76, 128, 68, 68, 65,
204, 68, 68, 65, 72, 65, 76, 128, 68, 68, 65, 72, 65, 204, 68, 68, 65,
65, 128, 68, 67, 83, 128, 68, 67, 72, 69, 128, 68, 67, 52, 128, 68, 67,
51, 128, 68, 67, 50, 128, 68, 67, 49, 128, 68, 194, 68, 65, 89, 45, 78,
73, 71, 72, 84, 128, 68, 65, 217, 68, 65, 87, 66, 128, 68, 65, 86, 73,
89, 65, 78, 73, 128, 68, 65, 86, 73, 68, 128, 68, 65, 84, 197, 68, 65,
83, 73, 65, 128, 68, 65, 83, 73, 193, 68, 65, 83, 72, 69, 196, 68, 65,
83, 72, 128, 68, 65, 83, 200, 68, 65, 83, 69, 73, 65, 128, 68, 65, 82,
84, 128, 68, 65, 82, 75, 69, 78, 73, 78, 71, 128, 68, 65, 82, 75, 69, 78,
73, 78, 199, 68, 65, 82, 203, 68, 65, 82, 71, 65, 128, 68, 65, 82, 65,
52, 128, 68, 65, 82, 65, 51, 128, 68, 65, 82, 128, 68, 65, 80, 45, 80,
82, 65, 205, 68, 65, 80, 45, 80, 73, 201, 68, 65, 80, 45, 77, 85, 79,
217, 68, 65, 80, 45, 66, 85, 79, 206, 68, 65, 80, 45, 66, 69, 201, 68,
65, 208, 68, 65, 78, 84, 65, 89, 65, 76, 65, 78, 128, 68, 65, 78, 84, 65,
74, 193, 68, 65, 78, 71, 79, 128, 68, 65, 78, 71, 128, 68, 65, 78, 199,
68, 65, 78, 68, 65, 128, 68, 65, 78, 67, 73, 78, 71, 128, 68, 65, 78, 67,
69, 82, 128, 68, 65, 77, 80, 128, 68, 65, 77, 208, 68, 65, 77, 77, 65,
84, 65, 78, 128, 68, 65, 77, 77, 65, 84, 65, 206, 68, 65, 77, 77, 65,
128, 68, 65, 77, 77, 193, 68, 65, 77, 65, 82, 85, 128, 68, 65, 76, 69,
84, 72, 45, 82, 69, 83, 72, 128, 68, 65, 76, 69, 84, 128, 68, 65, 76, 69,
212, 68, 65, 76, 68, 65, 128, 68, 65, 76, 65, 84, 72, 128, 68, 65, 76,
65, 84, 200, 68, 65, 76, 65, 84, 128, 68, 65, 73, 82, 128, 68, 65, 73,
78, 71, 128, 68, 65, 73, 128, 68, 65, 72, 89, 65, 65, 85, 83, 72, 45, 50,
128, 68, 65, 72, 89, 65, 65, 85, 83, 72, 128, 68, 65, 71, 83, 128, 68,
65, 71, 71, 69, 82, 128, 68, 65, 71, 71, 69, 210, 68, 65, 71, 69, 83, 72,
128, 68, 65, 71, 69, 83, 200, 68, 65, 71, 66, 65, 83, 73, 78, 78, 65,
128, 68, 65, 71, 65, 218, 68, 65, 71, 65, 76, 71, 65, 128, 68, 65, 71,
51, 128, 68, 65, 199, 68, 65, 69, 78, 71, 128, 68, 65, 69, 199, 68, 65,
68, 128, 68, 65, 196, 68, 65, 65, 83, 85, 128, 68, 65, 65, 76, 73, 128,
68, 65, 65, 68, 72, 85, 128, 68, 48, 54, 55, 72, 128, 68, 48, 54, 55, 71,
128, 68, 48, 54, 55, 70, 128, 68, 48, 54, 55, 69, 128, 68, 48, 54, 55,
68, 128, 68, 48, 54, 55, 67, 128, 68, 48, 54, 55, 66, 128, 68, 48, 54,
55, 65, 128, 68, 48, 54, 55, 128, 68, 48, 54, 54, 128, 68, 48, 54, 53,
128, 68, 48, 54, 52, 128, 68, 48, 54, 51, 128, 68, 48, 54, 50, 128, 68,
48, 54, 49, 128, 68, 48, 54, 48, 128, 68, 48, 53, 57, 128, 68, 48, 53,
56, 128, 68, 48, 53, 55, 128, 68, 48, 53, 54, 128, 68, 48, 53, 53, 128,
68, 48, 53, 52, 65, 128, 68, 48, 53, 52, 128, 68, 48, 53, 51, 128, 68,
48, 53, 50, 65, 128, 68, 48, 53, 50, 128, 68, 48, 53, 49, 128, 68, 48,
53, 48, 73, 128, 68, 48, 53, 48, 72, 128, 68, 48, 53, 48, 71, 128, 68,
48, 53, 48, 70, 128, 68, 48, 53, 48, 69, 128, 68, 48, 53, 48, 68, 128,
68, 48, 53, 48, 67, 128, 68, 48, 53, 48, 66, 128, 68, 48, 53, 48, 65,
128, 68, 48, 53, 48, 128, 68, 48, 52, 57, 128, 68, 48, 52, 56, 65, 128,
68, 48, 52, 56, 128, 68, 48, 52, 55, 128, 68, 48, 52, 54, 65, 128, 68,
48, 52, 54, 128, 68, 48, 52, 53, 128, 68, 48, 52, 52, 128, 68, 48, 52,
51, 128, 68, 48, 52, 50, 128, 68, 48, 52, 49, 128, 68, 48, 52, 48, 128,
68, 48, 51, 57, 128, 68, 48, 51, 56, 128, 68, 48, 51, 55, 128, 68, 48,
51, 54, 128, 68, 48, 51, 53, 128, 68, 48, 51, 52, 65, 128, 68, 48, 51,
52, 128, 68, 48, 51, 51, 128, 68, 48, 51, 50, 128, 68, 48, 51, 49, 65,
128, 68, 48, 51, 49, 128, 68, 48, 51, 48, 128, 68, 48, 50, 57, 128, 68,
48, 50, 56, 128, 68, 48, 50, 55, 65, 128, 68, 48, 50, 55, 128, 68, 48,
50, 54, 128, 68, 48, 50, 53, 128, 68, 48, 50, 52, 128, 68, 48, 50, 51,
128, 68, 48, 50, 50, 128, 68, 48, 50, 49, 128, 68, 48, 50, 48, 128, 68,
48, 49, 57, 128, 68, 48, 49, 56, 128, 68, 48, 49, 55, 128, 68, 48, 49,
54, 128, 68, 48, 49, 53, 128, 68, 48, 49, 52, 128, 68, 48, 49, 51, 128,
68, 48, 49, 50, 128, 68, 48, 49, 49, 128, 68, 48, 49, 48, 128, 68, 48,
48, 57, 128, 68, 48, 48, 56, 65, 128, 68, 48, 48, 56, 128, 68, 48, 48,
55, 128, 68, 48, 48, 54, 128, 68, 48, 48, 53, 128, 68, 48, 48, 52, 128,
68, 48, 48, 51, 128, 68, 48, 48, 50, 128, 68, 48, 48, 49, 128, 67, 89,
88, 128, 67, 89, 84, 128, 67, 89, 82, 88, 128, 67, 89, 82, 69, 78, 65,
73, 195, 67, 89, 82, 128, 67, 89, 80, 82, 73, 79, 212, 67, 89, 80, 69,
82, 85, 83, 128, 67, 89, 80, 128, 67, 89, 76, 73, 78, 68, 82, 73, 67, 73,
84, 89, 128, 67, 89, 67, 76, 79, 78, 69, 128, 67, 89, 65, 89, 128, 67,
89, 65, 87, 128, 67, 89, 65, 128, 67, 87, 79, 79, 128, 67, 87, 79, 128,
67, 87, 73, 73, 128, 67, 87, 73, 128, 67, 87, 69, 79, 82, 84, 72, 128,
67, 87, 69, 128, 67, 87, 65, 65, 128, 67, 85, 88, 128, 67, 85, 85, 128,
67, 85, 212, 67, 85, 83, 84, 79, 77, 83, 128, 67, 85, 83, 84, 79, 77, 69,
210, 67, 85, 83, 84, 65, 82, 68, 128, 67, 85, 83, 80, 128, 67, 85, 82,
88, 128, 67, 85, 82, 86, 73, 78, 199, 67, 85, 82, 86, 69, 68, 128, 67,
85, 82, 86, 69, 196, 67, 85, 82, 86, 69, 128, 67, 85, 82, 86, 197, 67,
85, 82, 83, 73, 86, 197, 67, 85, 82, 82, 217, 67, 85, 82, 82, 69, 78, 84,
128, 67, 85, 82, 82, 69, 78, 212, 67, 85, 82, 76, 217, 67, 85, 82, 76,
73, 78, 199, 67, 85, 82, 76, 69, 196, 67, 85, 82, 76, 128, 67, 85, 82,
128, 67, 85, 80, 80, 69, 68, 128, 67, 85, 80, 80, 69, 196, 67, 85, 80,
73, 68, 79, 128, 67, 85, 80, 67, 65, 75, 69, 128, 67, 85, 79, 88, 128,
67, 85, 79, 80, 128, 67, 85, 79, 128, 67, 85, 205, 67, 85, 76, 84, 73,
86, 65, 84, 73, 79, 206, 67, 85, 67, 85, 77, 66, 69, 82, 128, 67, 85, 66,
69, 68, 128, 67, 85, 66, 69, 128, 67, 85, 66, 197, 67, 85, 65, 84, 82,
73, 76, 76, 79, 128, 67, 85, 65, 84, 82, 73, 76, 76, 207, 67, 85, 65,
205, 67, 83, 73, 128, 67, 82, 89, 83, 84, 65, 204, 67, 82, 89, 80, 84,
79, 71, 82, 65, 77, 77, 73, 195, 67, 82, 89, 73, 78, 199, 67, 82, 85, 90,
69, 73, 82, 207, 67, 82, 85, 67, 73, 70, 79, 82, 205, 67, 82, 85, 67, 73,
66, 76, 69, 45, 53, 128, 67, 82, 85, 67, 73, 66, 76, 69, 45, 52, 128, 67,
82, 85, 67, 73, 66, 76, 69, 45, 51, 128, 67, 82, 85, 67, 73, 66, 76, 69,
45, 50, 128, 67, 82, 85, 67, 73, 66, 76, 69, 128, 67, 82, 79, 87, 78,
128, 67, 82, 79, 83, 83, 73, 78, 71, 128, 67, 82, 79, 83, 83, 73, 78,
199, 67, 82, 79, 83, 83, 72, 65, 84, 67, 200, 67, 82, 79, 83, 83, 69, 68,
45, 84, 65, 73, 76, 128, 67, 82, 79, 83, 83, 69, 68, 128, 67, 82, 79, 83,
83, 69, 196, 67, 82, 79, 83, 83, 66, 79, 78, 69, 83, 128, 67, 82, 79, 83,
83, 66, 65, 82, 128, 67, 82, 79, 83, 83, 128, 67, 82, 79, 83, 211, 67,
82, 79, 80, 128, 67, 82, 79, 73, 88, 128, 67, 82, 79, 73, 83, 83, 65, 78,
84, 128, 67, 82, 79, 67, 85, 211, 67, 82, 79, 67, 79, 68, 73, 76, 69,
128, 67, 82, 73, 67, 75, 69, 84, 128, 67, 82, 73, 67, 75, 69, 212, 67,
82, 69, 83, 67, 69, 78, 84, 83, 128, 67, 82, 69, 83, 67, 69, 78, 84, 128,
67, 82, 69, 83, 67, 69, 78, 212, 67, 82, 69, 68, 73, 212, 67, 82, 69, 65,
84, 73, 86, 197, 67, 82, 69, 65, 77, 128, 67, 82, 65, 89, 79, 78, 128,
67, 82, 65, 66, 128, 67, 82, 128, 67, 79, 88, 128, 67, 79, 87, 66, 79,
217, 67, 79, 87, 128, 67, 79, 215, 67, 79, 86, 69, 82, 73, 78, 199, 67,
79, 86, 69, 82, 128, 67, 79, 85, 80, 76, 197, 67, 79, 85, 78, 84, 73, 78,
199, 67, 79, 85, 78, 84, 69, 82, 83, 73, 78, 75, 128, 67, 79, 85, 78, 84,
69, 82, 66, 79, 82, 69, 128, 67, 79, 85, 78, 67, 73, 204, 67, 79, 85, 67,
200, 67, 79, 84, 128, 67, 79, 82, 82, 69, 83, 80, 79, 78, 68, 211, 67,
79, 82, 82, 69, 67, 84, 128, 67, 79, 82, 80, 83, 69, 128, 67, 79, 82, 80,
79, 82, 65, 84, 73, 79, 78, 128, 67, 79, 82, 79, 78, 73, 83, 128, 67, 79,
82, 78, 73, 83, 200, 67, 79, 82, 78, 69, 82, 83, 128, 67, 79, 82, 78, 69,
82, 128, 67, 79, 82, 78, 69, 210, 67, 79, 82, 75, 128, 67, 79, 80, 89,
82, 73, 71, 72, 84, 128, 67, 79, 80, 89, 82, 73, 71, 72, 212, 67, 79, 80,
89, 76, 69, 70, 212, 67, 79, 80, 89, 128, 67, 79, 80, 82, 79, 68, 85, 67,
84, 128, 67, 79, 80, 80, 69, 82, 45, 50, 128, 67, 79, 80, 80, 69, 82,
128, 67, 79, 80, 128, 67, 79, 79, 76, 128, 67, 79, 79, 75, 73, 78, 71,
128, 67, 79, 79, 75, 73, 69, 128, 67, 79, 79, 75, 69, 196, 67, 79, 79,
128, 67, 79, 78, 86, 69, 82, 71, 73, 78, 199, 67, 79, 78, 86, 69, 78, 73,
69, 78, 67, 197, 67, 79, 78, 84, 82, 79, 76, 128, 67, 79, 78, 84, 82, 79,
204, 67, 79, 78, 84, 82, 65, 82, 73, 69, 84, 89, 128, 67, 79, 78, 84, 82,
65, 67, 84, 73, 79, 78, 128, 67, 79, 78, 84, 79, 85, 82, 69, 196, 67, 79,
78, 84, 79, 85, 210, 67, 79, 78, 84, 73, 78, 85, 73, 78, 199, 67, 79, 78,
84, 73, 78, 85, 65, 84, 73, 79, 206, 67, 79, 78, 84, 69, 78, 84, 73, 79,
78, 128, 67, 79, 78, 84, 69, 77, 80, 76, 65, 84, 73, 79, 78, 128, 67, 79,
78, 84, 65, 73, 78, 211, 67, 79, 78, 84, 65, 73, 78, 73, 78, 199, 67, 79,
78, 84, 65, 73, 206, 67, 79, 78, 84, 65, 67, 84, 128, 67, 79, 78, 83, 84,
82, 85, 67, 84, 73, 79, 78, 128, 67, 79, 78, 83, 84, 82, 85, 67, 84, 73,
79, 206, 67, 79, 78, 83, 84, 65, 78, 84, 128, 67, 79, 78, 83, 84, 65, 78,
212, 67, 79, 78, 83, 84, 65, 78, 67, 89, 128, 67, 79, 78, 83, 69, 67, 85,
84, 73, 86, 197, 67, 79, 78, 74, 85, 78, 67, 84, 73, 79, 78, 128, 67, 79,
78, 74, 85, 71, 65, 84, 197, 67, 79, 78, 74, 79, 73, 78, 73, 78, 199, 67,
79, 78, 74, 79, 73, 78, 69, 68, 128, 67, 79, 78, 74, 79, 73, 78, 69, 196,
67, 79, 78, 73, 67, 65, 204, 67, 79, 78, 71, 82, 85, 69, 78, 212, 67, 79,
78, 71, 82, 65, 84, 85, 76, 65, 84, 73, 79, 78, 128, 67, 79, 78, 70, 85,
83, 69, 196, 67, 79, 78, 70, 79, 85, 78, 68, 69, 196, 67, 79, 78, 70, 76,
73, 67, 84, 128, 67, 79, 78, 70, 69, 84, 84, 201, 67, 79, 78, 67, 65, 86,
69, 45, 83, 73, 68, 69, 196, 67, 79, 78, 67, 65, 86, 69, 45, 80, 79, 73,
78, 84, 69, 196, 67, 79, 77, 80, 85, 84, 69, 82, 83, 128, 67, 79, 77, 80,
85, 84, 69, 82, 128, 67, 79, 77, 80, 82, 69, 83, 83, 73, 79, 78, 128, 67,
79, 77, 80, 82, 69, 83, 83, 69, 196, 67, 79, 77, 80, 79, 83, 73, 84, 73,
79, 78, 128, 67, 79, 77, 80, 79, 83, 73, 84, 73, 79, 206, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 54, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 54, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 54,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 54, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 54, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 54, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 54, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 54, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 54, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 53, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 53, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 53,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 53, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 53, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 53, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 53, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 53, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 53, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 53, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 52, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 52,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 52, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 52, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 52, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 52, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 52, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 52, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 52, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 52, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 51,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 51, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 51, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 51, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 51, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 51, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 51, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 51, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 51, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 51,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 50, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 50, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 50, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 50, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 50, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 50, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 50, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 50, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 50,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 50, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 49, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 49, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 49, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 49, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 49, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 49, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 49, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 49,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 49, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 49, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 48, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
55, 48, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 48, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 48, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 55, 48, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 55, 48, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 48,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 55, 48, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 55, 48, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 55, 48, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 57, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 57, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 57, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 57, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 57, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 57,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 57, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 57, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 57, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 57, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 56, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 56, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 56, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 56, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 56,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 56, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 56, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 56, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 56, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 56, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 55, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 55, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 55, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 55,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 55, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 55, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 55, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 55, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 55, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 55, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 54, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 54, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 54,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 54, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 54, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 54, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 54, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 54, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 54, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 54, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 53, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 53,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 53, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 53, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 53, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 53, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 53, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 53, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 53, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 53, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 52,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 52, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 52, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 52, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 52, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 52, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 52, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 52, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 52, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 52,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 51, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 51, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 51, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 51, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 51, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 51, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 51, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 51, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 51,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 51, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 50, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 50, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 50, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 50, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 50, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 50, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 50, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 50,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 50, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 50, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 49, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 49, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 49, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 49, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 49, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 49, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 49,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 49, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 49, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 49, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 48, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 48, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 48, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 54, 48, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 54, 48, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 48,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 54, 48, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 54, 48, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 54, 48, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
54, 48, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 57, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 57, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 57, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 57, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 57,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 57, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 57, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 57, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 57, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 57, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 56, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 56, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 56, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 56,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 56, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 56, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 56, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 56, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 56, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 56, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 55, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 55, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 55,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 55, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 55, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 55, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 55, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 55, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 55, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 55, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 54, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 54,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 54, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 54, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 54, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 54, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 54, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 54, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 54, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 54, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 53,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 53, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 53, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 53, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 53, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 53, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 53, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 53, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 53, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 53,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 52, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 52, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 52, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 52, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 52, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 52, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 52, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 52, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 52,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 52, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 51, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 51, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 51, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 51, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 51, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 51, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 51, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 51,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 51, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 51, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 50, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 50, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 50, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 50, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 50, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 50, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 50,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 50, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 50, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 50, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 49, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 49, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 49, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 49, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 49, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 49,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 49, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 49, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 49, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 49, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 48, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 48, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 53, 48, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 53, 48, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 48,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 48, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 53, 48, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 53, 48, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
53, 48, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 53, 48, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 57, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 57, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 57, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 57,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 57, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 57, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 57, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 57, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 57, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 57, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 56, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 56, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 56,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 56, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 56, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 56, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 56, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 56, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 56, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 56, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 55, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 55,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 55, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 55, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 55, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 55, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 55, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 55, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 55, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 55, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 54,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 54, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 54, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 54, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 54, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 54, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 54, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 54, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 54, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 54,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 53, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 53, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 53, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 53, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 53, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 53, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 53, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 53, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 53,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 53, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 52, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 52, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 52, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 52, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 52, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 52, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 52, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 52,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 52, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 52, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 51, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 51, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 51, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 51, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 51, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 51, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 51,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 51, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 51, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 51, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 50, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 50, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 50, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 50, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 50, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 50,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 50, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 50, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 50, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 50, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 49, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 49, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 49, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 49, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 49,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 49, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 49, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 49, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 49, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 49, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 48, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 52, 48, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 52, 48, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 48,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 48, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 52, 48, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 52, 48, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
52, 48, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 48, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 52, 48, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 57, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 57, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 57,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 57, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 57, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 57, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 57, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 57, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 57, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 57, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 56, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 56,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 56, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 56, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 56, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 56, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 56, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 56, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 56, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 56, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 55,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 55, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 55, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 55, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 55, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 55, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 55, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 55, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 55, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 55,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 54, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 54, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 54, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 54, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 54, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 54, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 54, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 54, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 54,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 54, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 53, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 53, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 53, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 53, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 53, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 53, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 53, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 53,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 53, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 53, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 52, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 52, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 52, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 52, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 52, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 52, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 52,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 52, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 52, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 52, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 51, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 51, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 51, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 51, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 51, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 51,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 51, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 51, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 51, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 51, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 50, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 50, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 50, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 50, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 50,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 50, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 50, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 50, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 50, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 50, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 49, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 49, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 49, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 49,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 49, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 49, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 49, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 49, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 49, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 49, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 48, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 51, 48, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 48,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 48, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 51, 48, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 51, 48, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
51, 48, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 48, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 51, 48, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 51, 48, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 57, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 57,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 57, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 57, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 57, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 57, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 57, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 57, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 57, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 57, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 56,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 56, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 56, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 56, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 56, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 56, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 56, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 56, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 56, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 56,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 55, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 55, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 55, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 55, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 55, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 55, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 55, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 55, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 55,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 55, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 54, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 54, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 54, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 54, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 54, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 54, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 54, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 54,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 54, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 54, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 53, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 53, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 53, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 53, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 53, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 53, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 53,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 53, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 53, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 53, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 52, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 52, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 52, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 52, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 52, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 52,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 52, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 52, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 52, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 52, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 51, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 51, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 51, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 51, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 51,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 51, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 51, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 51, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 51, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 51, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 50, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 50, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 50, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 50,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 50, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 50, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 50, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 50, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 50, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 50, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 49, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 49, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 49,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 49, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 49, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 49, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 49, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 49, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 49, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 49, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 48, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 48,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 48, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 50, 48, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 50, 48, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
50, 48, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 48, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 50, 48, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 50, 48, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 50, 48, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 57,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 57, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 57, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 57, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 57, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 57, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 57, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 57, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 57, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 57,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 56, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 56, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 56, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 56, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 56, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 56, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 56, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 56, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 56,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 56, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 55, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 55, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 55, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 55, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 55, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 55, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 55, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 55,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 55, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 55, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 54, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 54, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 54, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 54, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 54, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 54, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 54,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 54, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 54, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 54, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 53, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 53, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 53, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 53, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 53, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 53,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 53, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 53, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 53, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 53, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 52, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 52, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 52, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 52, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 52,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 52, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 52, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 52, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 52, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 52, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 51, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 51, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 51, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 51,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 51, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 51, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 51, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 51, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 51, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 51, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 50, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 50, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 50,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 50, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 50, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 50, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 50, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 50, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 50, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 50, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 49, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 49,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 49, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 49, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 49, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 49, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 49, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 49, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 49, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 49, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 48,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 48, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 49, 48, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 49, 48, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
49, 48, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 48, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 48, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 49, 48, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 49, 48, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 49, 48,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 57, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 57, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 57, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 57, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 57, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 57, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 57, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 57, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 57,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 57, 48, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 56, 57, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 56, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 56, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 56, 54, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 56, 53, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 56, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 56, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 56,
50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 56, 49, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 56, 48, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 55, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 55, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 55, 55, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 55, 54, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 55, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 55, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 55,
51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 55, 50, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 55, 49, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 55, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 54, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 54, 56, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 54, 55, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 54, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 54, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 54,
52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 54, 51, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 54, 50, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 54, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 54, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 53, 57, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 53, 56, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 53, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 53, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 53,
53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 53, 52, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 53, 51, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 53, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 53, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 53, 48, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 52, 57, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 52, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 52, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 52,
54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 52, 53, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 52, 52, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 52, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 52, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 52, 49, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 52, 48, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 51, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 51, 56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 51,
55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 51, 54, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 51, 53, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 51, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 51, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 51, 50, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 51, 49, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 51, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 50, 57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 50,
56, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 50, 55, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 50, 54, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 50, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 50, 52, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 50, 51, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 50, 50, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 50, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 50, 48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 49,
57, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 49, 56, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 49, 55, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 49, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 49, 53, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 49, 52, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 49, 51, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 49, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 49, 49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 49,
48, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 48, 57, 128, 67, 79,
77, 80, 79, 78, 69, 78, 84, 45, 48, 48, 56, 128, 67, 79, 77, 80, 79, 78,
69, 78, 84, 45, 48, 48, 55, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45,
48, 48, 54, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 48, 53, 128,
67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 48, 52, 128, 67, 79, 77, 80,
79, 78, 69, 78, 84, 45, 48, 48, 51, 128, 67, 79, 77, 80, 79, 78, 69, 78,
84, 45, 48, 48, 50, 128, 67, 79, 77, 80, 79, 78, 69, 78, 84, 45, 48, 48,
49, 128, 67, 79, 77, 80, 79, 78, 69, 78, 212, 67, 79, 77, 80, 76, 73, 65,
78, 67, 69, 128, 67, 79, 77, 80, 76, 69, 84, 73, 79, 78, 128, 67, 79, 77,
80, 76, 69, 84, 69, 68, 128, 67, 79, 77, 80, 76, 69, 77, 69, 78, 84, 128,
67, 79, 77, 80, 65, 83, 83, 128, 67, 79, 77, 80, 65, 82, 69, 128, 67, 79,
77, 77, 79, 206, 67, 79, 77, 77, 69, 82, 67, 73, 65, 204, 67, 79, 77, 77,
65, 78, 68, 128, 67, 79, 77, 77, 65, 128, 67, 79, 77, 77, 193, 67, 79,
77, 69, 84, 128, 67, 79, 77, 66, 73, 78, 69, 68, 128, 67, 79, 77, 66, 73,
78, 65, 84, 73, 79, 78, 128, 67, 79, 77, 66, 128, 67, 79, 76, 85, 77, 78,
128, 67, 79, 76, 79, 82, 128, 67, 79, 76, 76, 73, 83, 73, 79, 206, 67,
79, 76, 76, 128, 67, 79, 76, 196, 67, 79, 73, 78, 128, 67, 79, 70, 70,
73, 78, 128, 67, 79, 69, 78, 71, 128, 67, 79, 69, 78, 199, 67, 79, 68,
65, 128, 67, 79, 67, 79, 78, 85, 84, 128, 67, 79, 67, 75, 84, 65, 73,
204, 67, 79, 67, 75, 82, 79, 65, 67, 72, 128, 67, 79, 65, 84, 128, 67,
79, 65, 83, 84, 69, 82, 128, 67, 79, 65, 128, 67, 77, 128, 67, 205, 67,
76, 85, 83, 84, 69, 82, 45, 73, 78, 73, 84, 73, 65, 204, 67, 76, 85, 83,
84, 69, 82, 45, 70, 73, 78, 65, 204, 67, 76, 85, 83, 84, 69, 210, 67, 76,
85, 66, 83, 128, 67, 76, 85, 66, 45, 83, 80, 79, 75, 69, 196, 67, 76, 85,
66, 128, 67, 76, 85, 194, 67, 76, 79, 87, 206, 67, 76, 79, 86, 69, 82,
128, 67, 76, 79, 85, 68, 128, 67, 76, 79, 85, 196, 67, 76, 79, 84, 72,
69, 83, 128, 67, 76, 79, 84, 72, 128, 67, 76, 79, 83, 69, 84, 128, 67,
76, 79, 83, 69, 78, 69, 83, 83, 128, 67, 76, 79, 83, 69, 68, 128, 67, 76,
79, 83, 197, 67, 76, 79, 67, 75, 87, 73, 83, 197, 67, 76, 79, 67, 203,
67, 76, 73, 86, 73, 83, 128, 67, 76, 73, 80, 66, 79, 65, 82, 68, 128, 67,
76, 73, 78, 75, 73, 78, 199, 67, 76, 73, 78, 71, 73, 78, 199, 67, 76, 73,
77, 66, 73, 78, 71, 128, 67, 76, 73, 77, 65, 67, 85, 83, 128, 67, 76, 73,
70, 70, 128, 67, 76, 73, 67, 75, 128, 67, 76, 69, 70, 45, 50, 128, 67,
76, 69, 70, 45, 49, 128, 67, 76, 69, 70, 128, 67, 76, 69, 198, 67, 76,
69, 65, 86, 69, 82, 128, 67, 76, 69, 65, 210, 67, 76, 65, 83, 83, 73, 67,
65, 204, 67, 76, 65, 80, 80, 73, 78, 199, 67, 76, 65, 80, 80, 69, 210,
67, 76, 65, 78, 128, 67, 76, 65, 206, 67, 76, 65, 77, 83, 72, 69, 76,
204, 67, 76, 65, 73, 77, 128, 67, 76, 128, 67, 73, 88, 128, 67, 73, 86,
73, 76, 73, 65, 78, 128, 67, 73, 84, 89, 83, 67, 65, 80, 69, 128, 67, 73,
84, 89, 83, 67, 65, 80, 197, 67, 73, 84, 201, 67, 73, 84, 65, 84, 73, 79,
206, 67, 73, 84, 128, 67, 73, 82, 67, 85, 211, 67, 73, 82, 67, 85, 77,
70, 76, 69, 88, 128, 67, 73, 82, 67, 85, 77, 70, 76, 69, 216, 67, 73, 82,
67, 85, 76, 65, 84, 73, 79, 206, 67, 73, 82, 67, 76, 73, 78, 71, 128, 67,
73, 82, 67, 76, 73, 78, 199, 67, 73, 82, 67, 76, 69, 83, 128, 67, 73, 82,
67, 76, 69, 211, 67, 73, 82, 67, 76, 69, 68, 128, 67, 73, 80, 128, 67,
73, 78, 78, 65, 66, 65, 82, 128, 67, 73, 78, 69, 77, 65, 128, 67, 73,
206, 67, 73, 77, 128, 67, 73, 205, 67, 73, 73, 128, 67, 73, 69, 88, 128,
67, 73, 69, 85, 67, 45, 83, 83, 65, 78, 71, 80, 73, 69, 85, 80, 128, 67,
73, 69, 85, 67, 45, 80, 73, 69, 85, 80, 128, 67, 73, 69, 85, 67, 45, 73,
69, 85, 78, 71, 128, 67, 73, 69, 85, 195, 67, 73, 69, 84, 128, 67, 73,
69, 80, 128, 67, 73, 69, 128, 67, 72, 89, 88, 128, 67, 72, 89, 84, 128,
67, 72, 89, 82, 88, 128, 67, 72, 89, 82, 128, 67, 72, 89, 80, 128, 67,
72, 87, 86, 128, 67, 72, 85, 88, 128, 67, 72, 85, 82, 88, 128, 67, 72,
85, 82, 67, 72, 128, 67, 72, 85, 82, 128, 67, 72, 85, 80, 128, 67, 72,
85, 79, 88, 128, 67, 72, 85, 79, 84, 128, 67, 72, 85, 79, 80, 128, 67,
72, 85, 79, 128, 67, 72, 85, 76, 65, 128, 67, 72, 85, 128, 67, 72, 82,
89, 83, 65, 78, 84, 72, 69, 77, 85, 77, 128, 67, 72, 82, 79, 78, 79, 85,
128, 67, 72, 82, 79, 78, 79, 78, 128, 67, 72, 82, 79, 77, 193, 67, 72,
82, 79, 193, 67, 72, 82, 73, 86, 73, 128, 67, 72, 82, 73, 83, 84, 77, 65,
83, 128, 67, 72, 82, 73, 83, 84, 77, 65, 211, 67, 72, 79, 89, 128, 67,
72, 79, 88, 128, 67, 72, 79, 84, 128, 67, 72, 79, 82, 69, 86, 77, 193,
67, 72, 79, 82, 65, 83, 77, 73, 65, 206, 67, 72, 79, 80, 83, 84, 73, 67,
75, 83, 128, 67, 72, 79, 80, 128, 67, 72, 79, 75, 69, 128, 67, 72, 79,
69, 128, 67, 72, 79, 67, 79, 76, 65, 84, 197, 67, 72, 79, 65, 128, 67,
72, 73, 84, 85, 69, 85, 77, 83, 83, 65, 78, 71, 83, 73, 79, 83, 128, 67,
72, 73, 84, 85, 69, 85, 77, 83, 83, 65, 78, 71, 67, 73, 69, 85, 67, 128,
67, 72, 73, 84, 85, 69, 85, 77, 83, 73, 79, 83, 128, 67, 72, 73, 84, 85,
69, 85, 77, 67, 73, 69, 85, 67, 128, 67, 72, 73, 84, 85, 69, 85, 77, 67,
72, 73, 69, 85, 67, 72, 128, 67, 72, 73, 82, 79, 78, 128, 67, 72, 73, 82,
69, 84, 128, 67, 72, 73, 80, 77, 85, 78, 75, 128, 67, 72, 73, 78, 79, 79,
203, 67, 72, 73, 78, 71, 128, 67, 72, 73, 78, 69, 83, 197, 67, 72, 73,
78, 128, 67, 72, 73, 77, 69, 128, 67, 72, 73, 77, 128, 67, 72, 73, 76,
76, 213, 67, 72, 73, 76, 68, 82, 69, 206, 67, 72, 73, 76, 68, 128, 67,
72, 73, 76, 128, 67, 72, 73, 75, 201, 67, 72, 73, 69, 85, 67, 72, 45, 75,
72, 73, 69, 85, 75, 72, 128, 67, 72, 73, 69, 85, 67, 72, 45, 72, 73, 69,
85, 72, 128, 67, 72, 73, 69, 85, 67, 200, 67, 72, 73, 67, 75, 69, 78,
128, 67, 72, 73, 67, 75, 128, 67, 72, 73, 128, 67, 72, 201, 67, 72, 72,
73, 77, 128, 67, 72, 72, 65, 128, 67, 72, 69, 88, 128, 67, 72, 69, 86,
82, 79, 78, 128, 67, 72, 69, 86, 82, 79, 206, 67, 72, 69, 84, 128, 67,
72, 69, 83, 84, 78, 85, 84, 128, 67, 72, 69, 83, 84, 128, 67, 72, 69, 83,
211, 67, 72, 69, 82, 89, 128, 67, 72, 69, 82, 82, 217, 67, 72, 69, 82,
82, 73, 69, 83, 128, 67, 72, 69, 81, 85, 69, 82, 69, 196, 67, 72, 69, 80,
128, 67, 72, 69, 73, 78, 65, 80, 128, 67, 72, 69, 73, 75, 72, 69, 73,
128, 67, 72, 69, 73, 75, 72, 65, 78, 128, 67, 72, 69, 69, 83, 197, 67,
72, 69, 69, 82, 73, 78, 199, 67, 72, 69, 69, 77, 128, 67, 72, 69, 69, 75,
211, 67, 72, 69, 69, 75, 128, 67, 72, 69, 69, 128, 67, 72, 69, 67, 75,
69, 210, 67, 72, 69, 67, 75, 128, 67, 72, 69, 67, 203, 67, 72, 197, 67,
72, 65, 88, 128, 67, 72, 65, 86, 73, 89, 65, 78, 73, 128, 67, 72, 65, 84,
84, 65, 87, 65, 128, 67, 72, 65, 84, 128, 67, 72, 65, 82, 84, 128, 67,
72, 65, 82, 212, 67, 72, 65, 82, 73, 79, 84, 128, 67, 72, 65, 82, 73, 79,
212, 67, 72, 65, 82, 65, 67, 84, 69, 82, 83, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 70, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 70, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 70, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 70, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 70,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 70, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 70, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 70, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 70, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 70, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 70, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 70, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 69, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 69, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 69, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 69, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 69, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 69, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 69, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 68, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 68, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 68, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 68, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 68, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 68, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 68, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 68, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 67, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 67, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 67, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 67, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 67, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 67, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 67, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 67, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 67, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 66, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 66, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 66, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 66, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 66, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 66, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 66, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 66, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 66, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 65, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 65, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 65, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 65, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 65, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 65, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 65, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 57, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 57, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 57, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 57, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 57, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 57, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 57, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 56, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 56, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 56, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 56, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56,
66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 65, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 57, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 56, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 55, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 56, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 56, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 56, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 56, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56,
50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 49, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 56, 48, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 70, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 69, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 55, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 55, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 55, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 55, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55,
57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 56, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 55, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 54, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 55, 53, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 55, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 55, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 55, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 55, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 55,
48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 70, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 69, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 68, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 67, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 54, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 54, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 54, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 54, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 54, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 54, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 54, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 54, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 53, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 53, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 53, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 53, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 53, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 53, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 53, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 52, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 52, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 52, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 52, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 52, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 52, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 52, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 52, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 51, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 51, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 51, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 51, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 51, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 51, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 51, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 51, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 51, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 50, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 50, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 50, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 50, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 50, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 50, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 50, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 50, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 50, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 49, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 49, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 49, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 49, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 49, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 49, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 49, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 48, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 48, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 50, 48, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 50, 48, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 50, 48, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
50, 48, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 50, 48, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 70, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 70, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 70, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 70, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70,
66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 65, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 57, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 56, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 55, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 70, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 70, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 70, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 70, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70,
50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 49, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 70, 48, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 70, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 69, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 69, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 69, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 69, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 69, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69,
57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 56, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 55, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 54, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 69, 53, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 69, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 69, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 69, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 69, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 69,
48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 70, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 69, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 68, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 67, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 68, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 68, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 68, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 68, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 68, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 68, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 68, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 68, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 67, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 67, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 67, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 67, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 67, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 67, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 67, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 66, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 66, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 66, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 66, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 66, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 66, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 66, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 66, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 65, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 65, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 65, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 65, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 65, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 65, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 65, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 65, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 65, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 57, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 57, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 57, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 57, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 57, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 57, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 57, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 57, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 57, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 56, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 56, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 56, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 56, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 56, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 56, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 56, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 55, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 55, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 66, 49, 55, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 66, 49, 55, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 66, 49, 55, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66,
49, 55, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 66, 49, 55, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 68, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 68, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 68, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 68, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 68,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 68, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 67, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 67, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 67, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 67, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 67, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 67, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 67, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 67, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 67, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 66, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 66, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 66, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 66, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 66, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 66, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 66, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 65, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 65, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 65, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 65, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 65, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 65, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 65, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 57, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 57, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 57, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 57, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57,
66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 65, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 57, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 56, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 55, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 57, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 57, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 57, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 57, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57,
50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 49, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 57, 48, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 70, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 69, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 56, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 56, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 56, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 56, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56,
57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 56, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 55, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 54, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 56, 53, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 56, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 56, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 56, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 56, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 56,
48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 70, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 69, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 68, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 67, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 55, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 55, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 55, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 55, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 55, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 55, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 55, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 55, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 54, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 54, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 54, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 54, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 54, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 54, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 54, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 53, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 53, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 53, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 53, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 53, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 53, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 53, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 53, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 52, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 52, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 52, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 52, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 52, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 52, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 52, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 52, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 52, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 51, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 51, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 51, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 51, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 51, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 51, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 51, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 51, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 51, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 50, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 50, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 50, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 50, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 50, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 50, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 50, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 49, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 49, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 49, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 49, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 49, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 49, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 49, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 48, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 48, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 48, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 48, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48,
66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 65, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 57, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 56, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 55, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 67, 48, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 67, 48, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 67, 48, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
67, 48, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48,
50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 49, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 67, 48, 48, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 70, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 69, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 70, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 70, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 70, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 70, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70,
57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 56, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 55, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 54, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 70, 53, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 70, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 70, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 70, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 70, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 70,
48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 70, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 69, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 68, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 67, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 69, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 69, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 69, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 69, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 69, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 69, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 69, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 69, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 68, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 68, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 68, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 68, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 68, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 68, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 68, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 67, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 67, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 67, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 67, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 67, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 67, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 67, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 67, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 66, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 66, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 66, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 66, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 66, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 66, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 66, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 66, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 66, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 65, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 65, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 65, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 65, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 65, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 65, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 65, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 65, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 65, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 57, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 57, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 57, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 57, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 57, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 57, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 57, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 56, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 56, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56,
68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 67, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 66, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 65, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 57, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 56, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 56, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 56, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 56, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56,
52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 51, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 50, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 49, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 56, 48, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 55, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 55, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 55, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 55, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55,
66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 65, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 57, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 56, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 55, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 55, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 55, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 55, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 55, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55,
50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 49, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 55, 48, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 70, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 69, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 54, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 54, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 54, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 54, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54,
57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 56, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 55, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 54, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 54, 53, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 54, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 54, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 54, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 54, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 54,
48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 70, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 69, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 68, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 67, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 53, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 53, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 53, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 53, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53,
55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 54, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 53, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 52, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 53, 51, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 53, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 53, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 53, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 52, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52,
69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 68, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 67, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 66, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 65, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 52, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 52, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 52, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 52, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52,
53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 52, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 51, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 50, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 52, 49, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 52, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 51, 70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 51, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 51, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51,
67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 66, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 65, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 57, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 56, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 51, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 51, 54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 51, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 51, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51,
51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 50, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 49, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 51, 48, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 70, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 50, 69, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 50, 68, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 50, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 50, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50,
65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 57, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 56, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 55, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 54, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 50, 53, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 50, 52, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 50, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 50, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50,
49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 50, 48, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 70, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 69, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 68, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 49, 67, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 49, 66, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 49, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 49, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49,
56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 55, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 54, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 53, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 49, 52, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 49, 51, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 49, 50, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 49, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 49, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48,
70, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 69, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 68, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 67, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 66, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 48, 65, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 48, 57, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45,
49, 56, 66, 48, 56, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56,
66, 48, 55, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48,
54, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 53, 128,
67, 72, 65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 52, 128, 67, 72,
65, 82, 65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 51, 128, 67, 72, 65, 82,
65, 67, 84, 69, 82, 45, 49, 56, 66, 48, 50, 128, 67, 72, 65, 82, 65, 67,
84, 69, 82, 45, 49, 56, 66, 48, 49, 128, 67, 72, 65, 82, 65, 67, 84, 69,
82, 45, 49, 56, 66, 48, 48, 128, 67, 72, 65, 82, 65, 67, 84, 69, 82, 128,
67, 72, 65, 82, 65, 67, 84, 69, 210, 67, 72, 65, 82, 128, 67, 72, 65, 80,
84, 69, 82, 128, 67, 72, 65, 80, 128, 67, 72, 65, 78, 71, 128, 67, 72,
65, 78, 128, 67, 72, 65, 77, 75, 79, 128, 67, 72, 65, 77, 73, 76, 79, 78,
128, 67, 72, 65, 77, 73, 76, 73, 128, 67, 72, 65, 205, 67, 72, 65, 75,
77, 193, 67, 72, 65, 73, 78, 83, 128, 67, 72, 65, 68, 65, 128, 67, 72,
65, 196, 67, 72, 65, 65, 128, 67, 71, 74, 128, 67, 69, 88, 128, 67, 69,
86, 73, 84, 85, 128, 67, 69, 82, 69, 83, 128, 67, 69, 82, 69, 77, 79, 78,
89, 128, 67, 69, 82, 69, 75, 128, 67, 69, 82, 45, 87, 65, 128, 67, 69,
80, 128, 67, 69, 79, 78, 71, 67, 72, 73, 69, 85, 77, 83, 83, 65, 78, 71,
83, 73, 79, 83, 128, 67, 69, 79, 78, 71, 67, 72, 73, 69, 85, 77, 83, 83,
65, 78, 71, 67, 73, 69, 85, 67, 128, 67, 69, 79, 78, 71, 67, 72, 73, 69,
85, 77, 83, 73, 79, 83, 128, 67, 69, 79, 78, 71, 67, 72, 73, 69, 85, 77,
67, 73, 69, 85, 67, 128, 67, 69, 79, 78, 71, 67, 72, 73, 69, 85, 77, 67,
72, 73, 69, 85, 67, 72, 128, 67, 69, 78, 84, 85, 82, 73, 65, 204, 67, 69,
78, 84, 82, 69, 76, 73, 78, 197, 67, 69, 78, 84, 82, 69, 68, 128, 67, 69,
78, 84, 82, 69, 196, 67, 69, 78, 84, 82, 69, 128, 67, 69, 78, 84, 82,
197, 67, 69, 78, 84, 82, 65, 76, 73, 90, 65, 84, 73, 79, 206, 67, 69, 78,
128, 67, 69, 76, 84, 73, 195, 67, 69, 76, 83, 73, 85, 83, 128, 67, 69,
76, 69, 66, 82, 65, 84, 73, 79, 78, 128, 67, 69, 73, 82, 84, 128, 67, 69,
73, 76, 73, 78, 71, 128, 67, 69, 73, 76, 73, 78, 199, 67, 69, 69, 86,
128, 67, 69, 69, 66, 128, 67, 69, 69, 128, 67, 69, 68, 73, 76, 76, 65,
128, 67, 69, 68, 73, 76, 76, 193, 67, 69, 68, 201, 67, 69, 67, 69, 75,
128, 67, 69, 67, 65, 75, 128, 67, 69, 67, 65, 203, 67, 69, 65, 76, 67,
128, 67, 67, 85, 128, 67, 67, 79, 128, 67, 67, 73, 128, 67, 67, 72, 85,
128, 67, 67, 72, 79, 128, 67, 67, 72, 73, 128, 67, 67, 72, 72, 85, 128,
67, 67, 72, 72, 79, 128, 67, 67, 72, 72, 73, 128, 67, 67, 72, 72, 69, 69,
128, 67, 67, 72, 72, 69, 128, 67, 67, 72, 72, 65, 65, 128, 67, 67, 72,
72, 65, 128, 67, 67, 72, 69, 69, 128, 67, 67, 72, 69, 128, 67, 67, 72,
65, 65, 128, 67, 67, 72, 65, 128, 67, 67, 72, 128, 67, 67, 69, 69, 128,
67, 67, 65, 65, 128, 67, 65, 89, 78, 128, 67, 65, 89, 65, 78, 78, 65,
128, 67, 65, 88, 128, 67, 65, 86, 69, 128, 67, 65, 85, 84, 73, 79, 206,
67, 65, 85, 76, 68, 82, 79, 78, 128, 67, 65, 85, 68, 65, 128, 67, 65, 85,
67, 65, 83, 73, 65, 206, 67, 65, 85, 128, 67, 65, 84, 65, 87, 65, 128,
67, 65, 84, 128, 67, 65, 212, 67, 65, 83, 84, 76, 69, 128, 67, 65, 83,
75, 69, 212, 67, 65, 82, 89, 83, 84, 73, 65, 206, 67, 65, 82, 84, 87, 72,
69, 69, 76, 128, 67, 65, 82, 84, 82, 73, 68, 71, 69, 128, 67, 65, 82, 84,
128, 67, 65, 82, 211, 67, 65, 82, 82, 79, 84, 128, 67, 65, 82, 82, 73,
65, 71, 197, 67, 65, 82, 80, 69, 78, 84, 82, 217, 67, 65, 82, 208, 67,
65, 82, 79, 85, 83, 69, 204, 67, 65, 82, 79, 78, 128, 67, 65, 82, 79,
206, 67, 65, 82, 73, 203, 67, 65, 82, 73, 65, 206, 67, 65, 82, 69, 84,
128, 67, 65, 82, 69, 212, 67, 65, 82, 197, 67, 65, 82, 68, 83, 128, 67,
65, 82, 196, 67, 65, 82, 128, 67, 65, 210, 67, 65, 80, 85, 212, 67, 65,
80, 84, 73, 86, 69, 128, 67, 65, 80, 82, 73, 67, 79, 82, 78, 128, 67, 65,
80, 80, 69, 196, 67, 65, 80, 79, 128, 67, 65, 80, 73, 84, 85, 76, 85, 77,
128, 67, 65, 80, 73, 84, 65, 76, 128, 67, 65, 78, 84, 73, 76, 76, 65, 84,
73, 79, 206, 67, 65, 78, 79, 69, 128, 67, 65, 78, 78, 79, 78, 128, 67,
65, 78, 78, 69, 196, 67, 65, 78, 199, 67, 65, 78, 69, 128, 67, 65, 78,
68, 89, 128, 67, 65, 78, 68, 82, 65, 66, 73, 78, 68, 85, 128, 67, 65, 78,
68, 82, 65, 66, 73, 78, 68, 213, 67, 65, 78, 68, 82, 65, 128, 67, 65, 78,
68, 82, 193, 67, 65, 78, 68, 76, 69, 128, 67, 65, 78, 67, 69, 82, 128,
67, 65, 78, 67, 69, 76, 76, 65, 84, 73, 79, 206, 67, 65, 78, 67, 69, 76,
128, 67, 65, 78, 67, 69, 204, 67, 65, 78, 128, 67, 65, 77, 80, 73, 78,
71, 128, 67, 65, 77, 78, 85, 195, 67, 65, 77, 69, 82, 65, 128, 67, 65,
77, 69, 82, 193, 67, 65, 77, 69, 76, 128, 67, 65, 76, 89, 65, 128, 67,
65, 76, 89, 193, 67, 65, 76, 88, 128, 67, 65, 76, 76, 128, 67, 65, 76,
204, 67, 65, 76, 69, 78, 68, 65, 82, 128, 67, 65, 76, 69, 78, 68, 65,
210, 67, 65, 76, 67, 85, 76, 65, 84, 79, 82, 128, 67, 65, 76, 67, 128,
67, 65, 75, 82, 65, 128, 67, 65, 75, 197, 67, 65, 73, 128, 67, 65, 72,
128, 67, 65, 69, 83, 85, 82, 65, 128, 67, 65, 68, 85, 67, 69, 85, 83,
128, 67, 65, 68, 193, 67, 65, 67, 84, 85, 83, 128, 67, 65, 66, 76, 69,
87, 65, 89, 128, 67, 65, 66, 73, 78, 69, 84, 128, 67, 65, 66, 66, 65, 71,
69, 45, 84, 82, 69, 69, 128, 67, 65, 65, 78, 71, 128, 67, 65, 65, 73,
128, 67, 193, 67, 48, 50, 52, 128, 67, 48, 50, 51, 128, 67, 48, 50, 50,
128, 67, 48, 50, 49, 128, 67, 48, 50, 48, 128, 67, 48, 49, 57, 128, 67,
48, 49, 56, 128, 67, 48, 49, 55, 128, 67, 48, 49, 54, 128, 67, 48, 49,
53, 128, 67, 48, 49, 52, 128, 67, 48, 49, 51, 128, 67, 48, 49, 50, 128,
67, 48, 49, 49, 128, 67, 48, 49, 48, 65, 128, 67, 48, 49, 48, 128, 67,
48, 48, 57, 128, 67, 48, 48, 56, 128, 67, 48, 48, 55, 128, 67, 48, 48,
54, 128, 67, 48, 48, 53, 128, 67, 48, 48, 52, 128, 67, 48, 48, 51, 128,
67, 48, 48, 50, 67, 128, 67, 48, 48, 50, 66, 128, 67, 48, 48, 50, 65,
128, 67, 48, 48, 50, 128, 67, 48, 48, 49, 128, 67, 45, 83, 73, 77, 80,
76, 73, 70, 73, 69, 196, 67, 45, 51, 57, 128, 67, 45, 49, 56, 128, 66,
90, 85, 78, 199, 66, 90, 72, 201, 66, 89, 84, 197, 66, 89, 69, 76, 79,
82, 85, 83, 83, 73, 65, 78, 45, 85, 75, 82, 65, 73, 78, 73, 65, 206, 66,
88, 71, 128, 66, 87, 73, 128, 66, 87, 69, 69, 128, 66, 87, 69, 128, 66,
87, 65, 128, 66, 85, 85, 77, 73, 83, 72, 128, 66, 85, 84, 84, 79, 78,
128, 66, 85, 84, 84, 79, 206, 66, 85, 84, 84, 69, 82, 70, 76, 89, 128,
66, 85, 84, 84, 69, 82, 128, 66, 85, 212, 66, 85, 83, 84, 211, 66, 85,
83, 212, 66, 85, 83, 83, 89, 69, 82, 85, 128, 66, 85, 83, 73, 78, 69, 83,
211, 66, 85, 211, 66, 85, 82, 213, 66, 85, 82, 82, 73, 84, 79, 128, 66,
85, 82, 50, 128, 66, 85, 210, 66, 85, 79, 88, 128, 66, 85, 79, 80, 128,
66, 85, 78, 78, 217, 66, 85, 78, 71, 128, 66, 85, 77, 80, 217, 66, 85,
76, 85, 71, 128, 66, 85, 76, 85, 199, 66, 85, 76, 76, 83, 69, 89, 69,
128, 66, 85, 76, 76, 211, 66, 85, 76, 76, 72, 79, 82, 78, 128, 66, 85,
76, 76, 72, 79, 82, 206, 66, 85, 76, 76, 69, 84, 128, 66, 85, 76, 76, 69,
212, 66, 85, 76, 76, 128, 66, 85, 76, 66, 128, 66, 85, 75, 89, 128, 66,
85, 73, 76, 68, 73, 78, 71, 83, 128, 66, 85, 73, 76, 68, 73, 78, 71, 128,
66, 85, 73, 76, 68, 73, 78, 199, 66, 85, 72, 73, 196, 66, 85, 71, 73, 78,
69, 83, 197, 66, 85, 71, 128, 66, 85, 70, 70, 65, 76, 79, 128, 66, 85,
68, 128, 66, 85, 67, 75, 76, 69, 128, 66, 85, 67, 75, 69, 84, 128, 66,
85, 66, 66, 76, 69, 83, 128, 66, 85, 66, 66, 76, 69, 128, 66, 85, 66, 66,
76, 197, 66, 83, 84, 65, 82, 128, 66, 83, 75, 85, 210, 66, 83, 75, 65,
173, 66, 83, 68, 85, 211, 66, 82, 85, 83, 200, 66, 82, 79, 87, 206, 66,
82, 79, 79, 77, 128, 66, 82, 79, 78, 90, 69, 128, 66, 82, 79, 75, 69,
206, 66, 82, 79, 67, 67, 79, 76, 73, 128, 66, 82, 79, 65, 196, 66, 82,
73, 83, 84, 76, 69, 128, 66, 82, 73, 71, 72, 84, 78, 69, 83, 211, 66, 82,
73, 69, 70, 83, 128, 66, 82, 73, 69, 70, 67, 65, 83, 69, 128, 66, 82, 73,
68, 71, 197, 66, 82, 73, 68, 197, 66, 82, 73, 67, 75, 128, 66, 82, 73,
128, 66, 82, 69, 86, 73, 83, 128, 66, 82, 69, 86, 69, 45, 77, 65, 67, 82,
79, 78, 128, 66, 82, 69, 86, 197, 66, 82, 69, 65, 84, 200, 66, 82, 69,
65, 83, 84, 45, 70, 69, 69, 68, 73, 78, 71, 128, 66, 82, 69, 65, 75, 84,
72, 82, 79, 85, 71, 72, 128, 66, 82, 68, 193, 66, 82, 65, 78, 67, 72, 73,
78, 199, 66, 82, 65, 78, 67, 72, 69, 83, 128, 66, 82, 65, 78, 67, 72,
128, 66, 82, 65, 78, 67, 200, 66, 82, 65, 75, 67, 69, 84, 128, 66, 82,
65, 73, 78, 128, 66, 82, 65, 67, 75, 69, 84, 69, 196, 66, 82, 65, 67, 75,
69, 212, 66, 82, 65, 67, 69, 128, 66, 81, 128, 66, 80, 72, 128, 66, 79,
89, 211, 66, 79, 89, 128, 66, 79, 88, 73, 78, 199, 66, 79, 87, 84, 73,
69, 128, 66, 79, 87, 84, 73, 197, 66, 79, 87, 76, 73, 78, 71, 128, 66,
79, 87, 76, 128, 66, 79, 87, 204, 66, 79, 87, 73, 78, 199, 66, 79, 215,
66, 79, 85, 81, 85, 69, 84, 128, 66, 79, 85, 81, 85, 69, 212, 66, 79, 85,
78, 68, 65, 82, 217, 66, 79, 84, 84, 79, 77, 45, 83, 72, 65, 68, 69, 196,
66, 79, 84, 84, 79, 77, 45, 76, 73, 71, 72, 84, 69, 196, 66, 79, 84, 84,
79, 77, 128, 66, 79, 84, 84, 79, 205, 66, 79, 84, 84, 76, 69, 128, 66,
79, 84, 84, 76, 197, 66, 79, 84, 200, 66, 79, 82, 85, 84, 79, 128, 66,
79, 82, 65, 88, 45, 51, 128, 66, 79, 82, 65, 88, 45, 50, 128, 66, 79, 82,
65, 88, 128, 66, 79, 80, 79, 77, 79, 70, 207, 66, 79, 79, 84, 83, 128,
66, 79, 79, 84, 128, 66, 79, 79, 77, 69, 82, 65, 78, 71, 128, 66, 79, 79,
75, 83, 128, 66, 79, 79, 75, 77, 65, 82, 75, 128, 66, 79, 79, 75, 77, 65,
82, 203, 66, 79, 78, 69, 128, 66, 79, 77, 66, 128, 66, 79, 77, 128, 66,
79, 76, 84, 128, 66, 79, 76, 212, 66, 79, 72, 65, 73, 82, 73, 195, 66,
79, 68, 89, 128, 66, 79, 68, 217, 66, 79, 65, 82, 128, 66, 79, 65, 128,
66, 76, 85, 69, 66, 69, 82, 82, 73, 69, 83, 128, 66, 76, 85, 69, 128, 66,
76, 85, 197, 66, 76, 79, 87, 73, 78, 199, 66, 76, 79, 87, 70, 73, 83, 72,
128, 66, 76, 79, 215, 66, 76, 79, 83, 83, 79, 77, 128, 66, 76, 79, 79,
68, 128, 66, 76, 79, 78, 196, 66, 76, 79, 67, 75, 45, 55, 128, 66, 76,
79, 67, 75, 45, 54, 128, 66, 76, 79, 67, 75, 45, 53, 128, 66, 76, 79, 67,
75, 45, 52, 128, 66, 76, 79, 67, 75, 45, 51, 128, 66, 76, 79, 67, 75, 45,
50, 128, 66, 76, 79, 67, 75, 45, 49, 51, 53, 56, 128, 66, 76, 79, 67, 75,
128, 66, 76, 73, 78, 203, 66, 76, 65, 78, 75, 128, 66, 76, 65, 78, 203,
66, 76, 65, 68, 197, 66, 76, 65, 67, 75, 76, 69, 84, 84, 69, 210, 66, 76,
65, 67, 75, 70, 79, 79, 212, 66, 76, 65, 67, 75, 45, 76, 69, 84, 84, 69,
210, 66, 76, 65, 67, 75, 45, 70, 69, 65, 84, 72, 69, 82, 69, 196, 66, 76,
65, 67, 75, 128, 66, 75, 65, 173, 66, 73, 84, 84, 69, 82, 128, 66, 73,
84, 73, 78, 199, 66, 73, 84, 197, 66, 73, 84, 67, 79, 73, 206, 66, 73,
83, 79, 78, 128, 66, 73, 83, 77, 85, 84, 200, 66, 73, 83, 77, 73, 76, 76,
65, 200, 66, 73, 83, 72, 79, 208, 66, 73, 83, 69, 67, 84, 73, 78, 199,
66, 73, 83, 65, 72, 128, 66, 73, 82, 85, 128, 66, 73, 82, 84, 72, 68, 65,
217, 66, 73, 82, 71, 65, 128, 66, 73, 82, 71, 193, 66, 73, 82, 68, 128,
66, 73, 79, 72, 65, 90, 65, 82, 196, 66, 73, 78, 79, 86, 73, 76, 69, 128,
66, 73, 78, 79, 67, 85, 76, 65, 210, 66, 73, 78, 68, 73, 78, 199, 66, 73,
78, 68, 73, 128, 66, 73, 78, 65, 82, 217, 66, 73, 76, 76, 73, 79, 78, 83,
128, 66, 73, 76, 76, 73, 65, 82, 68, 83, 128, 66, 73, 76, 76, 69, 196,
66, 73, 76, 65, 66, 73, 65, 204, 66, 73, 75, 73, 78, 73, 128, 66, 73, 71,
128, 66, 73, 199, 66, 73, 69, 84, 128, 66, 73, 68, 69, 78, 84, 65, 204,
66, 73, 68, 65, 75, 85, 79, 206, 66, 73, 67, 89, 67, 76, 73, 83, 84, 128,
66, 73, 67, 89, 67, 76, 69, 83, 128, 66, 73, 67, 89, 67, 76, 69, 128, 66,
73, 67, 69, 80, 83, 128, 66, 73, 66, 76, 69, 45, 67, 82, 69, 197, 66, 73,
66, 128, 66, 201, 66, 72, 85, 128, 66, 72, 79, 79, 128, 66, 72, 79, 128,
66, 72, 73, 128, 66, 72, 69, 84, 72, 128, 66, 72, 69, 69, 128, 66, 72,
69, 128, 66, 72, 65, 84, 84, 73, 80, 82, 79, 76, 213, 66, 72, 65, 77,
128, 66, 72, 65, 73, 75, 83, 85, 75, 201, 66, 72, 65, 65, 128, 66, 72,
65, 128, 66, 69, 89, 89, 65, 76, 128, 66, 69, 88, 128, 66, 69, 86, 69,
82, 65, 71, 69, 128, 66, 69, 86, 69, 82, 65, 71, 197, 66, 69, 84, 87, 69,
69, 78, 128, 66, 69, 84, 87, 69, 69, 206, 66, 69, 84, 72, 128, 66, 69,
84, 65, 128, 66, 69, 84, 193, 66, 69, 212, 66, 69, 83, 73, 68, 197, 66,
69, 82, 75, 65, 78, 65, 206, 66, 69, 82, 66, 69, 210, 66, 69, 80, 128,
66, 69, 79, 82, 195, 66, 69, 78, 90, 69, 78, 197, 66, 69, 78, 84, 207,
66, 69, 78, 84, 128, 66, 69, 78, 212, 66, 69, 78, 71, 65, 76, 201, 66,
69, 78, 68, 69, 128, 66, 69, 78, 68, 128, 66, 69, 78, 196, 66, 69, 206,
66, 69, 76, 84, 128, 66, 69, 76, 212, 66, 69, 76, 79, 215, 66, 69, 76,
76, 72, 79, 208, 66, 69, 76, 76, 128, 66, 69, 76, 204, 66, 69, 76, 71,
84, 72, 79, 210, 66, 69, 73, 84, 72, 128, 66, 69, 72, 73, 78, 196, 66,
69, 72, 69, 72, 128, 66, 69, 72, 69, 200, 66, 69, 72, 128, 66, 69, 200,
66, 69, 71, 73, 78, 78, 73, 78, 71, 128, 66, 69, 71, 73, 78, 78, 69, 82,
128, 66, 69, 71, 73, 206, 66, 69, 70, 79, 82, 197, 66, 69, 69, 84, 76,
69, 128, 66, 69, 69, 84, 65, 128, 66, 69, 69, 210, 66, 69, 69, 72, 73,
86, 69, 128, 66, 69, 69, 72, 128, 66, 69, 69, 200, 66, 69, 67, 65, 85,
83, 69, 128, 66, 69, 65, 86, 69, 82, 128, 66, 69, 65, 86, 69, 210, 66,
69, 65, 84, 73, 78, 199, 66, 69, 65, 84, 128, 66, 69, 65, 82, 68, 69,
196, 66, 69, 65, 82, 128, 66, 69, 65, 210, 66, 69, 65, 78, 128, 66, 69,
65, 77, 69, 196, 66, 69, 65, 68, 83, 128, 66, 69, 65, 67, 200, 66, 67,
65, 68, 128, 66, 67, 65, 196, 66, 66, 89, 88, 128, 66, 66, 89, 84, 128,
66, 66, 89, 80, 128, 66, 66, 89, 128, 66, 66, 85, 88, 128, 66, 66, 85,
84, 128, 66, 66, 85, 82, 88, 128, 66, 66, 85, 82, 128, 66, 66, 85, 80,
128, 66, 66, 85, 79, 88, 128, 66, 66, 85, 79, 80, 128, 66, 66, 85, 79,
128, 66, 66, 85, 128, 66, 66, 79, 88, 128, 66, 66, 79, 84, 128, 66, 66,
79, 80, 128, 66, 66, 79, 128, 66, 66, 73, 88, 128, 66, 66, 73, 80, 128,
66, 66, 73, 69, 88, 128, 66, 66, 73, 69, 84, 128, 66, 66, 73, 69, 80,
128, 66, 66, 73, 69, 128, 66, 66, 73, 128, 66, 66, 69, 88, 128, 66, 66,
69, 80, 128, 66, 66, 69, 69, 128, 66, 66, 65, 88, 128, 66, 66, 65, 84,
128, 66, 66, 65, 80, 128, 66, 66, 65, 65, 128, 66, 65, 89, 65, 78, 78,
65, 128, 66, 65, 85, 128, 66, 65, 84, 84, 69, 82, 89, 128, 66, 65, 84,
72, 84, 85, 66, 128, 66, 65, 84, 72, 65, 77, 65, 83, 65, 84, 128, 66, 65,
84, 72, 128, 66, 65, 84, 200, 66, 65, 84, 65, 203, 66, 65, 83, 83, 65,
128, 66, 65, 83, 83, 193, 66, 65, 83, 75, 69, 84, 66, 65, 76, 204, 66,
65, 83, 72, 75, 73, 210, 66, 65, 83, 72, 128, 66, 65, 83, 69, 76, 73, 78,
197, 66, 65, 83, 69, 66, 65, 76, 76, 128, 66, 65, 83, 69, 128, 66, 65,
83, 197, 66, 65, 82, 83, 128, 66, 65, 82, 211, 66, 65, 82, 82, 73, 69,
82, 128, 66, 65, 82, 82, 69, 75, 72, 128, 66, 65, 82, 82, 69, 69, 128,
66, 65, 82, 82, 69, 197, 66, 65, 82, 76, 73, 78, 69, 128, 66, 65, 82, 76,
69, 89, 128, 66, 65, 82, 73, 89, 79, 79, 83, 65, 78, 128, 66, 65, 82, 66,
69, 210, 66, 65, 82, 65, 50, 128, 66, 65, 210, 66, 65, 78, 84, 79, 67,
128, 66, 65, 78, 75, 78, 79, 84, 197, 66, 65, 78, 75, 128, 66, 65, 78,
203, 66, 65, 78, 74, 79, 128, 66, 65, 78, 68, 128, 66, 65, 78, 65, 78,
65, 128, 66, 65, 78, 50, 128, 66, 65, 78, 178, 66, 65, 77, 66, 79, 79,
83, 128, 66, 65, 77, 66, 79, 79, 128, 66, 65, 76, 85, 68, 65, 128, 66,
65, 76, 76, 80, 79, 73, 78, 212, 66, 65, 76, 76, 79, 84, 128, 66, 65, 76,
76, 79, 212, 66, 65, 76, 76, 79, 79, 78, 45, 83, 80, 79, 75, 69, 196, 66,
65, 76, 76, 79, 79, 78, 128, 66, 65, 76, 76, 69, 212, 66, 65, 76, 68,
128, 66, 65, 76, 65, 71, 128, 66, 65, 76, 128, 66, 65, 204, 66, 65, 73,
82, 75, 65, 78, 128, 66, 65, 73, 77, 65, 73, 128, 66, 65, 72, 84, 128,
66, 65, 72, 73, 82, 71, 79, 77, 85, 75, 72, 65, 128, 66, 65, 72, 65, 82,
50, 128, 66, 65, 72, 65, 82, 178, 66, 65, 72, 128, 66, 65, 71, 85, 69,
84, 84, 197, 66, 65, 71, 83, 128, 66, 65, 71, 71, 65, 71, 197, 66, 65,
71, 69, 76, 128, 66, 65, 71, 65, 128, 66, 65, 71, 51, 128, 66, 65, 199,
66, 65, 68, 77, 73, 78, 84, 79, 206, 66, 65, 68, 71, 69, 82, 128, 66, 65,
68, 71, 69, 128, 66, 65, 196, 66, 65, 67, 84, 82, 73, 65, 206, 66, 65,
67, 79, 78, 128, 66, 65, 67, 75, 87, 65, 82, 68, 128, 66, 65, 67, 75, 83,
80, 65, 67, 69, 128, 66, 65, 67, 75, 83, 76, 65, 83, 72, 128, 66, 65, 67,
75, 83, 76, 65, 83, 200, 66, 65, 67, 75, 83, 76, 65, 78, 84, 69, 196, 66,
65, 67, 75, 72, 65, 78, 196, 66, 65, 67, 75, 45, 84, 73, 76, 84, 69, 196,
66, 65, 67, 75, 128, 66, 65, 67, 203, 66, 65, 66, 89, 128, 66, 65, 66,
217, 66, 65, 65, 82, 69, 82, 85, 128, 66, 65, 45, 50, 128, 66, 51, 48,
53, 128, 66, 50, 53, 180, 66, 50, 52, 183, 66, 50, 52, 179, 66, 50, 52,
178, 66, 50, 52, 177, 66, 50, 52, 176, 66, 50, 51, 179, 66, 50, 51, 177,
66, 50, 51, 176, 66, 50, 50, 181, 66, 50, 50, 176, 66, 49, 57, 177, 66,
49, 55, 182, 66, 49, 55, 179, 66, 49, 54, 57, 128, 66, 49, 54, 56, 128,
66, 49, 54, 55, 128, 66, 49, 54, 54, 128, 66, 49, 54, 53, 128, 66, 49,
54, 52, 128, 66, 49, 54, 179, 66, 49, 54, 178, 66, 49, 54, 49, 128, 66,
49, 54, 48, 128, 66, 49, 53, 185, 66, 49, 53, 56, 128, 66, 49, 53, 55,
128, 66, 49, 53, 182, 66, 49, 53, 53, 128, 66, 49, 53, 52, 128, 66, 49,
53, 51, 128, 66, 49, 53, 50, 128, 66, 49, 53, 177, 66, 49, 53, 48, 128,
66, 49, 52, 54, 128, 66, 49, 52, 181, 66, 49, 52, 50, 128, 66, 49, 52,
177, 66, 49, 52, 176, 66, 49, 51, 181, 66, 49, 51, 179, 66, 49, 51, 50,
128, 66, 49, 51, 177, 66, 49, 51, 176, 66, 49, 50, 184, 66, 49, 50, 183,
66, 49, 50, 181, 66, 49, 50, 179, 66, 49, 50, 178, 66, 49, 50, 177, 66,
49, 50, 176, 66, 49, 48, 57, 205, 66, 49, 48, 57, 198, 66, 49, 48, 56,
205, 66, 49, 48, 56, 198, 66, 49, 48, 55, 205, 66, 49, 48, 55, 198, 66,
49, 48, 54, 205, 66, 49, 48, 54, 198, 66, 49, 48, 53, 205, 66, 49, 48,
53, 198, 66, 49, 48, 181, 66, 49, 48, 180, 66, 49, 48, 178, 66, 49, 48,
176, 66, 48, 57, 177, 66, 48, 57, 176, 66, 48, 56, 57, 128, 66, 48, 56,
183, 66, 48, 56, 54, 128, 66, 48, 56, 181, 66, 48, 56, 51, 128, 66, 48,
56, 50, 128, 66, 48, 56, 177, 66, 48, 56, 176, 66, 48, 55, 57, 128, 66,
48, 55, 184, 66, 48, 55, 183, 66, 48, 55, 182, 66, 48, 55, 181, 66, 48,
55, 180, 66, 48, 55, 179, 66, 48, 55, 178, 66, 48, 55, 177, 66, 48, 55,
176, 66, 48, 54, 185, 66, 48, 54, 184, 66, 48, 54, 183, 66, 48, 54, 182,
66, 48, 54, 181, 66, 48, 54, 52, 128, 66, 48, 54, 51, 128, 66, 48, 54,
178, 66, 48, 54, 177, 66, 48, 54, 176, 66, 48, 53, 185, 66, 48, 53, 184,
66, 48, 53, 183, 66, 48, 53, 54, 128, 66, 48, 53, 181, 66, 48, 53, 180,
66, 48, 53, 179, 66, 48, 53, 178, 66, 48, 53, 177, 66, 48, 53, 176, 66,
48, 52, 57, 128, 66, 48, 52, 184, 66, 48, 52, 55, 128, 66, 48, 52, 182,
66, 48, 52, 181, 66, 48, 52, 180, 66, 48, 52, 179, 66, 48, 52, 178, 66,
48, 52, 177, 66, 48, 52, 176, 66, 48, 51, 185, 66, 48, 51, 184, 66, 48,
51, 183, 66, 48, 51, 182, 66, 48, 51, 52, 128, 66, 48, 51, 179, 66, 48,
51, 178, 66, 48, 51, 177, 66, 48, 51, 176, 66, 48, 50, 185, 66, 48, 50,
184, 66, 48, 50, 183, 66, 48, 50, 182, 66, 48, 50, 181, 66, 48, 50, 180,
66, 48, 50, 179, 66, 48, 50, 50, 128, 66, 48, 50, 177, 66, 48, 50, 176,
66, 48, 49, 57, 128, 66, 48, 49, 56, 128, 66, 48, 49, 183, 66, 48, 49,
182, 66, 48, 49, 181, 66, 48, 49, 180, 66, 48, 49, 179, 66, 48, 49, 178,
66, 48, 49, 177, 66, 48, 49, 176, 66, 48, 48, 57, 128, 66, 48, 48, 185,
66, 48, 48, 56, 128, 66, 48, 48, 184, 66, 48, 48, 55, 128, 66, 48, 48,
183, 66, 48, 48, 54, 128, 66, 48, 48, 182, 66, 48, 48, 53, 65, 128, 66,
48, 48, 53, 128, 66, 48, 48, 181, 66, 48, 48, 52, 128, 66, 48, 48, 180,
66, 48, 48, 51, 128, 66, 48, 48, 179, 66, 48, 48, 50, 128, 66, 48, 48,
178, 66, 48, 48, 49, 128, 66, 48, 48, 177, 65, 90, 85, 128, 65, 89, 66,
128, 65, 89, 65, 72, 128, 65, 88, 69, 128, 65, 87, 69, 128, 65, 87, 65,
217, 65, 86, 79, 67, 65, 68, 79, 128, 65, 86, 69, 83, 84, 65, 206, 65,
86, 69, 82, 65, 71, 197, 65, 86, 65, 75, 82, 65, 72, 65, 83, 65, 78, 89,
65, 128, 65, 86, 65, 71, 82, 65, 72, 65, 128, 65, 85, 89, 65, 78, 78, 65,
128, 65, 85, 84, 85, 77, 78, 128, 65, 85, 84, 79, 77, 79, 66, 73, 76, 69,
128, 65, 85, 84, 79, 77, 65, 84, 69, 196, 65, 85, 84, 207, 65, 85, 83,
84, 82, 65, 204, 65, 85, 82, 73, 80, 73, 71, 77, 69, 78, 84, 128, 65, 85,
82, 65, 77, 65, 90, 68, 65, 65, 72, 65, 128, 65, 85, 82, 65, 77, 65, 90,
68, 65, 65, 45, 50, 128, 65, 85, 82, 65, 77, 65, 90, 68, 65, 65, 128, 65,
85, 78, 78, 128, 65, 85, 71, 85, 83, 84, 128, 65, 85, 71, 77, 69, 78, 84,
65, 84, 73, 79, 206, 65, 85, 69, 128, 65, 85, 66, 69, 82, 71, 73, 78, 69,
128, 65, 84, 84, 73, 195, 65, 84, 84, 72, 65, 67, 65, 78, 128, 65, 84,
84, 69, 78, 84, 73, 79, 78, 128, 65, 84, 84, 65, 203, 65, 84, 84, 65, 67,
72, 69, 196, 65, 84, 79, 205, 65, 84, 78, 65, 200, 65, 84, 77, 65, 65,
85, 128, 65, 84, 73, 89, 65, 128, 65, 84, 73, 85, 128, 65, 84, 73, 75,
82, 65, 77, 65, 128, 65, 84, 72, 76, 69, 84, 73, 195, 65, 84, 72, 65, 82,
86, 65, 86, 69, 68, 73, 195, 65, 84, 72, 65, 80, 65, 83, 67, 65, 206, 65,
84, 72, 45, 84, 72, 65, 76, 65, 84, 72, 65, 128, 65, 83, 90, 128, 65, 83,
89, 85, 82, 193, 65, 83, 89, 77, 80, 84, 79, 84, 73, 67, 65, 76, 76, 217,
65, 83, 84, 82, 79, 78, 79, 77, 73, 67, 65, 204, 65, 83, 84, 82, 79, 76,
79, 71, 73, 67, 65, 204, 65, 83, 84, 82, 65, 69, 65, 128, 65, 83, 84, 79,
78, 73, 83, 72, 69, 196, 65, 83, 84, 69, 82, 73, 83, 77, 128, 65, 83, 84,
69, 82, 73, 83, 75, 211, 65, 83, 84, 69, 82, 73, 83, 75, 128, 65, 83, 84,
69, 82, 73, 83, 203, 65, 83, 84, 69, 82, 73, 83, 67, 85, 83, 128, 65, 83,
83, 89, 82, 73, 65, 206, 65, 83, 83, 69, 82, 84, 73, 79, 78, 128, 65, 83,
80, 73, 82, 65, 84, 73, 79, 78, 128, 65, 83, 80, 73, 82, 65, 84, 69, 196,
65, 83, 80, 69, 82, 128, 65, 83, 73, 65, 45, 65, 85, 83, 84, 82, 65, 76,
73, 65, 128, 65, 83, 72, 71, 65, 66, 128, 65, 83, 72, 69, 83, 128, 65,
83, 72, 57, 128, 65, 83, 72, 51, 128, 65, 83, 72, 178, 65, 83, 67, 73,
193, 65, 83, 67, 69, 78, 84, 128, 65, 83, 67, 69, 78, 68, 73, 78, 199,
65, 83, 65, 76, 50, 128, 65, 83, 45, 83, 65, 74, 68, 65, 128, 65, 82, 85,
72, 85, 65, 128, 65, 82, 84, 211, 65, 82, 84, 73, 83, 212, 65, 82, 84,
73, 67, 85, 76, 65, 84, 69, 196, 65, 82, 84, 65, 66, 197, 65, 82, 84, 65,
128, 65, 82, 83, 69, 79, 83, 128, 65, 82, 83, 69, 79, 211, 65, 82, 83,
69, 78, 73, 67, 128, 65, 82, 82, 79, 87, 83, 128, 65, 82, 82, 79, 87,
211, 65, 82, 82, 79, 87, 72, 69, 65, 68, 83, 128, 65, 82, 82, 79, 87, 72,
69, 65, 68, 45, 83, 72, 65, 80, 69, 196, 65, 82, 82, 79, 87, 72, 69, 65,
68, 128, 65, 82, 82, 79, 87, 72, 69, 65, 196, 65, 82, 82, 79, 87, 45, 84,
65, 73, 76, 128, 65, 82, 82, 73, 86, 73, 78, 71, 128, 65, 82, 82, 73, 86,
69, 128, 65, 82, 82, 65, 89, 128, 65, 82, 80, 69, 71, 71, 73, 65, 84,
207, 65, 82, 79, 85, 83, 73, 78, 199, 65, 82, 79, 85, 82, 193, 65, 82,
79, 85, 78, 68, 45, 80, 82, 79, 70, 73, 76, 69, 128, 65, 82, 79, 85, 78,
196, 65, 82, 77, 89, 128, 65, 82, 77, 211, 65, 82, 77, 79, 85, 82, 128,
65, 82, 77, 69, 78, 73, 65, 206, 65, 82, 77, 128, 65, 82, 205, 65, 82,
76, 65, 85, 199, 65, 82, 75, 84, 73, 75, 207, 65, 82, 75, 65, 66, 128,
65, 82, 75, 65, 65, 78, 85, 128, 65, 82, 73, 83, 84, 69, 82, 65, 128, 65,
82, 73, 83, 84, 69, 82, 193, 65, 82, 73, 69, 83, 128, 65, 82, 71, 79, 84,
69, 82, 73, 128, 65, 82, 71, 79, 83, 89, 78, 84, 72, 69, 84, 79, 78, 128,
65, 82, 71, 73, 128, 65, 82, 69, 80, 65, 128, 65, 82, 69, 65, 128, 65,
82, 68, 72, 65, 86, 73, 83, 65, 82, 71, 65, 128, 65, 82, 68, 72, 65, 67,
65, 78, 68, 82, 65, 128, 65, 82, 67, 72, 65, 73, 79, 78, 128, 65, 82, 67,
72, 65, 73, 79, 206, 65, 82, 67, 72, 65, 73, 195, 65, 82, 67, 200, 65,
82, 67, 128, 65, 82, 195, 65, 82, 65, 77, 65, 73, 195, 65, 82, 65, 69,
65, 69, 128, 65, 82, 65, 69, 65, 45, 85, 128, 65, 82, 65, 69, 65, 45, 73,
128, 65, 82, 65, 69, 65, 45, 69, 79, 128, 65, 82, 65, 69, 65, 45, 69,
128, 65, 82, 65, 69, 65, 45, 65, 128, 65, 82, 65, 68, 128, 65, 82, 65,
196, 65, 82, 65, 66, 73, 67, 45, 73, 78, 68, 73, 195, 65, 82, 65, 66, 73,
65, 206, 65, 82, 45, 82, 85, 66, 128, 65, 82, 45, 82, 65, 72, 77, 65,
206, 65, 82, 45, 82, 65, 72, 69, 69, 77, 128, 65, 81, 85, 65, 82, 73, 85,
83, 128, 65, 81, 85, 65, 70, 79, 82, 84, 73, 83, 128, 65, 81, 85, 193,
65, 80, 85, 206, 65, 80, 82, 73, 76, 128, 65, 80, 80, 82, 79, 88, 73, 77,
65, 84, 69, 76, 217, 65, 80, 80, 82, 79, 88, 73, 77, 65, 84, 69, 128, 65,
80, 80, 82, 79, 65, 67, 72, 69, 211, 65, 80, 80, 82, 79, 65, 67, 72, 128,
65, 80, 80, 76, 73, 67, 65, 84, 73, 79, 78, 128, 65, 80, 80, 76, 73, 67,
65, 84, 73, 79, 206, 65, 80, 79, 84, 72, 69, 83, 128, 65, 80, 79, 84, 72,
69, 77, 65, 128, 65, 80, 79, 83, 84, 82, 79, 80, 72, 69, 128, 65, 80, 79,
83, 84, 82, 79, 70, 79, 83, 128, 65, 80, 79, 83, 84, 82, 79, 70, 79, 211,
65, 80, 79, 83, 84, 82, 79, 70, 79, 201, 65, 80, 79, 76, 76, 79, 78, 128,
65, 80, 79, 68, 69, 88, 73, 65, 128, 65, 80, 79, 68, 69, 82, 77, 193, 65,
80, 76, 79, 85, 78, 128, 65, 80, 76, 201, 65, 80, 204, 65, 80, 73, 78,
128, 65, 80, 69, 83, 207, 65, 80, 67, 128, 65, 80, 65, 82, 84, 128, 65,
80, 65, 65, 84, 79, 128, 65, 79, 85, 128, 65, 79, 82, 128, 65, 78, 85,
83, 86, 65, 82, 65, 89, 65, 128, 65, 78, 85, 83, 86, 65, 82, 65, 128, 65,
78, 85, 83, 86, 65, 82, 193, 65, 78, 85, 68, 65, 84, 84, 65, 128, 65, 78,
85, 68, 65, 84, 84, 193, 65, 78, 84, 73, 82, 69, 83, 84, 82, 73, 67, 84,
73, 79, 78, 128, 65, 78, 84, 73, 77, 79, 78, 89, 45, 50, 128, 65, 78, 84,
73, 77, 79, 78, 89, 128, 65, 78, 84, 73, 77, 79, 78, 217, 65, 78, 84, 73,
77, 79, 78, 73, 65, 84, 69, 128, 65, 78, 84, 73, 75, 69, 78, 79, 77, 65,
128, 65, 78, 84, 73, 75, 69, 78, 79, 75, 89, 76, 73, 83, 77, 65, 128, 65,
78, 84, 73, 70, 79, 78, 73, 65, 128, 65, 78, 84, 73, 67, 76, 79, 67, 75,
87, 73, 83, 69, 45, 82, 79, 84, 65, 84, 69, 196, 65, 78, 84, 73, 67, 76,
79, 67, 75, 87, 73, 83, 69, 128, 65, 78, 84, 73, 67, 76, 79, 67, 75, 87,
73, 83, 197, 65, 78, 84, 69, 78, 78, 65, 128, 65, 78, 84, 69, 78, 78,
193, 65, 78, 84, 65, 82, 71, 79, 77, 85, 75, 72, 65, 128, 65, 78, 83, 85,
218, 65, 78, 83, 72, 69, 128, 65, 78, 80, 69, 65, 128, 65, 78, 207, 65,
78, 78, 85, 73, 84, 217, 65, 78, 78, 79, 84, 65, 84, 73, 79, 206, 65, 78,
78, 65, 65, 85, 128, 65, 78, 75, 72, 128, 65, 78, 74, 73, 128, 65, 78,
73, 77, 65, 76, 128, 65, 78, 72, 85, 128, 65, 78, 71, 85, 76, 65, 82,
128, 65, 78, 71, 85, 73, 83, 72, 69, 196, 65, 78, 71, 83, 84, 82, 79,
205, 65, 78, 71, 82, 217, 65, 78, 71, 76, 73, 67, 65, 78, 193, 65, 78,
71, 76, 69, 68, 128, 65, 78, 71, 76, 69, 196, 65, 78, 71, 75, 72, 65, 78,
75, 72, 85, 128, 65, 78, 71, 75, 65, 128, 65, 78, 71, 69, 210, 65, 78,
71, 69, 76, 128, 65, 78, 71, 69, 68, 128, 65, 78, 68, 65, 80, 128, 65,
78, 67, 79, 82, 65, 128, 65, 78, 67, 72, 79, 82, 128, 65, 78, 65, 84, 82,
73, 67, 72, 73, 83, 77, 65, 128, 65, 78, 65, 84, 79, 77, 73, 67, 65, 204,
65, 78, 65, 80, 128, 65, 78, 45, 78, 73, 83, 70, 128, 65, 77, 85, 76, 69,
84, 128, 65, 77, 80, 83, 128, 65, 77, 80, 72, 79, 82, 65, 128, 65, 77,
80, 69, 82, 83, 65, 78, 68, 128, 65, 77, 80, 69, 82, 83, 65, 78, 196, 65,
77, 79, 85, 78, 212, 65, 77, 69, 82, 73, 67, 65, 83, 128, 65, 77, 69, 82,
73, 67, 65, 206, 65, 77, 66, 85, 76, 65, 78, 67, 69, 128, 65, 77, 66,
193, 65, 77, 66, 128, 65, 77, 65, 82, 128, 65, 77, 65, 210, 65, 77, 65,
76, 71, 65, 77, 65, 84, 73, 79, 206, 65, 77, 65, 76, 71, 65, 77, 128, 65,
76, 86, 69, 79, 76, 65, 210, 65, 76, 85, 77, 128, 65, 76, 84, 69, 82, 78,
65, 84, 73, 86, 197, 65, 76, 84, 69, 82, 78, 65, 84, 73, 79, 206, 65, 76,
84, 69, 82, 78, 65, 84, 73, 78, 71, 128, 65, 76, 84, 69, 82, 78, 65, 84,
73, 78, 199, 65, 76, 84, 69, 82, 78, 65, 84, 69, 128, 65, 76, 84, 69, 82,
78, 65, 84, 197, 65, 76, 84, 65, 128, 65, 76, 80, 72, 65, 128, 65, 76,
80, 72, 193, 65, 76, 80, 65, 80, 82, 65, 78, 65, 128, 65, 76, 80, 65, 80,
82, 65, 65, 78, 193, 65, 76, 80, 65, 128, 65, 76, 77, 79, 83, 212, 65,
76, 76, 79, 128, 65, 76, 76, 73, 65, 78, 67, 69, 128, 65, 76, 76, 201,
65, 76, 76, 65, 200, 65, 76, 75, 65, 76, 73, 45, 50, 128, 65, 76, 75, 65,
76, 73, 128, 65, 76, 73, 71, 78, 69, 196, 65, 76, 73, 70, 85, 128, 65,
76, 73, 70, 128, 65, 76, 73, 198, 65, 76, 73, 69, 78, 128, 65, 76, 73,
69, 206, 65, 76, 71, 73, 218, 65, 76, 70, 65, 128, 65, 76, 69, 85, 212,
65, 76, 69, 82, 84, 128, 65, 76, 69, 80, 72, 128, 65, 76, 69, 77, 66, 73,
67, 128, 65, 76, 69, 70, 128, 65, 76, 66, 65, 78, 73, 65, 206, 65, 76,
65, 89, 72, 69, 128, 65, 76, 65, 89, 72, 197, 65, 76, 65, 82, 205, 65,
76, 65, 80, 72, 128, 65, 76, 45, 76, 65, 75, 85, 78, 65, 128, 65, 75, 85,
82, 213, 65, 75, 84, 73, 69, 83, 69, 76, 83, 75, 65, 66, 128, 65, 75, 83,
65, 128, 65, 75, 72, 77, 73, 77, 73, 195, 65, 75, 66, 65, 210, 65, 75,
65, 82, 65, 128, 65, 75, 65, 82, 193, 65, 73, 89, 65, 78, 78, 65, 128,
65, 73, 86, 73, 76, 73, 203, 65, 73, 86, 65, 128, 65, 73, 84, 79, 206,
65, 73, 82, 80, 76, 65, 78, 69, 128, 65, 73, 82, 80, 76, 65, 78, 197, 65,
73, 78, 213, 65, 73, 78, 78, 128, 65, 73, 76, 77, 128, 65, 73, 75, 65,
82, 65, 128, 65, 73, 72, 86, 85, 83, 128, 65, 72, 83, 68, 65, 128, 65,
72, 83, 65, 128, 65, 72, 79, 205, 65, 72, 65, 78, 199, 65, 72, 65, 71,
71, 65, 210, 65, 72, 65, 68, 128, 65, 71, 85, 78, 71, 128, 65, 71, 79,
71, 201, 65, 71, 71, 82, 65, 86, 65, 84, 73, 79, 78, 128, 65, 71, 71, 82,
65, 86, 65, 84, 69, 196, 65, 71, 65, 73, 78, 83, 212, 65, 71, 65, 73, 78,
128, 65, 70, 84, 69, 210, 65, 70, 83, 65, 65, 81, 128, 65, 70, 82, 73,
67, 65, 206, 65, 70, 79, 82, 69, 77, 69, 78, 84, 73, 79, 78, 69, 68, 128,
65, 70, 71, 72, 65, 78, 201, 65, 70, 70, 82, 73, 67, 65, 84, 73, 79, 206,
65, 70, 70, 73, 216, 65, 69, 89, 65, 78, 78, 65, 128, 65, 69, 89, 128,
65, 69, 83, 67, 85, 76, 65, 80, 73, 85, 83, 128, 65, 69, 83, 67, 128, 65,
69, 83, 128, 65, 69, 82, 73, 65, 204, 65, 69, 82, 128, 65, 69, 76, 65,
45, 80, 73, 76, 76, 65, 128, 65, 69, 76, 128, 65, 69, 75, 128, 65, 69,
71, 69, 65, 206, 65, 69, 71, 128, 65, 69, 69, 89, 65, 78, 78, 65, 128,
65, 69, 69, 128, 65, 69, 68, 65, 45, 80, 73, 76, 76, 65, 128, 65, 69, 68,
128, 65, 69, 66, 128, 65, 68, 86, 65, 78, 84, 65, 71, 69, 128, 65, 68,
86, 65, 78, 67, 69, 128, 65, 68, 85, 76, 84, 128, 65, 68, 77, 73, 83, 83,
73, 79, 206, 65, 68, 77, 69, 84, 79, 83, 128, 65, 68, 76, 65, 205, 65,
68, 72, 69, 83, 73, 86, 197, 65, 68, 69, 71, 128, 65, 68, 69, 199, 65,
68, 68, 82, 69, 83, 83, 69, 196, 65, 68, 68, 82, 69, 83, 211, 65, 68, 68,
65, 75, 128, 65, 68, 65, 203, 65, 67, 85, 84, 69, 45, 77, 65, 67, 82, 79,
78, 128, 65, 67, 85, 84, 69, 45, 71, 82, 65, 86, 69, 45, 65, 67, 85, 84,
69, 128, 65, 67, 85, 84, 197, 65, 67, 84, 85, 65, 76, 76, 217, 65, 67,
84, 73, 86, 65, 84, 197, 65, 67, 82, 79, 80, 72, 79, 78, 73, 195, 65, 67,
75, 78, 79, 87, 76, 69, 68, 71, 69, 128, 65, 67, 67, 85, 77, 85, 76, 65,
84, 73, 79, 78, 128, 65, 67, 67, 79, 85, 78, 212, 65, 67, 67, 79, 82, 68,
73, 79, 78, 128, 65, 67, 67, 79, 77, 77, 79, 68, 65, 84, 73, 79, 78, 128,
65, 67, 67, 69, 80, 84, 128, 65, 67, 67, 69, 78, 84, 45, 83, 84, 65, 67,
67, 65, 84, 79, 128, 65, 67, 67, 69, 78, 84, 128, 65, 67, 67, 69, 78,
212, 65, 67, 65, 68, 69, 77, 217, 65, 66, 89, 83, 77, 65, 204, 65, 66,
85, 78, 68, 65, 78, 67, 69, 128, 65, 66, 75, 72, 65, 83, 73, 65, 206, 65,
66, 66, 82, 69, 86, 73, 65, 84, 73, 79, 206, 65, 66, 65, 70, 73, 76, 73,
128, 65, 66, 65, 67, 85, 83, 128, 65, 66, 178, 65, 66, 49, 57, 49, 128,
65, 66, 49, 56, 56, 128, 65, 66, 49, 56, 48, 128, 65, 66, 49, 55, 49,
128, 65, 66, 49, 54, 52, 128, 65, 66, 49, 51, 49, 66, 128, 65, 66, 49,
51, 49, 65, 128, 65, 66, 49, 50, 51, 128, 65, 66, 49, 50, 50, 128, 65,
66, 49, 50, 48, 128, 65, 66, 49, 49, 56, 128, 65, 66, 48, 56, 55, 128,
65, 66, 48, 56, 54, 128, 65, 66, 48, 56, 53, 128, 65, 66, 48, 56, 50,
128, 65, 66, 48, 56, 49, 128, 65, 66, 48, 56, 48, 128, 65, 66, 48, 55,
57, 128, 65, 66, 48, 55, 56, 128, 65, 66, 48, 55, 55, 128, 65, 66, 48,
55, 54, 128, 65, 66, 48, 55, 52, 128, 65, 66, 48, 55, 51, 128, 65, 66,
48, 55, 48, 128, 65, 66, 48, 54, 57, 128, 65, 66, 48, 54, 55, 128, 65,
66, 48, 54, 54, 128, 65, 66, 48, 54, 53, 128, 65, 66, 48, 54, 49, 128,
65, 66, 48, 54, 48, 128, 65, 66, 48, 53, 57, 128, 65, 66, 48, 53, 56,
128, 65, 66, 48, 53, 55, 128, 65, 66, 48, 53, 54, 128, 65, 66, 48, 53,
53, 128, 65, 66, 48, 53, 52, 128, 65, 66, 48, 53, 51, 128, 65, 66, 48,
53, 49, 128, 65, 66, 48, 53, 48, 128, 65, 66, 48, 52, 57, 128, 65, 66,
48, 52, 56, 128, 65, 66, 48, 52, 55, 128, 65, 66, 48, 52, 54, 128, 65,
66, 48, 52, 53, 128, 65, 66, 48, 52, 52, 128, 65, 66, 48, 52, 49, 128,
65, 66, 48, 52, 48, 128, 65, 66, 48, 51, 57, 128, 65, 66, 48, 51, 56,
128, 65, 66, 48, 51, 55, 128, 65, 66, 48, 51, 52, 128, 65, 66, 48, 51,
49, 128, 65, 66, 48, 51, 48, 128, 65, 66, 48, 50, 57, 128, 65, 66, 48,
50, 56, 128, 65, 66, 48, 50, 55, 128, 65, 66, 48, 50, 54, 128, 65, 66,
48, 50, 52, 128, 65, 66, 48, 50, 51, 77, 128, 65, 66, 48, 50, 51, 128,
65, 66, 48, 50, 50, 77, 128, 65, 66, 48, 50, 50, 70, 128, 65, 66, 48, 50,
50, 128, 65, 66, 48, 50, 49, 77, 128, 65, 66, 48, 50, 49, 70, 128, 65,
66, 48, 50, 49, 128, 65, 66, 48, 50, 48, 128, 65, 66, 48, 49, 55, 128,
65, 66, 48, 49, 54, 128, 65, 66, 48, 49, 51, 128, 65, 66, 48, 49, 49,
128, 65, 66, 48, 49, 48, 128, 65, 66, 48, 48, 57, 128, 65, 66, 48, 48,
56, 128, 65, 66, 48, 48, 55, 128, 65, 66, 48, 48, 54, 128, 65, 66, 48,
48, 53, 128, 65, 66, 48, 48, 52, 128, 65, 66, 48, 48, 51, 128, 65, 66,
48, 48, 50, 128, 65, 66, 48, 48, 49, 128, 65, 65, 90, 72, 65, 65, 75, 75,
85, 128, 65, 65, 89, 73, 78, 128, 65, 65, 89, 65, 78, 78, 65, 128, 65,
65, 89, 128, 65, 65, 87, 128, 65, 65, 79, 128, 65, 65, 74, 128, 65, 65,
66, 65, 65, 70, 73, 76, 73, 128, 65, 65, 48, 51, 50, 128, 65, 65, 48, 51,
49, 128, 65, 65, 48, 51, 48, 128, 65, 65, 48, 50, 57, 128, 65, 65, 48,
50, 56, 128, 65, 65, 48, 50, 55, 128, 65, 65, 48, 50, 54, 128, 65, 65,
48, 50, 53, 128, 65, 65, 48, 50, 52, 128, 65, 65, 48, 50, 51, 128, 65,
65, 48, 50, 50, 128, 65, 65, 48, 50, 49, 128, 65, 65, 48, 50, 48, 128,
65, 65, 48, 49, 57, 128, 65, 65, 48, 49, 56, 128, 65, 65, 48, 49, 55,
128, 65, 65, 48, 49, 54, 128, 65, 65, 48, 49, 53, 128, 65, 65, 48, 49,
52, 128, 65, 65, 48, 49, 51, 128, 65, 65, 48, 49, 50, 128, 65, 65, 48,
49, 49, 128, 65, 65, 48, 49, 48, 128, 65, 65, 48, 48, 57, 128, 65, 65,
48, 48, 56, 128, 65, 65, 48, 48, 55, 66, 128, 65, 65, 48, 48, 55, 65,
128, 65, 65, 48, 48, 55, 128, 65, 65, 48, 48, 54, 128, 65, 65, 48, 48,
53, 128, 65, 65, 48, 48, 52, 128, 65, 65, 48, 48, 51, 128, 65, 65, 48,
48, 50, 128, 65, 65, 48, 48, 49, 128, 65, 56, 48, 55, 128, 65, 56, 48,
54, 128, 65, 56, 48, 53, 128, 65, 56, 48, 52, 128, 65, 56, 48, 51, 128,
65, 56, 48, 50, 128, 65, 56, 48, 49, 128, 65, 56, 48, 48, 128, 65, 55,
51, 178, 65, 55, 50, 182, 65, 55, 49, 183, 65, 55, 49, 181, 65, 55, 49,
180, 65, 55, 49, 179, 65, 55, 49, 178, 65, 55, 49, 177, 65, 55, 49, 176,
65, 55, 48, 57, 45, 182, 65, 55, 48, 57, 45, 180, 65, 55, 48, 57, 45,
179, 65, 55, 48, 57, 45, 178, 65, 55, 48, 185, 65, 55, 48, 184, 65, 55,
48, 183, 65, 55, 48, 182, 65, 55, 48, 181, 65, 55, 48, 180, 65, 55, 48,
179, 65, 55, 48, 178, 65, 55, 48, 177, 65, 54, 54, 52, 128, 65, 54, 54,
51, 128, 65, 54, 54, 50, 128, 65, 54, 54, 49, 128, 65, 54, 54, 48, 128,
65, 54, 53, 57, 128, 65, 54, 53, 56, 128, 65, 54, 53, 55, 128, 65, 54,
53, 54, 128, 65, 54, 53, 53, 128, 65, 54, 53, 52, 128, 65, 54, 53, 51,
128, 65, 54, 53, 50, 128, 65, 54, 53, 49, 128, 65, 54, 52, 57, 128, 65,
54, 52, 56, 128, 65, 54, 52, 54, 128, 65, 54, 52, 53, 128, 65, 54, 52,
52, 128, 65, 54, 52, 51, 128, 65, 54, 52, 50, 128, 65, 54, 52, 48, 128,
65, 54, 51, 56, 128, 65, 54, 51, 55, 128, 65, 54, 51, 52, 128, 65, 54,
50, 57, 128, 65, 54, 50, 56, 128, 65, 54, 50, 55, 128, 65, 54, 50, 54,
128, 65, 54, 50, 52, 128, 65, 54, 50, 51, 128, 65, 54, 50, 50, 128, 65,
54, 50, 49, 128, 65, 54, 50, 48, 128, 65, 54, 49, 57, 128, 65, 54, 49,
56, 128, 65, 54, 49, 55, 128, 65, 54, 49, 54, 128, 65, 54, 49, 53, 128,
65, 54, 49, 52, 128, 65, 54, 49, 51, 128, 65, 54, 49, 50, 128, 65, 54,
49, 49, 128, 65, 54, 49, 48, 128, 65, 54, 48, 57, 128, 65, 54, 48, 56,
128, 65, 54, 48, 54, 128, 65, 54, 48, 52, 128, 65, 54, 48, 51, 128, 65,
54, 48, 50, 128, 65, 54, 48, 49, 128, 65, 54, 48, 48, 128, 65, 53, 57,
56, 128, 65, 53, 57, 54, 128, 65, 53, 57, 53, 128, 65, 53, 57, 52, 128,
65, 53, 57, 50, 128, 65, 53, 57, 49, 128, 65, 53, 56, 57, 128, 65, 53,
56, 56, 128, 65, 53, 56, 55, 128, 65, 53, 56, 54, 128, 65, 53, 56, 53,
128, 65, 53, 56, 52, 128, 65, 53, 56, 51, 128, 65, 53, 56, 50, 128, 65,
53, 56, 49, 128, 65, 53, 56, 48, 128, 65, 53, 55, 57, 128, 65, 53, 55,
56, 128, 65, 53, 55, 55, 128, 65, 53, 55, 54, 128, 65, 53, 55, 53, 128,
65, 53, 55, 52, 128, 65, 53, 55, 51, 128, 65, 53, 55, 50, 128, 65, 53,
55, 49, 128, 65, 53, 55, 48, 128, 65, 53, 54, 57, 128, 65, 53, 54, 56,
128, 65, 53, 54, 54, 128, 65, 53, 54, 53, 128, 65, 53, 54, 52, 128, 65,
53, 54, 51, 128, 65, 53, 53, 57, 128, 65, 53, 53, 55, 128, 65, 53, 53,
54, 128, 65, 53, 53, 53, 128, 65, 53, 53, 52, 128, 65, 53, 53, 51, 128,
65, 53, 53, 50, 128, 65, 53, 53, 49, 128, 65, 53, 53, 48, 128, 65, 53,
52, 57, 128, 65, 53, 52, 56, 128, 65, 53, 52, 55, 128, 65, 53, 52, 53,
128, 65, 53, 52, 50, 128, 65, 53, 52, 49, 128, 65, 53, 52, 48, 128, 65,
53, 51, 57, 128, 65, 53, 51, 56, 128, 65, 53, 51, 55, 128, 65, 53, 51,
54, 128, 65, 53, 51, 53, 128, 65, 53, 51, 52, 128, 65, 53, 51, 50, 128,
65, 53, 51, 49, 128, 65, 53, 51, 48, 128, 65, 53, 50, 57, 128, 65, 53,
50, 56, 128, 65, 53, 50, 55, 128, 65, 53, 50, 54, 128, 65, 53, 50, 53,
128, 65, 53, 50, 52, 128, 65, 53, 50, 51, 128, 65, 53, 50, 50, 128, 65,
53, 50, 49, 128, 65, 53, 50, 48, 128, 65, 53, 49, 57, 128, 65, 53, 49,
56, 128, 65, 53, 49, 55, 128, 65, 53, 49, 54, 128, 65, 53, 49, 53, 128,
65, 53, 49, 52, 128, 65, 53, 49, 51, 128, 65, 53, 49, 50, 128, 65, 53,
49, 49, 128, 65, 53, 49, 48, 128, 65, 53, 48, 57, 128, 65, 53, 48, 56,
128, 65, 53, 48, 55, 128, 65, 53, 48, 54, 128, 65, 53, 48, 53, 128, 65,
53, 48, 52, 128, 65, 53, 48, 51, 128, 65, 53, 48, 50, 128, 65, 53, 48,
49, 128, 65, 52, 57, 55, 128, 65, 52, 57, 54, 128, 65, 52, 57, 53, 128,
65, 52, 57, 52, 128, 65, 52, 57, 51, 128, 65, 52, 57, 50, 128, 65, 52,
57, 49, 128, 65, 52, 57, 48, 128, 65, 52, 56, 57, 128, 65, 52, 56, 56,
128, 65, 52, 56, 55, 128, 65, 52, 56, 54, 128, 65, 52, 56, 53, 128, 65,
52, 56, 52, 128, 65, 52, 56, 51, 128, 65, 52, 56, 50, 128, 65, 52, 56,
49, 128, 65, 52, 56, 48, 128, 65, 52, 55, 57, 128, 65, 52, 55, 56, 128,
65, 52, 55, 55, 128, 65, 52, 55, 54, 128, 65, 52, 55, 53, 128, 65, 52,
55, 52, 128, 65, 52, 55, 51, 128, 65, 52, 55, 50, 128, 65, 52, 55, 49,
128, 65, 52, 55, 48, 128, 65, 52, 54, 57, 128, 65, 52, 54, 56, 128, 65,
52, 54, 55, 128, 65, 52, 54, 54, 128, 65, 52, 54, 53, 128, 65, 52, 54,
52, 128, 65, 52, 54, 51, 128, 65, 52, 54, 50, 128, 65, 52, 54, 49, 128,
65, 52, 54, 48, 128, 65, 52, 53, 57, 128, 65, 52, 53, 56, 128, 65, 52,
53, 55, 65, 128, 65, 52, 53, 55, 128, 65, 52, 53, 54, 128, 65, 52, 53,
53, 128, 65, 52, 53, 52, 128, 65, 52, 53, 51, 128, 65, 52, 53, 50, 128,
65, 52, 53, 49, 128, 65, 52, 53, 48, 65, 128, 65, 52, 53, 48, 128, 65,
52, 52, 57, 128, 65, 52, 52, 56, 128, 65, 52, 52, 55, 128, 65, 52, 52,
54, 128, 65, 52, 52, 53, 128, 65, 52, 52, 52, 128, 65, 52, 52, 51, 128,
65, 52, 52, 50, 128, 65, 52, 52, 49, 128, 65, 52, 52, 48, 128, 65, 52,
51, 57, 128, 65, 52, 51, 56, 128, 65, 52, 51, 55, 128, 65, 52, 51, 54,
128, 65, 52, 51, 53, 128, 65, 52, 51, 52, 128, 65, 52, 51, 51, 128, 65,
52, 51, 50, 128, 65, 52, 51, 49, 128, 65, 52, 51, 48, 128, 65, 52, 50,
57, 128, 65, 52, 50, 56, 128, 65, 52, 50, 55, 128, 65, 52, 50, 54, 128,
65, 52, 50, 53, 128, 65, 52, 50, 52, 128, 65, 52, 50, 51, 128, 65, 52,
50, 50, 128, 65, 52, 50, 49, 128, 65, 52, 50, 48, 128, 65, 52, 49, 57,
128, 65, 52, 49, 56, 45, 86, 65, 83, 128, 65, 52, 49, 56, 128, 65, 52,
49, 55, 45, 86, 65, 83, 128, 65, 52, 49, 55, 128, 65, 52, 49, 54, 45, 86,
65, 83, 128, 65, 52, 49, 54, 128, 65, 52, 49, 53, 45, 86, 65, 83, 128,
65, 52, 49, 53, 128, 65, 52, 49, 52, 45, 86, 65, 83, 128, 65, 52, 49, 52,
128, 65, 52, 49, 51, 45, 86, 65, 83, 128, 65, 52, 49, 51, 128, 65, 52,
49, 50, 45, 86, 65, 83, 128, 65, 52, 49, 50, 128, 65, 52, 49, 49, 45, 86,
65, 83, 128, 65, 52, 49, 49, 128, 65, 52, 49, 48, 193, 65, 52, 49, 48,
45, 86, 65, 83, 128, 65, 52, 49, 176, 65, 52, 48, 57, 45, 86, 65, 83,
128, 65, 52, 48, 57, 128, 65, 52, 48, 56, 45, 86, 65, 83, 128, 65, 52,
48, 56, 128, 65, 52, 48, 55, 45, 86, 65, 83, 128, 65, 52, 48, 55, 128,
65, 52, 48, 54, 45, 86, 65, 83, 128, 65, 52, 48, 54, 128, 65, 52, 48, 53,
45, 86, 65, 83, 128, 65, 52, 48, 53, 128, 65, 52, 48, 52, 45, 86, 65, 83,
128, 65, 52, 48, 52, 128, 65, 52, 48, 51, 45, 86, 65, 83, 128, 65, 52,
48, 51, 128, 65, 52, 48, 50, 45, 86, 65, 83, 128, 65, 52, 48, 50, 128,
65, 52, 48, 49, 45, 86, 65, 83, 128, 65, 52, 48, 49, 128, 65, 52, 48, 48,
45, 86, 65, 83, 128, 65, 52, 48, 48, 128, 65, 51, 57, 57, 128, 65, 51,
57, 56, 128, 65, 51, 57, 55, 128, 65, 51, 57, 54, 128, 65, 51, 57, 53,
128, 65, 51, 57, 52, 128, 65, 51, 57, 179, 65, 51, 57, 50, 128, 65, 51,
57, 49, 128, 65, 51, 57, 48, 128, 65, 51, 56, 57, 128, 65, 51, 56, 56,
128, 65, 51, 56, 55, 128, 65, 51, 56, 54, 65, 128, 65, 51, 56, 54, 128,
65, 51, 56, 53, 128, 65, 51, 56, 52, 128, 65, 51, 56, 51, 65, 128, 65,
51, 56, 179, 65, 51, 56, 50, 128, 65, 51, 56, 49, 65, 128, 65, 51, 56,
49, 128, 65, 51, 56, 48, 128, 65, 51, 55, 57, 128, 65, 51, 55, 56, 128,
65, 51, 55, 55, 128, 65, 51, 55, 54, 128, 65, 51, 55, 53, 128, 65, 51,
55, 52, 128, 65, 51, 55, 51, 128, 65, 51, 55, 50, 128, 65, 51, 55, 49,
65, 128, 65, 51, 55, 49, 128, 65, 51, 55, 48, 128, 65, 51, 54, 57, 128,
65, 51, 54, 56, 65, 128, 65, 51, 54, 56, 128, 65, 51, 54, 55, 128, 65,
51, 54, 54, 128, 65, 51, 54, 53, 128, 65, 51, 54, 52, 65, 128, 65, 51,
54, 52, 128, 65, 51, 54, 51, 128, 65, 51, 54, 50, 128, 65, 51, 54, 49,
128, 65, 51, 54, 48, 128, 65, 51, 53, 57, 65, 128, 65, 51, 53, 57, 128,
65, 51, 53, 56, 128, 65, 51, 53, 55, 128, 65, 51, 53, 54, 128, 65, 51,
53, 53, 128, 65, 51, 53, 52, 128, 65, 51, 53, 51, 128, 65, 51, 53, 50,
128, 65, 51, 53, 49, 128, 65, 51, 53, 48, 128, 65, 51, 52, 57, 128, 65,
51, 52, 56, 128, 65, 51, 52, 55, 128, 65, 51, 52, 54, 128, 65, 51, 52,
53, 128, 65, 51, 52, 52, 128, 65, 51, 52, 51, 128, 65, 51, 52, 50, 128,
65, 51, 52, 49, 128, 65, 51, 52, 48, 128, 65, 51, 51, 57, 128, 65, 51,
51, 56, 128, 65, 51, 51, 55, 128, 65, 51, 51, 54, 67, 128, 65, 51, 51,
54, 66, 128, 65, 51, 51, 54, 65, 128, 65, 51, 51, 54, 128, 65, 51, 51,
53, 128, 65, 51, 51, 52, 128, 65, 51, 51, 51, 128, 65, 51, 51, 50, 67,
128, 65, 51, 51, 50, 66, 128, 65, 51, 51, 50, 65, 128, 65, 51, 51, 50,
128, 65, 51, 51, 49, 128, 65, 51, 51, 48, 128, 65, 51, 50, 57, 65, 128,
65, 51, 50, 57, 128, 65, 51, 50, 56, 128, 65, 51, 50, 55, 128, 65, 51,
50, 54, 128, 65, 51, 50, 53, 128, 65, 51, 50, 52, 128, 65, 51, 50, 51,
128, 65, 51, 50, 50, 128, 65, 51, 50, 49, 128, 65, 51, 50, 48, 128, 65,
51, 49, 57, 128, 65, 51, 49, 56, 128, 65, 51, 49, 55, 128, 65, 51, 49,
54, 128, 65, 51, 49, 53, 128, 65, 51, 49, 52, 128, 65, 51, 49, 51, 67,
128, 65, 51, 49, 51, 66, 128, 65, 51, 49, 51, 65, 128, 65, 51, 49, 51,
128, 65, 51, 49, 50, 128, 65, 51, 49, 49, 128, 65, 51, 49, 48, 128, 65,
51, 48, 57, 67, 128, 65, 51, 48, 57, 66, 128, 65, 51, 48, 57, 65, 128,
65, 51, 48, 57, 128, 65, 51, 48, 56, 128, 65, 51, 48, 55, 128, 65, 51,
48, 54, 128, 65, 51, 48, 53, 128, 65, 51, 48, 52, 128, 65, 51, 48, 51,
128, 65, 51, 48, 50, 128, 65, 51, 48, 49, 128, 65, 51, 48, 48, 128, 65,
50, 57, 57, 65, 128, 65, 50, 57, 57, 128, 65, 50, 57, 56, 128, 65, 50,
57, 55, 128, 65, 50, 57, 54, 128, 65, 50, 57, 53, 128, 65, 50, 57, 52,
65, 128, 65, 50, 57, 52, 128, 65, 50, 57, 51, 128, 65, 50, 57, 50, 128,
65, 50, 57, 49, 128, 65, 50, 57, 48, 128, 65, 50, 56, 57, 65, 128, 65,
50, 56, 57, 128, 65, 50, 56, 56, 128, 65, 50, 56, 55, 128, 65, 50, 56,
54, 128, 65, 50, 56, 53, 128, 65, 50, 56, 52, 128, 65, 50, 56, 51, 128,
65, 50, 56, 50, 128, 65, 50, 56, 49, 128, 65, 50, 56, 48, 128, 65, 50,
55, 57, 128, 65, 50, 55, 56, 128, 65, 50, 55, 55, 128, 65, 50, 55, 54,
128, 65, 50, 55, 53, 128, 65, 50, 55, 52, 128, 65, 50, 55, 51, 128, 65,
50, 55, 50, 128, 65, 50, 55, 49, 128, 65, 50, 55, 48, 128, 65, 50, 54,
57, 128, 65, 50, 54, 56, 128, 65, 50, 54, 55, 65, 128, 65, 50, 54, 55,
128, 65, 50, 54, 54, 128, 65, 50, 54, 53, 128, 65, 50, 54, 52, 128, 65,
50, 54, 51, 128, 65, 50, 54, 50, 128, 65, 50, 54, 49, 128, 65, 50, 54,
48, 128, 65, 50, 53, 57, 128, 65, 50, 53, 56, 128, 65, 50, 53, 55, 128,
65, 50, 53, 54, 128, 65, 50, 53, 53, 128, 65, 50, 53, 52, 128, 65, 50,
53, 51, 128, 65, 50, 53, 50, 128, 65, 50, 53, 49, 128, 65, 50, 53, 48,
128, 65, 50, 52, 57, 128, 65, 50, 52, 56, 128, 65, 50, 52, 55, 128, 65,
50, 52, 54, 128, 65, 50, 52, 53, 128, 65, 50, 52, 52, 128, 65, 50, 52,
51, 128, 65, 50, 52, 50, 128, 65, 50, 52, 49, 128, 65, 50, 52, 48, 128,
65, 50, 51, 57, 128, 65, 50, 51, 56, 128, 65, 50, 51, 55, 128, 65, 50,
51, 54, 128, 65, 50, 51, 53, 128, 65, 50, 51, 52, 128, 65, 50, 51, 51,
128, 65, 50, 51, 50, 128, 65, 50, 51, 49, 128, 65, 50, 51, 48, 128, 65,
50, 50, 57, 128, 65, 50, 50, 56, 128, 65, 50, 50, 55, 65, 128, 65, 50,
50, 55, 128, 65, 50, 50, 54, 128, 65, 50, 50, 53, 128, 65, 50, 50, 52,
128, 65, 50, 50, 51, 128, 65, 50, 50, 50, 128, 65, 50, 50, 49, 128, 65,
50, 50, 48, 128, 65, 50, 49, 57, 128, 65, 50, 49, 56, 128, 65, 50, 49,
55, 128, 65, 50, 49, 54, 65, 128, 65, 50, 49, 54, 128, 65, 50, 49, 53,
65, 128, 65, 50, 49, 53, 128, 65, 50, 49, 52, 128, 65, 50, 49, 51, 128,
65, 50, 49, 50, 128, 65, 50, 49, 49, 128, 65, 50, 49, 48, 128, 65, 50,
48, 57, 65, 128, 65, 50, 48, 57, 128, 65, 50, 48, 56, 128, 65, 50, 48,
55, 65, 128, 65, 50, 48, 55, 128, 65, 50, 48, 54, 128, 65, 50, 48, 53,
128, 65, 50, 48, 52, 128, 65, 50, 48, 51, 128, 65, 50, 48, 50, 66, 128,
65, 50, 48, 50, 65, 128, 65, 50, 48, 50, 128, 65, 50, 48, 49, 128, 65,
50, 48, 48, 128, 65, 49, 57, 57, 128, 65, 49, 57, 56, 128, 65, 49, 57,
55, 128, 65, 49, 57, 54, 128, 65, 49, 57, 53, 128, 65, 49, 57, 52, 128,
65, 49, 57, 51, 128, 65, 49, 57, 50, 128, 65, 49, 57, 49, 128, 65, 49,
57, 48, 128, 65, 49, 56, 57, 128, 65, 49, 56, 56, 128, 65, 49, 56, 55,
128, 65, 49, 56, 54, 128, 65, 49, 56, 53, 128, 65, 49, 56, 52, 128, 65,
49, 56, 51, 128, 65, 49, 56, 50, 128, 65, 49, 56, 49, 128, 65, 49, 56,
48, 128, 65, 49, 55, 57, 128, 65, 49, 55, 56, 128, 65, 49, 55, 55, 128,
65, 49, 55, 54, 128, 65, 49, 55, 53, 128, 65, 49, 55, 52, 128, 65, 49,
55, 51, 128, 65, 49, 55, 50, 128, 65, 49, 55, 49, 128, 65, 49, 55, 48,
128, 65, 49, 54, 57, 128, 65, 49, 54, 56, 128, 65, 49, 54, 55, 128, 65,
49, 54, 54, 128, 65, 49, 54, 53, 128, 65, 49, 54, 52, 128, 65, 49, 54,
51, 128, 65, 49, 54, 50, 128, 65, 49, 54, 49, 128, 65, 49, 54, 48, 128,
65, 49, 53, 57, 128, 65, 49, 53, 56, 128, 65, 49, 53, 55, 128, 65, 49,
53, 54, 128, 65, 49, 53, 53, 128, 65, 49, 53, 52, 128, 65, 49, 53, 51,
128, 65, 49, 53, 50, 128, 65, 49, 53, 49, 128, 65, 49, 53, 48, 128, 65,
49, 52, 57, 128, 65, 49, 52, 56, 128, 65, 49, 52, 55, 128, 65, 49, 52,
54, 128, 65, 49, 52, 53, 128, 65, 49, 52, 52, 128, 65, 49, 52, 51, 128,
65, 49, 52, 50, 128, 65, 49, 52, 49, 128, 65, 49, 52, 48, 128, 65, 49,
51, 57, 128, 65, 49, 51, 56, 128, 65, 49, 51, 55, 128, 65, 49, 51, 54,
128, 65, 49, 51, 53, 65, 128, 65, 49, 51, 53, 128, 65, 49, 51, 52, 128,
65, 49, 51, 51, 128, 65, 49, 51, 50, 128, 65, 49, 51, 49, 67, 128, 65,
49, 51, 49, 128, 65, 49, 51, 48, 128, 65, 49, 50, 57, 128, 65, 49, 50,
56, 128, 65, 49, 50, 55, 128, 65, 49, 50, 54, 128, 65, 49, 50, 53, 65,
128, 65, 49, 50, 53, 128, 65, 49, 50, 52, 128, 65, 49, 50, 51, 128, 65,
49, 50, 50, 128, 65, 49, 50, 49, 128, 65, 49, 50, 48, 66, 128, 65, 49,
50, 48, 128, 65, 49, 49, 57, 128, 65, 49, 49, 56, 128, 65, 49, 49, 55,
128, 65, 49, 49, 54, 128, 65, 49, 49, 53, 65, 128, 65, 49, 49, 53, 128,
65, 49, 49, 52, 128, 65, 49, 49, 51, 128, 65, 49, 49, 50, 128, 65, 49,
49, 49, 128, 65, 49, 49, 48, 66, 128, 65, 49, 49, 48, 65, 128, 65, 49,
49, 48, 128, 65, 49, 48, 57, 128, 65, 49, 48, 56, 128, 65, 49, 48, 55,
67, 128, 65, 49, 48, 55, 66, 128, 65, 49, 48, 55, 65, 128, 65, 49, 48,
55, 128, 65, 49, 48, 54, 128, 65, 49, 48, 53, 66, 128, 65, 49, 48, 53,
65, 128, 65, 49, 48, 53, 128, 65, 49, 48, 52, 67, 128, 65, 49, 48, 52,
66, 128, 65, 49, 48, 52, 65, 128, 65, 49, 48, 52, 128, 65, 49, 48, 51,
128, 65, 49, 48, 50, 65, 128, 65, 49, 48, 50, 128, 65, 49, 48, 49, 65,
128, 65, 49, 48, 49, 128, 65, 49, 48, 48, 65, 128, 65, 49, 48, 48, 45,
49, 48, 50, 128, 65, 49, 48, 48, 128, 65, 48, 57, 57, 128, 65, 48, 57,
56, 65, 128, 65, 48, 57, 56, 128, 65, 48, 57, 55, 65, 128, 65, 48, 57,
55, 128, 65, 48, 57, 54, 128, 65, 48, 57, 53, 128, 65, 48, 57, 52, 128,
65, 48, 57, 51, 128, 65, 48, 57, 50, 128, 65, 48, 57, 49, 128, 65, 48,
57, 48, 128, 65, 48, 56, 57, 128, 65, 48, 56, 56, 128, 65, 48, 56, 55,
128, 65, 48, 56, 54, 128, 65, 48, 56, 53, 128, 65, 48, 56, 52, 128, 65,
48, 56, 51, 128, 65, 48, 56, 50, 128, 65, 48, 56, 49, 128, 65, 48, 56,
48, 128, 65, 48, 55, 57, 128, 65, 48, 55, 56, 128, 65, 48, 55, 55, 128,
65, 48, 55, 54, 128, 65, 48, 55, 53, 128, 65, 48, 55, 52, 128, 65, 48,
55, 51, 128, 65, 48, 55, 50, 128, 65, 48, 55, 49, 128, 65, 48, 55, 48,
128, 65, 48, 54, 57, 128, 65, 48, 54, 56, 128, 65, 48, 54, 55, 128, 65,
48, 54, 54, 67, 128, 65, 48, 54, 54, 66, 128, 65, 48, 54, 54, 65, 128,
65, 48, 54, 54, 128, 65, 48, 54, 53, 128, 65, 48, 54, 52, 128, 65, 48,
54, 51, 128, 65, 48, 54, 50, 128, 65, 48, 54, 49, 128, 65, 48, 54, 48,
128, 65, 48, 53, 57, 128, 65, 48, 53, 56, 128, 65, 48, 53, 55, 128, 65,
48, 53, 54, 128, 65, 48, 53, 53, 128, 65, 48, 53, 52, 128, 65, 48, 53,
51, 128, 65, 48, 53, 50, 128, 65, 48, 53, 49, 128, 65, 48, 53, 48, 128,
65, 48, 52, 57, 128, 65, 48, 52, 56, 128, 65, 48, 52, 55, 128, 65, 48,
52, 54, 66, 128, 65, 48, 52, 54, 65, 128, 65, 48, 52, 54, 128, 65, 48,
52, 53, 65, 128, 65, 48, 52, 53, 128, 65, 48, 52, 52, 128, 65, 48, 52,
51, 65, 128, 65, 48, 52, 51, 128, 65, 48, 52, 50, 65, 128, 65, 48, 52,
50, 128, 65, 48, 52, 49, 65, 128, 65, 48, 52, 49, 128, 65, 48, 52, 48,
65, 128, 65, 48, 52, 48, 128, 65, 48, 51, 57, 65, 128, 65, 48, 51, 57,
128, 65, 48, 51, 56, 128, 65, 48, 51, 55, 128, 65, 48, 51, 54, 128, 65,
48, 51, 53, 128, 65, 48, 51, 52, 128, 65, 48, 51, 51, 128, 65, 48, 51,
50, 65, 128, 65, 48, 50, 56, 66, 128, 65, 48, 50, 54, 65, 128, 65, 48,
49, 55, 65, 128, 65, 48, 49, 52, 65, 128, 65, 48, 49, 48, 65, 128, 65,
48, 48, 54, 66, 128, 65, 48, 48, 54, 65, 128, 65, 48, 48, 53, 65, 128,
65, 45, 87, 79, 128, 65, 45, 69, 85, 128, 45, 85, 205, 45, 80, 72, 82,
85, 128, 45, 75, 72, 89, 85, 196, 45, 75, 72, 89, 73, 76, 128, 45, 68,
90, 85, 196, 45, 67, 72, 65, 210, 45, 67, 72, 65, 76, 128,
};
const unsigned int _PyUnicode_LexiconOffset[8727] = {
0, 5767192, 39846128, 285214400, 1644178432, 56320, 2684624898,
2148810760, 6684716, 29622488, 130024368, 574623776, 2634041600,
2617328640, 348162, 1075216395, 6389807, 27132105, 115344208, 492834352,
2097167424, 4194349312, 805566465, 537968648, 4554786, 18940045,
80216656, 332401088, 1363159104, 1358996864, 1677895681, 2416637957,
3224223766, 12320860, 50332030, 209716772, 857741680, 2927650944,
1476502528, 2953236483, 3759923213, 2154889271, 30277859, 123208608,
505417448, 2080390464, 4227922816, 537134593, 4027602952, 2151850016,
17956998, 73400873, 299370700, 1233134640, 704680960, 3053606657,
403273732, 2150027283, 10403918, 42533185, 172754204, 702551264,
2864731360, 3120650496, 403012610, 1343639563, 5922833, 24248504,
98304745, 397413328, 1616916480, 2264973888, 906172161, 537690118,
2687664153, 2160902245, 54460827, 220989060, 901782176, 3271584896,
1946269568, 67564035, 2954641422, 1081253944, 30310630, 122553252,
495980204, 1327512448, 3766546304, 2382611457, 2685353991, 2151518238,
16253051, 65733107, 264505308, 1069555632, 33587360, 369231489,
1745136644, 1881214992, 1082474562, 35127563, 141952054, 573575424,
2315273392, 746657088, 3355729410, 1880204296, 4661283, 18825359,
75956801, 306186518, 1235231912, 696292352, 2969720321, 3892931076,
1076230162, 1083768908, 40436019, 163054807, 568332508, 2296398864,
1879118592, 3422836226, 2148772873, 1615818791, 2168422559, 73007747,
293341718, 1184899880, 1157669344, 486706305, 2617917957, 4029241364,
10862662, 37519692, 175244597, 704123384, 2824882224, 2801881536,
2751760386, 3625278474, 1079369770, 2166554796, 90636872, 307759834,
1475357640, 1656795296, 2801945985, 1007245828, 1881970710, 2159231065,
47120684, 189400480, 763369128, 3074448208, 3783356288, 2584070146,
3222751243, 1079889966, 24772796, 99812087, 401607662, 1616916488,
2214642016, 469961217, 2483831302, 4029763608, 1086750818, 52330894,
210634304, 847780144, 3412092256, 855742528, 1812359683, 2417603593,
2154262579, 19841231, 109314880, 318770454, 1768961168, 2797639840,
2718125697, 3423427078, 2149992474, 2161647723, 56820019, 228722380,
917508940, 3699404272, 1971436032, 3892768771, 3759923213, 1617948727,
20316384, 81593220, 473435672, 1906325664, 3380667392, 839095809,
4161695751, 2419726364, 1089069172, 61702613, 248383329, 999824820,
4022368144, 3288457408, 604474627, 3760086031, 3229225020, 2179645684,
129369048, 520359800, 2094022200, 4127259200, 3825463041, 3155153927,
1614782495, 3237929087, 67076606, 269486084, 1082138672, 52461904,
276956929, 1409819908, 2418063376, 1619226689, 34570503, 138937377,
560468140, 2250261232, 444664992, 1912878850, 3826313736, 809758753,
1091633288, 71860771, 288491669, 1158161012, 356551264, 1501703105,
2080946180, 1478693905, 2693595206, 37126426, 149226608, 599790038,
2409645992, 1090592736, 151290754, 872976393, 3225985060, 3240411281,
77496907, 311036225, 1253582120, 742430192, 3028441473, 3825823236,
3357922322, 1083691083, 2175402288, 160105667, 642257692, 2582662336,
1795241152, 3053770882, 135493641, 3226351655, 2168070300, 82674293,
321522144, 888678292, 1033936496, 4211244097, 4228512260, 2820213779,
3768594485, 42123584, 169018631, 678695984, 2724221200, 2357282208,
956635778, 269777418, 3763490857, 21659812, 86901398, 349178465,
1401956788, 1340123024, 1166188865, 1544200197, 1881865237, 3769491542,
2193588573, 185337219, 743708192, 2984270032, 3426837824, 3238370178,
269908488, 3764015149, 23732404, 95355606, 382602083, 1535126960,
27309888, 3196247553, 202080773, 2553162775, 3233378396, 2196291955,
195757523, 785389406, 3152043464, 4055988288, 3490047490, 1746381323,
274657327, 1098686654, 100172538, 401869814, 1612722168, 2183184592,
226690369, 1309417478, 2821762072, 2697171041, 51413383, 206243363,
827857058, 3319816912, 1753320512, 1862677762, 3893946892, 811855921,
26280136, 105448227, 270666903, 1696084596, 2510342784, 1535323265,
2181872646, 1479743513, 2697789542, 2201387418, 216270447, 867965394,
1164994464, 1048579232, 33980163, 739904525, 812152884, 2174951633,
110166855, 441847078, 1772106944, 2812334992, 2718126081, 2584561926,
2956281882, 1624608874, 2203566507, 224921265, 901520088, 3623906272,
1644277888, 2433140355, 1612392973, 7135286, 1102356698, 114754410,
460328371, 1847080688, 3110132864, 3926094913, 3188578566, 943164443,
3772686447, 58507709, 234620668, 940317696, 3772805192, 2252456544,
587665155, 3155972622, 2423365688, 3251093731, 32048016, 478937693,
1919957284, 3401639200, 788764289, 3389939975, 2017044508, 15151219,
2208235983, 243599168, 976493842, 3918558360, 2814497664, 2768259843,
3424474126, 1081464890, 1104789740, 124617653, 500043490, 2004368300,
3753963376, 2214838465, 672075527, 272392222, 1089626233, 63685093,
255723418, 1024200762, 4104157752, 3577866752, 1627893123, 3021917199,
1350273085, 2179932407, 130122719, 521801608, 2092449352, 1252009344,
3456187904, 1410310919, 2822684703, 1627111549, 66191864, 265553895,
1064574898, 4271931160, 4240571872, 638057347, 337639944, 813717568,
1080606977, 135300102, 543166508, 2181054696, 155255888, 704910274,
2986879752, 1749121056, 1090990211, 2216772111, 278202439, 1115693364,
177243440, 738334081, 3087555204, 539065872, 277243971, 1109041421,
141460534, 567283938, 2277000140, 528536656, 2265203202, 873534984,
809794594, 18002057, 72172070, 289014496, 1157636730, 342919712,
1413622177, 1661513604, 2820852753, 1619755077, 3257884951, 146900063,
589828489, 2365081192, 891361872, 3733220418, 2584856328, 3628550179,
1092497550, 75235901, 301598971, 1210328064, 561025168, 2286044065,
789124356, 3760481810, 1083301960, 2185838884, 153781395, 616305242,
1100499344, 1306601120, 1015323906, 269647369, 1078594570, 1630068884,
2225472082, 312609102, 1253057870, 728798608, 2961332129, 3423167364,
1545970706, 278323275, 39633198, 158893243, 637014775, 2553302020,
1644245168, 2374288706, 1242767369, 2416256038, 20094987, 80544358,
322767260, 1293166210, 885037632, 3569510913, 1527360388, 2418458131,
3231400013, 3262005558, 154371294, 654840704, 2623557148, 1925265680,
3489982146, 1410573577, 2689514535, 2705035421, 2230354551, 332138979,
1331177378, 1040228056, 4202855585, 4077516676, 4096258067, 1889538127,
1115783488, 168494340, 675288091, 2705870996, 2254521056, 512036354,
2383692298, 2287022120, 1631936674, 85443211, 342428210, 1372334300,
1204855744, 566399041, 2433369605, 1747528212, 1084553298, 2190811466,
173638955, 695866552, 2788709128, 2583776432, 1829057858, 3356811018,
1884529705, 21967015, 2235515551, 352717440, 1413491222, 1370532008,
1237492769, 856331909, 4230640149, 2695503956, 2192179540, 179176789,
718280034, 2879411640, 2952877984, 3313852738, 773165322, 408319019,
3780808877, 2238530229, 364972765, 1462774668, 1568714384, 2030222273,
4027249925, 4029410325, 1890586711, 3267469664, 185369988, 743052831,
2978502828, 3349242736, 604344514, 2820034059, 5859372, 2170970291,
94143181, 377359164, 1512320264, 1764799592, 2814563105, 2869645957,
3693961750, 817227866, 2195267948, 191497651, 767563482, 3076545432,
3741413152, 2181414786, 504826379, 3629929518, 3782348984, 2244690660,
389614489, 1561603710, 1962981976, 3607292609, 1745596677, 3492731927,
12308573, 49332600, 197690851, 792336279, 3175636620, 4137777904,
3766873794, 2585249547, 3227469871, 2172510398, 100303612, 402000888,
1611149304, 2162212928, 105054817, 621547398, 3291502104, 3502356576,
1124622723, 203916818, 817109076, 3274727808, 239175360, 1057365507,
337150988, 2825011249, 562671812, 2250883860, 414387286, 1660694898,
2360395304, 897784353, 3792465414, 3090272280, 2697437283, 2199912847,
210110017, 841881874, 3371197548, 622957136, 2634435971, 2216246796,
1214583858, 1100275914, 2253833002, 426052783, 1708929752, 2556480504,
1677930881, 2701970438, 2889043481, 3234707558, 53993883, 216270449,
867441106, 3477104520, 1052876480, 67534851, 739905293, 275279924,
2711785681, 109904709, 440929567, 1767650464, 2785071840, 2600684673,
2047686662, 406126106, 2161406058, 1129554345, 223545000, 895621802,
3592448728, 1505864848, 696694083, 3290095111, 1483446325, 1638854871,
2260566878, 452988285, 1815885330, 2980108456, 3372442625, 957192070,
1547079707, 1356542061, 3278930359, 231802596, 931142577, 3740299068,
2139209424, 218563267, 1880893710, 2960202808, 2177257698, 119587726,
480317001, 1929132384, 3453019760, 1053007233, 420381959, 3694809117,
1357525108, 3282862549, 247531356, 994057617, 3991959228, 3145850064,
4245125827, 807274766, 1350075452, 2716004593, 2274345926, 507973409,
2034515096, 3856724656, 2571357249, 806302855, 3292321804, 1879761017,
3285114914, 255952799, 1024728711, 4104157752, 3556895104, 1434954115,
1948168719, 947586109, 1642905846, 129385434, 518655857, 2076982748,
4033935320, 3326337601, 672109063, 3225311263, 2432276604, 1101791731,
262113231, 1049894725, 4204821820, 3957454240, 3028801795, 3894373903,
4034782270, 569917691, 132367345, 530190282, 2123644734, 4210097488,
3997431425, 3289374471, 943690271, 2432604287, 1140580861, 267749369,
1072570353, 1605620, 31588497, 227018052, 1243619344, 2021697600,
570638593, 2282718215, 541659169, 2169520286, 100729552, 449055938,
1963997192, 4256800, 2969841794, 1142030856, 273483813, 1095377055,
92308136, 394398561, 1678258308, 2820722192, 8611905, 545505543,
2285454289, 552669300, 2212512234, 270600184, 1132732610, 403736968,
1950490145, 272808068, 1143267858, 278464587, 1115431223, 173573400,
708973809, 2919781764, 3424739856, 2417605698, 2719387666, 140280877,
561844412, 2249212674, 417401920, 1707356770, 2719010568, 2822982689,
3491256454, 3291865626, 283052141, 1133912517, 248547144, 1031937553,
4236803268, 3592553744, 2819899400, 2183200808, 21398594, 572264716,
2293515338, 597758344, 2441365506, 1326523784, 1749330466, 2433945737,
23093798, 289081500, 1158029946, 346589744, 1417816545, 1460185668,
2216868113, 2559260741, 1110290710, 2293743890, 585503088, 2345420244,
1373706200, 2671776928, 17252611, 944114211, 2434310284, 1147372081,
72288457, 368452395, 431525052, 1742877617, 2743652548, 2517149457,
3096264774, 1647694106, 148472940, 594219444, 2381072102, 945888280,
755265890, 437372930, 1413948961, 4045197454, 1148486201, 299305194,
1198531507, 504401652, 2040675441, 3951621252, 3290684433, 1620024391,
3258913055, 150914174, 604377600, 2420131862, 1101078696, 151290850,
772936841, 3762841124, 555870352, 76079684, 304646419, 1219896406,
590909828, 2384611009, 1032396164, 2116321298, 1612912657, 2722648134,
2300888209, 149295693, 2458653144, 2405451656, 1073815392, 2870104962,
3494469668, 3240476818, 1150820939, 308611377, 1235363022, 651203408,
2632076817, 2047425412, 35978002, 1888755786, 2723234088, 2303247523,
623579795, 2496416350, 1405168064, 1363453986, 1326622089, 1816832037,
3777704085, 2226061910, 314837343, 1261446545, 755537524, 3066190529,
3876155588, 3425032978, 4036479051, 2724241711, 2307425474, 641078039,
2568768632, 1710305928, 2600783042, 2098412169, 407700006, 288641178,
80945769, 324143528, 1297884842, 904960720, 3638717473, 1770631940,
2586237203, 949718083, 2188304695, 163497182, 654709633, 2621197842,
1904294040, 3364152226, 739480329, 3964561447, 1362757788, 2229863028,
330041811, 1321477980, 995663260, 4001527553, 3221872260, 371688723,
2828943439, 1652138300, 2313666826, 665195472, 2665238364, 2081504728,
4072995010, 3574851593, 2152707623, 1363093663, 3304931608, 335120891,
1341925369, 1078501392, 42107105, 3725198917, 1177034515, 2158012496,
579031361, 112198919, 675746847, 2705608856, 899750552, 3963947714,
1595157762, 2756757544, 3510515873, 3306046086, 333842973, 1336027259,
1144562176, 310544609, 1351231173, 1479059220, 3231894609, 1116459333,
171050264, 668734443, 2739949980, 2380351176, 4165278914, 3994318217,
3763462184, 1095233699, 1159832208, 344885829, 1381640485, 1239983316,
698520657, 2945078661, 3760809748, 279307346, 2191044940, 174540082,
699339987, 2802078576, 2632011336, 1980054082, 3876909066, 475261993,
827379880, 2235916962, 354585230, 1420700237, 1397270916, 1331865329,
1175101701, 875205397, 950699093, 3265970517, 179275094, 718214500,
2878100914, 2941343592, 3242549122, 487950218, 3562428459, 559540396,
3311977140, 363498195, 1455958874, 1539354040, 1881323473, 3389711045,
1378588949, 548333655, 2193396062, 184042874, 737416694, 2956220418,
3248578728, 151356354, 823530635, 5796396, 23222449, 2240479941,
372509464, 1490955372, 1674097100, 2424489985, 1250632453, 1210883350,
1890755673, 3268092261, 2335147414, 752686694, 3014416838, 3485558688,
1099276354, 404129419, 2086287405, 23679156, 2242290387, 379488761,
1519660355, 1789441344, 2892158401, 3096140421, 4264392726, 1756764250,
1658405228, 2338882995, 766514900, 3069729646, 2687594008, 1938143490,
3692489355, 2690368045, 1366263991, 1170219743, 386239361, 1546268176,
1895348328, 3307397697, 403409669, 1882076183, 280555612, 2732884338,
194299337, 777852716, 3114294470, 1827763048, 2642792002, 2115452171,
542967342, 1366583482, 97739497, 391252904, 1566453416, 1977662160,
3640847409, 1737208581, 3090076951, 414941277, 2196668791, 74122717,
788207481, 3154903132, 4041308232, 3334857314, 655855883, 3023366703,
2172229820, 3320283891, 396823503, 1591357281, 2084093416, 4098029889,
3742100421, 3593454871, 3367971919, 2197676414, 2348434940, 804657144,
3219932414, 6389744, 75891107, 471337740, 2489335856, 4051783872,
1174831874, 404687886, 1420430262, 2184757516, 174261457, 789321222,
3895485208, 2025956431, 587678083, 2350925327, 815011907, 3263979832,
2141291848, 767956450, 3323486092, 2153883184, 1636262083, 2250261263,
412290119, 1651257647, 2320024840, 730010929, 3045873926, 3962662936,
3634363490, 3273134475, 207799856, 671422664, 3328205610, 441552120,
1879455331, 1595467148, 1885580325, 3515820231, 2252243742, 419597438,
1679831563, 2103494752, 1147347424, 344707462, 1781674009, 3634374756,
3810787729, 2358462024, 844634409, 3382731968, 657560440, 2739294179,
2618903436, 2892316722, 1637189834, 3327615787, 425691651, 1703421973,
2522925852, 1541614977, 1946990854, 3929206809, 4039894117, 590356887,
214156897, 666702861, 787244588, 835715208, 3381027907, 806982924,
140931123, 3248109773, 2255119156, 430902486, 1726362473, 2619919856,
1925396753, 3507283590, 1748217881, 3637435495, 1128018333, 217351801,
870390251, 3484706770, 1066508192, 13008803, 236585997, 1617438260,
564191440, 2256855874, 437980428, 1753101369, 2724253976, 2330150161,
839718726, 4063522586, 1624378472, 2202612132, 220726931, 673911826,
2698530914, 1254204720, 767989315, 974806669, 409568808, 564553939,
2258297677, 444271929, 1780102405, 2831733832, 2757972465, 2525841926,
1848979994, 148172906, 1666474410, 2371094185, 24511244, 3581176490,
1453435680, 1560718819, 1981030285, 4234867765, 3517716693, 2259829592,
449613157, 1800156578, 2910901924, 3064104065, 3758976518, 2654324506,
3369553003, 2203963822, 226182844, 904927994, 3623644150, 1620160552,
2219229603, 555420557, 3228324406, 3249643736, 1187521379, 455478673,
1823487569, 3003701616, 3443746401, 999136326, 171343643, 2698651757,
57258420, 2376681172, 917314388, 1141402986, 1814148584, 2978285987,
3508233869, 1886234678, 1907824859, 3275522926, 460852666, 1844590325,
3094404112, 3810750769, 2433599366, 1513563419, 3101476974, 1668538809,
169117416, 927734692, 3714084518, 1981922024, 3653456259, 1897641485,
4033801271, 1908148445, 1190232952, 466292196, 1866479515, 3176193684,
4135811825, 3742232134, 2419573531, 2430547055, 2742907326, 2381874939,
938220531, 3755503586, 2148646880, 50790595, 387713166, 2289055800,
3250665696, 2265326466, 471731725, 1888237633, 3264799020, 234896961,
781063744, 3459801628, 2028055664, 59191747, 2384398095, 948247616,
3794825488, 2304885888, 692523875, 3004978574, 4101075512, 2177239266,
1192887180, 477236790, 1911175406, 3355501552, 574853265, 2425243271,
1715022364, 686092402, 596963786, 2388182827, 964107446, 3861410560,
2581712032, 1820800259, 3323780622, 1685298745, 3520010471, 1195303838,
486903424, 1950104084, 3515934880, 1220780993, 755930119, 3694814237,
149544052, 2745741780, 2393360210, 984816980, 3944510842, 2914113160,
3129433219, 3993123342, 3564495418, 299356395, 123790256, 495455939,
1983658773, 3648580764, 1728295745, 2702102279, 2587576093, 2426498166,
62222810, 2396604268, 996807730, 3989599962, 2258754520, 3783749698,
2401092878, 1953965627, 2447186158, 3346383802, 501190381, 2006596550,
3737710408, 2084814305, 4161730887, 238811677, 3236970616, 3821154784,
2400077701, 1011359265, 4047796376, 3315720880, 436702211, 2048800655,
611909180, 1642369266, 127083465, 508890920, 2037660851, 3861443320,
2583940273, 1821324615, 3292207390, 1626577017, 2748252647, 255739806,
1023876736, 4098914838, 3527534816, 1288152419, 1243520911, 1819977789,
2716535029, 2276369366, 516231007, 2068069782, 3987273392, 3104037873,
3952047111, 3493715998, 2297933947, 2749329903, 2407565247, 1040916227,
4166286368, 3790729424, 2319959171, 790566671, 3564922401, 3790719224,
3351806947, 522751890, 2092973655, 4082170256, 3475236641, 1167040647,
977179679, 2029688957, 602636789, 2410858456, 1054744426, 4222385608,
4018272144, 3272073411, 455051663, 2961066047, 2985922812, 3353904115,
531271635, 2127445855, 4222680504, 4051957745, 3465536839, 1648337951,
3909016703, 66875901, 267798522, 1071783919, 4290281424, 4288806808,
3074949155, 186647305, 1753228352, 2986408192, 3355853826, 539070477,
2156935314, 45154616, 203687362, 948968008, 4225056, 1895962753,
2215207428, 271124499, 1085218901, 49316202, 208799249, 898111844,
3860885264, 3296843840, 302498051, 136373264, 545919043, 2185773339,
2253456584, 660869984, 2735755272, 2688633632, 3372568706, 1679155722,
139167788, 1097670836, 98337508, 402787297, 1653092516, 2485176208,
2156082241, 1370401030, 137716762, 551194732, 1356612026, 237045500,
969153682, 4035998920, 138539552, 3909632132, 3290620432, 2425604167,
1114382636, 168330478, 2839680105, 2831700736, 3206633232, 1418040386,
840356107, 3361464967, 78254264, 2245280487, 398527424, 1623470082,
2333131720, 1178802977, 2433526918, 1681089049, 282085479, 1129324964,
227313326, 922884945, 3746066180, 2300690832, 2156338243, 3793529043,
1215595577, 567841002, 2273592250, 511250212, 2076458354, 4111530248,
4030984481, 554694791, 2755711520, 285640834, 1143677458, 283412578,
1148330489, 361269732, 1780625809, 4035503684, 3525585169, 2291328072,
575770919, 2303987484, 658576060, 2537835312, 1594907208, 2420425762,
3776135305, 72225318, 2436597917, 1157243513, 335053532, 1348610065,
1116221028, 237026321, 1753885253, 1378414868, 1218782290, 580653388,
2324317501, 713102628, 2906936850, 3146865864, 4553250, 1897275531,
3831050796, 2439448754, 1168515792, 381717334, 4137823657, 1862842176,
3408060945, 2223745605, 2721001751, 1220412510, 587108733, 2349745665,
814815280, 3280232786, 361859336, 1816539427, 152629388, 3294921266,
294963401, 1180640045, 430214342, 1731343225, 2684931908, 2334343825,
1821189702, 2184515866, 3369444458, 593269164, 2374780609, 916003628,
3689180562, 1972484360, 3896963107, 18606221, 2221953592, 2445560033,
1192895371, 481070656, 1933719945, 3473467140, 1461953809, 2760820295,
1379627293, 1223648375, 600183264, 2403878808, 1035542200, 4173626354,
3985765448, 3662144803, 824164495, 1149194764, 274909439, 1208099089,
544772126, 590496073, 302581604, 1612982930, 2891885128, 2990784801,
1225966728, 609620520, 2440170153, 1177101044, 459574530, 2031237321,
407437604, 3374599314, 2761036360, 2454374692, 1228022935, 623678078,
2513586857, 1527327876, 2066004754, 479396937, 2454483238, 1228170393,
618074730, 2199931315, 1307125468, 956603442, 3910300489, 709482020,
3506859139, 3826913870, 309971259, 1240474870, 670864366, 2700234801,
2257142468, 589631250, 3029618762, 1917948200, 83510435, 622793359,
2492484163, 1385769272, 1269081474, 856856713, 3830082597, 3911834772,
3836224083, 2460141904, 1251353928, 712807732, 2869056801, 2932430500,
3307560978, 1150654026, 2992025899, 3378250925, 628527801, 2516470520,
1483287584, 577024274, 2391983424, 1347101221, 2972499094, 615760473,
2463205736, 1263674789, 764450488, 3068287817, 3737743012, 2384839186,
2560045131, 576561454, 3380217020, 636949239, 2552384511, 1629565048,
2244264594, 487787657, 2387361574, 2570138776, 2764407394, 2467842443,
1282156083, 836540640, 3355599841, 608801124, 2602978067, 2627290188,
577067314, 2308309231, 643732269, 2575712678, 1718170396, 2598685986,
1888696009, 3595363878, 3107178649, 1673130599, 322963871, 1292445314,
877959710, 3529664737, 1296672196, 1042717971, 1016761933, 3530207541,
162292949, 649532250, 2599439731, 1813591544, 2982467730, 3440600329,
1313710374, 2302062747, 1116422765, 2473544119, 1305159394, 928291744,
3730992889, 2085207428, 4230413075, 479986253, 577790264, 3385009377,
655528839, 2623819306, 1911634148, 3374638130, 689148809, 3427687207,
2704913564, 1692910195, 2476902864, 1318332231, 981245236, 3939661113,
2919880292, 3307691923, 949851214, 2457248059, 2312881389, 661885880,
1116603697, 2002267940, 3731156722, 2106834377, 72285991, 1899764894,
82928248, 2479540708, 1329604506, 1029480088, 4139940617, 3771330308,
2619852691, 3432992847, 2189289790, 3388638460, 670438391, 2684768248,
2162245692, 111477378, 672403658, 3461372968, 3779183776, 1695056515,
338151954, 1354246230, 1128046982, 244483809, 1091182309, 455641108,
3500297809, 3532259652, 170616084, 683283546, 2736673153, 2370913904,
950344578, 3994317898, 1649534504, 2571613315, 2770326159, 344132160,
1377708298, 1221633102, 602051017, 2471119045, 354289172, 2024056892,
848521545, 1246709031, 692327584, 2770883214, 2503559804, 1462053618,
1712632010, 2856433193, 155937957, 1160684183, 2495515230, 1393043839,
1282450976, 855808305, 3502925637, 1495902100, 3097937491, 2728110413,
1248863543, 701273315, 2808239013, 2655604468, 2082815314, 4237622090,
542377001, 1095790760, 88294049, 353569416, 1415850540, 1374726368,
1228055609, 717919205, 3274333077, 1823055444, 849819987, 2325734735,
713758018, 2858177826, 2855359720, 2881836322, 3138738826, 441811498,
693527723, 2774209197, 2507295415, 1440819946, 1474603994, 1627566121,
2315961221, 1076566549, 1621923926, 45293913, 181372263, 726242722,
2908116639, 3055114972, 3680857330, 2039855562, 374800171, 291264686,
1165157049, 2513537767, 1465920425, 1575530202, 2034416697, 3947557925,
3341540629, 2226104407, 2998890847, 1258358143, 739317253, 2960545839,
3265880352, 233145890, 1150689035, 1180210732, 3915563185, 3314324165,
372820762, 1492987000, 1683796500, 2467481889, 1389045701, 1680649110,
4172472921, 2194430309, 2335483289, 752850540, 3014810060, 3482412948,
1099276274, 320243275, 2153394989, 3513332916, 1705407186, 2527038286,
1519922501, 1791538506, 2898449913, 3112917797, 2980246, 1689655387,
853094764, 1265108403, 766318291, 3068681063, 3698421252, 1961212322,
3767987467, 3059469869, 2842665143, 3854574303, 386337665, 1546989076,
1899804804, 3331515105, 550211269, 2637056023, 3636024412, 48634226,
2342233549, 779851578, 3122814212, 3914953848, 2827342722, 2937541707,
4032654126, 2440434874, 2245653228, 393104309, 1574055651, 2008071102,
3764580297, 2282472037, 976164503, 1354534494, 3539140985, 3419358694,
793384865, 3176947361, 4131486444, 3695570258, 2107095947, 710871087,
2038204606, 636732153, 2547354601, 1601187761, 2116337400, 4197645489,
4014732805, 3610240279, 3300903007, 2734682495, 2348983808, 806557703,
3228196910, 33128684, 157680723, 773330188, 3462422832, 2172760256,
3859256067, 404817146, 1620127813, 2189476146, 463572321, 730600675,
3157285784, 549552736, 587622787, 1143662093, 280070231, 3250086103,
119636860, 510004931, 2199404172, 643894576, 696545474, 2249384713,
2555317286, 1632186530, 2236662430, 374541041, 1556884838, 2150677656,
1086524513, 3540830598, 204768793, 819370090, 3279315379, 239699708,
977542147, 3994580492, 3697403184, 4052213955, 2753319695, 2558725184,
1646211339, 2294858834, 1805849041, 2446084162, 1378952856, 1757719650,
2735927689, 3427558059, 825825434, 3305529979, 344558120, 1409690019,
1400963084, 1650634033, 4052409541, 2251047701, 2561969241, 1658794348,
2344142282, 799217553, 3263979558, 372344984, 2496017507, 4078522764,
2355537458, 832805070, 3331727927, 448367940, 1816540627, 3071859340,
4234376497, 2978876614, 3862475286, 417778801, 1671705040, 2394212174,
999497113, 4039931846, 3392267160, 1757915747, 289880463, 3430729278,
838342906, 3354682357, 539070460, 495337619, 161022853, 979638322,
965773512, 641909537, 2567801990, 1681928733, 2435631242, 1163076225,
399280966, 1764897305, 3435715684, 3810771345, 1284539975, 843520290,
3375391891, 621908596, 2508606067, 1536765004, 2187639858, 1637030089,
3863814950, 2570521754, 1692807792, 2478885334, 1336092585, 1095540742,
254969113, 1758079077, 1126758804, 212141650, 4751673, 3395839280,
702649568, 2829472787, 2232346956, 2623883524, 3113568458, 106279722,
425266348, 1701786293, 2514275046, 1479748601, 1670164710, 2553465241,
2295019621, 3006085526, 1286997594, 853317997, 3415107008, 781817656,
3144047987, 4061755404, 3664111410, 4187482315, 3328201519, 428133569,
1712854245, 2560150594, 1658007881, 2379007558, 1093869081, 617385062,
2958585900, 1288316516, 858626453, 3435138763, 860985748, 3467011843,
1024447180, 140934963, 2040145101, 644432692, 430427347, 1722299218,
2596851034, 1807955385, 2974603302, 3459474713, 1624090214, 590801307,
3437020782, 863476154, 3455215348, 894016504, 3586178339, 2241446092,
812061235, 832338006, 1181942585, 433409256, 1734751151, 2645871974,
2007186321, 3754743558, 2352202265, 1489969767, 3543978398, 3438536299,
869669353, 3480119216, 1043439348, 4198923427, 3969512844, 3226359347,
1100976335, 1719587647, 2583596286, 651506687, 2686504966, 2166571113,
118293222, 2114141338, 2630894086, 591489440, 2366031491, 874453518,
3498862658, 1114743080, 537298211, 773461324, 3563611188, 2845950160,
109552451, 2585857296, 1754281028, 4224744922, 2317567152, 722277542,
942954522, 4241583691, 860246434, 2367424141, 880548410, 3525601540,
1230611580, 673616723, 2795131341, 3899218996, 3383105746, 2258264908,
443649334, 1776760043, 2819675122, 2726514873, 2475509638, 1748315418,
148171882, 1666488746, 223807146, 896211633, 2226940649, 1481747416,
4001804643, 2476394629, 1651190837, 28109014, 649352026, 450104681,
1801074091, 2911950526, 3068353353, 3725422182, 2097460634, 483853931,
1398559150, 225650361, 902961895, 1890216874, 1572449976, 2030484515,
4003132301, 3698058805, 3517961431, 2797593439, 453168512, 1813788170,
2964641862, 3288555953, 328042662, 1647717275, 3705199212, 2741256625,
2375172373, 911219493, 3647237288, 1712960244, 2588331139, 1889220237,
3698124598, 3384003801, 114258742, 2604731808, 1829516931, 3027032616,
3536021793, 1326294662, 1328980763, 1826269805, 1399523765, 3436955350,
917805496, 3673845107, 1819915804, 3020347747, 3625675277, 2087564854,
940315867, 607286126, 460669006, 1843803887, 3086015458, 3774050353,
2299380582, 876025499, 282883182, 1668442553, 2378942181, 926423961,
3707793016, 1953085980, 3538348323, 2082187021, 1215209743, 1773838557,
116077429, 2611940823, 1727010250, 3138440682, 3976427089, 3062749862,
3862392603, 3369982062, 863482299, 3453993198, 931404736, 3726667532,
2025369688, 3852923379, 2644233485, 1047478583, 1219531864, 116724602,
467095019, 1727674289, 3184320208, 4156783545, 3762375814, 2453128731,
1826565743, 595392958, 234170106, 937106412, 3750391742, 2121908012,
4202820099, 3994809869, 3530548279, 2579478751, 6902655, 469716479,
1879521281, 3225739288, 28541105, 156107783, 792204572, 3839912048,
1132591552, 2382964484, 942251027, 3770314840, 2202124684, 239535827,
1042030030, 208699704, 2445422817, 2802414468, 2619903507, 342099,
3267682650, 194217385, 814618567, 3392693020, 1289854064, 3280386499,
3457943309, 947100728, 3789582572, 2278147028, 539430867, 2233221518,
812715576, 163869922, 1192383369, 474730021, 1899837596, 3306742404,
355699281, 1527655431, 2117647004, 618858097, 596406726, 238208793,
953457768, 3815666097, 2382481136, 975641715, 4045174414, 3559971128,
3653748963, 2267038607, 2625998401, 1914648845, 3365463110, 583242049,
2370717191, 1043930396, 350520434, 3281144265, 3460957988, 959126676,
3837817434, 2470562192, 1309091523, 1025285454, 108166969, 1506416869,
3341357972, 2628193874, 1923430736, 3401377110, 730043801, 2957924231,
3392758556, 1424333938, 3281439179, 240912173, 963976377, 3857216240,
2548681696, 1632055363, 2342306702, 1047731001, 1103923430, 1731384217,
2170179174, 1933050724, 3439912570, 885234233, 3582880295, 520364828,
2028385795, 1671107021, 3463276342, 563715291, 3874517875, 2617888244,
1898395715, 3374113614, 1853068857, 4056837254, 3879343004, 485150324,
1941191128, 3474253698, 1023647297, 4161698599, 3946443420, 3840402035,
1939866063, 3464587072, 973708547, 3896144920, 2705969284, 2259108579,
639438926, 2859749690, 30503144, 1732662179, 2635828877, 1954036281,
3524061438, 1218683961, 1959694855, 2483324680, 2766746228, 3511675346,
2392377163, 980229429, 3922228449, 2812400552, 2691125155, 2392671374,
1752508730, 701821162, 2270475178, 492277418, 1970485940, 3592481532,
1501801609, 1783542823, 3074086941, 418086517, 2746116567, 1320953693,
989339002, 3958797814, 2958678032, 3267846419, 320702350, 1752575291,
28485868, 1197786034, 496537291, 1987197749, 3658804466, 1769190513,
2848904167, 3057342365, 351107190, 1941334491, 2396784493, 997825978,
3993532156, 3093945380, 3800527107, 2384315918, 1215766587, 2178722030,
2809353145, 282873575, 2001288098, 3713592992, 1983101665, 3666256551,
2033956509, 485425783, 62677470, 1324574585, 1003986409, 4017105881,
3192512260, 4219960627, 4112382158, 3967283771, 3373142255, 2273313727,
71864064, 2014133253, 3764973608, 2187575545, 202311047, 960240286,
619742328, 2210560481, 2399846944, 1009950231, 4041242731, 3286360536,
289900611, 1218323343, 712545084, 3769604334, 3884585924, 506220308,
2025667675, 3811373450, 2371077761, 932125511, 3929829790, 3841056888,
1405618659, 2401339280, 1015914052, 4065360161, 3379579028, 656905027,
2787004431, 3094959932, 1105563890, 127345611, 2657029935, 2039168192,
3865113384, 2591280377, 1829713351, 3241991326, 888377465, 63873511,
1329407902, 497917563, 4093540853, 3495553036, 1126670627, 303887119,
1517955389, 3655913716, 1180296145, 512757465, 2051489058, 3912291348,
2795754193, 2748272519, 2990362654, 215235194, 3822500331, 3478939298,
605494971, 3565452027, 3635014692, 1684207635, 2526988815, 1887121981,
569178358, 129270746, 2664796010, 2070035886, 3989370584, 3078712921,
3754913607, 2336080798, 1156697211, 3554460142, 3331384135, 1037246183,
4150950832, 3722571492, 2034744355, 4028560783, 4202426429, 32517367,
130126402, 2668171140, 2083274259, 4041013344, 3293831665, 361728391,
1614687647, 3036203644, 2749606385, 3482347463, 113580847, 4179000456,
3835294264, 2481441187, 1511991567, 2289876030, 1621378297, 2815235046,
523685786, 2095464048, 4089248210, 3493062617, 1141875015, 574524319,
4110049405, 3286899188, 3484043220, 1051959126, 4210589042, 3966891540,
3022510435, 3556811791, 1786621758, 32958715, 2816242670, 527830969,
2112634609, 4159503338, 3765694481, 2240791015, 641666847, 352085118,
3287402604, 1338550243, 1059692435, 4240211545, 4079614344, 3460818611,
1042259407, 176062783, 3791275261, 2817151988, 286166997, 2126135129,
4212981118, 3979605609, 1229360839, 3695143945, 2365440126, 3287757307,
266242030, 1065361343, 4262625028, 4169268276, 3821531539, 2459945103,
1686055487, 838661374, 133473274, 534089706, 2137014189, 4260953808,
4195613873, 3960468807, 3191856031, 822052991, 1946063359, 268191741,
1073586173, 950275, 10092601, 86507972, 513805392, 2793424960,
1510044928, 2282177539, 539103247, 2157122823, 44368188, 200541610,
881858824, 3678432160, 3103901312, 3825713667, 3491784719, 1082466369,
36339981, 154272885, 656937732, 2795524048, 3322591040, 3120937218,
2820150283, 2691010609, 2175353039, 115671906, 477367826, 1976580680,
3863015456, 3573801601, 605012487, 3493947424, 1091477636, 73302567,
301598945, 1237853300, 807441872, 3565315393, 2986981636, 673698835,
547508304, 2191212872, 180684116, 739513786, 3020970312, 3745607072,
2835729538, 1947699723, 1207601199, 1098948799, 102269702, 414846029,
1684550068, 2560674512, 2189638209, 1779245318, 2285184026, 457003115,
2204320176, 229967568, 930356114, 3763367816, 2336342816, 1493639811,
337435150, 1082771514, 1104347325, 124552109, 501753081, 2026388516,
1067512592, 2718063618, 2818908423, 3359499294, 2700857468, 2214478331,
272959506, 1109663954, 219186568, 2168593569, 352877100, 606235153,
141068357, 1110180840, 147358814, 591946989, 2391295700, 1075912336,
344228930, 2987539721, 2152989732, 2703806611, 82002515, 313537158,
1273243058, 865114248, 3745672097, 2835991172, 2485621267, 3327289423,
1115889983, 170165515, 736236657, 144707504, 2485209217, 1954885442,
1779766538, 3361031210, 2707017899, 2239251127, 370739966, 1503931546,
1792062472, 3275939617, 470354053, 1143890455, 31811677, 1122935158,
197821921, 2451051793, 3194511091, 4263607824, 1116078658, 2182619165,
1214346288, 2710229188, 2253144857, 426052776, 410024290, 2580597728,
1984116641, 84736134, 2957267482, 2429616900, 1008247203, 220756306,
55577057, 3548932480, 1973528720, 1311281665, 2719660301, 2288747573,
2172866775, 2260943711, 454593164, 1831089754, 2236668680, 3846401672,
3373127814, 1664934427, 2430552175, 1132536255, 2564558706, 945429528,
3796398324, 2434909840, 1619470147, 3659325710, 2289312825, 567677161,
2271560624, 499453650, 2011446210, 3809538216, 2470692769, 1024405127,
876414997, 2431977594, 1138369003, 259819449, 1044520717, 4199054548,
3995203024, 3431457091, 2183113999, 1216304191, 570429695, 2282505219,
542969892, 2182365410, 185664744, 910432418, 84965512, 3292674593,
2433362052, 1143841301, 281839713, 1133126065, 258508644, 1126309905,
579373892, 3659684113, 2827617348, 2720698644, 2293515351, 586748274,
2359576098, 894507528, 3745803554, 2836514952, 1682407971, 2434762895,
1149510208, 304515341, 1223304289, 619221540, 3433188177, 1082733060,
2552667155, 2828234841, 2188230965, 165102750, 662967224, 2489600520,
1414605160, 1531226914, 2433924745, 4098576933, 1362004118, 1153409630,
319850884, 1284122161, 862493028, 3533858833, 1653189444, 3525761299,
2828792909, 577917240, 2312324327, 661984176, 2655276810, 2073115944,
4165269922, 219413129, 3830467112, 289564832, 1158554246, 340560417,
1367484589, 1195942740, 564301713, 2592753733, 2854831380, 3366294610,
2727973195, 2322613557, 703665388, 2826195986, 2765181416, 2605009698,
2434089098, 3830794794, 3512092842, 1163764397, 361138878, 2450014209,
1504226434, 1805825169, 210427717, 1242726597, 682508601, 582701405,
2331395449, 738006516, 2959366170, 3276890408, 373655842, 2299935883,
2757306924, 2439366834, 1167827660, 377523004, 1515859225, 1793635588,
2971850641, 3599459653, 3660435734, 1220031579, 2732822897, 2341946825,
780474166, 3133431090, 3985733128, 3225804194, 756517003, 1952352815,
3514542269, 1173693176, 401378288, 1611804657, 2177417348, 228787473,
1351360838, 2721102104, 147039329, 588353928, 2354202150, 830019760,
3331613474, 4254174664, 2034645388, 219741324, 3563340338, 2442266824,
1179493157, 424709283, 1703555761, 2550713204, 1705193873, 2861355078,
4063454489, 3905823846, 2738557340, 2364950136, 873535994, 3506726994,
3159466664, 575049234, 3172618893, 2758388276, 3517466835, 358196049,
446729547, 1792685397, 2896745988, 3072547409, 4069356358, 439744794,
2295891052, 593777073, 2375698123, 915479358, 3671354690, 1838265896,
3225869731, 622561421, 611215927, 2444937437, 1190077302, 465978850,
1872377769, 3219709844, 136544785, 1116608839, 1379440924, 3907196017,
2744111558, 2386970401, 960306326, 3859051202, 2651967048, 2114108835,
354222734, 3812704826, 3520161410, 1196237731, 492867237, 1979857649,
3653823604, 1831056721, 3431915079, 2184949021, 1223644279, 106893791,
1652883994, 1007754750, 4040456258, 3318866472, 575114787, 3038662287,
2222559804, 3521620211, 1201972176, 514363215, 2037529761, 3953718660,
3022248145, 3868159559, 4064142622, 3371381883, 601916893, 2403616671,
775757460, 4169167448, 3826381160, 2621950755, 2770289807, 1417509438,
1375168763, 1206100976, 531009485, 2130329445, 4251516500, 4230216785,
143654471, 2185242912, 687957120, 2751959555, 2418558992, 1087709274,
65307082, 307365993, 1397237540, 1897967248, 1954746945, 2450368774,
1211900956, 554078333, 2221556261, 317262116, 1352935186, 1418765640,
2722282785, 151757957, 607228440, 2429634662, 1130439082, 239372018,
1028791721, 21528100, 622987921, 76051012, 3525469265, 1217438790,
165285834, 2303870104, 637674612, 2661567890, 2183286856, 1782914338,
1226130570, 2757284395, 2440513717, 1175003894, 416582722, 1699885609,
2722679844, 3441645201, 2222541382, 305678619, 1223369843, 599953884,
2407679917, 1097408468, 287606162, 2022846025, 2856920356, 3911586962,
614189136, 2457422138, 1241851130, 680825898, 2769441257, 2655603876,
2703574674, 3834997322, 2410545259, 1230742700, 515019452, 2518829829,
1506356372, 1822733522, 3834830665, 548738194, 690922647, 2449445470,
2466007419, 1276454402, 821336146, 3306286025, 508136612, 2435205267,
3298380349, 3529926962, 1235264718, 647664455, 2599046497, 1835611716,
3173309586, 412320585, 3259910439, 691668124, 2766754285, 2477869525,
1322852062, 1010081242, 4099045737, 3729386532, 2972174995, 2761921103,
3531639103, 1242080514, 674796566, 2704429189, 2261336788, 564465554,
2694072650, 4065419560, 692466850, 2770113165, 2167097916, 1376594174,
1226089538, 651334345, 2940882981, 3039383608, 1957007954, 311912779,
1247978800, 698520780, 2799326041, 1204352836, 2439244, 3355482885,
1515429161, 693040295, 624972447, 2500610692, 1414343200, 1378134234,
1225958697, 894081310, 153778325, 3567929941, 1386916180, 1253188951,
718837096, 2880067005, 2953402308, 3315949842, 915772234, 2723580203,
693802105, 627937974, 764824289, 3062913850, 3676400984, 2470819618,
3355496448, 1227594389, 3568222807, 3535554909, 1257473015, 736007658,
2949273553, 3228131300, 1327858322, 680922932, 4065879340, 694301872,
629904069, 2418297626, 1492986996, 1689563690, 2526202537, 1665871781,
3039613078, 1957925465, 1389398375, 865150370, 134499520, 3030014516,
3548998004, 1403365458, 1654041675, 3529168173, 2842424501, 2779943640,
82987879, 1533095334, 1847899882, 3134381257, 4115363877, 86898326,
2763534940, 3538012528, 1267475908, 776115997, 3111279769, 3876156196,
2711998226, 3063368779, 2453470359, 695571642, 635048684, 2541439927,
1580281614, 2036645010, 3867240649, 2001456933, 3375320725, 616426078,
3492628860, 1273374193, 63215568, 3198787789, 4224286100, 1420022098,
3466060337, 2455745839, 1233085631, 2784973567, 2550615040, 1617768480,
4105486650, 198378888, 927734182, 87062680, 3032625761, 1393166724,
1278027285, 47093855, 3276431760, 241796836, 1051074067, 278430540,
2590127409, 3381232836, 2787693331, 2561559636, 1658925414, 2351220202,
856889577, 3612108966, 2234628248, 3032953443, 1394477454, 1283270205,
839686400, 3363988525, 592023892, 2451982291, 1553541452, 3261386034,
1234425033, 642896680, 2572242086, 1701655212, 2527382274, 1586704009,
234924966, 221445632, 4107024998, 3543296408, 1288513125, 859455564,
3442632329, 904501940, 3693505811, 2191113548, 845615411, 3919357134,
645190457, 2581679343, 1738355654, 2683621274, 2199077129, 441256742,
2503229594, 1154577000, 2470914467, 1294018191, 882285126, 3535432009,
1279894996, 916887955, 3094794829, 2993276141, 161985747, 2795623248,
2593279301, 2341025072, 2857686240, 2937279913, 3545064742, 2570434202,
1154972267, 1398761903, 260089537, 908630799, 3639241829, 1688842756,
2535901779, 1922773581, 443349302, 1236567258, 651547498, 2606845358,
1838697806, 3070548802, 3717426793, 2085469222, 423036059, 81549934,
326388153, 1306633964, 934976468, 3746721685, 2928262900, 4255579456,
345768013, 3664792888, 3384935648, 655020932, 2621263386, 1899313296,
3315917474, 433294281, 1984837415, 691600028, 1692701298, 1402210761,
1314170665, 963812529, 3859968761, 2582236260, 1831286099, 3634160206,
4067677497, 1238398183, 2806420386, 2637057682, 1962228332, 3565480474,
1469295209, 1733210535, 3107640477, 3303780981, 2477844951, 1322166116,
996580776, 3997857529, 3154763076, 4230445843, 547226702, 1115189564,
2850231537, 2811188166, 2655604513, 2035891360, 3860132570, 2593377449,
1951348647, 3174222494, 2420898405, 332360167, 1329768352, 1025154698,
4103764541, 3551127908, 4171737171, 1453237525, 3799697725, 3924563189,
666031064, 2665303912, 2072834392, 4015322978, 3205129225, 3360653991,
1228806801, 4109939324, 2481252849, 1335470027, 1048092471, 4199185669,
3937006804, 2963789523, 3600770639, 2457713982, 2314695931, 669324272,
2678404420, 2131312482, 4257545842, 2869777193, 4098880538, 135631007,
3305126528, 1409427968, 1343105029, 1079943208, 31097057, 170525797,
791156308, 3466617424, 2323755328, 1778869507, 2820674575, 62671310,
2183479562, 151323754, 647238314, 2773504040, 3242284192, 3037049474,
337111563, 1348773937, 1101308110, 114983765, 480906757, 1999125140,
4070634320, 3397649729, 1779459022, 675583009, 2703118476, 2225947206,
321078586, 1326720746, 1162911912, 893554849, 1426754181, 2485881365,
1353984088, 1122673006, 201491945, 814336837, 3332923924, 1050778192,
1787204931, 2317042957, 678532151, 2714915046, 2272347056, 517279530,
2119450250, 89194280, 893650479, 2769330824, 1413777953, 1360504970,
513319479, 304777464, 1246373045, 721671316, 3433192273, 2592716100,
170378515, 2221118544, 2726973761, 2321106208, 713364722, 2882588394,
3176225704, 558204066, 353790603, 3473017389, 1366239413, 1171825380,
400722901, 1638543397, 2308665044, 1151540561, 1921816902, 2855494937,
684774503, 713642404, 2369008326, 892672650, 3608439530, 1666297640,
3108426403, 2770049677, 314624567, 1371711712, 1193059209, 484085321,
1957313013, 3643337492, 2091104593, 1653546311, 2856125726, 687281274,
2750173682, 2340767714, 1065689001, 1343370, 3608696361, 625477635,
1696631440, 3565374017, 1377118472, 1214555182, 571117801, 2305022741,
698946516, 3332660050, 1922147656, 1783047459, 2402112655, 2760528448,
2455324962, 1246045418, 752129418, 3276955049, 1162451108, 4112958099,
1419561549, 1383737659, 1241556217, 683316249, 2771014133, 2619952212,
2013383506, 848628042, 1783936298, 693392221, 2774028970, 2510637756,
4118096778, 1607773984, 2404565673, 2034969253, 355285654, 2495023707,
1390520687, 516296541, 782407472, 3395968437, 4087969990, 3970297426,
580384075, 1784718640, 2844218562, 2787857169, 2565688424, 1688547866,
2475473834, 1532177065, 3108817574, 355709593, 3570444904, 1397434787,
1296082587, 896178841, 3620367189, 1755951572, 3332824147, 2057019725,
3771098423, 700404958, 2802406273, 2622836254, 1920284882, 3495224970,
1314104361, 2035199143, 1966807709, 351103606, 1404742108, 1325311866,
1011523089, 4055913813, 3408520340, 1017616979, 849250639, 3397035325,
703370485, 2814006235, 2668187516, 2091204146, 4103403978, 3662932777,
2303704231, 2772382367, 2499660414, 1408969212, 1341958138, 1077059593,
30048421, 187303061, 1017649748, 849381712, 3397559617, 705467653,
2822394907, 2701742204, 2225422898, 345311690, 1515465514, 2303769768,
2772644513, 2500708998, 1413163548, 1358735482, 1144168969, 298485925,
1261053077, 1017682516, 849512785, 3398083909, 707564821, 2830783579,
2735296892, 2359641650, 882186698, 3662965546, 2303835304, 2772906659,
2501757582, 1417357884, 1375512826, 1211278345, 566923429, 2334803093,
1017715284, 849643858, 3398608201, 709661989, 2839172251, 2768851580,
2493860402, 1419061706, 1515498282, 2303900841, 2773168805, 2502806166,
1421552220, 1392290170, 1278387721, 835360933, 3408553109, 1017748052,
849774931, 3399132493, 711759157, 2847560923, 2802406268, 2628079154,
1955936714, 3662998314, 2303966377, 2773430951, 2503854750, 1425779324,
1409329659, 1347069969, 1112187093, 237667733, 1252663637, 1923656020,
3936564561, 714020166, 2856670496, 2839106706, 2775929490, 2555726698,
1817523114, 3579109546, 4115909289, 357599911, 1430694562, 1428990609,
1426238057, 1428859477, 1495968661, 1990899541, 581632341, 3937183062,
716494169, 2866566508, 2879215044, 2936362842, 3193265802, 39157418,
760614059, 1431861932, 2506312369, 1435642567, 1448782633, 1505930445,
1747628997, 2771046741, 2829798997, 44919126, 2327209307, 719099245,
2877183420, 2921158406, 3104136290, 3872748234, 2757087146, 3042398379,
1700629166, 3581364923, 1440852719, 1469623240, 1588244293, 2081078709,
4104845589, 3870027093, 4071613783, 3758617951, 721453063, 2886227458,
2957072408, 3247792298, 144016298, 655694123, 492329644, 819552282,
3582380739, 1444915982, 1485876292, 1653256497, 2325930709, 782964309,
3254931798, 823737688, 3938887011, 2870809997, 2893895228, 2989054216,
3372467810, 634753642, 2723565099, 2774092972, 1969588914, 362253003,
1449241392, 1503308999, 1722463045, 3496011749, 1812875201, 3232554070,
1119064409, 3939435879, 2873021854, 2902597185, 3026016800, 396716306,
1255515360, 1029085355, 626689709, 1164604085, 363530965, 1454416354,
1524673895, 1807922641, 2959792085, 3324731925, 716018006, 45507931,
1792697709, 2876085685, 2916374242, 3083688902, 3715461162, 2257961570,
559353643, 3176944814, 3044121272, 3373869795, 1461955472, 1555607121,
523902197, 3461015184, 1269539093, 1353621591, 1656406365, 2196365658,
2584729046, 2333759323, 2905431416, 3967120904, 3029719434, 3713493931,
2707276974, 897018555, 3588172527, 1468148671, 1572646616, 1998240801,
3721064085, 2049688405, 3736009303, 2554559557, 3941709176, 2882049507,
2938984340, 3168624228, 4098193906, 3554011466, 1394724907, 1559249583,
4118469309, 1441573621, 1081387994, 1318367090, 1201847768, 4027250577,
3307987349, 573992023, 3804126559, 1257911676, 736908789, 579355125,
3204276080, 4240801330, 4128635434, 3914854827, 3445611695, 3313484479,
369109759, 1466739714, 1613541388, 2169684093, 118162181, 573312982,
2628798808, 3267448160, 184927618, 2887374348, 2960480310, 3529249314,
3834737129, 2500184514, 1498955531, 2421996590, 3582204089, 1444031240,
1481313178, 1630686598, 2232599161, 363463477, 1554787478, 2293284952,
2059607393, 3269346694, 2889242138, 2968082543, 3284677434, 265652154,
1112940587, 391677612, 2304916145, 1703504580, 371714835, 1487449170,
1657188698, 2341651889, 799741829, 3299631318, 682725208, 4073086307,
186271116, 745231925, 2981845210, 3339281278, 496340578, 2060860491,
56163116, 1768169138, 3851492040, 373713698, 1495313551, 1687039598,
2461190457, 1279993301, 2100074966, 3836898108, 3359804772, 1797742592,
2470172239, 2994886975, 109929738, 1060475978, 2773897768, 2623098028,
2707768498, 3314903754, 2522269944, 1499606191, 52736715, 332057405,
1535847732, 1949087766, 3904040537, 3939231077, 1749079447, 750884448,
3004586375, 3429901388, 843421954, 3424019755, 995728172, 291930291,
4120531661, 3597314868, 25822320, 1723904860, 2608516493, 1869297509,
3213980694, 515082073, 4207828327, 3409601948, 2901251701, 3016055262,
3478480794, 1045798634, 4250303915, 89783980, 1432885940, 1168171728,
377850690, 1511927053, 1754838084, 2732773713, 2374714949, 1043143958,
414483546, 3805434217, 2336900516, 2905413269, 3032701533, 3544803732,
1311090386, 1016503627, 39484717, 1433015477, 2737834708, 379824977,
1519660361, 1784984878, 2850739425, 2836091957, 2829931350, 3098891610,
1255510378, 190244267, 2908722863, 3046202053, 3598019374, 1517661442,
1821816203, 2270878637, 4027008076, 632158934, 381201244, 1207116792,
534296008, 2147106789, 3116957780, 144966358, 3031815240, 268446059,
2875102639, 2910607037, 2469288700, 3624233978, 1624617026, 2241249835,
559615533, 2976665270, 1169261272, 1455885155, 1528868239, 1821685318,
2997541177, 3419104677, 867014806, 3770051419, 3269054828, 1801967027,
2444957392, 3062375288, 3661458712, 1771418794, 2228671403, 2791002392,
3446495414, 3853896410, 325127019, 1533455794, 1840428757, 2582305649,
1082879492, 1965930818, 3870748251, 3806059885, 3821827511, 767743712,
3071433607, 3698159150, 1918220546, 3411469611, 878418093, 3983438007,
1438253788, 3605613428, 1537879507, 1104983897, 3136353116, 3974854165,
3106790166, 4206327643, 1121847662, 1803081148, 2917553906, 3081001935,
3736170320, 2076556698, 4145478027, 895218477, 3312441985, 3049239263,
3607096191, 1398877696, 1880930313, 3234521161, 74154469, 355338711,
1756900956, 3253906800, 2788505025, 772871943, 3092405286, 3783618738,
2260058938, 496438795, 2203860782, 1097928376, 2169567970, 387156873,
1549119017, 1902819504, 3321029353, 418090005, 1731080919, 2998456924,
316897649, 2341373383, 2923206429, 3103546491, 1081930874, 2426783754,
1171726923, 693931694, 292711609, 365583077, 388688789, 1555181143,
1926412647, 3418023361, 808163285, 3255319383, 414812252, 2867217779,
2342098380, 778573619, 1791646935, 3879302018, 2659569370, 2110610315,
101010606, 1098127546, 3855667944, 3611577249, 1561702025, 1953413682,
3524454637, 1235985541, 783193303, 3904530781, 48883060, 195577300,
2929907537, 1222532425, 3932168062, 2857515114, 2899793291, 3177012398,
427131578, 366371563, 3613060013, 1567600310, 1976482530, 3615681453,
1598795605, 2184101847, 482019677, 3270266230, 34751960, 2932295907,
3139919248, 3973412448, 3025525234, 3537158955, 1415424046, 2172040891,
3587914477, 393096118, 1572613853, 365869949, 3696946704, 1917565173,
3459179991, 1320919645, 2196681079, 3954922973, 787552119, 3150929381,
4015351522, 3193298650, 4225203531, 4166908334, 225966779, 553154684,
394308544, 1577660163, 1307491355, 3776607488, 2238431861, 430234455,
2361146974, 1788594552, 3955566050, 2937624458, 3161742900, 2375100170,
1105585121, 2610401312, 2304656271, 1232673409, 1441063666, 2543160266,
1583034156, 2038480057, 3865768729, 2611727669, 1974417751, 3971805534,
183757177, 2345690600, 2940524449, 3113049740, 4102650428, 3927045314,
2898777411, 3642711567, 2282032190, 3588833531, 2544241618, 1587490637,
2055603459, 3932353821, 2865485077, 2981058391, 3636291422, 3002452346,
1761777131, 2942310319, 3180355268, 4135680820, 3675524522, 1888991051,
3445548079, 1769711805, 3052344055, 3619580894, 1593880446, 2081734149,
804452425, 3272161508, 1051691735, 2461940004, 3942210940, 3957728754,
798693324, 2475974457, 4192828654, 3901092874, 2778190379, 3126807855,
2216169985, 3052745466, 3485748202, 1599582069, 2105065140, 4128963329,
3654020229, 1823454487, 4240366943, 721125635, 2347668983, 2948356061,
3204079482, 4228742654, 4039505986, 3306676747, 439420847, 2038313570,
2516132604, 1474685938, 1044361165, 2122104634, 4198169861, 3928749253,
2913981847, 3401539679, 2063444350, 1811371515, 412882927, 3212846296,
4264132362, 4182113402, 3885495083, 3261059503, 3892348929, 1149368896,
3523823876, 1210721299, 548454312, 4253220529, 195820357, 3777239250,
3868225119, 2063542560, 2298975742, 804673530, 3219611633, 4292181976,
1441754, 580387052, 492833316, 964708032, 906050114, 403015945,
1213113382, 2154348591, 32702689, 144956294, 638546072, 1153454432,
3540079905, 2349200898, 2954516492, 3228721206, 32866542, 141952019,
618140076, 2623556656, 2575385280, 4127546114, 1477872650, 1616850990,
2174009540, 111870785, 466357654, 1395669144, 1620093768, 1392744737,
1812919815, 2956974110, 2428192858, 1127555458, 2221279274, 1134043431,
392202544, 2374122689, 3590931204, 1478896658, 1621078093, 2190655812,
176882997, 730600774, 2125486168, 3200345416, 2198187018, 3424085515,
2959120431, 3247661253, 107840302, 446041371, 1884829228, 3378569904,
1233361601, 1980678919, 3525594142, 463339939, 165462507, 263721972,
1087119350, 154174168, 3334608737, 2416919633, 3270021199, 2317310019,
3257295121, 306807902, 2743472544, 2434287467, 1298212016, 3313806018,
3226554785, 2249174053, 1630941337, 307890467, 334694868, 1382819974,
1585670232, 79861839, 1749169185, 2152297061, 2963871827, 3266339157,
182551912, 3967161835, 3105320934, 3462488715, 2105913026, 907502347,
3630156847, 1636315328, 2253570845, 436931797, 1798059206, 3081820440,
46365025, 2869831047, 2352616988, 2968344693, 3284427230, 257787808,
1046879979, 4242046348, 90308656, 1367875268, 4129346320, 3589336129,
1549906184, 2288174122, 570626277, 2296422390, 774968472, 3670304098,
4212252040, 1279821347, 824629394, 3299238480, 1068337496, 1276519864,
886610252, 3848433073, 3649690308, 103275283, 413183056, 1540497,
2318058765, 693834881, 2795811622, 2687585880, 2529511010, 3541384586,
2891335210, 828250285, 1289299562, 370772730, 1498819675, 1754837836,
2976044337, 2039180997, 2953345048, 2562206811, 1659154801, 336594983,
782964548, 2978766214, 3501291392, 3322190879, 1930936715, 3232378964,
830642367, 179397387, 725882244, 2938132232, 2350433408, 1040548017,
2684961990, 3223678994, 415785727, 1663480210, 2361443921, 871569853,
3549194454, 1563536088, 2965817699, 3004931469, 2356172343, 835246306,
3342951321, 494767776, 2010528627, 3872977292, 3110327601, 1569689799,
1446982431, 3640691839, 1678848516, 2424358961, 1123230013, 260867798,
1295131353, 1892198756, 3005422993, 2358138438, 843110686, 3374408841,
620597856, 2513848947, 1591291276, 2573518130, 3717419209, 1447965478,
3644624029, 1694577276, 2487274001, 1374890173, 1267508438, 1026726617,
818579813, 3005914517, 2360104533, 850975066, 3405866361, 746427936,
3017169267, 3604572556, 2036708658, 1570181323, 1448948526, 3648556219,
1710306036, 2550189041, 1626550333, 2274149078, 758321881, 4039928166,
3006406040, 2362070628, 858839446, 3437323881, 872258016, 3520489587,
1322886540, 1499899187, 3717910733, 1449931573, 3652488409, 1726034796,
2613104081, 1878210493, 3280789718, 489917145, 2966309223, 3006897564,
2364036723, 866703826, 3468781401, 998088096, 4023809907, 3336167820,
963089715, 1570672847, 1450914621, 3656420599, 1741763556, 2676019121,
2129870653, 4287430358, 221512409, 1892690280, 3007389088, 2366002818,
874568206, 3500238921, 1123918176, 232162931, 1054481805, 426280244,
3718402257, 1451897668, 3660352789, 1757492316, 2738934161, 2381530813,
999103702, 4248074970, 819071336, 3007880612, 2367968913, 882432586,
3531696441, 1249748256, 735483251, 3067763085, 4184438068, 1571164370,
1452880716, 3664284979, 1773221076, 2801849201, 2633190973, 2005744342,
3979670234, 4040419689, 3008372135, 2369935008, 890296966, 3563153961,
1375578336, 1238803571, 786077069, 3647628597, 3718893780, 1453863763,
3668217169, 1788949836, 2864764241, 2884851133, 3012384982, 3711265498,
2966800746, 3008863659, 2371901103, 898161346, 3594611481, 1501408416,
1742123891, 2799358349, 3110819125, 1571655894, 1454846811, 3672149359,
1804678596, 2927679281, 3136511293, 4019025622, 3442860762, 1893181803,
3009355183, 2373867198, 906025726, 3626069001, 1627238496, 2245444211,
517672333, 2574009654, 3719385304, 1455829858, 3676081549, 1820407356,
2990594321, 3388171453, 730698966, 3174456027, 819562860, 3009846707,
2375833293, 913890106, 3657526521, 1753068576, 2748764531, 2530953613,
2037200182, 1572147418, 1456812906, 3680013739, 1836136116, 3053509361,
3639831613, 1737339606, 2906051291, 4040911213, 3010338230, 2377799388,
921754486, 3688984041, 1878898656, 3252084851, 249267597, 1500390711,
3719876828, 1457795953, 3683945929, 1851864876, 3116424401, 3891491773,
2743980246, 2637646555, 2967292270, 3010829754, 2379765483, 929618866,
3720441561, 2004728736, 3755405171, 2262548877, 963581239, 1572638942,
1458779001, 3687878119, 1867593636, 3179339441, 4143151933, 3750620886,
2369241819, 1893673327, 3011321278, 2381731578, 937483246, 3751899081,
2130558816, 4258725491, 4275830157, 426771767, 3720368352, 1459762048,
3691810309, 1883322396, 3242254481, 99844797, 462294231, 2100837084,
820054384, 3011812802, 2383697673, 945347626, 3783356601, 2256388896,
467078515, 1994144142, 4184929592, 1573130465, 1460745096, 3695742499,
1899051156, 3305169521, 351504957, 1468934871, 1832432348, 4041402737,
3012304325, 2385663768, 953212006, 3814814121, 2382218976, 970398835,
4007425422, 3648120120, 3720859875, 1461728143, 3699674689, 1914779916,
3368084561, 603165117, 2475575511, 1564027612, 2967783794, 3281232329,
240158503, 961158307, 3846730396, 2510408368, 1485253571, 1780265742,
3362970681, 2714480869, 2268054423, 482545248, 1931229578, 3434145352,
868456865, 3540936839, 1547282972, 2967914611, 3281756621, 242255671,
969546979, 3880285084, 2644627120, 2022128579, 3927765774, 3363036217,
2714743015, 2269103007, 486739584, 1948006922, 3501254728, 1136894369,
319719559, 1547315741, 2968045684, 3282280913, 244352839, 977935651,
3913839772, 2778845872, 2559003587, 1780298510, 3363101754, 2715005161,
2270151591, 490933920, 1964784266, 3568364104, 1405331873, 1393469575,
1547348509, 2968176757, 3282805205, 246450007, 986324323, 3947394460,
2913064624, 3095878595, 3927798542, 3363167290, 2715267307, 2271200175,
495128256, 1981561610, 3635473480, 1673769377, 2467219591, 1547381277,
2968307830, 3283329497, 248547175, 994712995, 3980949148, 3047283376,
3632753603, 1780331278, 3363232827, 2715529453, 2272248759, 499322592,
1998338954, 3702582856, 1942206881, 3540969607, 1547414045, 2968438903,
3283853789, 250644343, 1003101667, 4014503836, 3181502128, 4169628611,
3927831310, 3363298363, 2715791599, 2273297343, 503516928, 2015116298,
3769692232, 2210644385, 319752327, 1547446814, 2968569976, 3284378081,
252741511, 1011490339, 4048058524, 3315720880, 411536323, 1780364047,
3363363900, 2716053745, 2274345927, 507711264, 2031893642, 3836801608,
2479081889, 1393502343, 1547479582, 2968701049, 3284902373, 254838679,
1019879011, 4081613212, 3449939632, 948411331, 3927864079, 3363429436,
2716315891, 2275394511, 511905600, 2048670986, 3903910984, 2747519393,
2467252359, 1547512350, 2968832122, 3285426665, 256935847, 1028267683,
4115167900, 3584158384, 1485286339, 1780396815, 3363494973, 2716578037,
2276443095, 516099936, 2065448330, 3971020360, 3015956897, 3541002375,
1547545118, 2968963195, 3285950957, 259033015, 1036656355, 4148722588,
3718377136, 2022161347, 3927896847, 3363560509, 2716840183, 2277491679,
520294272, 2082225674, 4038129736, 3284394401, 319785095, 1547577887,
2969094268, 3286475249, 261130183, 1045045027, 4182277276, 3852595888,
2559036355, 1780429583, 3363626046, 2717102329, 2278540263, 524488608,
2099003018, 4105239112, 3552831905, 1393535111, 1547610655, 2969225341,
3286999541, 263227351, 1053433699, 4215831964, 3986814640, 3095911363,
3927929615, 3363691582, 2717364475, 2279588847, 528682944, 2115780362,
4172348488, 3821269409, 2467285127, 1547643423, 2969356414, 3287523833,
265324519, 1061822371, 4249386652, 4121033392, 3632786371, 1780462351,
3363757119, 2717626621, 2280637431, 532877280, 2132557706, 4239457864,
4089706913, 3541035143, 1547676191, 2969487487, 3288048125, 267421687,
1070211043, 4282941340, 4255252144, 4169661379, 3927962383, 3363822655,
2717888767, 2281686015, 537071616, 2149335050, 11599944, 63177122,
319817864, 1547708960, 2969618560, 3288572417, 269518855, 1078599715,
21528732, 94503601, 411569092, 1780495120, 3363888192, 2718150913,
2282734599, 541265952, 2166112394, 78709320, 331614626, 1393567880,
1547741728, 2969749633, 3289096709, 271616023, 1086988387, 55083420,
228722353, 948444100, 3927995152, 3363953728, 2718413059, 2283783183,
545460288, 2182889738, 145818696, 600052130, 2467317896, 1547774496,
2969880706, 3289621001, 273713191, 1095377059, 88638108, 362941105,
1485319108, 1780527888, 3364019265, 2718675205, 2284831767, 549654624,
2199667082, 212928072, 868489634, 3541067912, 1547807264, 2701574531,
3373010445, 2423121974, 1102749916, 117212026, 447252481, 1888575921,
1711321744, 998475905, 285028368, 3359160443, 2699309169, 2207629769,
242026289, 973872370, 3918558328, 2873218144, 3272039299, 1545443854,
2960590907, 3252592878, 126124991, 507383573, 2043165868, 3896591824,
2407781313, 3255784996, 4164795422, 3255357563, 136840210, 8523861,
1045176076, 4201676008, 3997300192, 3372736643, 1086394895, 4034865215,
3254952191, 136217611, 548540489, 2201055732, 262211344, 1250173506,
1376821000, 3896691745, 3775680645, 2218148377, 284100721, 1142694390,
294684808, 1262625889, 1057528452, 1277334033, 2425018437, 202884618,
96409650, 584978786, 2842701348, 2820740996, 3238192914, 840011528,
539958307, 3233624205, 406913403, 297863383, 1199842210, 527470456,
2193768417, 2735278724, 3022273821, 2962352200, 1112187172, 154305687,
620892791, 2494057004, 1157676688, 1401202560, 2358656265, 3897210895,
3777786005, 631325273, 1615332856, 1266427305, 810588056, 3317850593,
4211708292, 3001893899, 2962880588, 3261767988, 829523159, 651453166,
2636664332, 2099330160, 377815746, 3792981770, 2823965736, 558723237,
2236007071, 358550174, 1452026626, 1584442920, 2328019233, 1863001733,
3425509910, 1891018842, 3269665135, 195986894, 792860543, 3207094028,
86081648, 914756291, 1645776652, 2825079857, 563179719, 2253832999,
429853886, 1737241474, 2712719400, 2386773473, 1074135686, 1546950170,
2966620265, 1129259430, 101127240, 892213892, 3573809348, 1642179440,
1787212428, 3592085773, 678159413, 565244120, 640942467, 455413132,
1824572998, 3025197528, 3594742241, 1829613958, 2352410139, 18985008,
3278987704, 231769829, 929700779, 3729288956, 2074197296, 4186372547,
370933517, 3899675704, 566391008, 2265858950, 474811937, 1904490670,
3341869896, 574853089, 2601404807, 3157871132, 1357240434, 3281641932,
242452278, 972168433, 3899159564, 2749485424, 2575780419, 2451389710,
4168438842, 3788927210, 2271101869, 495783617, 1985092354, 3666930936,
1875097249, 3507414151, 2486941213, 2968488055, 1136697823, 252610436,
1012801063, 4061690084, 3399607472, 881301443, 35550479, 2558143549,
3790196980, 2276180948, 516099932, 2069642650, 3998283512, 3175341409,
1326415751, 1950226723, 2346358908, 2210193906, 262225903, 1052385105,
4201151908, 2279733024, 3381125004, 2183115023, 2979079231, 3791524094,
2281948158, 541003795, 2170039266, 126944008, 591663138, 2735754376,
205613600, 1896245379, 3290178061, 276465722, 411705599, 138561864,
3840020785, 2441627310, 1780559120, 4066894914, 3792982281, 2287453225,
206377143, 2456865056, 400581297, 1707356578, 3171996808, 1413715489,
286193799, 3292364998, 1299482749, 1142039038, 286820444, 1218585265,
864588868, 304249617, 1651266629, 84255362, 139133988, 208343371,
2328642880, 753997304, 3125042082, 252803976, 2487629347, 2971244684,
1147937332, 298027229, 1197351835, 502300980, 2198978673, 3961968931,
3659784977, 143645767, 2722148640, 52249730, 605947454, 2427734094,
1154556440, 605254434, 1729244675, 1816715812, 4045685359, 3297993288,
307792169, 422978753, 648581928, 2661437009, 2324250820, 1847928082,
680852554, 3797221477, 828637589, 627643053, 1914981098, 1502686242,
1808053410, 3440566153, 3159080485, 1362106519, 3301253729, 321423758,
1290937957, 888707628, 3668077489, 2072623556, 975637267, 1486672974,
2725646650, 633357550, 1707152319, 2658422560, 2068921656, 4089772130,
3796499337, 3830439463, 3510663327, 1157980801, 337807885, 3419956707,
1124639056, 539133585, 2416461188, 4051162702, 2023887952, 2726949188,
462734613, 683873371, 856969630, 2381399744, 1027939682, 152338314,
1951540777, 290011300, 3307692691, 346655313, 1387793019, 1267246492,
820156369, 3448398917, 1579787540, 3097945171, 2147631206, 2322810168,
702485739, 2814137294, 2676567128, 2157635938, 353699466, 2354329130,
1364285608, 3309806243, 354912913, 1422010965, 157615244, 1288967018,
1082826053, 3056242965, 413831913, 309963274, 1231889589, 633381041,
2867090781, 2110871048, 3041221074, 3977604746, 341177898, 1364744364,
3311657649, 362253001, 1452419893, 1534635396, 3110254513, 1317724708,
2183892634, 2711769234, 3803828572, 132695412, 733287895, 2936600462,
3199295112, 54886242, 722866059, 609774124, 2976061617, 3314623175,
374508324, 2626038975, 1734914954, 2699218865, 1753957445, 1445796355,
951379034, 1337782634, 2337571039, 762517167, 3057408774, 1594977480,
2198240274, 3038171209, 1012629037, 292493495, 1170318048, 2467335046,
1031679522, 1906882730, 3382895665, 797676869, 3593367319, 951710006,
1659433332, 1234503302, 782440267, 3134719322, 3979441704, 3141917666,
152533899, 2565982767, 1352128587, 1172611825, 396004299, 1586114365,
2058927420, 3999462961, 3280723781, 1043305751, 2294193247, 586912125,
2347976184, 803411948, 3218366422, 1959886824, 3594911890, 244560457,
2757768752, 2978060480, 2749113091, 404760109, 1621504073, 2204680580,
266536785, 1163684422, 1110479640, 2562892897, 1661727109, 2352334361,
822155383, 3297010218, 328305016, 1388718179, 1561897100, 3563247153,
3515611333, 1177772824, 416975978, 1670525375, 997771108, 1010905225,
4237065030, 506594072, 415786084, 589484433, 1239828039, 844044577,
3382469814, 654917928, 2705739619, 2392071564, 2355442226, 2979363018,
621323051, 426216625, 1365652185, 2534712058, 421736145, 743062821,
287899777, 2026625618, 3811566431, 2361837153, 859380117, 3445909130,
925997864, 1225521187, 2568601418, 3697759795, 1369327822, 3330024253,
1828490491, 1746547710, 2710098052, 379798385, 663556133, 3258210586,
2563875944, 3813126563, 2367751234, 882448967, 128091070, 542221573,
2210829652, 3239729744, 3397668404, 2853303560, 1184555852, 443954260,
1779840243, 1251529836, 2795721257, 2911720006, 3374933786, 685100138,
593039788, 2372650676, 882449118, 3608694204, 1562986072, 2034678563,
4246403469, 3832286773, 2981131108, 1187308385, 454921612, 1822307907,
2645088620, 1713595977, 3109444009, 1563010220, 2832839251, 1667748275,
2376550096, 917576532, 3674500462, 1820964024, 1185144163, 186346033,
543700020, 1370935611, 1188946798, 461475262, 1848522509, 3109608580,
3894637393, 2861421254, 3593953563, 4175287406, 1668846011, 2380744434,
934484948, 3743707006, 2110897816, 4232510691, 85720461, 1685069368,
4055963872, 3339133826, 472288784, 1891776599, 3283673516, 291735569,
1334715719, 1714989340, 954397809, 2743931334, 2386151195, 955980920,
3829690890, 2456930536, 1330062947, 1360831374, 2490545721, 2153306341,
3341664275, 482315869, 3490855303, 3434669625, 891525649, 3717098695,
2654586140, 149382259, 1671336399, 2390673214, 973356225, 3899421722,
2872168824, 2496088072, 1696411022, 3698646586, 299104489, 2199326310,
491359905, 1966384395, 3588811444, 1516481681, 2173614791, 708513053,
955022454, 3820171737, 2396145511, 997268910, 3996415738, 3119635640,
3980883299, 3474841998, 2625090107, 2984233199, 3347276736, 1197313800,
2021014568, 3810062636, 2447624081, 1418668103, 2520562462, 2029223033,
600822247, 2403813282, 1026891411, 4115430030, 3601984232, 1665642211,
603995279, 880488733, 1201210316, 3350635482, 518492016, 2077638103,
4035508228, 3315851825, 546278855, 2721990943, 150570108, 3823559973,
2409678798, 1051008843, 4210326882, 3964278056, 3016218915, 3810487695,
880669246, 1912129788, 1206297586, 530718273, 2126921553, 4228447700,
4052055569, 3515868743, 1983884575, 2566853759, 603845118, 2415806461,
1076174857, 2579267694, 78722072, 440928996, 2166373008, 1954618944,
2449824002, 1209590795, 543985716, 2177777889, 135857132, 2221150642,
2710588169, 2856406304, 144331906, 605483531, 2422491184, 1101734096,
116687718, 498208313, 2160606564, 354485904, 2760129090, 1913768200,
3360416804, 558010523, 2235450003, 368642764, 1529097330, 2089859784,
507708705, 4178336902, 607285784, 2429732967, 1131094446, 235701998,
965876857, 3972560100, 3508658576, 3431447107, 840905159, 1216308287,
570499202, 2286044173, 568922284, 2326021266, 965810504, 105151266,
3910288521, 1682625060, 2435958935, 1155867246, 332696026, 1349658585,
1187553828, 723685777, 881490501, 1915410709, 3366888534, 3109697468,
2334016894, 754521692, 3064224338, 3885068488, 3796230434, 957871243,
610333232, 2441660611, 1177756437, 420777078, 1710371513, 2378747300,
2166569558, 1686970950, 1379215642, 3369608299, 594579890, 2381989617,
2478382140, 3852759526, 2761019080, 3393672995, 2520253582, 611787708,
2447558896, 602317174, 512003884, 2071084377, 4090034276, 3810782353,
3700415047, 3527416095, 3372426368, 605524488, 2424719417, 1119428916,
224691730, 1083317577, 776506148, 1495434385, 3834335813, 2452769047,
1222583401, 600609234, 2423408617, 1187586596, 790925970, 210924105,
2454354213, 1227646101, 616272475, 2467711361, 1291396692, 916757170,
3834802121, 3125400356, 2301074579, 2761929295, 2458110272, 1243817228,
942969950, 2743079696, 2418812580, 1361388434, 2090119754, 2161957161,
3377357990, 625382046, 2508868259, 1472801700, 1625561490, 2425537353,
2185965349, 2569897110, 616067675, 2464860530, 1271997919, 804558786,
3253887081, 189367524, 1193680275, 2895690316, 2456033585, 1234560201,
644322096, 212601147, 2778280840, 2661600928, 4153622985, 2017780739,
959732097, 2765369961, 2472102315, 1299785399, 909941510, 3662834905,
3255379492, 3072775970, 1822133837, 3530457394, 3384665309, 108237695,
276587690, 1882228144, 3290751218, 1402178889, 2365168137, 2302233756,
3483075797, 145607115, 1315582931, 2430901490, 3901912072, 2815021732,
1629967507, 1342341149, 2994049142, 3386533100, 661885878, 11685617,
1014578146, 16868195, 2341716096, 2253335847, 423451806, 3841430139,
2481244656, 1336879055, 1059364730, 4279402217, 97124516, 1382870932,
2761965577, 3531704640, 1242080515, 188220825, 587745578, 2192130352,
249890418, 1318331210, 1917889832, 3376614561, 3842962054, 2487405087,
1440950410, 1155834448, 345147913, 1456089701, 3676879252, 18123011,
311208262, 1245029658, 727125796, 2746110400, 2416527284, 1130701106,
4187261514, 2014615555, 3108576420, 3793752722, 2493270604, 1385507139,
36480354, 742400210, 3066714725, 4079579540, 1420167762, 2996373836,
3395635632, 699045073, 2799850337, 2628341260, 2003122738, 4019516362,
4199804201, 693120167, 1074692361, 2500610691, 1414605340, 2766973114,
1180699937, 470428709, 2014011285, 1286147668, 3534047570, 3399066955,
639407414, 2851493096, 238638124, 1025856065, 2610252548, 2589279018,
156589226, 1097634475, 2505769100, 1435445955, 1531751218, 1927311440,
2085270528, 3173701640, 883657301, 2997796888, 3401491806, 721291104,
280528975, 2955321617, 654451442, 169715588, 1515594539, 2741599404,
3848549041, 2509654729, 1780296497, 1504707376, 1762833449, 3133854757,
2953222149, 4239223382, 850807130, 1255925101, 729388474, 2920175357,
3101252676, 3861213810, 2727726794, 2992066347, 1767738542, 1702326971,
2514701040, 1470180299, 1591521114, 2094186009, 4165663461, 4113298837,
615513687, 4072712544, 1258644865, 740267533, 2963691593, 3275317620,
258311954, 3927076555, 2955038244, 1619626052, 3221438739, 2518993680,
1487350862, 1660203362, 2364720697, 944446181, 4113331862, 749863512,
315140452, 3408225682, 748590668, 2996721991, 3402196308, 753243666,
3214302539, 576292652, 157705395, 1704628941, 2523974455, 1506317769,
1733973818, 3128086281, 2169192018, 244701590, 2186771034, 315709800,
1262896793, 757307023, 3030199239, 4292438404, 1306896011, 1284939211,
307921443, 3916057781, 631919316, 1257505784, 1521691989, 1799140722,
2920470217, 3209387429, 523078550, 79060571, 1926916461, 3412878773,
767268570, 3072744323, 3710479988, 2011544370, 4036424651, 2925261101,
2574252631, 2780975840, 2534591366, 1550790194, 1912912114, 3388138649,
835425701, 4113461143, 1824135772, 4075383156, 3416925651, 783652695,
3138542969, 3979966044, 3106266002, 4086789579, 308148526, 2037935292,
635704049, 2543307722, 1585524535, 2056043810, 3969054137, 3133922085,
288325527, 3971893855, 318404988, 3421382134, 801609695, 3210895265,
4273569548, 4280680082, 261620427, 2321559856, 2038525120, 638063363,
2552810514, 1623797851, 2211234234, 294848569, 1355556262, 1831906200,
1824721505, 319650182, 3426362908, 821532791, 3290587649, 297371788,
1260790931, 1066965708, 1247973681, 2039147717, 640553750, 2562772062,
1663644043, 2370619002, 932387641, 3905712550, 3442596760, 3972516451,
320895375, 3431343682, 841718032, 3371852905, 624529996, 2577812371,
2073639116, 1248136498, 2039803082, 2790658858, 2573388974, 1706373839,
2542586778, 1624453049, 2395784358, 1832069529, 1825376870, 322271642,
3436848748, 863476151, 3458361089, 968465548, 3945165971, 3214531276,
1248301363, 2040458447, 645796670, 2583743742, 1747530763, 2706165882,
2274575161, 684528038, 3442760602, 3973171816, 323516835, 3441829522,
883661392, 3539626345, 1295623756, 967220115, 4221204685, 1248464180,
2041113812, 2795901778, 2594360654, 1790260559, 2878133658, 2966640569,
3469567142, 1832233370, 1826032235, 324893102, 3447334588, 905681656,
3627707401, 1647947980, 2376517011, 1268457677, 2322378038, 2041801945,
2798654311, 2605370786, 1834301087, 3054295770, 3671289017, 1993193638,
221706651, 3973859950, 326269368, 3452872422, 927964066, 3717885621,
2008660876, 3836145875, 2845560525, 175074615, 2042522847, 2801554301,
2617036283, 1881487365, 3243040890, 139690841, 768480167, 3979897244,
1826753136, 327776708, 3458869012, 951360599, 2319872369, 2353645048,
848477875, 4204554190, 1651616405, 2747132291, 656151437, 2625064506,
1912027380, 3359433738, 571707593, 2362328423, 1094261916, 1961137778,
4086528457, 3461441319, 962370728, 845836993, 2521895872, 1525099795,
1906095822, 3866291001, 1238105317, 1325372312, 2630274658, 1932212624,
3439650406, 894671465, 3607538919, 557429660, 4108770604, 4087118285,
1316316985, 971545840, 3890639843, 2692337668, 2225553843, 362614478,
3061073046, 433179880, 1732875172, 2637090453, 1960524392, 1363995094,
1349756832, 1210564647, 1094358173, 1827316341, 329996757, 2496309080,
986684772, 3950671277, 1643763492, 1147624745, 4035148804, 4000704314,
1507345643, 3882111921, 2644201163, 1989491521, 843902270, 1785488614,
2949567975, 3745212061, 3975011958, 3552078299, 3471140721, 1000447438,
4006508373, 3165249004, 4167531251, 3880456782, 3531070779, 2850018543,
2810177890, 2651016960, 2016361486, 3774551490, 2249441929, 533663207,
2772191646, 1693544056, 4089857246, 1327474573, 684826180, 4064593850,
3384403124, 2095551475, 2845725202, 3531169596, 4192586994, 1738052555,
836423474, 2041265358, 3878482806, 2656292569, 2152676967, 1430062494,
1827939341, 3016841704, 2777606051, 1026137745, 4109269611, 3563710996,
1420274099, 1604234447, 3329936701, 1508629749, 3887215576, 2664419173,
2069839269, 2998204134, 3111377956, 4006573159, 3745376414, 3304575611,
3554675183, 1333979072, 1041735432, 4172184639, 3823759788, 2481441011,
1386163023, 1893550750, 1509100793, 2815243238, 2671464347, 2098151036,
4107074130, 3413371401, 1490004306, 2235480735, 3170579069, 1944996342,
3485280221, 1057333118, 4232216085, 1479145636, 3349668640, 681546191,
3464387903, 3925460220, 1743295475, 2678509522, 2125414226, 1237122418,
3973314072, 3092241127, 4181685919, 754845310, 1408805372, 3487811902,
1067098058, 4271275841, 4210687316, 3995596435, 3282034511, 1182767423,
3120477439, 670831613, 2683686905, 616644593, 1673083656, 4283694944,
30408679, 390072224, 2069137024, 872172032, 1342629890, 1075727154,
11698247, 2829713813, 227724577, 1101012560, 847286080, 2046985473,
2819331077, 2688012313, 2163425395, 70058494, 305399962, 1347429928,
3712002208, 2499984684, 2483804677, 3492980760, 1087610983, 59146675,
249169733, 1051205172, 144736592, 3464633153, 436773465, 2820933320,
2694172745, 2188460337, 354223354, 679996147, 2815447656, 3208729504,
1694471810, 641145343, 3495667757, 1098621114, 102925061, 428477597,
3936891924, 2829111945, 3397606721, 2584589574, 1748497435, 1252577393,
186782305, 241234888, 991173930, 4065359784, 3779193504, 3842497155,
3558873615, 1350756416, 1108713736, 142509109, 580522277, 2364032468,
1033968720, 579110722, 974286089, 1749750821, 2704396439, 2229224041,
333253078, 1358178330, 1238410088, 994220193, 1158319749, 1948965397,
3501074518, 1120051550, 187860367, 761927309, 3089652596, 3936449232,
3599097666, 4195865867, 2824901679, 2710032578, 2251506452, 421858426,
1708405402, 2622541032, 2235776417, 1695358598, 3560249882, 1356261482,
1130734000, 230590165, 932846501, 3773329364, 2392966352, 1653024579,
706538766, 678753338, 33673451, 2271346857, 499977942, 2027174890,
3906007720, 3141786017, 2500831879, 2487187999, 510748799, 1141219840,
272271379, 1101668501, 942179284, 664932760, 2921886020, 1780577552,
2827473987, 2720387345, 2293187664, 589631866, 2381596330, 1037114792,
1296335778, 2098342477, 3509930532, 3509004434, 1151705680, 315263321,
922363341, 809935761, 3416417105, 1250533188, 1780935955, 1755157582,
2725957948, 2316387583, 677575858, 2733920522, 2505132328, 2001023650,
2366970506, 4099263018, 1364994220, 1165992635, 373721871, 1516907765,
1848161716, 3349340369, 1183553861, 439270679, 1757213790, 2734477692,
2350204416, 4114421838, 3291767225, 399608424, 1830877603, 4112051852,
342108721, 3516082377, 1180148519, 428772539, 1736061789, 2728972404,
2476951505, 2592947526, 2587192602, 685257835, 2741522866, 2377860823,
929373066, 3753144154, 2253504680, 457643427, 85750149, 3027393081,
1372399845, 1195287453, 491687569, 1982479069, 3735612884, 2258878929,
1385108794, 3124561182, 1761031290, 2749747696, 2411022290, 1067261854,
9732042, 215090089, 1565009316, 354476688, 1417984578, 1377233162,
1215472693, 571904249, 2309637229, 710990676, 3164887506, 1251053896,
2588341539, 1763636366, 2760495681, 2455718177, 1247618294, 754226586,
3251789161, 1061786020, 3710301843, 4103903821, 3531172154, 1241621753,
678859807, 2744799581, 2506705140, 1906651602, 915734346, 2589252906,
1767306410, 2775175857, 2514438881, 1482501110, 1693757850, 2714946921,
3209384357, 3710760598, 4105738843, 3538512242, 1270982105, 796301215,
3214565213, 90800372, 832967123, 915963724, 2590170417, 1770976454,
2789856033, 2573159585, 1717383926, 2633289114, 2178104681, 1062015398,
3711219354, 4107573865, 3545852330, 1300342457, 913742623, 3684330845,
1969862900, 4054249939, 916193101, 2591087928, 1774646498, 2804536209,
2631880289, 1952266742, 3572820378, 1641262441, 3209613735, 3711678109,
4109408887, 3553192418, 1329702809, 1031184031, 4154096477, 3848925428,
2980565459, 916422479, 2592005439, 1778316542, 2819216385, 2690600993,
2187149558, 217384346, 1104420202, 1062244776, 3712136865, 4111243909,
3560532506, 1359063161, 1148625439, 328894813, 1433020661, 1906880980,
916651857, 2592922950, 1781986586, 2833896561, 2749321697, 2422032374,
1156915610, 567577962, 3209843113, 3712595620, 4113078931, 3567872594,
1388423513, 1266066847, 798660445, 3312083189, 833196500, 916881235,
2593840461, 1785656630, 2848576737, 2808042401, 2656915190, 2096446874,
30735722, 1062474154, 3713054376, 4114913953, 3575212682, 1417783865,
1383508255, 1268426077, 896178421, 4054479317, 917110612, 2594757972,
1789326674, 2863256913, 2866763105, 2891798006, 3035978138, 3788860778,
3210072490, 3713513131, 4116748975, 3582552770, 1447144217, 1500949663,
1738191709, 2775240949, 2980794837, 917339990, 2595675483, 1792996718,
2877937089, 2925483809, 3126680822, 3975509402, 3252018538, 1062703531,
3713971887, 4118583997, 3589892858, 1476504569, 1618391071, 2207957341,
359336181, 1907110358, 917569368, 2596592994, 1796666762, 2892617265,
2984204513, 3361563638, 620073370, 2715176299, 3210301868, 3714430642,
4120419019, 3597232946, 1505864921, 1735832479, 2677722973, 2238398709,
833425878, 917798746, 2597510505, 1800336806, 2907297441, 3042925217,
3596446454, 1559604634, 2178334059, 1062932909, 3714889398, 4122254041,
3604573034, 1535225273, 1853273887, 3147488605, 4117461237, 4054708694,
918028123, 2598428016, 1804006850, 2921977617, 3101645921, 3831329270,
2499135898, 1641491819, 3210531246, 3715348153, 4124089063, 3611913122,
1564585625, 1970715295, 3617254237, 1701556469, 2981024215, 918257501,
2599345527, 1807676894, 2936657793, 3160366625, 4066212086, 3438667162,
1104649579, 1063162287, 3715806909, 4125924085, 3619253210, 1593945977,
2088156703, 4087019869, 3580618997, 1907339735, 918486879, 2600263038,
1811346938, 2951337969, 3219087329, 6127606, 83231131, 567807340,
3210760624, 3716265664, 4127759107, 3626593298, 1623306329, 2205598111,
261818205, 1164714230, 833655256, 918716257, 2601180549, 1815016982,
2966018145, 3277808033, 241010422, 1022762395, 30965100, 1063391665,
3716724420, 4129594129, 3633933386, 1652666681, 2323039519, 731583837,
3043776758, 4054938072, 918945634, 2602098060, 1818687026, 2980698321,
3336528737, 475893238, 1962293659, 3789090156, 3210990001, 3717183175,
4131429151, 3641273474, 1682027033, 2440480927, 1201349469, 627871990,
2981253593, 919175012, 2603015571, 1822357070, 2995378497, 3395249441,
710776054, 2901824923, 3252247916, 1063621042, 3717641931, 4133264173,
3648613562, 1711387385, 2557922335, 1671115101, 2506934518, 1907569113,
919404390, 2603933082, 1826027114, 3010058673, 3453970145, 945658870,
3841356187, 2715405676, 3211219379, 3718100686, 4135099195, 3655953650,
1740747737, 2675363743, 2140880733, 91029750, 833884634, 919633768,
2604850593, 1829697158, 3024738849, 3512690849, 1180541686, 485920155,
2178563437, 1063850420, 3718559442, 4136934217, 3663293738, 1770108089,
2792805151, 2610646365, 1970092278, 4055167450, 919863145, 2605768104,
1833367202, 3039419025, 3571411553, 1415424502, 1425451419, 1641721197,
3211448757, 3719018197, 4138769239, 3670633826, 1799468441, 2910246559,
3080411997, 3849154806, 2981482970, 920092523, 2606685615, 1837037246,
3054099201, 3630132257, 1650307318, 2364982683, 1104878957, 1064079798,
3719476953, 4140604261, 3677973914, 1828828793, 3027687967, 3550177629,
1433250038, 1907798491, 920321901, 2607603126, 1840707290, 3068779377,
3688852961, 1885190134, 3304513947, 568036717, 3211678135, 3719935708,
4142439283, 3685314002, 1858189145, 3145129375, 4019943261, 3312312566,
834114011, 920551279, 2608520637, 1844377334, 3083459553, 3747573665,
2120072950, 4244045211, 31194477, 1064309176, 3720394464, 4144274305,
3692654090, 1887549497, 3262570783, 194741597, 896407799, 4055396828,
920780656, 2609438148, 1848047378, 3098139729, 3806294369, 2354955766,
888609179, 3789319534, 3211907512, 3720853219, 4146109327, 3699994178,
1916909849, 3380012191, 664507229, 2775470327, 2981712348, 921010034,
2610355659, 1851676462, 3112459455, 3862655762, 2574109846, 1740059451,
2782712174, 2693156537, 4258093798, 389462938, 3705532014, 1396577663,
3457869562, 956013661, 3874386583, 2797195484, 3471267699, 1537072590,
2927187772, 460774644, 3887297494, 2673201006, 2144812923, 131924270,
829691066, 634418920, 4148341665, 1561194117, 688034940, 3507677307,
4248543861, 380537506, 1665375837, 3202929012, 463719889, 2928752456,
3125665060, 3914298529, 2779632314, 2547469227, 3227333038, 2843003785,
500396777, 2538507175, 3711790749, 1962850941, 3559844357, 1046194349,
1219404756, 783979869, 4276775285, 2074758612, 1856668980, 3132284247,
3941168493, 739528270, 2954319809, 3361563246, 796234682, 3522746091,
2002381740, 1567436468, 799652576, 3611749272, 1572581045, 2009868503,
3921343069, 3538673525, 2429095383, 2351519583, 3137461631, 3961615881,
2966804566, 3302449675, 417172270, 2004236219, 2379818732, 4150631346,
3717803723, 1987427125, 3658411261, 1759228997, 2817446583, 2948289885,
3941428086, 1270226394, 37966041, 3144506802, 3992286957, 3099974690,
3839324667, 2606615534, 2272738491, 1977426670, 930429882, 3721948907,
2003614643, 3724996323, 2029092277, 3887002327, 2830881373, 3337574263,
3149772254, 2935519099, 3152535026, 4022171608, 3209551758, 4279729915,
2120089710, 494405202, 769679088, 3615621547, 1577824004, 2017115162,
3776376961, 2234237541, 365342231, 1606167902, 2771197304, 2076415457,
2937042823, 3158662688, 4047075473, 3320177330, 462916811, 2120104751,
964234428, 3856970482, 2543111113, 1583034155, 2039266494, 3870487353,
2630602213, 2066693015, 213712478, 3002349946, 3419530728, 793483172,
3174981275, 4114184844, 3588614834, 1536666827, 2120137519, 964365501,
3857494774, 2545208281, 1591422827, 2072821182, 4004706105, 3167477221,
4214193047, 213778014, 3002612092, 3420579312, 797677508, 3191758619,
4181294220, 3857052338, 2610416843, 2120170287, 964496574, 3858019066,
2547305449, 1599811499, 2106375870, 4138924857, 3704352229, 2066725783,
213843551, 3002874238, 3421627896, 801871844, 3208535963, 4248403596,
4125489842, 3684166859, 2120203055, 964627647, 3858543358, 2549402617,
1608200171, 2139930558, 4273143609, 4241227237, 4214225815, 213909087,
3003136384, 3422676480, 806066180, 3225313307, 20545676, 98960051,
462949580, 2120235824, 964758720, 3859067650, 2551499785, 1616588843,
2173485246, 112395065, 483134950, 2066758552, 213974624, 3003398530,
3423725064, 810260516, 3242090651, 87655052, 367397555, 1536699596,
2120268592, 964889793, 3859591942, 2553596953, 1624977515, 2207039934,
246613817, 1020009958, 4214258584, 214040160, 3003660676, 3424773648,
814454852, 3258867995, 154764428, 635835059, 2610449612, 2120301360,
965020866, 3860116234, 2555694121, 1633366187, 2240594622, 380832569,
1556884966, 2066791320, 214105697, 3003922822, 3425822232, 818649188,
3275645339, 221873804, 904272563, 3684199628, 2120334128, 965151939,
3860640526, 2557791289, 1641754859, 2274149310, 515051321, 2093759974,
4214291352, 214171233, 3004184968, 3426870816, 822843524, 3292422683,
288983180, 1172710067, 462982348, 2120366897, 965283012, 3861164818,
2559888457, 1650143531, 2307703998, 649270073, 2630634982, 2066824088,
214236770, 3004447114, 3427919400, 827037860, 3309200027, 356092556,
1441147571, 1536732364, 2120399665, 965414085, 3861689110, 2561985625,
1658532203, 2341258686, 783488825, 3167509990, 4214324120, 214302306,
3004709260, 3428967984, 831232196, 3325977371, 423201932, 1709585075,
2610482380, 2120432433, 965545158, 3862213402, 2564082793, 1666920875,
2374813374, 917707577, 3704384998, 2066856856, 214367843, 3004971406,
3430016568, 835426532, 3342754715, 490311308, 1978022579, 3684232396,
2120465201, 965676231, 3862737694, 2566179961, 1675309547, 2408368062,
1051926329, 4241260006, 4214356888, 214433379, 3005233552, 3431065152,
839620868, 3359532059, 557420684, 2246460083, 463015116, 2120497970,
965807304, 3863261986, 2568277129, 1683698219, 2441922750, 1186145081,
483167718, 2066889625, 214498916, 3005495698, 3432113736, 843815204,
3376309403, 624530060, 2514897587, 1536765132, 2120530738, 965938377,
3863786278, 2570374297, 1692086891, 2475477438, 1320363833, 1020042726,
4214389657, 214564452, 3005757844, 3433162320, 848009540, 3393086747,
691639436, 2783335091, 2610515148, 2120563506, 966069450, 3864310570,
2572471465, 1700475563, 2509032126, 1454582585, 1556917734, 2066922393,
214629989, 3006019990, 3434210904, 852203876, 3409864091, 758748812,
3051772595, 3684265164, 2120596274, 966200523, 3864834862, 2574568633,
1708864235, 2542586814, 1588801337, 2093792742, 4214422425, 214695525,
3006282136, 3435259488, 856398212, 3426641435, 825858188, 3320210099,
463047884, 2120629043, 966331596, 3865359154, 2576665801, 1717252907,
2576141502, 1723020089, 2630667750, 2066955161, 214761062, 3006544282,
3436308072, 860592548, 3443418779, 892967564, 3588647603, 1536797900,
2120661811, 966462669, 3865883446, 2578762969, 1725641579, 2609696190,
1857238841, 3167542758, 4214455193, 214826598, 3006806428, 3437356656,
864786884, 3460196123, 960076940, 3857085107, 2610547916, 2120694579,
966593742, 3866407738, 2580860137, 1734030251, 2643250878, 1991457593,
3704417766, 2066987929, 214892135, 3007068574, 3438405240, 868981220,
3476973467, 1027186316, 4125522611, 3684297932, 2120727347, 966724815,
3866932030, 2582957305, 1742418923, 2676805566, 2125676345, 4241292774,
4214487961, 214957671, 3007330720, 3439453824, 873175556, 3493750811,
1094295692, 98992819, 463080653, 2120760116, 966855888, 3867456322,
2585054473, 1750807595, 2710360254, 2259895097, 483200486, 2067020698,
215023208, 3007592866, 3440502408, 877369892, 3510528155, 1161405068,
367430323, 1536830669, 2120792884, 966986961, 3867980614, 2587151641,
1759196267, 2743914942, 2394113849, 1020075494, 4214520730, 215088744,
3007855012, 3441550992, 881564228, 3527305499, 1228514444, 635867827,
2610580685, 2120825652, 967118034, 3868504906, 2589248809, 1767584939,
2777469630, 2528332601, 1556950502, 2067053466, 215154281, 3008117158,
3442599576, 885758564, 3544082843, 1295623820, 904305331, 3684330701,
2120858420, 967249107, 3869029198, 2591345977, 1775973611, 2811024318,
2662551353, 2093825510, 4214553498, 215219817, 3008379304, 3443648160,
889952900, 3560860187, 1362733196, 1172742835, 463113421, 2120891189,
967380180, 3869553490, 2593443145, 1784362283, 2844579006, 2796770105,
2630700518, 2067086234, 215285354, 3008641450, 3444696744, 894147236,
3577637531, 1429842572, 1441180339, 1536863437, 2120923957, 967511253,
3870077782, 2595540313, 1792750955, 2878133694, 2930988857, 3167575526,
4214586266, 215350890, 3008903596, 3445745328, 898341572, 3594414875,
1496951948, 1709617843, 2610613453, 2120956725, 967642326, 3870602074,
2597637481, 1801139627, 2911688382, 3065207609, 3704450534, 2067119002,
215416427, 3009165742, 3446793912, 902535908, 3611192219, 1564061324,
1978055347, 3657100397, 1852552501, 3274070487, 1723572061, 2599370103,
1807824351, 276813700, 3159842332, 4059920606, 1049213178, 604389420,
3009302959, 2641993404, 904420083, 3618106322, 1590800211, 2088156667,
4133157373, 3807112949, 2846870999, 247426911, 3889843583, 3959223805,
2952910844, 3226427419, 36536542, 188089595, 953686124, 257982384,
4253175489, 4127890180, 1669891015, 1623044186, 2201403787, 236652221,
1038884214, 263225816, 2797747041, 990494084, 1814689300, 2964510806,
3270467951, 202149574, 3358737179, 3403178673, 1533126064, 763813571,
1981643534, 3632098364, 1644933374, 2288436263, 591073597, 2523678902,
2008102616, 918880098, 4212452746, 3965122090, 2976503985, 3318702813,
402492366, 1647718555, 2386341868, 1533224369, 3985428166, 909433625,
3638258796, 1670099387, 2389372963, 1006312861, 4134304182, 3954307288,
1053290339, 992030096, 1820849731, 2989349139, 3372442739, 430805558,
2494974278, 1608068204, 2942618546, 1838386889, 911178535, 3645009056,
1697362573, 4042181251, 1920674384, 1475128009, 1873982425, 1187708773,
2066533782, 1823946330, 3002194290, 1348691439, 801396230, 3237371867,
232359020, 1600529843, 496559820, 4133804850, 3650645194, 1718989621,
2586234111, 1778070701, 2901202230, 3350421209, 1858970470, 456600987,
1826600559, 3012155842, 3463145245, 1930271998, 3909093056, 2564412652,
2003262102, 2226459226, 1389734250, 1264151788, 1737385494, 2659110703,
2065382733, 3995446710, 3618890969, 3738158951, 1231797663, 1828812416,
3020872197, 2835834927, 1812832504, 143437641, 786043757, 3423225780,
1689673424, 1988590403, 997694905, 1753260906, 2723598615, 2327528701,
837621430, 3820251354, 114419560, 2068344228, 3978573457, 3030374986,
3536021841, 1272817070, 846633019, 3571082989, 2406070196, 2108118739,
368978272, 3665521980, 1778496763, 1763761219, 2707116113, 2330805238,
1169497306, 2262085482, 1532202409, 3981604520, 3042564777, 3583208125,
903719750, 3417746917, 2178596393, 1533743029, 4101443286, 4139020801,
3671616873, 1803662777, 2927023899, 3149618509, 887978294, 3686132312,
2933376875, 996122031, 1837090215, 3054295811, 3630656553, 4099780846,
2310456422, 903550829, 728529846, 4256351961, 919386981, 3677973915,
1827444441, 3022969335, 3531303133, 1302706102, 1303814619, 3067790189,
2607545781, 2822590914, 3066878819, 3679940003, 1844295382, 3136740571,
622989293, 3178773575, 1035445979, 144116078, 3682758078, 1847310089,
3102661715, 3845878301, 2590886902, 2310487259, 2799514478, 2608188858,
3990615788, 582736826, 3724766964, 2024651822, 3887526587, 3118191981,
4247783351, 1918916318, 3069733230, 3689442802, 3749951444, 3205422956,
666599053, 4226677847, 230162651, 2665492336, 3682704832, 2780591875,
3089947665, 3359076459, 2220737014, 343345531, 1692151150, 3413169592,
3720597217, 316595079, 1266576928, 1896482122, 3299795511, 354126333,
1542335543, 263766492, 1055069486, 462208454, 1848981274, 3101613164,
3818877383, 2407384982, 1098326043, 151405294, 1399988665, 1573449444,
925219730, 3701272141, 885242174, 3392070922, 712742077, 2934855287,
3552142044, 2665855858, 3684138443, 3999348527, 2702499012, 3863180058,
2577255598, 1769419739, 2933708142, 3647678393, 330811110, 3073869680,
3705958000, 1940109773, 3472287571, 1033608829, 4243487927, 129630172,
2263363444, 168930768, 1854220445, 3122912526, 3905123411, 2748174766,
2440513595, 3000837486, 1534370055, 2973462249, 927734693, 3711233689,
1961343598, 3555125727, 1358669853, 1223598903, 1002084317, 921340789,
464174549, 4004345686, 1874910556, 3943658876, 2902316622, 3065469627,
3822940014, 1668665786, 769093259, 928971695, 3515641535, 1979893791,
3628751935, 1656467677, 2490287991, 1673211357, 1772076918, 2612226519,
1859155815, 3142256859, 3982456485, 3062749950, 3698814395, 2061351790,
729220539, 4259090158, 4151505525, 3721621223, 2003811249, 3100569335,
2029763588, 3933139959, 968612061, 4098330879, 1539194334, 1862006653,
3153269631, 4027283447, 3241009230, 133661499, 903747311, 473097660,
232906477, 3079199684, 3727093522, 2025438293, 3816223111, 2407253853,
1139744759, 666668254, 4143081337, 1898921444, 4012488596, 3166101079,
4076029905, 3430802942, 901224891, 3940446319, 4219070396, 501757683,
3080903633, 3733974854, 1205583139, 387380397, 2785689443, 1809887735,
4018333633, 2920029957, 4164058601, 3771854950, 2210906539, 4108781487,
1081876414, 1350019000, 1239327471, 1594486717, 2112515604, 2007644243,
3269717845, 198149591, 3939375071, 3371721597, 1676629872, 3481720771,
1042013965, 4168186936, 3788370148, 2270675875, 526323599, 2138849086,
99680504, 935597026, 1594920840, 2112556577, 4059625717, 3356222465,
544182311, 2193506591, 452529276, 3001301490, 3549501406, 1044701050,
3105193098, 4015830957, 3179077307, 4128996099, 3640519774, 1714926203,
2715733743, 2944093629, 1307410166, 3082238939, 3739348847, 2073673159,
4004443975, 3151748525, 4084168887, 3753765598, 3203911547, 4225744367,
4018206655, 3188449027, 4165958687, 3789418694, 2314716251, 836703855,
4017909182, 1576142584, 2009676772, 3744001939, 2092154453, 4078369143,
3447449197, 980392951, 4223564255, 922355580, 3689459188, 1873065937,
3197820747, 4203445565, 3937269046, 2897728987, 3135200111, 259882430,
3455469307, 937040876, 3748425653, 2109849308, 4149148567, 3728469725,
2096086391, 96402911, 1593580414, 2079391224, 4022728674, 3206537101,
4238310983, 4076730718, 3455575675, 1088396911, 595495359, 234514173,
938122229, 3752751062, 2127150944, 4218355107, 4005295901, 3220168375,
264209375, 2130587519, 4227415548, 4024891378, 3215253455, 4273438545,
4218289550, 4026005339, 3386892783, 1266654655, 3187588863, 939269117,
3757371385, 2145763309, 4289730135, 3552622653, 555425536, 4101421059,
4029559679, 1615875583, 2167584768, 3222003715, 3938121, 32374975,
217580732, 2282083440, 327186462, 1845649153, 4161534981, 3761598488,
2164768886, 81723971, 352061966, 1542466808, 1812704480, 922944619,
1007484422, 1882699803, 3236300248, 62882261, 265160631, 1119363132,
518031728, 1065505217, 1373274131, 4163320851, 3769036879, 2194391385,
197068215, 826021902, 3446695096, 1539417568, 3091659651, 2082221581,
1886681145, 3253199088, 130778075, 527770599, 3573643548, 14744974,
3884191682, 1846575258, 1098497057, 3775898926, 2219643254, 294062251,
1211900862, 653300152, 3082965985, 1191807876, 2082946579, 1889761360,
3265388875, 180847957, 740169151, 3019397436, 3839979376, 3079001026,
3457656587, 4167048239, 3783585984, 2251146000, 423562363, 1723609854,
3111178168, 2747485282, 1997365126, 1010156057, 1893562477, 3280396735,
239568667, 965614767, 3921179644, 3068254064, 528973763, 4061560591,
947559484, 3790762230, 2279982059, 491196399, 2178695248, 4050716280,
1136925957, 2802884488, 1547963937, 4044683401, 2046419503, 298551508,
1215177695, 653824572, 2917290737, 4220087748, 1369161490, 949566540,
3798528307, 2310390998, 648483715, 2642169456, 2005763000, 130349794,
2803117962, 2622606888, 1900935333, 3309888160, 360680105, 1469983615,
1731768796, 2984432881, 3683348933, 2922260602, 4172946524, 3807053406,
2344732121, 420419499, 3202113297, 24215288, 533071843, 119038860,
3697434161, 4052580549, 725095831, 421235830, 1696477799, 4239969020,
1560673154, 2349335494, 506681113, 953146471, 3813077410, 11405493,
887560788, 3577506334, 1584508152, 2546385635, 4011544461, 3161333302,
1908062428, 3338330999, 470292509, 1895708759, 3380142940, 1021548785,
1066307015, 1125685021, 4176174197, 3820286423, 2398209907, 1005717915,
4053563454, 3357067192, 269626339, 4145959936, 2625265212, 4058822901,
3350979547, 167481219, 2092842546, 4095902428, 3689147121, 2811216839,
1849653023, 4177509503, 3825496576, 2316350736, 925835321, 50332160,
359794553, 1875390436, 388035472, 2697104962, 4061253718, 3361137703,
562270391, 136201039, 868356481, 1977891014, 3289168840, 4265857051,
3104889991, 58368261, 2434400579, 1153901135, 327205870, 1416767609,
1510406628, 3340947345, 478957125, 4063462221, 117498986, 595825078,
2397980479, 1094262716, 350521330, 3616684489, 3460890665, 2032549010,
3835556429, 292848108, 1247225084, 710710510, 2926728761, 3553191396,
3341144978, 1083084363, 1918833280, 3381585091, 642783539, 2589871343,
1787108060, 3085228402, 328431561, 508452647, 2173664413, 3840577755,
1316473314, 1338976209, 1094492190, 846365945, 1044105750, 2670244756,
2091114065, 1922349385, 3395937585, 2366870751, 2808202681, 2717470652,
518342770, 2476030152, 3057987370, 961928362, 3848106669, 2509097664,
1453271859, 1545383342, 1987230137, 4056609509, 657193877, 481341016,
1925560674, 3408061838, 750491217, 3014547879, 3518588956, 1390782066,
2073473483, 2925209389, 3111001270, 3854463709, 2534525826, 1554460219,
1948039598, 3597855161, 1909175013, 657390487, 482127454, 1928706426,
3420644846, 800823249, 3215876007, 28934172, 333842035, 2207790028,
3730915120, 4186348738, 3860919054, 2560347207, 1657745743, 2361181694,
955456249, 4224481254, 1328680856, 3167288932, 2200074642, 3432715357,
850368843, 3414058399, 595074652, 4075183491, 3435411378, 4035031260,
3247602891, 3865506608, 2578697427, 1731146623, 2654785214, 2129870329,
332202982, 2939436954, 1020378728, 4081711524, 3442730646, 889166451,
3569248815, 1442425404, 1676062451, 3348813261, 3731603253, 2041609431,
3871863650, 162778517, 1829189228, 3042761310, 3664997369, 2110634470,
1060573083, 4242325102, 4084529593, 3453740779, 932158399, 3739119423,
2121907836, 65470451, 798756814, 1047559992, 4190305505, 3876582278,
2622606883, 1905735863, 3348947838, 594776185, 2714651623, 3610859420,
2632318578, 1939503564, 3463702327, 972528881, 3900601367, 2759446940,
2615626611, 2543665614, 4269102906, 2044108010, 3881792430, 2643578563,
1989622583, 3684494718, 1936963705, 3788434407, 3611023261, 2632973943,
1942125024, 3474188167, 1014472241, 4068374807, 3430540700, 1005034355,
396263887, 4269430589, 2045418740, 3887035350, 2664550243, 2073509303,
4020041598, 3279151225, 567249895, 3611187103, 2633629308, 1944746484,
3484674007, 1056415601, 4236148247, 4101634460, 3689409395, 2543829455,
4269758271, 2046729470, 3892278270, 2685521923, 2157396023, 60621182,
326371450, 1641032680, 3611350944, 2634284673, 1947367944, 3495159847,
1098358961, 108954391, 477760925, 2078817140, 396427728, 4270085954,
2048040200, 3897521190, 2706493603, 2241282743, 396168062, 1668558970,
2714815464, 3611514785, 2634940038, 1949989404, 3505645687, 1140302321,
276727831, 1148854685, 468224884, 2543993297, 4270413636, 2049350930,
3902764110, 2727465283, 2325169463, 731714942, 3010746490, 3788598248,
3611678626, 2635595403, 1952610864, 3516131527, 1182245681, 445549855,
1824142781, 3169377268, 463700945, 512649031, 4198161693, 3908072566,
2748699109, 2410104767, 1071456158, 74744058, 634523113, 3880279972,
3710000784, 1955265092, 3526748440, 1224713333, 614371879, 2499430877,
1575562356, 2678375890, 1586718537, 4199505191, 3913577632, 2771243665,
2502380159, 1448946398, 1618259706, 2647837161, 3880476581, 1563303574,
4105943645, 3539790203, 1277928971, 831428767, 3384435773, 887724020,
195460051, 244997965, 3127590197, 3920884951, 2800472940, 2617200107,
1899837518, 3388269498, 970168553, 927893415, 490389149, 1961720438,
3552635357, 1328261003, 1029611135, 4156193597, 3924423284, 3483885011,
3735013199, 4202716479, 3926291713, 2821575697, 2702135411, 2239578734,
460655738, 2178169834, 1599149992, 3175419554, 4111907466, 3563383343,
1371515093, 1201578919, 553291741, 2380940405, 1604920788, 514123602,
4204059978, 3931665706, 2843071669, 2787595007, 2581417118, 1819620602,
3352616426, 2136188841, 1028607655, 4114594463, 3574196865, 1415031327,
1375643863, 1253745821, 887789557, 4222251989, 2393513812, 3131686228,
3937138004, 2864960860, 2875151771, 2931644174, 3228917434, 433424106,
3075884971, 492420780, 1969863348, 3585272534, 1458809711, 1550757391,
1950005629, 3672828661, 2611724245, 2930712870, 985529694, 3942446461,
2886194686, 2960611367, 3273482558, 292915066, 1540761835, 3210267564,
1029951153, 4119968456, 3595627301, 1500228779, 1716433663, 2612710717,
2028681717, 195886038, 3467919194, 3134340456, 3947787685, 2907559585,
3045546671, 3613223774, 1651879930, 2648099307, 3344650157, 1567481526,
1975122652, 3606178678, 1542434285, 1885255687, 3287998813, 434866805,
2410560983, 3736684380, 4209401202, 3953030605, 2928531265, 3129433391,
3948770654, 2994067450, 3755436779, 3479032750, 2105011899, 4125244144,
3616730054, 1584639791, 2055126287, 3971675549, 3169573877, 464487383,
247357279, 4210744701, 3958404598, 2950158310, 3215941571, 4294803374,
100008314, 735580396, 3504154544, 2642542272, 1980398340, 3627281431,
1626845297, 2222899735, 343607709, 1542204278, 2544943576, 4274214753,
2064555398, 3963581982, 2970736771, 3298255415, 329091454, 1400252539,
1641589740, 3613579185, 2643197637, 1983019800, 3637767271, 1668788657,
2390673175, 1014701469, 4226579318, 397541848, 4274542436, 2065866128,
3968824902, 2991708451, 3382142135, 664638334, 2742440059, 2715372524,
3613743026, 3180728010, 4133141292, 3648318647, 1711256309, 2560543783,
1694183901, 2666318966, 2746435545, 785215334, 2067201435, 3974198895,
3013204423, 3468126023, 1010671054, 4126570939, 3956928748, 258469811,
2107666128, 1988377409, 3659328779, 1755296837, 2737754471, 2407221021,
1240277494, 1404346330, 4275228521, 3142360485, 3979867802, 3036535413,
3561449999, 1383966958, 1333175931, 1373283309, 2540353461, 2645262037,
1991277399, 3670797667, 1800910241, 2919159511, 3128646813, 4092426102,
4155896282, 2128090987, 2069994928, 3985340100, 3057769243, 3646385303,
1721611006, 2692140731, 2547730157, 2943173558, 4256542426, 4141431659,
3681480116, 1843640039, 3090078703, 3812323581, 2532165878, 2209822683,
2933731182, 3145080250, 3990746861, 3079527361, 3733942063, 2073935214,
4093048955, 3856395501, 4017086391, 4257230559, 4144184192, 3692490248,
1887680567, 3444467319, 943299420, 3874362227, 3013204428, 2389153648,
966778063, 3867505473, 2586692880, 1763128435, 2770191150, 2591247289,
1977366758, 926221210, 3704933994, 1934932871, 3445548716, 1897110245,
3616465495, 1606126108, 2330378867, 1536893389, 1323480886, 3247775946,
106723094, 428084413, 3810488704, 2382218910, 1039605179, 3688661230, 17,
};
| 647,405 | 8,401 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_winapi.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/nt/createfile.h"
#include "libc/nt/enum/accessmask.h"
#include "libc/nt/enum/creationdisposition.h"
#include "libc/nt/enum/fileflagandattributes.h"
#include "libc/nt/enum/fsctl.h"
#include "libc/nt/enum/processcreationflags.h"
#include "libc/nt/errors.h"
#include "libc/nt/events.h"
#include "libc/nt/files.h"
#include "libc/nt/ipc.h"
#include "libc/nt/privilege.h"
#include "libc/nt/process.h"
#include "libc/nt/runtime.h"
#include "libc/nt/struct/overlapped.h"
#include "libc/nt/struct/processinformation.h"
#include "libc/nt/struct/securityattributes.h"
#include "libc/nt/struct/startupinfo.h"
#include "libc/nt/struct/tokenprivileges.h"
#include "libc/nt/synchronization.h"
#include "libc/nt/thread.h"
#include "libc/str/str.h"
#include "third_party/python/Include/Python.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/winreparse.h"
/* clang-format off */
#define kNtIoReparseTagMountPoint 0xA0000003L
PYTHON_PROVIDE("_winapi");
/*
* Support routines from the Windows API
*
* This module was originally created by merging PC/_subprocess.c with
* Modules/_multiprocessing/win32_functions.c.
*
* Copyright (c) 2004 by Fredrik Lundh <[email protected]>
* Copyright (c) 2004 by Secret Labs AB, http://www.pythonware.com
* Copyright (c) 2004 by Peter Astrand <[email protected]>
*
* By obtaining, using, and/or copying this software and/or its
* associated documentation, you agree that you have read, understood,
* and will comply with the following terms and conditions:
*
* Permission to use, copy, modify, and distribute this software and
* its associated documentation for any purpose and without fee is
* hereby granted, provided that the above copyright notice appears in
* all copies, and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of the
* authors not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission.
*
* THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
/* Licensed to PSF under a Contributor Agreement. */
/* See http://www.python.org/2.4/license for licensing details. */
#define HANDLE_TO_PYNUM(handle) \
PyLong_FromUnsignedLongLong(handle)
#define PYNUM_TO_HANDLE(obj) \
((int64_t)(intptr_t)PyLong_AsUnsignedLongLong(obj))
#define F_POINTER "K"
#define T_POINTER T_ULONGLONG
#define F_HANDLE F_POINTER
#define F_DWORD "k"
#define T_HANDLE T_POINTER
#define DWORD_MAX 4294967295U
/*
* A Python object wrapping an OVERLAPPED structure and other useful data
* for overlapped I/O
*/
typedef struct {
PyObject_HEAD
struct NtOverlapped overlapped;
/* For convenience, we store the file handle too */
int64_t handle;
/* Whether there's I/O in flight */
int pending;
/* Whether I/O completed successfully */
int completed;
/* Buffer used for reading (optional) */
PyObject *read_buffer;
/* Buffer used for writing (optional) */
Py_buffer write_buffer;
} OverlappedObject;
static void
overlapped_dealloc(OverlappedObject *self)
{
uint32_t bytes;
int err = GetLastError();
if (self->pending) {
if (CancelIoEx(self->handle, &self->overlapped) &&
GetOverlappedResult(self->handle, &self->overlapped, &bytes, true))
{
/* The operation is no longer pending -- nothing to do. */
}
else if (_Py_Finalizing == NULL)
{
/* The operation is still pending -- give a warning. This
will probably only happen on Windows XP. */
PyErr_SetString(PyExc_RuntimeError,
"I/O operations still in flight while destroying "
"Overlapped object, the process may crash");
PyErr_WriteUnraisable(NULL);
}
else
{
/* The operation is still pending, but the process is
probably about to exit, so we need not worry too much
about memory leaks. Leaking self prevents a potential
crash. This can happen when a daemon thread is cleaned
up at exit -- see #19565. We only expect to get here
on Windows XP. */
CloseHandle(self->overlapped.hEvent);
SetLastError(err);
return;
}
}
CloseHandle(self->overlapped.hEvent);
SetLastError(err);
if (self->write_buffer.obj)
PyBuffer_Release(&self->write_buffer);
Py_CLEAR(self->read_buffer);
PyObject_Del(self);
}
/*[clinic input]
module _winapi
class _winapi.Overlapped "OverlappedObject *" "&OverlappedType"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=c13d3f5fd1dabb84]*/
/*[python input]
def create_converter(type_, format_unit):
name = type_ + '_converter'
# registered upon creation by CConverter's metaclass
type(name, (CConverter,), {'type': type_, 'format_unit': format_unit})
# format unit differs between platforms for these
create_converter('int64_t', '" F_int64_t "')
create_converter('HMODULE', '" F_int64_t "')
create_converter('LPSECURITY_ATTRIBUTES', '" F_POINTER "')
create_converter('BOOL', 'i') # F_BOOL used previously (always 'i')
create_converter('uint32_t', 'k') # F_DWORD is always "k" (which is much shorter)
create_converter('LPCTSTR', 's')
create_converter('LPWSTR', 'u')
create_converter('UINT', 'I') # F_UINT used previously (always 'I')
class int64_t_return_converter(CReturnConverter):
type = 'int64_t'
def render(self, function, data):
self.declare(data)
self.err_occurred_if("_return_value == kNtInvalidHandleValue", data)
data.return_conversion.append(
'if (_return_value == NULL) {\n Py_RETURN_NONE;\n}\n')
data.return_conversion.append(
'return_value = HANDLE_TO_PYNUM(_return_value);\n')
class uint32_t_return_converter(CReturnConverter):
type = 'uint32_t'
def render(self, function, data):
self.declare(data)
self.err_occurred_if("_return_value == uint32_t_MAX", data)
data.return_conversion.append(
'return_value = Py_BuildValue("k", _return_value);\n')
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=94819e72d2c6d558]*/
#include "third_party/python/Modules/clinic/_winapi.inc"
/*[clinic input]
_winapi.Overlapped.GetOverlappedResult
wait: bool
/
[clinic start generated code]*/
static PyObject *
_winapi_Overlapped_GetOverlappedResult_impl(OverlappedObject *self, int wait)
/*[clinic end generated code: output=bdd0c1ed6518cd03 input=194505ee8e0e3565]*/
{
bool32 res;
uint32_t transferred = 0;
uint32_t err;
Py_BEGIN_ALLOW_THREADS
res = GetOverlappedResult(self->handle, &self->overlapped, &transferred,
wait != 0);
Py_END_ALLOW_THREADS
err = res ? kNtErrorSuccess : GetLastError();
switch (err) {
case kNtErrorSuccess:
case kNtErrorMoreData:
case kNtErrorOperationAborted:
self->completed = 1;
self->pending = 0;
break;
case kNtErrorIoIncomplete:
break;
default:
self->pending = 0;
return PyErr_SetExcFromWindowsErr(PyExc_IOError, err);
}
if (self->completed && self->read_buffer != NULL) {
assert(PyBytes_CheckExact(self->read_buffer));
if (transferred != PyBytes_GET_SIZE(self->read_buffer) &&
_PyBytes_Resize(&self->read_buffer, transferred))
return NULL;
}
return Py_BuildValue("II", (unsigned) transferred, (unsigned) err);
}
/*[clinic input]
_winapi.Overlapped.getbuffer
[clinic start generated code]*/
static PyObject *
_winapi_Overlapped_getbuffer_impl(OverlappedObject *self)
/*[clinic end generated code: output=95a3eceefae0f748 input=347fcfd56b4ceabd]*/
{
PyObject *res;
if (!self->completed) {
PyErr_SetString(PyExc_ValueError,
"can't get read buffer before GetOverlappedResult() "
"signals the operation completed");
return NULL;
}
res = self->read_buffer ? self->read_buffer : Py_None;
Py_INCREF(res);
return res;
}
/*[clinic input]
_winapi.Overlapped.cancel
[clinic start generated code]*/
static PyObject *
_winapi_Overlapped_cancel_impl(OverlappedObject *self)
/*[clinic end generated code: output=fcb9ab5df4ebdae5 input=cbf3da142290039f]*/
{
bool32 res = true;
if (self->pending) {
Py_BEGIN_ALLOW_THREADS
res = CancelIoEx(self->handle, &self->overlapped);
Py_END_ALLOW_THREADS
}
/* CancelIoEx returns ERROR_NOT_FOUND if the I/O completed in-between */
if (!res && GetLastError() != kNtErrorNotFound)
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
self->pending = 0;
Py_RETURN_NONE;
}
static PyMethodDef overlapped_methods[] = {
_WINAPI_OVERLAPPED_GETOVERLAPPEDRESULT_METHODDEF
_WINAPI_OVERLAPPED_GETBUFFER_METHODDEF
_WINAPI_OVERLAPPED_CANCEL_METHODDEF
{NULL}
};
static PyMemberDef overlapped_members[] = {
{"event", T_HANDLE,
offsetof(OverlappedObject, overlapped) + offsetof(struct NtOverlapped, hEvent),
READONLY, "overlapped event handle"},
{NULL}
};
PyTypeObject OverlappedType = {
PyVarObject_HEAD_INIT(NULL, 0)
/* tp_name */ "_winapi.Overlapped",
/* tp_basicsize */ sizeof(OverlappedObject),
/* tp_itemsize */ 0,
/* tp_dealloc */ (destructor) overlapped_dealloc,
/* tp_print */ 0,
/* tp_getattr */ 0,
/* tp_setattr */ 0,
/* tp_reserved */ 0,
/* tp_repr */ 0,
/* tp_as_number */ 0,
/* tp_as_sequence */ 0,
/* tp_as_mapping */ 0,
/* tp_hash */ 0,
/* tp_call */ 0,
/* tp_str */ 0,
/* tp_getattro */ 0,
/* tp_setattro */ 0,
/* tp_as_buffer */ 0,
/* tp_flags */ Py_TPFLAGS_DEFAULT,
/* tp_doc */ "OVERLAPPED structure wrapper",
/* tp_traverse */ 0,
/* tp_clear */ 0,
/* tp_richcompare */ 0,
/* tp_weaklistoffset */ 0,
/* tp_iter */ 0,
/* tp_iternext */ 0,
/* tp_methods */ overlapped_methods,
/* tp_members */ overlapped_members,
/* tp_getset */ 0,
/* tp_base */ 0,
/* tp_dict */ 0,
/* tp_descr_get */ 0,
/* tp_descr_set */ 0,
/* tp_dictoffset */ 0,
/* tp_init */ 0,
/* tp_alloc */ 0,
/* tp_new */ 0,
};
static OverlappedObject *
new_overlapped(int64_t handle)
{
OverlappedObject *self;
self = PyObject_New(OverlappedObject, &OverlappedType);
if (!self)
return NULL;
self->handle = handle;
self->read_buffer = NULL;
self->pending = 0;
self->completed = 0;
bzero(&self->overlapped, sizeof(struct NtOverlapped));
bzero(&self->write_buffer, sizeof(Py_buffer));
/* Manual reset, initially non-signalled */
self->overlapped.hEvent = CreateEvent(NULL, true, false, NULL);
return self;
}
/* -------------------------------------------------------------------- */
/* windows API functions */
/*[clinic input]
_winapi.CloseHandle
handle: int64_t
/
Close handle.
[clinic start generated code]*/
static PyObject *
_winapi_CloseHandle_impl(PyObject *module, int64_t handle)
/*[clinic end generated code: output=7ad37345f07bd782 input=7f0e4ac36e0352b8]*/
{
bool32 success;
Py_BEGIN_ALLOW_THREADS
success = CloseHandle(handle);
Py_END_ALLOW_THREADS
if (!success)
return PyErr_SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.ConnectNamedPipe
handle: int64_t
overlapped as use_overlapped: int(c_default='0') = False
[clinic start generated code]*/
static PyObject *
_winapi_ConnectNamedPipe_impl(PyObject *module, int64_t handle,
int use_overlapped)
/*[clinic end generated code: output=335a0e7086800671 input=edc83da007ebf3be]*/
{
bool32 success;
OverlappedObject *overlapped = NULL;
if (use_overlapped) {
overlapped = new_overlapped(handle);
if (!overlapped)
return NULL;
}
Py_BEGIN_ALLOW_THREADS
success = ConnectNamedPipe(handle,
overlapped ? &overlapped->overlapped : NULL);
Py_END_ALLOW_THREADS
if (overlapped) {
int err = GetLastError();
/* Overlapped ConnectNamedPipe never returns a success code */
assert(success == 0);
if (err == kNtErrorIoPending)
overlapped->pending = 1;
else if (err == kNtErrorPipeConnected)
SetEvent(overlapped->overlapped.hEvent);
else {
Py_DECREF(overlapped);
return PyErr_SetFromWindowsErr(err);
}
return (PyObject *) overlapped;
}
if (!success)
return PyErr_SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.CreateFile -> int64_t
file_name: LPCTSTR
desired_access: uint32_t
share_mode: uint32_t
security_attributes: LPSECURITY_ATTRIBUTES
creation_disposition: uint32_t
flags_and_attributes: uint32_t
template_file: int64_t
/
[clinic start generated code]*/
static int64_t
_winapi_CreateFile_impl(PyObject *module, const char16_t *file_name,
uint32_t desired_access, uint32_t share_mode,
struct NtSecurityAttributes *security_attributes,
uint32_t creation_disposition,
uint32_t flags_and_attributes, int64_t template_file)
/*[clinic end generated code: output=417ddcebfc5a3d53 input=6423c3e40372dbd5]*/
{
int64_t handle;
Py_BEGIN_ALLOW_THREADS
handle = CreateFile(file_name, desired_access,
share_mode, security_attributes,
creation_disposition,
flags_and_attributes, template_file);
Py_END_ALLOW_THREADS
if (handle == kNtInvalidHandleValue)
PyErr_SetFromWindowsErr(0);
return handle;
}
/*[clinic input]
_winapi.CreateJunction
src_path: LPWSTR
dst_path: LPWSTR
/
[clinic start generated code]*/
static PyObject *
_winapi_CreateJunction_impl(PyObject *module, char16_t *src_path,
char16_t *dst_path)
/*[clinic end generated code: output=66b7eb746e1dfa25 input=8cd1f9964b6e3d36]*/
{
/* Privilege adjustment */
int64_t token = 0;
struct NtTokenPrivileges tp;
/* Reparse data buffer */
const uint16_t prefix_len = 4;
uint16_t print_len = 0;
uint16_t rdb_size = 0;
_Py_PREPARSE_DATA_BUFFER rdb = NULL;
/* Junction point creation */
int64_t junction = 0;
uint32_t ret = 0;
if (src_path == NULL || dst_path == NULL)
return PyErr_SetFromWindowsErr(kNtErrorInvalidParameter);
if (strncmp16(src_path, u"\\??\\", prefix_len) == 0)
return PyErr_SetFromWindowsErr(kNtErrorInvalidParameter);
/* Adjust privileges to allow rewriting directory entry as a
junction point. */
if (!OpenProcessToken(GetCurrentProcess(), kNtTokenAdjustPrivileges, &token))
goto cleanup;
if (!LookupPrivilegeValue(NULL, u"SeRestorePrivilege", &tp.Privileges[0].Luid))
goto cleanup;
tp.PrivilegeCount = 1;
tp.Privileges[0].Attributes = kNtSePrivilegeEnabled;
if (!AdjustTokenPrivileges(token, false, &tp, sizeof(struct NtTokenPrivileges),
NULL, NULL))
goto cleanup;
if (GetFileAttributes(src_path) == -1)
goto cleanup;
/* Store the absolute link target path length in print_len. */
print_len = (uint16_t)GetFullPathName(src_path, 0, NULL, NULL);
if (print_len == 0)
goto cleanup;
/* NUL terminator should not be part of print_len. */
--print_len;
/* REPARSE_DATA_BUFFER usage is heavily under-documented, especially for
junction points. Here's what I've learned along the way:
- A junction point has two components: a print name and a substitute
name. They both describe the link target, but the substitute name is
the physical target and the print name is shown in directory listings.
- The print name must be a native name, prefixed with "\??\".
- Both names are stored after each other in the same buffer (the
PathBuffer) and both must be NUL-terminated.
- There are four members defining their respective offset and length
inside PathBuffer: SubstituteNameOffset, SubstituteNameLength,
PrintNameOffset and PrintNameLength.
- The total size we need to allocate for the REPARSE_DATA_BUFFER, thus,
is the sum of:
- the fixed header size (REPARSE_DATA_BUFFER_HEADER_SIZE)
- the size of the MountPointReparseBuffer member without the PathBuffer
- the size of the prefix ("\??\") in bytes
- the size of the print name in bytes
- the size of the substitute name in bytes
- the size of two NUL terminators in bytes */
rdb_size = _Py_REPARSE_DATA_BUFFER_HEADER_SIZE +
sizeof(rdb->MountPointReparseBuffer) -
sizeof(rdb->MountPointReparseBuffer.PathBuffer) +
/* Two +1's for NUL terminators. */
(prefix_len + print_len + 1 + print_len + 1) * sizeof(char16_t);
rdb = (_Py_PREPARSE_DATA_BUFFER)PyMem_RawMalloc(rdb_size);
if (rdb == NULL)
goto cleanup;
bzero(rdb, rdb_size);
rdb->ReparseTag = kNtIoReparseTagMountPoint;
rdb->ReparseDataLength = rdb_size - _Py_REPARSE_DATA_BUFFER_HEADER_SIZE;
rdb->MountPointReparseBuffer.SubstituteNameOffset = 0;
rdb->MountPointReparseBuffer.SubstituteNameLength =
(prefix_len + print_len) * sizeof(char16_t);
rdb->MountPointReparseBuffer.PrintNameOffset =
rdb->MountPointReparseBuffer.SubstituteNameLength + sizeof(char16_t);
rdb->MountPointReparseBuffer.PrintNameLength = print_len * sizeof(char16_t);
/* Store the full native path of link target at the substitute name
offset (0). */
strcpy16(rdb->MountPointReparseBuffer.PathBuffer, u"\\??\\");
if (GetFullPathName(src_path, print_len + 1,
rdb->MountPointReparseBuffer.PathBuffer + prefix_len,
NULL) == 0)
goto cleanup;
/* Copy everything but the native prefix to the print name offset. */
strcpy16(rdb->MountPointReparseBuffer.PathBuffer +
prefix_len + print_len + 1,
rdb->MountPointReparseBuffer.PathBuffer + prefix_len);
/* Create a directory for the junction point. */
if (!CreateDirectory(dst_path, NULL))
goto cleanup;
junction = CreateFile(dst_path, kNtGenericRead | kNtGenericWrite, 0, NULL,
kNtOpenExisting,
kNtFileFlagOpenReparsePoint | kNtFileFlagBackupSemantics, 0);
if (junction == kNtInvalidHandleValue)
goto cleanup;
/* Make the directory entry a junction point. */
if (!DeviceIoControl(junction, kNtFsctlSetReparsePoint, rdb, rdb_size,
NULL, 0, &ret, NULL))
goto cleanup;
cleanup:
ret = GetLastError();
CloseHandle(token);
CloseHandle(junction);
PyMem_RawFree(rdb);
if (ret != 0)
return PyErr_SetFromWindowsErr(ret);
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.CreateNamedPipe -> int64_t
name: LPCTSTR
open_mode: uint32_t
pipe_mode: uint32_t
max_instances: uint32_t
out_buffer_size: uint32_t
in_buffer_size: uint32_t
default_timeout: uint32_t
security_attributes: LPSECURITY_ATTRIBUTES
/
[clinic start generated code]*/
static int64_t
_winapi_CreateNamedPipe_impl(PyObject *module, const char16_t *name, uint32_t open_mode,
uint32_t pipe_mode, uint32_t max_instances,
uint32_t out_buffer_size, uint32_t in_buffer_size,
uint32_t default_timeout,
struct NtSecurityAttributes *security_attributes)
/*[clinic end generated code: output=80f8c07346a94fbc input=5a73530b84d8bc37]*/
{
int64_t handle;
Py_BEGIN_ALLOW_THREADS
handle = CreateNamedPipe(name, open_mode, pipe_mode,
max_instances, out_buffer_size,
in_buffer_size, default_timeout,
security_attributes);
Py_END_ALLOW_THREADS
if (handle == kNtInvalidHandleValue)
PyErr_SetFromWindowsErr(0);
return handle;
}
/*[clinic input]
_winapi.CreatePipe
pipe_attrs: object
Ignored internally, can be None.
size: uint32_t
/
Create an anonymous pipe.
Returns a 2-tuple of handles, to the read and write ends of the pipe.
[clinic start generated code]*/
static PyObject *
_winapi_CreatePipe_impl(PyObject *module, PyObject *pipe_attrs, uint32_t size)
/*[clinic end generated code: output=1c4411d8699f0925 input=c4f2cfa56ef68d90]*/
{
int64_t read_pipe;
int64_t write_pipe;
bool32 result;
Py_BEGIN_ALLOW_THREADS
result = CreatePipe(&read_pipe, &write_pipe, NULL, size);
Py_END_ALLOW_THREADS
if (! result)
return PyErr_SetFromWindowsErr(GetLastError());
return Py_BuildValue(
"NN", HANDLE_TO_PYNUM(read_pipe), HANDLE_TO_PYNUM(write_pipe));
}
/* helpers for createprocess */
static unsigned long
getulong(PyObject* obj, const char* name)
{
PyObject* value;
unsigned long ret;
value = PyObject_GetAttrString(obj, name);
if (! value) {
PyErr_Clear(); /* FIXME: propagate error? */
return 0;
}
ret = PyLong_AsUnsignedLong(value);
Py_DECREF(value);
return ret;
}
static int64_t
gethandle(PyObject* obj, const char* name)
{
PyObject* value;
int64_t ret;
value = PyObject_GetAttrString(obj, name);
if (! value) {
PyErr_Clear(); /* FIXME: propagate error? */
return 0;
}
if (value == Py_None)
ret = 0;
else
ret = PYNUM_TO_HANDLE(value);
Py_DECREF(value);
return ret;
}
static PyObject*
getenvironment(PyObject* environment)
{
Py_ssize_t i, envsize, totalsize;
Py_UCS4 *buffer = NULL, *p, *end;
PyObject *keys, *values, *res;
/* convert environment dictionary to windows environment string */
if (! PyMapping_Check(environment)) {
PyErr_SetString(
PyExc_TypeError, "environment must be dictionary or None");
return NULL;
}
keys = PyMapping_Keys(environment);
if (!keys) {
return NULL;
}
values = PyMapping_Values(environment);
if (!values) {
goto error;
}
envsize = PySequence_Fast_GET_SIZE(keys);
if (PySequence_Fast_GET_SIZE(values) != envsize) {
PyErr_SetString(PyExc_RuntimeError,
"environment changed size during iteration");
goto error;
}
totalsize = 1; /* trailing null character */
for (i = 0; i < envsize; i++) {
PyObject* key = PySequence_Fast_GET_ITEM(keys, i);
PyObject* value = PySequence_Fast_GET_ITEM(values, i);
if (! PyUnicode_Check(key) || ! PyUnicode_Check(value)) {
PyErr_SetString(PyExc_TypeError,
"environment can only contain strings");
goto error;
}
if (PyUnicode_FindChar(key, '\0', 0, PyUnicode_GET_LENGTH(key), 1) != -1 ||
PyUnicode_FindChar(value, '\0', 0, PyUnicode_GET_LENGTH(value), 1) != -1)
{
PyErr_SetString(PyExc_ValueError, "embedded null character");
goto error;
}
/* Search from index 1 because on Windows starting '=' is allowed for
defining hidden environment variables. */
if (PyUnicode_GET_LENGTH(key) == 0 ||
PyUnicode_FindChar(key, '=', 1, PyUnicode_GET_LENGTH(key), 1) != -1)
{
PyErr_SetString(PyExc_ValueError, "illegal environment variable name");
goto error;
}
if (totalsize > PY_SSIZE_T_MAX - PyUnicode_GET_LENGTH(key) - 1) {
PyErr_SetString(PyExc_OverflowError, "environment too long");
goto error;
}
totalsize += PyUnicode_GET_LENGTH(key) + 1; /* +1 for '=' */
if (totalsize > PY_SSIZE_T_MAX - PyUnicode_GET_LENGTH(value) - 1) {
PyErr_SetString(PyExc_OverflowError, "environment too long");
goto error;
}
totalsize += PyUnicode_GET_LENGTH(value) + 1; /* +1 for '\0' */
}
buffer = PyMem_NEW(Py_UCS4, totalsize);
if (! buffer) {
PyErr_NoMemory();
goto error;
}
p = buffer;
end = buffer + totalsize;
for (i = 0; i < envsize; i++) {
PyObject* key = PySequence_Fast_GET_ITEM(keys, i);
PyObject* value = PySequence_Fast_GET_ITEM(values, i);
if (!PyUnicode_AsUCS4(key, p, end - p, 0))
goto error;
p += PyUnicode_GET_LENGTH(key);
*p++ = '=';
if (!PyUnicode_AsUCS4(value, p, end - p, 0))
goto error;
p += PyUnicode_GET_LENGTH(value);
*p++ = '\0';
}
/* add trailing null byte */
*p++ = '\0';
assert(p == end);
Py_XDECREF(keys);
Py_XDECREF(values);
res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, buffer, p - buffer);
PyMem_Free(buffer);
return res;
error:
PyMem_Free(buffer);
Py_XDECREF(keys);
Py_XDECREF(values);
return NULL;
}
/*[clinic input]
_winapi.CreateProcess
application_name: Py_UNICODE(accept={str, NoneType})
command_line: Py_UNICODE(accept={str, NoneType})
proc_attrs: object
Ignored internally, can be None.
thread_attrs: object
Ignored internally, can be None.
inherit_handles: bool32
creation_flags: uint32_t
env_mapping: object
current_directory: Py_UNICODE(accept={str, NoneType})
startup_info: object
/
Create a new process and its primary thread.
The return value is a tuple of the process handle, thread handle,
process ID, and thread ID.
[clinic start generated code]*/
static PyObject *
_winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
Py_UNICODE *command_line, PyObject *proc_attrs,
PyObject *thread_attrs, bool32 inherit_handles,
uint32_t creation_flags, PyObject *env_mapping,
Py_UNICODE *current_directory,
PyObject *startup_info)
/*[clinic end generated code: output=4652a33aff4b0ae1 input=4a43b05038d639bb]*/
{
bool32 result;
struct NtProcessInformation pi;
struct NtStartupInfo si;
PyObject* environment;
wchar_t *wenvironment;
bzero(&si, sizeof(si));
si.cb = sizeof(si);
/* note: we only support a small subset of all SI attributes */
si.dwFlags = getulong(startup_info, "dwFlags");
si.wShowWindow = (int16_t)getulong(startup_info, "wShowWindow");
si.hStdInput = gethandle(startup_info, "hStdInput");
si.hStdOutput = gethandle(startup_info, "hStdOutput");
si.hStdError = gethandle(startup_info, "hStdError");
if (PyErr_Occurred())
return NULL;
if (env_mapping != Py_None) {
environment = getenvironment(env_mapping);
if (environment == NULL) {
return NULL;
}
/* contains embedded null characters */
wenvironment = PyUnicode_AsUnicode(environment);
if (wenvironment == NULL) {
Py_DECREF(environment);
return NULL;
}
}
else {
environment = NULL;
wenvironment = NULL;
}
Py_BEGIN_ALLOW_THREADS
result = CreateProcess(application_name,
command_line,
NULL,
NULL,
inherit_handles,
creation_flags | kNtCreateUnicodeEnvironment,
wenvironment,
current_directory,
&si,
&pi);
Py_END_ALLOW_THREADS
Py_XDECREF(environment);
if (! result)
return PyErr_SetFromWindowsErr(GetLastError());
return Py_BuildValue("NNkk",
HANDLE_TO_PYNUM(pi.hProcess),
HANDLE_TO_PYNUM(pi.hThread),
pi.dwProcessId,
pi.dwThreadId);
}
/*[clinic input]
_winapi.DuplicateHandle -> int64_t
source_process_handle: int64_t
source_handle: int64_t
target_process_handle: int64_t
desired_access: uint32_t
inherit_handle: bool32
options: uint32_t = 0
/
Return a duplicate handle object.
The duplicate handle refers to the same object as the original
handle. Therefore, any changes to the object are reflected
through both handles.
[clinic start generated code]*/
static int64_t
_winapi_DuplicateHandle_impl(PyObject *module, int64_t source_process_handle,
int64_t source_handle,
int64_t target_process_handle,
uint32_t desired_access, bool32 inherit_handle,
uint32_t options)
/*[clinic end generated code: output=ad9711397b5dcd4e input=b933e3f2356a8c12]*/
{
int64_t target_handle;
bool32 result;
Py_BEGIN_ALLOW_THREADS
result = DuplicateHandle(
source_process_handle,
source_handle,
target_process_handle,
&target_handle,
desired_access,
inherit_handle,
options
);
Py_END_ALLOW_THREADS
if (! result) {
PyErr_SetFromWindowsErr(GetLastError());
return kNtInvalidHandleValue;
}
return target_handle;
}
/*[clinic input]
_winapi.ExitProcess
ExitCode: UINT
/
[clinic start generated code]*/
static PyObject *
_winapi_ExitProcess_impl(PyObject *module, UINT ExitCode)
/*[clinic end generated code: output=a387deb651175301 input=4f05466a9406c558]*/
{
#if defined(Py_DEBUG)
SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOALIGNMENTFAULTEXCEPT|
SEM_NOGPFAULTERRORBOX|SEM_NOOPENFILEERRORBOX);
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
#endif
ExitProcess(ExitCode);
return NULL;
}
/*[clinic input]
_winapi.GetCurrentProcess -> int64_t
Return a handle object for the current process.
[clinic start generated code]*/
static int64_t
_winapi_GetCurrentProcess_impl(PyObject *module)
/*[clinic end generated code: output=ddeb4dd2ffadf344 input=b213403fd4b96b41]*/
{
return GetCurrentProcess();
}
/*[clinic input]
_winapi.GetExitCodeProcess -> uint32_t
process: int64_t
/
Return the termination status of the specified process.
[clinic start generated code]*/
static uint32_t
_winapi_GetExitCodeProcess_impl(PyObject *module, int64_t process)
/*[clinic end generated code: output=b4620bdf2bccf36b input=61b6bfc7dc2ee374]*/
{
uint32_t exit_code;
bool32 result;
result = GetExitCodeProcess(process, &exit_code);
if (! result) {
PyErr_SetFromWindowsErr(GetLastError());
exit_code = uint32_t_MAX;
}
return exit_code;
}
/*[clinic input]
_winapi.GetLastError -> uint32_t
[clinic start generated code]*/
static uint32_t
_winapi_GetLastError_impl(PyObject *module)
/*[clinic end generated code: output=8585b827cb1a92c5 input=62d47fb9bce038ba]*/
{
return GetLastError();
}
/*[clinic input]
_winapi.GetModuleFileName
module_handle: HMODULE
/
Return the fully-qualified path for the file that contains module.
The module must have been loaded by the current process.
The module parameter should be a handle to the loaded module
whose path is being requested. If this parameter is 0,
GetModuleFileName retrieves the path of the executable file
of the current process.
[clinic start generated code]*/
static PyObject *
_winapi_GetModuleFileName_impl(PyObject *module, HMODULE module_handle)
/*[clinic end generated code: output=85b4b728c5160306 input=6d66ff7deca5d11f]*/
{
bool32 result;
char16_t filename[MAX_PATH];
result = GetModuleFileNameW(module_handle, filename, MAX_PATH);
filename[MAX_PATH-1] = '\0';
if (! result)
return PyErr_SetFromWindowsErr(GetLastError());
return PyUnicode_FromWideChar(filename, wcslen(filename));
}
/*[clinic input]
_winapi.GetStdHandle -> int64_t
std_handle: uint32_t
One of STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, or STD_ERROR_int64_t.
/
Return a handle to the specified standard device.
The integer associated with the handle object is returned.
[clinic start generated code]*/
static int64_t
_winapi_GetStdHandle_impl(PyObject *module, uint32_t std_handle)
/*[clinic end generated code: output=0e613001e73ab614 input=07016b06a2fc8826]*/
{
int64_t handle;
Py_BEGIN_ALLOW_THREADS
handle = GetStdHandle(std_handle);
Py_END_ALLOW_THREADS
if (handle == kNtInvalidHandleValue)
PyErr_SetFromWindowsErr(GetLastError());
return handle;
}
/*[clinic input]
_winapi.GetVersion -> long
Return the version number of the current operating system.
[clinic start generated code]*/
static long
_winapi_GetVersion_impl(PyObject *module)
/*[clinic end generated code: output=e41f0db5a3b82682 input=e21dff8d0baeded2]*/
/* Disable deprecation warnings about GetVersionEx as the result is
being passed straight through to the caller, who is responsible for
using it correctly. */
#pragma warning(push)
#pragma warning(disable:4996)
{
return GetVersion();
}
#pragma warning(pop)
/*[clinic input]
_winapi.OpenProcess -> int64_t
desired_access: uint32_t
inherit_handle: bool32
process_id: uint32_t
/
[clinic start generated code]*/
static int64_t
_winapi_OpenProcess_impl(PyObject *module, uint32_t desired_access,
bool32 inherit_handle, uint32_t process_id)
/*[clinic end generated code: output=b42b6b81ea5a0fc3 input=ec98c4cf4ea2ec36]*/
{
int64_t handle;
handle = OpenProcess(desired_access, inherit_handle, process_id);
if (handle == NULL) {
PyErr_SetFromWindowsErr(0);
handle = kNtInvalidHandleValue;
}
return handle;
}
/*[clinic input]
_winapi.PeekNamedPipe
handle: int64_t
size: int = 0
/
[clinic start generated code]*/
static PyObject *
_winapi_PeekNamedPipe_impl(PyObject *module, int64_t handle, int size)
/*[clinic end generated code: output=d0c3e29e49d323dd input=c7aa53bfbce69d70]*/
{
PyObject *buf = NULL;
uint32_t nread, navail, nleft;
bool32 ret;
if (size < 0) {
PyErr_SetString(PyExc_ValueError, "negative size");
return NULL;
}
if (size) {
buf = PyBytes_FromStringAndSize(NULL, size);
if (!buf)
return NULL;
Py_BEGIN_ALLOW_THREADS
ret = PeekNamedPipe(handle, PyBytes_AS_STRING(buf), size, &nread,
&navail, &nleft);
Py_END_ALLOW_THREADS
if (!ret) {
Py_DECREF(buf);
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
}
if (_PyBytes_Resize(&buf, nread))
return NULL;
return Py_BuildValue("NII", buf, navail, nleft);
}
else {
Py_BEGIN_ALLOW_THREADS
ret = PeekNamedPipe(handle, NULL, 0, NULL, &navail, &nleft);
Py_END_ALLOW_THREADS
if (!ret) {
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
}
return Py_BuildValue("II", navail, nleft);
}
}
/*[clinic input]
_winapi.ReadFile
handle: int64_t
size: uint32_t
overlapped as use_overlapped: int(c_default='0') = False
[clinic start generated code]*/
static PyObject *
_winapi_ReadFile_impl(PyObject *module, int64_t handle, uint32_t size,
int use_overlapped)
/*[clinic end generated code: output=d3d5b44a8201b944 input=1b7d0ed0de1e50bc]*/
{
uint32_t nread;
PyObject *buf;
bool32 ret;
uint32_t err;
OverlappedObject *overlapped = NULL;
buf = PyBytes_FromStringAndSize(NULL, size);
if (!buf)
return NULL;
if (use_overlapped) {
overlapped = new_overlapped(handle);
if (!overlapped) {
Py_DECREF(buf);
return NULL;
}
/* Steals reference to buf */
overlapped->read_buffer = buf;
}
Py_BEGIN_ALLOW_THREADS
ret = ReadFile(handle, PyBytes_AS_STRING(buf), size, &nread,
overlapped ? &overlapped->overlapped : NULL);
Py_END_ALLOW_THREADS
err = ret ? 0 : GetLastError();
if (overlapped) {
if (!ret) {
if (err == ERROR_IO_PENDING)
overlapped->pending = 1;
else if (err != ERROR_MORE_DATA) {
Py_DECREF(overlapped);
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
}
}
return Py_BuildValue("NI", (PyObject *) overlapped, err);
}
if (!ret && err != ERROR_MORE_DATA) {
Py_DECREF(buf);
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
}
if (_PyBytes_Resize(&buf, nread))
return NULL;
return Py_BuildValue("NI", buf, err);
}
/*[clinic input]
_winapi.SetNamedPipeHandleState
named_pipe: int64_t
mode: object
max_collection_count: object
collect_data_timeout: object
/
[clinic start generated code]*/
static PyObject *
_winapi_SetNamedPipeHandleState_impl(PyObject *module, int64_t named_pipe,
PyObject *mode,
PyObject *max_collection_count,
PyObject *collect_data_timeout)
/*[clinic end generated code: output=f2129d222cbfa095 input=9142d72163d0faa6]*/
{
PyObject *oArgs[3] = {mode, max_collection_count, collect_data_timeout};
uint32_t dwArgs[3], *pArgs[3] = {NULL, NULL, NULL};
int i;
PyErr_Clear();
for (i = 0 ; i < 3 ; i++) {
if (oArgs[i] != Py_None) {
dwArgs[i] = PyLong_AsUnsignedLongMask(oArgs[i]);
if (PyErr_Occurred())
return NULL;
pArgs[i] = &dwArgs[i];
}
}
if (!SetNamedPipeHandleState(named_pipe, pArgs[0], pArgs[1], pArgs[2]))
return PyErr_SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.TerminateProcess
handle: int64_t
exit_code: UINT
/
Terminate the specified process and all of its threads.
[clinic start generated code]*/
static PyObject *
_winapi_TerminateProcess_impl(PyObject *module, int64_t handle,
UINT exit_code)
/*[clinic end generated code: output=f4e99ac3f0b1f34a input=d6bc0aa1ee3bb4df]*/
{
bool32 result;
result = TerminateProcess(handle, exit_code);
if (! result)
return PyErr_SetFromWindowsErr(GetLastError());
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.WaitNamedPipe
name: LPCTSTR
timeout: uint32_t
/
[clinic start generated code]*/
static PyObject *
_winapi_WaitNamedPipe_impl(PyObject *module, const char16_t *name, uint32_t timeout)
/*[clinic end generated code: output=c2866f4439b1fe38 input=36fc781291b1862c]*/
{
bool32 success;
Py_BEGIN_ALLOW_THREADS
success = WaitNamedPipe(name, timeout);
Py_END_ALLOW_THREADS
if (!success)
return PyErr_SetFromWindowsErr(0);
Py_RETURN_NONE;
}
/*[clinic input]
_winapi.WaitForMultipleObjects
handle_seq: object
wait_flag: bool32
milliseconds: uint32_t(c_default='INFINITE') = _winapi.INFINITE
/
[clinic start generated code]*/
static PyObject *
_winapi_WaitForMultipleObjects_impl(PyObject *module, PyObject *handle_seq,
bool32 wait_flag, uint32_t milliseconds)
/*[clinic end generated code: output=295e3f00b8e45899 input=36f76ca057cd28a0]*/
{
uint32_t result;
int64_t handles[MAXIMUM_WAIT_OBJECTS];
int64_t sigint_event = 0;
Py_ssize_t nhandles, i;
if (!PySequence_Check(handle_seq)) {
PyErr_Format(PyExc_TypeError,
"sequence type expected, got '%s'",
Py_TYPE(handle_seq)->tp_name);
return NULL;
}
nhandles = PySequence_Length(handle_seq);
if (nhandles == -1)
return NULL;
if (nhandles < 0 || nhandles >= MAXIMUM_WAIT_OBJECTS - 1) {
PyErr_Format(PyExc_ValueError,
"need at most %zd handles, got a sequence of length %zd",
MAXIMUM_WAIT_OBJECTS - 1, nhandles);
return NULL;
}
for (i = 0; i < nhandles; i++) {
int64_t h;
PyObject *v = PySequence_GetItem(handle_seq, i);
if (v == NULL)
return NULL;
if (!PyArg_Parse(v, F_int64_t, &h)) {
Py_DECREF(v);
return NULL;
}
handles[i] = h;
Py_DECREF(v);
}
/* If this is the main thread then make the wait interruptible
by Ctrl-C unless we are waiting for *all* handles */
if (!wait_flag && _PyOS_IsMainThread()) {
sigint_event = _PyOS_SigintEvent();
assert(sigint_event != NULL);
handles[nhandles++] = sigint_event;
}
Py_BEGIN_ALLOW_THREADS
if (sigint_event != NULL)
ResetEvent(sigint_event);
result = WaitForMultipleObjects((uint32_t) nhandles, handles,
wait_flag, milliseconds);
Py_END_ALLOW_THREADS
if (result == WAIT_FAILED)
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
else if (sigint_event != NULL && result == WAIT_OBJECT_0 + nhandles - 1) {
errno = EINTR;
return PyErr_SetFromErrno(PyExc_IOError);
}
return PyLong_FromLong((int) result);
}
/*[clinic input]
_winapi.WaitForSingleObject -> long
handle: int64_t
milliseconds: uint32_t
/
Wait for a single object.
Wait until the specified object is in the signaled state or
the time-out interval elapses. The timeout value is specified
in milliseconds.
[clinic start generated code]*/
static long
_winapi_WaitForSingleObject_impl(PyObject *module, int64_t handle,
uint32_t milliseconds)
/*[clinic end generated code: output=3c4715d8f1b39859 input=443d1ab076edc7b1]*/
{
uint32_t result;
Py_BEGIN_ALLOW_THREADS
result = WaitForSingleObject(handle, milliseconds);
Py_END_ALLOW_THREADS
if (result == WAIT_FAILED) {
PyErr_SetFromWindowsErr(GetLastError());
return -1;
}
return result;
}
/*[clinic input]
_winapi.WriteFile
handle: int64_t
buffer: object
overlapped as use_overlapped: int(c_default='0') = False
[clinic start generated code]*/
static PyObject *
_winapi_WriteFile_impl(PyObject *module, int64_t handle, PyObject *buffer,
int use_overlapped)
/*[clinic end generated code: output=2ca80f6bf3fa92e3 input=51846a5af52053fd]*/
{
Py_buffer _buf, *buf;
uint32_t len, written;
bool32 ret;
uint32_t err;
OverlappedObject *overlapped = NULL;
if (use_overlapped) {
overlapped = new_overlapped(handle);
if (!overlapped)
return NULL;
buf = &overlapped->write_buffer;
}
else
buf = &_buf;
if (!PyArg_Parse(buffer, "y*", buf)) {
Py_XDECREF(overlapped);
return NULL;
}
Py_BEGIN_ALLOW_THREADS
len = (uint32_t)Py_MIN(buf->len, uint32_t_MAX);
ret = WriteFile(handle, buf->buf, len, &written,
overlapped ? &overlapped->overlapped : NULL);
Py_END_ALLOW_THREADS
err = ret ? 0 : GetLastError();
if (overlapped) {
if (!ret) {
if (err == ERROR_IO_PENDING)
overlapped->pending = 1;
else {
Py_DECREF(overlapped);
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
}
}
return Py_BuildValue("NI", (PyObject *) overlapped, err);
}
PyBuffer_Release(buf);
if (!ret)
return PyErr_SetExcFromWindowsErr(PyExc_IOError, 0);
return Py_BuildValue("II", written, err);
}
static PyMethodDef winapi_functions[] = {
_WINAPI_CLOSEHANDLE_METHODDEF
_WINAPI_CONNECTNAMEDPIPE_METHODDEF
_WINAPI_CREATEFILE_METHODDEF
_WINAPI_CREATENAMEDPIPE_METHODDEF
_WINAPI_CREATEPIPE_METHODDEF
_WINAPI_CREATEPROCESS_METHODDEF
_WINAPI_CREATEJUNCTION_METHODDEF
_WINAPI_DUPLICATEHANDLE_METHODDEF
_WINAPI_EXITPROCESS_METHODDEF
_WINAPI_GETCURRENTPROCESS_METHODDEF
_WINAPI_GETEXITCODEPROCESS_METHODDEF
_WINAPI_GETLASTERROR_METHODDEF
_WINAPI_GETMODULEFILENAME_METHODDEF
_WINAPI_GETSTDHANDLE_METHODDEF
_WINAPI_GETVERSION_METHODDEF
_WINAPI_OPENPROCESS_METHODDEF
_WINAPI_PEEKNAMEDPIPE_METHODDEF
_WINAPI_READFILE_METHODDEF
_WINAPI_SETNAMEDPIPEHANDLESTATE_METHODDEF
_WINAPI_TERMINATEPROCESS_METHODDEF
_WINAPI_WAITNAMEDPIPE_METHODDEF
_WINAPI_WAITFORMULTIPLEOBJECTS_METHODDEF
_WINAPI_WAITFORSINGLEOBJECT_METHODDEF
_WINAPI_WRITEFILE_METHODDEF
{NULL, NULL}
};
static struct PyModuleDef winapi_module = {
PyModuleDef_HEAD_INIT,
"_winapi",
NULL,
-1,
winapi_functions,
NULL,
NULL,
NULL,
NULL
};
#define WINAPI_CONSTANT(fmt, con) \
PyDict_SetItemString(d, #con, Py_BuildValue(fmt, con))
PyMODINIT_FUNC
PyInit__winapi(void)
{
PyObject *d;
PyObject *m;
if (PyType_Ready(&OverlappedType) < 0)
return NULL;
m = PyModule_Create(&winapi_module);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
PyDict_SetItemString(d, "Overlapped", (PyObject *) &OverlappedType);
/* constants */
WINAPI_CONSTANT(F_DWORD, CREATE_NEW_CONSOLE);
WINAPI_CONSTANT(F_DWORD, CREATE_NEW_PROCESS_GROUP);
WINAPI_CONSTANT(F_DWORD, DUPLICATE_SAME_ACCESS);
WINAPI_CONSTANT(F_DWORD, DUPLICATE_CLOSE_SOURCE);
WINAPI_CONSTANT(F_DWORD, ERROR_ALREADY_EXISTS);
WINAPI_CONSTANT(F_DWORD, ERROR_BROKEN_PIPE);
WINAPI_CONSTANT(F_DWORD, ERROR_IO_PENDING);
WINAPI_CONSTANT(F_DWORD, ERROR_MORE_DATA);
WINAPI_CONSTANT(F_DWORD, ERROR_NETNAME_DELETED);
WINAPI_CONSTANT(F_DWORD, ERROR_NO_SYSTEM_RESOURCES);
WINAPI_CONSTANT(F_DWORD, ERROR_MORE_DATA);
WINAPI_CONSTANT(F_DWORD, ERROR_NETNAME_DELETED);
WINAPI_CONSTANT(F_DWORD, ERROR_NO_DATA);
WINAPI_CONSTANT(F_DWORD, ERROR_NO_SYSTEM_RESOURCES);
WINAPI_CONSTANT(F_DWORD, ERROR_OPERATION_ABORTED);
WINAPI_CONSTANT(F_DWORD, ERROR_PIPE_BUSY);
WINAPI_CONSTANT(F_DWORD, ERROR_PIPE_CONNECTED);
WINAPI_CONSTANT(F_DWORD, ERROR_SEM_TIMEOUT);
WINAPI_CONSTANT(F_DWORD, FILE_FLAG_FIRST_PIPE_INSTANCE);
WINAPI_CONSTANT(F_DWORD, FILE_FLAG_OVERLAPPED);
WINAPI_CONSTANT(F_DWORD, FILE_GENERIC_READ);
WINAPI_CONSTANT(F_DWORD, FILE_GENERIC_WRITE);
WINAPI_CONSTANT(F_DWORD, GENERIC_READ);
WINAPI_CONSTANT(F_DWORD, GENERIC_WRITE);
WINAPI_CONSTANT(F_DWORD, INFINITE);
WINAPI_CONSTANT(F_DWORD, NMPWAIT_WAIT_FOREVER);
WINAPI_CONSTANT(F_DWORD, OPEN_EXISTING);
WINAPI_CONSTANT(F_DWORD, PIPE_ACCESS_DUPLEX);
WINAPI_CONSTANT(F_DWORD, PIPE_ACCESS_INBOUND);
WINAPI_CONSTANT(F_DWORD, PIPE_READMODE_MESSAGE);
WINAPI_CONSTANT(F_DWORD, PIPE_TYPE_MESSAGE);
WINAPI_CONSTANT(F_DWORD, PIPE_UNLIMITED_INSTANCES);
WINAPI_CONSTANT(F_DWORD, PIPE_WAIT);
WINAPI_CONSTANT(F_DWORD, PROCESS_ALL_ACCESS);
WINAPI_CONSTANT(F_DWORD, PROCESS_DUP_HANDLE);
WINAPI_CONSTANT(F_DWORD, STARTF_USESHOWWINDOW);
WINAPI_CONSTANT(F_DWORD, STARTF_USESTDHANDLES);
WINAPI_CONSTANT(F_DWORD, STD_INPUT_HANDLE);
WINAPI_CONSTANT(F_DWORD, STD_OUTPUT_HANDLE);
WINAPI_CONSTANT(F_DWORD, STD_ERROR_HANDLE);
WINAPI_CONSTANT(F_DWORD, STILL_ACTIVE);
WINAPI_CONSTANT(F_DWORD, SW_HIDE);
WINAPI_CONSTANT(F_DWORD, WAIT_OBJECT_0);
WINAPI_CONSTANT(F_DWORD, WAIT_ABANDONED_0);
WINAPI_CONSTANT(F_DWORD, WAIT_TIMEOUT);
WINAPI_CONSTANT("i", NULL);
return m;
}
| 49,295 | 1,581 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/audioop.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "dsp/core/core.h"
#include "libc/math.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("audioop");
PYTHON_PROVIDE("audioop.add");
PYTHON_PROVIDE("audioop.adpcm2lin");
PYTHON_PROVIDE("audioop.alaw2lin");
PYTHON_PROVIDE("audioop.avg");
PYTHON_PROVIDE("audioop.avgpp");
PYTHON_PROVIDE("audioop.bias");
PYTHON_PROVIDE("audioop.byteswap");
PYTHON_PROVIDE("audioop.cross");
PYTHON_PROVIDE("audioop.error");
PYTHON_PROVIDE("audioop.findfactor");
PYTHON_PROVIDE("audioop.findfit");
PYTHON_PROVIDE("audioop.findmax");
PYTHON_PROVIDE("audioop.getsample");
PYTHON_PROVIDE("audioop.lin2adpcm");
PYTHON_PROVIDE("audioop.lin2alaw");
PYTHON_PROVIDE("audioop.lin2lin");
PYTHON_PROVIDE("audioop.lin2ulaw");
PYTHON_PROVIDE("audioop.max");
PYTHON_PROVIDE("audioop.maxpp");
PYTHON_PROVIDE("audioop.minmax");
PYTHON_PROVIDE("audioop.mul");
PYTHON_PROVIDE("audioop.ratecv");
PYTHON_PROVIDE("audioop.reverse");
PYTHON_PROVIDE("audioop.rms");
PYTHON_PROVIDE("audioop.tomono");
PYTHON_PROVIDE("audioop.tostereo");
PYTHON_PROVIDE("audioop.ulaw2lin");
/* audioopmodule - Module to detect peak values in arrays */
#if defined(__CHAR_UNSIGNED__)
#if defined(signed)
/* This module currently does not work on systems where only unsigned
characters are available. Take it out of Setup. Sorry. */
#endif
#endif
static const int maxvals[] = {0, 0x7F, 0x7FFF, 0x7FFFFF, 0x7FFFFFFF};
/* -1 trick is needed on Windows to support -0x80000000 without a warning */
static const int minvals[] = {0, -0x80, -0x8000, -0x800000, -0x7FFFFFFF-1};
static const unsigned int masks[] = {0, 0xFF, 0xFFFF, 0xFFFFFF, 0xFFFFFFFF};
static int
fbound(double val, double minval, double maxval)
{
if (val > maxval) {
val = maxval;
}
else if (val < minval + 1.0) {
val = minval;
}
/* Round towards minus infinity (-inf) */
val = floor(val);
/* Cast double to integer: round towards zero */
return (int)val;
}
/* Intel ADPCM step variation table */
static const int indexTable[16] = {
-1, -1, -1, -1, 2, 4, 6, 8,
-1, -1, -1, -1, 2, 4, 6, 8,
};
static const int stepsizeTable[89] = {
7, 8, 9, 10, 11, 12, 13, 14, 16, 17,
19, 21, 23, 25, 28, 31, 34, 37, 41, 45,
50, 55, 60, 66, 73, 80, 88, 97, 107, 118,
130, 143, 157, 173, 190, 209, 230, 253, 279, 307,
337, 371, 408, 449, 494, 544, 598, 658, 724, 796,
876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066,
2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358,
5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899,
15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767
};
#define GETINTX(T, cp, i) (*(T *)((unsigned char *)(cp) + (i)))
#define SETINTX(T, cp, i, val) do { \
*(T *)((unsigned char *)(cp) + (i)) = (T)(val); \
} while (0)
#define GETINT8(cp, i) GETINTX(signed char, (cp), (i))
#define GETINT16(cp, i) GETINTX(int16_t, (cp), (i))
#define GETINT32(cp, i) GETINTX(int32_t, (cp), (i))
#if WORDS_BIGENDIAN
#define GETINT24(cp, i) ( \
((unsigned char *)(cp) + (i))[2] + \
(((unsigned char *)(cp) + (i))[1] << 8) + \
(((signed char *)(cp) + (i))[0] << 16) )
#else
#define GETINT24(cp, i) ( \
((unsigned char *)(cp) + (i))[0] + \
(((unsigned char *)(cp) + (i))[1] << 8) + \
(((signed char *)(cp) + (i))[2] << 16) )
#endif
#define SETINT8(cp, i, val) SETINTX(signed char, (cp), (i), (val))
#define SETINT16(cp, i, val) SETINTX(int16_t, (cp), (i), (val))
#define SETINT32(cp, i, val) SETINTX(int32_t, (cp), (i), (val))
#if WORDS_BIGENDIAN
#define SETINT24(cp, i, val) do { \
((unsigned char *)(cp) + (i))[2] = (int)(val); \
((unsigned char *)(cp) + (i))[1] = (int)(val) >> 8; \
((signed char *)(cp) + (i))[0] = (int)(val) >> 16; \
} while (0)
#else
#define SETINT24(cp, i, val) do { \
((unsigned char *)(cp) + (i))[0] = (int)(val); \
((unsigned char *)(cp) + (i))[1] = (int)(val) >> 8; \
((signed char *)(cp) + (i))[2] = (int)(val) >> 16; \
} while (0)
#endif
#define GETRAWSAMPLE(size, cp, i) ( \
(size == 1) ? (int)GETINT8((cp), (i)) : \
(size == 2) ? (int)GETINT16((cp), (i)) : \
(size == 3) ? (int)GETINT24((cp), (i)) : \
(int)GETINT32((cp), (i)))
#define SETRAWSAMPLE(size, cp, i, val) do { \
if (size == 1) \
SETINT8((cp), (i), (val)); \
else if (size == 2) \
SETINT16((cp), (i), (val)); \
else if (size == 3) \
SETINT24((cp), (i), (val)); \
else \
SETINT32((cp), (i), (val)); \
} while(0)
#define GETSAMPLE32(size, cp, i) ( \
(size == 1) ? (int)GETINT8((cp), (i)) << 24 : \
(size == 2) ? (int)GETINT16((cp), (i)) << 16 : \
(size == 3) ? (int)GETINT24((cp), (i)) << 8 : \
(int)GETINT32((cp), (i)))
#define SETSAMPLE32(size, cp, i, val) do { \
if (size == 1) \
SETINT8((cp), (i), (val) >> 24); \
else if (size == 2) \
SETINT16((cp), (i), (val) >> 16); \
else if (size == 3) \
SETINT24((cp), (i), (val) >> 8); \
else \
SETINT32((cp), (i), (val)); \
} while(0)
static PyObject *AudioopError;
static int
audioop_check_size(int size)
{
if (size < 1 || size > 4) {
PyErr_SetString(AudioopError, "Size should be 1, 2, 3 or 4");
return 0;
}
return 1;
}
static int
audioop_check_parameters(Py_ssize_t len, int size)
{
if (!audioop_check_size(size))
return 0;
if (len % size != 0) {
PyErr_SetString(AudioopError, "not a whole number of frames");
return 0;
}
return 1;
}
/*[clinic input]
module audioop
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=8fa8f6611be3591a]*/
/*[clinic input]
audioop.getsample
fragment: Py_buffer
width: int
index: Py_ssize_t
/
Return the value of sample index from the fragment.
[clinic start generated code]*/
static PyObject *
audioop_getsample_impl(PyObject *module, Py_buffer *fragment, int width,
Py_ssize_t index)
/*[clinic end generated code: output=8fe1b1775134f39a input=88edbe2871393549]*/
{
int val;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
if (index < 0 || index >= fragment->len/width) {
PyErr_SetString(AudioopError, "Index out of range");
return NULL;
}
val = GETRAWSAMPLE(width, fragment->buf, index*width);
return PyLong_FromLong(val);
}
/*[clinic input]
audioop.max
fragment: Py_buffer
width: int
/
Return the maximum of the absolute value of all samples in a fragment.
[clinic start generated code]*/
static PyObject *
audioop_max_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=e6c5952714f1c3f0 input=32bea5ea0ac8c223]*/
{
Py_ssize_t i;
unsigned int absval, max = 0;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
for (i = 0; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i);
/* Cast to unsigned before negating. Unsigned overflow is well-
defined, but signed overflow is not. */
if (val < 0) absval = (unsigned int)-(int64_t)val;
else absval = val;
if (absval > max) max = absval;
}
return PyLong_FromUnsignedLong(max);
}
/*[clinic input]
audioop.minmax
fragment: Py_buffer
width: int
/
Return the minimum and maximum values of all samples in the sound fragment.
[clinic start generated code]*/
static PyObject *
audioop_minmax_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=473fda66b15c836e input=89848e9b927a0696]*/
{
Py_ssize_t i;
/* -1 trick below is needed on Windows to support -0x80000000 without
a warning */
int min = 0x7fffffff, max = -0x7FFFFFFF-1;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
for (i = 0; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i);
if (val > max) max = val;
if (val < min) min = val;
}
return Py_BuildValue("(ii)", min, max);
}
/*[clinic input]
audioop.avg
fragment: Py_buffer
width: int
/
Return the average over all samples in the fragment.
[clinic start generated code]*/
static PyObject *
audioop_avg_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=4410a4c12c3586e6 input=1114493c7611334d]*/
{
Py_ssize_t i;
int avg;
double sum = 0.0;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
for (i = 0; i < fragment->len; i += width)
sum += GETRAWSAMPLE(width, fragment->buf, i);
if (fragment->len == 0)
avg = 0;
else
avg = (int)floor(sum / (double)(fragment->len/width));
return PyLong_FromLong(avg);
}
/*[clinic input]
audioop.rms
fragment: Py_buffer
width: int
/
Return the root-mean-square of the fragment, i.e. sqrt(sum(S_i^2)/n).
[clinic start generated code]*/
static PyObject *
audioop_rms_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=1e7871c826445698 input=4cc57c6c94219d78]*/
{
Py_ssize_t i;
unsigned int res;
double sum_squares = 0.0;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
for (i = 0; i < fragment->len; i += width) {
double val = GETRAWSAMPLE(width, fragment->buf, i);
sum_squares += val*val;
}
if (fragment->len == 0)
res = 0;
else
res = (unsigned int)sqrt(sum_squares / (double)(fragment->len/width));
return PyLong_FromUnsignedLong(res);
}
static double _sum2(const int16_t *a, const int16_t *b, Py_ssize_t len)
{
Py_ssize_t i;
double sum = 0.0;
for( i=0; i<len; i++) {
sum = sum + (double)a[i]*(double)b[i];
}
return sum;
}
/*
** Findfit tries to locate a sample within another sample. Its main use
** is in echo-cancellation (to find the feedback of the output signal in
** the input signal).
** The method used is as follows:
**
** let R be the reference signal (length n) and A the input signal (length N)
** with N > n, and let all sums be over i from 0 to n-1.
**
** Now, for each j in {0..N-n} we compute a factor fj so that -fj*R matches A
** as good as possible, i.e. sum( (A[j+i]+fj*R[i])^2 ) is minimal. This
** equation gives fj = sum( A[j+i]R[i] ) / sum(R[i]^2).
**
** Next, we compute the relative distance between the original signal and
** the modified signal and minimize that over j:
** vj = sum( (A[j+i]-fj*R[i])^2 ) / sum( A[j+i]^2 ) =>
** vj = ( sum(A[j+i]^2)*sum(R[i]^2) - sum(A[j+i]R[i])^2 ) / sum( A[j+i]^2 )
**
** In the code variables correspond as follows:
** cp1 A
** cp2 R
** len1 N
** len2 n
** aj_m1 A[j-1]
** aj_lm1 A[j+n-1]
** sum_ri_2 sum(R[i]^2)
** sum_aij_2 sum(A[i+j]^2)
** sum_aij_ri sum(A[i+j]R[i])
**
** sum_ri is calculated once, sum_aij_2 is updated each step and sum_aij_ri
** is completely recalculated each step.
*/
/*[clinic input]
audioop.findfit
fragment: Py_buffer
reference: Py_buffer
/
Try to match reference as well as possible to a portion of fragment.
[clinic start generated code]*/
static PyObject *
audioop_findfit_impl(PyObject *module, Py_buffer *fragment,
Py_buffer *reference)
/*[clinic end generated code: output=5752306d83cbbada input=62c305605e183c9a]*/
{
const int16_t *cp1, *cp2;
Py_ssize_t len1, len2;
Py_ssize_t j, best_j;
double aj_m1, aj_lm1;
double sum_ri_2, sum_aij_2, sum_aij_ri, result, best_result, factor;
if (fragment->len & 1 || reference->len & 1) {
PyErr_SetString(AudioopError, "Strings should be even-sized");
return NULL;
}
cp1 = (const int16_t *)fragment->buf;
len1 = fragment->len >> 1;
cp2 = (const int16_t *)reference->buf;
len2 = reference->len >> 1;
if (len1 < len2) {
PyErr_SetString(AudioopError, "First sample should be longer");
return NULL;
}
sum_ri_2 = _sum2(cp2, cp2, len2);
sum_aij_2 = _sum2(cp1, cp1, len2);
sum_aij_ri = _sum2(cp1, cp2, len2);
result = (sum_ri_2*sum_aij_2 - sum_aij_ri*sum_aij_ri) / sum_aij_2;
best_result = result;
best_j = 0;
for ( j=1; j<=len1-len2; j++) {
aj_m1 = (double)cp1[j-1];
aj_lm1 = (double)cp1[j+len2-1];
sum_aij_2 = sum_aij_2 + aj_lm1*aj_lm1 - aj_m1*aj_m1;
sum_aij_ri = _sum2(cp1+j, cp2, len2);
result = (sum_ri_2*sum_aij_2 - sum_aij_ri*sum_aij_ri)
/ sum_aij_2;
if ( result < best_result ) {
best_result = result;
best_j = j;
}
}
factor = _sum2(cp1+best_j, cp2, len2) / sum_ri_2;
return Py_BuildValue("(nf)", best_j, factor);
}
/*
** findfactor finds a factor f so that the energy in A-fB is minimal.
** See the comment for findfit for details.
*/
/*[clinic input]
audioop.findfactor
fragment: Py_buffer
reference: Py_buffer
/
Return a factor F such that rms(add(fragment, mul(reference, -F))) is minimal.
[clinic start generated code]*/
static PyObject *
audioop_findfactor_impl(PyObject *module, Py_buffer *fragment,
Py_buffer *reference)
/*[clinic end generated code: output=14ea95652c1afcf8 input=816680301d012b21]*/
{
const int16_t *cp1, *cp2;
Py_ssize_t len;
double sum_ri_2, sum_aij_ri, result;
if (fragment->len & 1 || reference->len & 1) {
PyErr_SetString(AudioopError, "Strings should be even-sized");
return NULL;
}
if (fragment->len != reference->len) {
PyErr_SetString(AudioopError, "Samples should be same size");
return NULL;
}
cp1 = (const int16_t *)fragment->buf;
cp2 = (const int16_t *)reference->buf;
len = fragment->len >> 1;
sum_ri_2 = _sum2(cp2, cp2, len);
sum_aij_ri = _sum2(cp1, cp2, len);
result = sum_aij_ri / sum_ri_2;
return PyFloat_FromDouble(result);
}
/*
** findmax returns the index of the n-sized segment of the input sample
** that contains the most energy.
*/
/*[clinic input]
audioop.findmax
fragment: Py_buffer
length: Py_ssize_t
/
Search fragment for a slice of specified number of samples with maximum energy.
[clinic start generated code]*/
static PyObject *
audioop_findmax_impl(PyObject *module, Py_buffer *fragment,
Py_ssize_t length)
/*[clinic end generated code: output=f008128233523040 input=2f304801ed42383c]*/
{
const int16_t *cp1;
Py_ssize_t len1;
Py_ssize_t j, best_j;
double aj_m1, aj_lm1;
double result, best_result;
if (fragment->len & 1) {
PyErr_SetString(AudioopError, "Strings should be even-sized");
return NULL;
}
cp1 = (const int16_t *)fragment->buf;
len1 = fragment->len >> 1;
if (length < 0 || len1 < length) {
PyErr_SetString(AudioopError, "Input sample should be longer");
return NULL;
}
result = _sum2(cp1, cp1, length);
best_result = result;
best_j = 0;
for ( j=1; j<=len1-length; j++) {
aj_m1 = (double)cp1[j-1];
aj_lm1 = (double)cp1[j+length-1];
result = result + aj_lm1*aj_lm1 - aj_m1*aj_m1;
if ( result > best_result ) {
best_result = result;
best_j = j;
}
}
return PyLong_FromSsize_t(best_j);
}
/*[clinic input]
audioop.avgpp
fragment: Py_buffer
width: int
/
Return the average peak-peak value over all samples in the fragment.
[clinic start generated code]*/
static PyObject *
audioop_avgpp_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=269596b0d5ae0b2b input=0b3cceeae420a7d9]*/
{
Py_ssize_t i;
int prevval, prevextremevalid = 0, prevextreme = 0;
double sum = 0.0;
unsigned int avg;
int diff, prevdiff, nextreme = 0;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
if (fragment->len <= width)
return PyLong_FromLong(0);
prevval = GETRAWSAMPLE(width, fragment->buf, 0);
prevdiff = 17; /* Anything != 0, 1 */
for (i = width; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i);
if (val != prevval) {
diff = val < prevval;
if (prevdiff == !diff) {
/* Derivative changed sign. Compute difference to last
** extreme value and remember.
*/
if (prevextremevalid) {
if (prevval < prevextreme)
sum += (double)((unsigned int)prevextreme -
(unsigned int)prevval);
else
sum += (double)((unsigned int)prevval -
(unsigned int)prevextreme);
nextreme++;
}
prevextremevalid = 1;
prevextreme = prevval;
}
prevval = val;
prevdiff = diff;
}
}
if ( nextreme == 0 )
avg = 0;
else
avg = (unsigned int)(sum / (double)nextreme);
return PyLong_FromUnsignedLong(avg);
}
/*[clinic input]
audioop.maxpp
fragment: Py_buffer
width: int
/
Return the maximum peak-peak value in the sound fragment.
[clinic start generated code]*/
static PyObject *
audioop_maxpp_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=5b918ed5dbbdb978 input=671a13e1518f80a1]*/
{
Py_ssize_t i;
int prevval, prevextremevalid = 0, prevextreme = 0;
unsigned int max = 0, extremediff;
int diff, prevdiff;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
if (fragment->len <= width)
return PyLong_FromLong(0);
prevval = GETRAWSAMPLE(width, fragment->buf, 0);
prevdiff = 17; /* Anything != 0, 1 */
for (i = width; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i);
if (val != prevval) {
diff = val < prevval;
if (prevdiff == !diff) {
/* Derivative changed sign. Compute difference to
** last extreme value and remember.
*/
if (prevextremevalid) {
if (prevval < prevextreme)
extremediff = (unsigned int)prevextreme -
(unsigned int)prevval;
else
extremediff = (unsigned int)prevval -
(unsigned int)prevextreme;
if ( extremediff > max )
max = extremediff;
}
prevextremevalid = 1;
prevextreme = prevval;
}
prevval = val;
prevdiff = diff;
}
}
return PyLong_FromUnsignedLong(max);
}
/*[clinic input]
audioop.cross
fragment: Py_buffer
width: int
/
Return the number of zero crossings in the fragment passed as an argument.
[clinic start generated code]*/
static PyObject *
audioop_cross_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=5938dcdd74a1f431 input=b1b3f15b83f6b41a]*/
{
Py_ssize_t i;
int prevval;
Py_ssize_t ncross;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
ncross = -1;
prevval = 17; /* Anything <> 0,1 */
for (i = 0; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i) < 0;
if (val != prevval) ncross++;
prevval = val;
}
return PyLong_FromSsize_t(ncross);
}
/*[clinic input]
audioop.mul
fragment: Py_buffer
width: int
factor: double
/
Return a fragment that has all samples in the original fragment multiplied by the floating-point value factor.
[clinic start generated code]*/
static PyObject *
audioop_mul_impl(PyObject *module, Py_buffer *fragment, int width,
double factor)
/*[clinic end generated code: output=6cd48fe796da0ea4 input=c726667baa157d3c]*/
{
signed char *ncp;
Py_ssize_t i;
double maxval, minval;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
maxval = (double) maxvals[width];
minval = (double) minvals[width];
rv = PyBytes_FromStringAndSize(NULL, fragment->len);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
double val = GETRAWSAMPLE(width, fragment->buf, i);
int ival = fbound(val * factor, minval, maxval);
SETRAWSAMPLE(width, ncp, i, ival);
}
return rv;
}
/*[clinic input]
audioop.tomono
fragment: Py_buffer
width: int
lfactor: double
rfactor: double
/
Convert a stereo fragment to a mono fragment.
[clinic start generated code]*/
static PyObject *
audioop_tomono_impl(PyObject *module, Py_buffer *fragment, int width,
double lfactor, double rfactor)
/*[clinic end generated code: output=235c8277216d4e4e input=c4ec949b3f4dddfa]*/
{
signed char *cp, *ncp;
Py_ssize_t len, i;
double maxval, minval;
PyObject *rv;
cp = fragment->buf;
len = fragment->len;
if (!audioop_check_parameters(len, width))
return NULL;
if (((len / width) & 1) != 0) {
PyErr_SetString(AudioopError, "not a whole number of frames");
return NULL;
}
maxval = (double) maxvals[width];
minval = (double) minvals[width];
rv = PyBytes_FromStringAndSize(NULL, len/2);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
for (i = 0; i < len; i += width*2) {
double val1 = GETRAWSAMPLE(width, cp, i);
double val2 = GETRAWSAMPLE(width, cp, i + width);
double val = val1 * lfactor + val2 * rfactor;
int ival = fbound(val, minval, maxval);
SETRAWSAMPLE(width, ncp, i/2, ival);
}
return rv;
}
/*[clinic input]
audioop.tostereo
fragment: Py_buffer
width: int
lfactor: double
rfactor: double
/
Generate a stereo fragment from a mono fragment.
[clinic start generated code]*/
static PyObject *
audioop_tostereo_impl(PyObject *module, Py_buffer *fragment, int width,
double lfactor, double rfactor)
/*[clinic end generated code: output=046f13defa5f1595 input=27b6395ebfdff37a]*/
{
signed char *ncp;
Py_ssize_t i;
double maxval, minval;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
maxval = (double) maxvals[width];
minval = (double) minvals[width];
if (fragment->len > PY_SSIZE_T_MAX/2) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
rv = PyBytes_FromStringAndSize(NULL, fragment->len*2);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
double val = GETRAWSAMPLE(width, fragment->buf, i);
int val1 = fbound(val * lfactor, minval, maxval);
int val2 = fbound(val * rfactor, minval, maxval);
SETRAWSAMPLE(width, ncp, i*2, val1);
SETRAWSAMPLE(width, ncp, i*2 + width, val2);
}
return rv;
}
/*[clinic input]
audioop.add
fragment1: Py_buffer
fragment2: Py_buffer
width: int
/
Return a fragment which is the addition of the two samples passed as parameters.
[clinic start generated code]*/
static PyObject *
audioop_add_impl(PyObject *module, Py_buffer *fragment1,
Py_buffer *fragment2, int width)
/*[clinic end generated code: output=60140af4d1aab6f2 input=4a8d4bae4c1605c7]*/
{
signed char *ncp;
Py_ssize_t i;
int minval, maxval, newval;
PyObject *rv;
if (!audioop_check_parameters(fragment1->len, width))
return NULL;
if (fragment1->len != fragment2->len) {
PyErr_SetString(AudioopError, "Lengths should be the same");
return NULL;
}
maxval = maxvals[width];
minval = minvals[width];
rv = PyBytes_FromStringAndSize(NULL, fragment1->len);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
i = 0;
#if defined(__GNUC__) && defined(__SSE2__)
/* [jart] make audio mixing 20x faster */
if (width == 2) {
for (; i + 16 <= fragment1->len; i += 16) {
asm("movups\t%1,%%xmm0\n\t"
"movups\t%2,%%xmm1\n\t"
"paddsw\t%%xmm1,%%xmm0\n\t"
"movups\t%%xmm0,%0"
: "=m"(*(char(*)[16])(ncp + i))
: "m"(*(char(*)[16])((char *)fragment1->buf + i)),
"m"(*(char(*)[16])((char *)fragment2->buf + i))
: "xmm0", "xmm1");
}
} else if (width == 1) {
for (; i + 16 <= fragment1->len; i += 16) {
asm("movups\t%1,%%xmm0\n\t"
"movups\t%2,%%xmm1\n\t"
"paddsb\t%%xmm1,%%xmm0\n\t"
"movups\t%%xmm0,%0"
: "=m"(*(char(*)[16])(ncp + i))
: "m"(*(char(*)[16])((char *)fragment1->buf + i)),
"m"(*(char(*)[16])((char *)fragment2->buf + i))
: "xmm0", "xmm1");
}
}
#endif
for (; i < fragment1->len; i += width) {
int val1 = GETRAWSAMPLE(width, fragment1->buf, i);
int val2 = GETRAWSAMPLE(width, fragment2->buf, i);
if (width < 4) {
newval = val1 + val2;
/* truncate in case of overflow */
if (newval > maxval)
newval = maxval;
else if (newval < minval)
newval = minval;
}
else {
double fval = (double)val1 + (double)val2;
/* truncate in case of overflow */
newval = fbound(fval, minval, maxval);
}
SETRAWSAMPLE(width, ncp, i, newval);
}
return rv;
}
/*[clinic input]
audioop.bias
fragment: Py_buffer
width: int
bias: int
/
Return a fragment that is the original fragment with a bias added to each sample.
[clinic start generated code]*/
static PyObject *
audioop_bias_impl(PyObject *module, Py_buffer *fragment, int width, int bias)
/*[clinic end generated code: output=6e0aa8f68f045093 input=2b5cce5c3bb4838c]*/
{
signed char *ncp;
Py_ssize_t i;
unsigned int val = 0, mask;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
rv = PyBytes_FromStringAndSize(NULL, fragment->len);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
mask = masks[width];
for (i = 0; i < fragment->len; i += width) {
if (width == 1)
val = GETINTX(unsigned char, fragment->buf, i);
else if (width == 2)
val = GETINTX(uint16_t, fragment->buf, i);
else if (width == 3)
val = ((unsigned int)GETINT24(fragment->buf, i)) & 0xffffffu;
else {
assert(width == 4);
val = GETINTX(uint32_t, fragment->buf, i);
}
val += (unsigned int)bias;
/* wrap around in case of overflow */
val &= mask;
if (width == 1)
SETINTX(unsigned char, ncp, i, val);
else if (width == 2)
SETINTX(uint16_t, ncp, i, val);
else if (width == 3)
SETINT24(ncp, i, (int)val);
else {
assert(width == 4);
SETINTX(uint32_t, ncp, i, val);
}
}
return rv;
}
/*[clinic input]
audioop.reverse
fragment: Py_buffer
width: int
/
Reverse the samples in a fragment and returns the modified fragment.
[clinic start generated code]*/
static PyObject *
audioop_reverse_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=b44135698418da14 input=668f890cf9f9d225]*/
{
unsigned char *ncp;
Py_ssize_t i;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
rv = PyBytes_FromStringAndSize(NULL, fragment->len);
if (rv == NULL)
return NULL;
ncp = (unsigned char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
int val = GETRAWSAMPLE(width, fragment->buf, i);
SETRAWSAMPLE(width, ncp, fragment->len - i - width, val);
}
return rv;
}
/*[clinic input]
audioop.byteswap
fragment: Py_buffer
width: int
/
Convert big-endian samples to little-endian and vice versa.
[clinic start generated code]*/
static PyObject *
audioop_byteswap_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=50838a9e4b87cd4d input=fae7611ceffa5c82]*/
{
int j;
Py_ssize_t i;
PyObject *rv;
unsigned char *ncp;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
rv = PyBytes_FromStringAndSize(NULL, fragment->len);
if (rv == NULL)
return NULL;
ncp = (unsigned char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
for (j = 0; j < width; j++) {
ncp[i + width - 1 - j] = ((unsigned char *)fragment->buf)[i + j];
}
}
return rv;
}
/*[clinic input]
audioop.lin2lin
fragment: Py_buffer
width: int
newwidth: int
/
Convert samples between 1-, 2-, 3- and 4-byte formats.
[clinic start generated code]*/
static PyObject *
audioop_lin2lin_impl(PyObject *module, Py_buffer *fragment, int width,
int newwidth)
/*[clinic end generated code: output=17b14109248f1d99 input=5ce08c8aa2f24d96]*/
{
unsigned char *ncp;
Py_ssize_t i, j;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
if (!audioop_check_size(newwidth))
return NULL;
if (fragment->len/width > PY_SSIZE_T_MAX/newwidth) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
rv = PyBytes_FromStringAndSize(NULL, (fragment->len/width)*newwidth);
if (rv == NULL)
return NULL;
ncp = (unsigned char *)PyBytes_AsString(rv);
for (i = j = 0; i < fragment->len; i += width, j += newwidth) {
int val = GETSAMPLE32(width, fragment->buf, i);
SETSAMPLE32(newwidth, ncp, j, val);
}
return rv;
}
static int
gcd(int a, int b)
{
while (b > 0) {
int tmp = a % b;
a = b;
b = tmp;
}
return a;
}
/*[clinic input]
audioop.ratecv
fragment: Py_buffer
width: int
nchannels: int
inrate: int
outrate: int
state: object
weightA: int = 1
weightB: int = 0
/
Convert the frame rate of the input fragment.
[clinic start generated code]*/
static PyObject *
audioop_ratecv_impl(PyObject *module, Py_buffer *fragment, int width,
int nchannels, int inrate, int outrate, PyObject *state,
int weightA, int weightB)
/*[clinic end generated code: output=624038e843243139 input=aff3acdc94476191]*/
{
char *cp, *ncp;
Py_ssize_t len;
int chan, d, *prev_i, *cur_i, cur_o;
PyObject *samps, *str, *rv = NULL, *channel;
int bytes_per_frame;
if (!audioop_check_size(width))
return NULL;
if (nchannels < 1) {
PyErr_SetString(AudioopError, "# of channels should be >= 1");
return NULL;
}
if (width > INT_MAX / nchannels) {
/* This overflow test is rigorously correct because
both multiplicands are >= 1. Use the argument names
from the docs for the error msg. */
PyErr_SetString(PyExc_OverflowError,
"width * nchannels too big for a C int");
return NULL;
}
bytes_per_frame = width * nchannels;
if (weightA < 1 || weightB < 0) {
PyErr_SetString(AudioopError,
"weightA should be >= 1, weightB should be >= 0");
return NULL;
}
assert(fragment->len >= 0);
if (fragment->len % bytes_per_frame != 0) {
PyErr_SetString(AudioopError, "not a whole number of frames");
return NULL;
}
if (inrate <= 0 || outrate <= 0) {
PyErr_SetString(AudioopError, "sampling rate not > 0");
return NULL;
}
/* divide inrate and outrate by their greatest common divisor */
d = gcd(inrate, outrate);
inrate /= d;
outrate /= d;
/* divide weightA and weightB by their greatest common divisor */
d = gcd(weightA, weightB);
weightA /= d;
weightB /= d;
if ((size_t)nchannels > SIZE_MAX/sizeof(int)) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
prev_i = (int *) PyMem_Malloc(nchannels * sizeof(int));
cur_i = (int *) PyMem_Malloc(nchannels * sizeof(int));
if (prev_i == NULL || cur_i == NULL) {
(void) PyErr_NoMemory();
goto exit;
}
len = fragment->len / bytes_per_frame; /* # of frames */
if (state == Py_None) {
d = -outrate;
for (chan = 0; chan < nchannels; chan++)
prev_i[chan] = cur_i[chan] = 0;
}
else {
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state must be a tuple or None");
goto exit;
}
if (!PyArg_ParseTuple(state,
"iO!;audioop.ratecv: illegal state argument",
&d, &PyTuple_Type, &samps))
goto exit;
if (PyTuple_Size(samps) != nchannels) {
PyErr_SetString(AudioopError,
"illegal state argument");
goto exit;
}
for (chan = 0; chan < nchannels; chan++) {
channel = PyTuple_GetItem(samps, chan);
if (!PyTuple_Check(channel)) {
PyErr_SetString(PyExc_TypeError,
"ratecv(): illegal state argument");
goto exit;
}
if (!PyArg_ParseTuple(channel,
"ii:ratecv", &prev_i[chan],
&cur_i[chan]))
goto exit;
}
}
/* str <- Space for the output buffer. */
if (len == 0)
str = PyBytes_FromStringAndSize(NULL, 0);
else {
/* There are len input frames, so we need (mathematically)
ceiling(len*outrate/inrate) output frames, and each frame
requires bytes_per_frame bytes. Computing this
without spurious overflow is the challenge; we can
settle for a reasonable upper bound, though, in this
case ceiling(len/inrate) * outrate. */
/* compute ceiling(len/inrate) without overflow */
Py_ssize_t q = 1 + (len - 1) / inrate;
if (outrate > PY_SSIZE_T_MAX / q / bytes_per_frame)
str = NULL;
else
str = PyBytes_FromStringAndSize(NULL,
q * outrate * bytes_per_frame);
}
if (str == NULL) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
goto exit;
}
ncp = PyBytes_AsString(str);
cp = fragment->buf;
for (;;) {
while (d < 0) {
if (len == 0) {
samps = PyTuple_New(nchannels);
if (samps == NULL)
goto exit;
for (chan = 0; chan < nchannels; chan++)
PyTuple_SetItem(samps, chan,
Py_BuildValue("(ii)",
prev_i[chan],
cur_i[chan]));
if (PyErr_Occurred())
goto exit;
/* We have checked before that the length
* of the string fits into int. */
len = (Py_ssize_t)(ncp - PyBytes_AsString(str));
rv = PyBytes_FromStringAndSize
(PyBytes_AsString(str), len);
Py_DECREF(str);
str = rv;
if (str == NULL)
goto exit;
rv = Py_BuildValue("(O(iO))", str, d, samps);
Py_DECREF(samps);
Py_DECREF(str);
goto exit; /* return rv */
}
for (chan = 0; chan < nchannels; chan++) {
prev_i[chan] = cur_i[chan];
cur_i[chan] = GETSAMPLE32(width, cp, 0);
cp += width;
/* implements a simple digital filter */
cur_i[chan] = (int)(
((double)weightA * (double)cur_i[chan] +
(double)weightB * (double)prev_i[chan]) /
((double)weightA + (double)weightB));
}
len--;
d += outrate;
}
while (d >= 0) {
for (chan = 0; chan < nchannels; chan++) {
cur_o = (int)(((double)prev_i[chan] * (double)d +
(double)cur_i[chan] * (double)(outrate - d)) /
(double)outrate);
SETSAMPLE32(width, ncp, 0, cur_o);
ncp += width;
}
d -= inrate;
}
}
exit:
PyMem_Free(prev_i);
PyMem_Free(cur_i);
return rv;
}
/*[clinic input]
audioop.lin2ulaw
fragment: Py_buffer
width: int
/
Convert samples in the audio fragment to u-LAW encoding.
[clinic start generated code]*/
static PyObject *
audioop_lin2ulaw_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=14fb62b16fe8ea8e input=2450d1b870b6bac2]*/
{
unsigned char *ncp;
Py_ssize_t i;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
rv = PyBytes_FromStringAndSize(NULL, fragment->len/width);
if (rv == NULL)
return NULL;
ncp = (unsigned char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
int val = GETSAMPLE32(width, fragment->buf, i);
*ncp++ = mulaw(val >> 16);
/* [jart] 2x slower, bloated, and off by one 0.7% of the time */
/* *ncp++ = st_14linear2ulaw(val >> 18); */
}
return rv;
}
/*[clinic input]
audioop.ulaw2lin
fragment: Py_buffer
width: int
/
Convert sound fragments in u-LAW encoding to linearly encoded sound fragments.
[clinic start generated code]*/
static PyObject *
audioop_ulaw2lin_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=378356b047521ba2 input=45d53ddce5be7d06]*/
{
unsigned char *cp;
signed char *ncp;
Py_ssize_t i;
PyObject *rv;
if (!audioop_check_size(width))
return NULL;
if (fragment->len > PY_SSIZE_T_MAX/width) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
rv = PyBytes_FromStringAndSize(NULL, fragment->len*width);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
cp = fragment->buf;
for (i = 0; i < fragment->len*width; i += width) {
/*
* [jart] fixed left shift undefined behavior
*/
int val = (unsigned)unmulaw(*cp++) << 16;
SETSAMPLE32(width, ncp, i, val);
}
return rv;
}
/*[clinic input]
audioop.lin2alaw
fragment: Py_buffer
width: int
/
Convert samples in the audio fragment to a-LAW encoding.
[clinic start generated code]*/
static PyObject *
audioop_lin2alaw_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=d076f130121a82f0 input=ffb1ef8bb39da945]*/
{
unsigned char *ncp;
Py_ssize_t i;
PyObject *rv;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
rv = PyBytes_FromStringAndSize(NULL, fragment->len/width);
if (rv == NULL)
return NULL;
ncp = (unsigned char *)PyBytes_AsString(rv);
for (i = 0; i < fragment->len; i += width) {
int val = GETSAMPLE32(width, fragment->buf, i);
*ncp++ = alaw(val >> 16);
/* *ncp++ = st_linear2alaw(val >> 19); */
}
return rv;
}
/*[clinic input]
audioop.alaw2lin
fragment: Py_buffer
width: int
/
Convert sound fragments in a-LAW encoding to linearly encoded sound fragments.
[clinic start generated code]*/
static PyObject *
audioop_alaw2lin_impl(PyObject *module, Py_buffer *fragment, int width)
/*[clinic end generated code: output=85c365ec559df647 input=4140626046cd1772]*/
{
int val;
PyObject *rv;
Py_ssize_t i;
signed char *ncp;
unsigned char *cp;
if (!audioop_check_size(width))
return NULL;
if (fragment->len > PY_SSIZE_T_MAX/width) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
rv = PyBytes_FromStringAndSize(NULL, fragment->len*width);
if (rv == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(rv);
cp = fragment->buf;
for (i = 0; i < fragment->len*width; i += width) {
/*
* [jart] fixed undefined behavior
*/
val = (unsigned)unalaw(*cp++) << 16;
SETSAMPLE32(width, ncp, i, val);
}
return rv;
}
/*[clinic input]
audioop.lin2adpcm
fragment: Py_buffer
width: int
state: object
/
Convert samples to 4 bit Intel/DVI ADPCM encoding.
[clinic start generated code]*/
static PyObject *
audioop_lin2adpcm_impl(PyObject *module, Py_buffer *fragment, int width,
PyObject *state)
/*[clinic end generated code: output=cc19f159f16c6793 input=12919d549b90c90a]*/
{
signed char *ncp;
Py_ssize_t i;
int step, valpred, delta,
index, sign, vpdiff, diff;
PyObject *rv = NULL, *str;
int outputbuffer = 0, bufferstep;
if (!audioop_check_parameters(fragment->len, width))
return NULL;
/* Decode state, should have (value, step) */
if ( state == Py_None ) {
/* First time, it seems. Set defaults */
valpred = 0;
index = 0;
}
else if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state must be a tuple or None");
return NULL;
}
else if (!PyArg_ParseTuple(state, "ii", &valpred, &index)) {
return NULL;
}
else if (valpred >= 0x8000 || valpred < -0x8000 ||
(size_t)index >= Py_ARRAY_LENGTH(stepsizeTable)) {
PyErr_SetString(PyExc_ValueError, "bad state");
return NULL;
}
str = PyBytes_FromStringAndSize(NULL, fragment->len/(width*2));
if (str == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(str);
step = stepsizeTable[index];
bufferstep = 1;
for (i = 0; i < fragment->len; i += width) {
int val = GETSAMPLE32(width, fragment->buf, i) >> 16;
/* Step 1 - compute difference with previous value */
if (val < valpred) {
diff = valpred - val;
sign = 8;
}
else {
diff = val - valpred;
sign = 0;
}
/* Step 2 - Divide and clamp */
/* Note:
** This code *approximately* computes:
** delta = diff*4/step;
** vpdiff = (delta+0.5)*step/4;
** but in shift step bits are dropped. The net result of this
** is that even if you have fast mul/div hardware you cannot
** put it to good use since the fixup would be too expensive.
*/
delta = 0;
vpdiff = (step >> 3);
if ( diff >= step ) {
delta = 4;
diff -= step;
vpdiff += step;
}
step >>= 1;
if ( diff >= step ) {
delta |= 2;
diff -= step;
vpdiff += step;
}
step >>= 1;
if ( diff >= step ) {
delta |= 1;
vpdiff += step;
}
/* Step 3 - Update previous value */
if ( sign )
valpred -= vpdiff;
else
valpred += vpdiff;
/* Step 4 - Clamp previous value to 16 bits */
if ( valpred > 32767 )
valpred = 32767;
else if ( valpred < -32768 )
valpred = -32768;
/* Step 5 - Assemble value, update index and step values */
delta |= sign;
index += indexTable[delta];
if ( index < 0 ) index = 0;
if ( index > 88 ) index = 88;
step = stepsizeTable[index];
/* Step 6 - Output value */
if ( bufferstep ) {
outputbuffer = (delta << 4) & 0xf0;
} else {
*ncp++ = (delta & 0x0f) | outputbuffer;
}
bufferstep = !bufferstep;
}
rv = Py_BuildValue("(O(ii))", str, valpred, index);
Py_DECREF(str);
return rv;
}
/*[clinic input]
audioop.adpcm2lin
fragment: Py_buffer
width: int
state: object
/
Decode an Intel/DVI ADPCM coded fragment to a linear fragment.
[clinic start generated code]*/
static PyObject *
audioop_adpcm2lin_impl(PyObject *module, Py_buffer *fragment, int width,
PyObject *state)
/*[clinic end generated code: output=3440ea105acb3456 input=f5221144f5ca9ef0]*/
{
signed char *cp;
signed char *ncp;
Py_ssize_t i, outlen;
int valpred, step, delta, index, sign, vpdiff;
PyObject *rv, *str;
int inputbuffer = 0, bufferstep;
if (!audioop_check_size(width))
return NULL;
/* Decode state, should have (value, step) */
if ( state == Py_None ) {
/* First time, it seems. Set defaults */
valpred = 0;
index = 0;
}
else if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state must be a tuple or None");
return NULL;
}
else if (!PyArg_ParseTuple(state, "ii", &valpred, &index)) {
return NULL;
}
else if (valpred >= 0x8000 || valpred < -0x8000 ||
(size_t)index >= Py_ARRAY_LENGTH(stepsizeTable)) {
PyErr_SetString(PyExc_ValueError, "bad state");
return NULL;
}
if (fragment->len > (PY_SSIZE_T_MAX/2)/width) {
PyErr_SetString(PyExc_MemoryError,
"not enough memory for output buffer");
return NULL;
}
outlen = fragment->len*width*2;
str = PyBytes_FromStringAndSize(NULL, outlen);
if (str == NULL)
return NULL;
ncp = (signed char *)PyBytes_AsString(str);
cp = fragment->buf;
step = stepsizeTable[index];
bufferstep = 0;
for (i = 0; i < outlen; i += width) {
/* Step 1 - get the delta value and compute next index */
if ( bufferstep ) {
delta = inputbuffer & 0xf;
} else {
inputbuffer = *cp++;
delta = (inputbuffer >> 4) & 0xf;
}
bufferstep = !bufferstep;
/* Step 2 - Find new index value (for later) */
index += indexTable[delta];
if ( index < 0 ) index = 0;
if ( index > 88 ) index = 88;
/* Step 3 - Separate sign and magnitude */
sign = delta & 8;
delta = delta & 7;
/* Step 4 - Compute difference and new predicted value */
/*
** Computes 'vpdiff = (delta+0.5)*step/4', but see comment
** in adpcm_coder.
*/
vpdiff = step >> 3;
if ( delta & 4 ) vpdiff += step;
if ( delta & 2 ) vpdiff += step>>1;
if ( delta & 1 ) vpdiff += step>>2;
if ( sign )
valpred -= vpdiff;
else
valpred += vpdiff;
/* Step 5 - clamp output value */
if ( valpred > 32767 )
valpred = 32767;
else if ( valpred < -32768 )
valpred = -32768;
/* Step 6 - Update step value */
step = stepsizeTable[index];
/* Step 6 - Output value */
SETSAMPLE32(width, ncp, i, valpred << 16);
}
rv = Py_BuildValue("(O(ii))", str, valpred, index);
Py_DECREF(str);
return rv;
}
#include "third_party/python/Modules/clinic/audioop.inc"
static PyMethodDef audioop_methods[] = {
AUDIOOP_MAX_METHODDEF
AUDIOOP_MINMAX_METHODDEF
AUDIOOP_AVG_METHODDEF
AUDIOOP_MAXPP_METHODDEF
AUDIOOP_AVGPP_METHODDEF
AUDIOOP_RMS_METHODDEF
AUDIOOP_FINDFIT_METHODDEF
AUDIOOP_FINDMAX_METHODDEF
AUDIOOP_FINDFACTOR_METHODDEF
AUDIOOP_CROSS_METHODDEF
AUDIOOP_MUL_METHODDEF
AUDIOOP_ADD_METHODDEF
AUDIOOP_BIAS_METHODDEF
AUDIOOP_ULAW2LIN_METHODDEF
AUDIOOP_LIN2ULAW_METHODDEF
AUDIOOP_ALAW2LIN_METHODDEF
AUDIOOP_LIN2ALAW_METHODDEF
AUDIOOP_LIN2LIN_METHODDEF
AUDIOOP_ADPCM2LIN_METHODDEF
AUDIOOP_LIN2ADPCM_METHODDEF
AUDIOOP_TOMONO_METHODDEF
AUDIOOP_TOSTEREO_METHODDEF
AUDIOOP_GETSAMPLE_METHODDEF
AUDIOOP_REVERSE_METHODDEF
AUDIOOP_BYTESWAP_METHODDEF
AUDIOOP_RATECV_METHODDEF
{ 0, 0 }
};
static struct PyModuleDef audioopmodule = {
PyModuleDef_HEAD_INIT,
"audioop",
NULL,
-1,
audioop_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_audioop(void)
{
PyObject *m, *d;
m = PyModule_Create(&audioopmodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
if (d == NULL)
return NULL;
AudioopError = PyErr_NewException("audioop.error", NULL, NULL);
if (AudioopError != NULL)
PyDict_SetItemString(d,"error",AudioopError);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_audioop = {
"audioop",
PyInit_audioop,
};
| 51,770 | 1,720 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_records.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const _PyUnicode_Record _PyUnicode_Records[] = {
{ 0, 0, 0, 0, 0, 0},
{ 13, 0, 15, 0, 5, 0},
{ 13, 0, 17, 0, 5, 0},
{ 13, 0, 16, 0, 5, 0},
{ 13, 0, 18, 0, 5, 0},
{ 10, 0, 18, 0, 3, 0},
{ 26, 0, 19, 0, 3, 0},
{ 26, 0, 11, 0, 3, 0},
{ 28, 0, 11, 0, 3, 0},
{ 22, 0, 19, 1, 3, 0},
{ 23, 0, 19, 1, 3, 0},
{ 27, 0, 10, 0, 3, 0},
{ 26, 0, 13, 0, 3, 0},
{ 21, 0, 10, 0, 3, 0},
{ 7, 0, 9, 0, 3, 0},
{ 27, 0, 19, 1, 3, 0},
{ 27, 0, 19, 0, 3, 0},
{ 1, 0, 1, 0, 3, 0},
{ 29, 0, 19, 0, 3, 0},
{ 20, 0, 19, 0, 3, 0},
{ 2, 0, 1, 0, 3, 0},
{ 10, 0, 13, 0, 5, 136},
{ 26, 0, 19, 0, 4, 0},
{ 28, 0, 11, 0, 4, 0},
{ 30, 0, 19, 0, 3, 0},
{ 29, 0, 19, 0, 4, 136},
{ 30, 0, 19, 0, 5, 0},
{ 19, 0, 1, 0, 4, 136},
{ 24, 0, 19, 1, 5, 0},
{ 14, 0, 15, 0, 4, 0},
{ 30, 0, 19, 0, 4, 0},
{ 29, 0, 19, 0, 3, 136},
{ 30, 0, 11, 0, 4, 0},
{ 27, 0, 11, 0, 4, 0},
{ 9, 0, 9, 0, 4, 136},
{ 2, 0, 1, 0, 5, 136},
{ 25, 0, 19, 1, 5, 0},
{ 9, 0, 19, 0, 4, 136},
{ 1, 0, 1, 0, 5, 10},
{ 1, 0, 1, 0, 4, 0},
{ 27, 0, 19, 0, 4, 0},
{ 2, 0, 1, 0, 4, 0},
{ 2, 0, 1, 0, 4, 10},
{ 2, 0, 1, 0, 5, 10},
{ 1, 0, 1, 0, 5, 0},
{ 1, 0, 1, 0, 4, 136},
{ 2, 0, 1, 0, 4, 136},
{ 2, 0, 1, 0, 5, 0},
{ 19, 0, 1, 0, 5, 0},
{ 1, 0, 1, 0, 5, 136},
{ 3, 0, 1, 0, 5, 136},
{ 18, 0, 1, 0, 5, 136},
{ 18, 0, 19, 0, 5, 0},
{ 18, 0, 1, 0, 5, 0},
{ 29, 0, 19, 0, 5, 0},
{ 29, 0, 19, 0, 4, 0},
{ 18, 0, 19, 0, 4, 0},
{ 18, 0, 1, 0, 4, 0},
{ 29, 0, 19, 0, 5, 136},
{ 4, 230, 14, 0, 4, 80},
{ 4, 230, 14, 0, 4, 0},
{ 4, 232, 14, 0, 4, 0},
{ 4, 220, 14, 0, 4, 0},
{ 4, 216, 14, 0, 4, 80},
{ 4, 202, 14, 0, 4, 0},
{ 4, 220, 14, 0, 4, 80},
{ 4, 202, 14, 0, 4, 80},
{ 4, 1, 14, 0, 4, 0},
{ 4, 1, 14, 0, 4, 80},
{ 4, 230, 14, 0, 4, 170},
{ 4, 240, 14, 0, 4, 80},
{ 4, 0, 14, 0, 4, 0},
{ 4, 233, 14, 0, 4, 0},
{ 4, 234, 14, 0, 4, 0},
{ 18, 0, 19, 0, 5, 170},
{ 26, 0, 19, 0, 5, 170},
{ 29, 0, 19, 0, 5, 138},
{ 1, 0, 1, 0, 5, 138},
{ 27, 0, 19, 0, 5, 0},
{ 1, 0, 1, 0, 4, 10},
{ 30, 0, 1, 0, 5, 0},
{ 4, 230, 14, 0, 5, 0},
{ 6, 0, 14, 0, 5, 0},
{ 26, 0, 1, 0, 5, 0},
{ 21, 0, 19, 0, 5, 0},
{ 28, 0, 11, 0, 5, 0},
{ 4, 220, 14, 0, 5, 0},
{ 4, 222, 14, 0, 5, 0},
{ 4, 228, 14, 0, 5, 0},
{ 4, 10, 14, 0, 5, 0},
{ 4, 11, 14, 0, 5, 0},
{ 4, 12, 14, 0, 5, 0},
{ 4, 13, 14, 0, 5, 0},
{ 4, 14, 14, 0, 5, 0},
{ 4, 15, 14, 0, 5, 0},
{ 4, 16, 14, 0, 5, 0},
{ 4, 17, 14, 0, 5, 0},
{ 4, 18, 14, 0, 5, 0},
{ 4, 19, 14, 0, 5, 0},
{ 4, 20, 14, 0, 5, 0},
{ 4, 21, 14, 0, 5, 0},
{ 4, 22, 14, 0, 5, 0},
{ 21, 0, 4, 0, 5, 0},
{ 4, 23, 14, 0, 5, 0},
{ 26, 0, 4, 0, 5, 0},
{ 4, 24, 14, 0, 5, 0},
{ 4, 25, 14, 0, 5, 0},
{ 19, 0, 4, 0, 5, 0},
{ 14, 0, 12, 0, 5, 0},
{ 27, 0, 5, 0, 5, 0},
{ 26, 0, 11, 0, 5, 0},
{ 28, 0, 5, 0, 5, 0},
{ 26, 0, 13, 0, 5, 0},
{ 26, 0, 5, 0, 5, 0},
{ 4, 30, 14, 0, 5, 0},
{ 4, 31, 14, 0, 5, 0},
{ 4, 32, 14, 0, 5, 0},
{ 14, 0, 5, 0, 5, 0},
{ 19, 0, 5, 0, 5, 0},
{ 19, 0, 5, 0, 5, 10},
{ 18, 0, 5, 0, 5, 0},
{ 4, 27, 14, 0, 5, 0},
{ 4, 28, 14, 0, 5, 0},
{ 4, 29, 14, 0, 5, 0},
{ 4, 33, 14, 0, 5, 0},
{ 4, 34, 14, 0, 5, 0},
{ 4, 230, 14, 0, 5, 80},
{ 4, 220, 14, 0, 5, 80},
{ 7, 0, 12, 0, 5, 0},
{ 26, 0, 12, 0, 5, 0},
{ 4, 35, 14, 0, 5, 0},
{ 19, 0, 5, 0, 5, 136},
{ 7, 0, 9, 0, 5, 0},
{ 30, 0, 5, 0, 5, 0},
{ 4, 36, 14, 0, 5, 0},
{ 4, 0, 14, 0, 5, 0},
{ 7, 0, 4, 0, 5, 0},
{ 18, 0, 4, 0, 5, 0},
{ 26, 0, 19, 0, 5, 0},
{ 28, 0, 4, 0, 5, 0},
{ 5, 0, 1, 0, 5, 0},
{ 19, 0, 1, 0, 5, 10},
{ 4, 7, 14, 0, 5, 80},
{ 4, 9, 14, 0, 5, 0},
{ 19, 0, 1, 0, 5, 170},
{ 7, 0, 1, 0, 5, 0},
{ 4, 7, 14, 0, 5, 0},
{ 5, 0, 1, 0, 5, 80},
{ 5, 0, 1, 0, 5, 10},
{ 9, 0, 1, 0, 5, 0},
{ 4, 0, 14, 0, 5, 80},
{ 4, 0, 14, 0, 5, 10},
{ 4, 84, 14, 0, 5, 0},
{ 4, 91, 14, 0, 5, 80},
{ 9, 0, 19, 0, 5, 0},
{ 4, 0, 1, 0, 5, 0},
{ 4, 9, 14, 0, 5, 80},
{ 19, 0, 1, 0, 5, 136},
{ 4, 103, 14, 0, 5, 0},
{ 4, 107, 14, 0, 5, 0},
{ 4, 118, 14, 0, 5, 0},
{ 4, 122, 14, 0, 5, 0},
{ 26, 0, 1, 0, 5, 136},
{ 4, 216, 14, 0, 5, 0},
{ 22, 0, 19, 1, 5, 0},
{ 23, 0, 19, 1, 5, 0},
{ 4, 129, 14, 0, 5, 0},
{ 4, 130, 14, 0, 5, 0},
{ 4, 0, 14, 0, 5, 170},
{ 4, 132, 14, 0, 5, 0},
{ 4, 0, 14, 0, 5, 136},
{ 19, 0, 1, 0, 2, 0},
{ 19, 0, 1, 0, 5, 80},
{ 10, 0, 18, 0, 5, 0},
{ 8, 0, 1, 0, 5, 0},
{ 14, 0, 15, 0, 5, 0},
{ 5, 9, 1, 0, 5, 0},
{ 4, 1, 14, 0, 5, 0},
{ 4, 234, 14, 0, 5, 0},
{ 4, 214, 14, 0, 5, 0},
{ 4, 202, 14, 0, 5, 0},
{ 4, 232, 14, 0, 5, 0},
{ 4, 233, 14, 0, 5, 0},
{ 2, 0, 1, 0, 5, 138},
{ 2, 0, 1, 0, 5, 170},
{ 3, 0, 1, 0, 5, 10},
{ 1, 0, 1, 0, 5, 170},
{ 29, 0, 19, 0, 5, 170},
{ 10, 0, 18, 0, 5, 170},
{ 10, 0, 18, 0, 5, 136},
{ 14, 0, 1, 0, 5, 0},
{ 14, 0, 4, 0, 5, 0},
{ 21, 0, 19, 0, 4, 0},
{ 21, 0, 19, 0, 5, 136},
{ 26, 0, 19, 0, 5, 136},
{ 24, 0, 19, 0, 4, 0},
{ 25, 0, 19, 0, 4, 0},
{ 22, 0, 19, 0, 5, 0},
{ 24, 0, 19, 0, 5, 0},
{ 26, 0, 19, 0, 4, 136},
{ 11, 0, 18, 0, 5, 0},
{ 12, 0, 16, 0, 5, 0},
{ 14, 0, 2, 0, 5, 0},
{ 14, 0, 6, 0, 5, 0},
{ 14, 0, 8, 0, 5, 0},
{ 14, 0, 3, 0, 5, 0},
{ 14, 0, 7, 0, 5, 0},
{ 26, 0, 11, 0, 4, 0},
{ 26, 0, 11, 0, 4, 136},
{ 26, 0, 11, 0, 5, 136},
{ 20, 0, 19, 0, 5, 0},
{ 27, 0, 13, 0, 5, 0},
{ 14, 0, 20, 0, 5, 0},
{ 14, 0, 21, 0, 5, 0},
{ 14, 0, 22, 0, 5, 0},
{ 14, 0, 23, 0, 5, 0},
{ 9, 0, 9, 0, 5, 136},
{ 27, 0, 10, 0, 5, 136},
{ 27, 0, 19, 0, 5, 136},
{ 22, 0, 19, 1, 5, 136},
{ 23, 0, 19, 1, 5, 136},
{ 18, 0, 1, 0, 4, 136},
{ 28, 0, 11, 0, 5, 136},
{ 28, 0, 11, 0, 1, 0},
{ 30, 0, 19, 0, 5, 136},
{ 30, 0, 19, 0, 4, 136},
{ 1, 0, 1, 0, 4, 170},
{ 30, 0, 11, 0, 5, 0},
{ 27, 0, 19, 1, 5, 136},
{ 9, 0, 19, 0, 5, 136},
{ 8, 0, 1, 0, 4, 136},
{ 8, 0, 1, 0, 5, 136},
{ 27, 0, 19, 0, 5, 10},
{ 30, 0, 19, 0, 5, 10},
{ 27, 0, 19, 1, 5, 0},
{ 27, 0, 19, 1, 4, 0},
{ 27, 0, 19, 1, 5, 10},
{ 27, 0, 10, 0, 5, 0},
{ 27, 0, 11, 0, 5, 0},
{ 27, 0, 19, 1, 4, 136},
{ 27, 0, 19, 1, 4, 10},
{ 30, 0, 19, 0, 2, 0},
{ 22, 0, 19, 1, 2, 170},
{ 23, 0, 19, 1, 2, 170},
{ 30, 0, 1, 0, 4, 136},
{ 9, 0, 19, 0, 4, 0},
{ 27, 0, 19, 0, 2, 0},
{ 27, 0, 19, 1, 5, 170},
{ 30, 0, 19, 1, 5, 0},
{ 30, 0, 19, 0, 2, 136},
{ 10, 0, 18, 0, 0, 136},
{ 26, 0, 19, 0, 2, 0},
{ 18, 0, 1, 0, 2, 0},
{ 8, 0, 1, 0, 2, 0},
{ 22, 0, 19, 1, 2, 0},
{ 23, 0, 19, 1, 2, 0},
{ 21, 0, 19, 0, 2, 0},
{ 22, 0, 19, 0, 2, 0},
{ 23, 0, 19, 0, 2, 0},
{ 4, 218, 14, 0, 2, 0},
{ 4, 228, 14, 0, 2, 0},
{ 4, 232, 14, 0, 2, 0},
{ 4, 222, 14, 0, 2, 0},
{ 5, 224, 1, 0, 2, 0},
{ 8, 0, 1, 0, 2, 136},
{ 19, 0, 1, 0, 2, 10},
{ 4, 8, 14, 0, 2, 80},
{ 29, 0, 19, 0, 2, 136},
{ 18, 0, 1, 0, 2, 10},
{ 19, 0, 1, 0, 2, 136},
{ 30, 0, 1, 0, 2, 0},
{ 9, 0, 1, 0, 2, 136},
{ 30, 0, 1, 0, 2, 136},
{ 9, 0, 1, 0, 4, 0},
{ 9, 0, 19, 0, 2, 136},
{ 29, 0, 1, 0, 5, 0},
{ 15, 0, 1, 0, 5, 0},
{ 16, 0, 1, 0, 4, 0},
{ 19, 0, 1, 0, 2, 170},
{ 19, 0, 4, 0, 5, 170},
{ 4, 26, 14, 0, 5, 0},
{ 19, 0, 4, 0, 5, 136},
{ 29, 0, 5, 0, 5, 0},
{ 23, 0, 19, 0, 5, 0},
{ 28, 0, 5, 0, 5, 136},
{ 26, 0, 19, 0, 2, 136},
{ 22, 0, 19, 0, 2, 136},
{ 23, 0, 19, 0, 2, 136},
{ 21, 0, 19, 0, 2, 136},
{ 20, 0, 19, 0, 2, 136},
{ 26, 0, 13, 0, 2, 136},
{ 22, 0, 19, 1, 2, 136},
{ 23, 0, 19, 1, 2, 136},
{ 26, 0, 11, 0, 2, 136},
{ 27, 0, 10, 0, 2, 136},
{ 21, 0, 10, 0, 2, 136},
{ 27, 0, 19, 1, 2, 136},
{ 27, 0, 19, 0, 2, 136},
{ 28, 0, 11, 0, 2, 136},
{ 26, 0, 19, 0, 0, 136},
{ 26, 0, 11, 0, 0, 136},
{ 28, 0, 11, 0, 0, 136},
{ 22, 0, 19, 1, 0, 136},
{ 23, 0, 19, 1, 0, 136},
{ 27, 0, 10, 0, 0, 136},
{ 26, 0, 13, 0, 0, 136},
{ 21, 0, 10, 0, 0, 136},
{ 7, 0, 9, 0, 0, 136},
{ 27, 0, 19, 1, 0, 136},
{ 27, 0, 19, 0, 0, 136},
{ 1, 0, 1, 0, 0, 136},
{ 29, 0, 19, 0, 0, 136},
{ 20, 0, 19, 0, 0, 136},
{ 2, 0, 1, 0, 0, 136},
{ 26, 0, 19, 0, 1, 136},
{ 22, 0, 19, 1, 1, 136},
{ 23, 0, 19, 1, 1, 136},
{ 19, 0, 1, 0, 1, 136},
{ 18, 0, 1, 0, 1, 136},
{ 30, 0, 19, 0, 0, 136},
{ 30, 0, 19, 0, 1, 136},
{ 27, 0, 19, 0, 1, 136},
{ 14, 0, 19, 0, 5, 0},
{ 8, 0, 19, 0, 5, 0},
{ 9, 0, 9, 0, 5, 0},
{ 9, 0, 4, 0, 5, 0},
{ 30, 0, 4, 0, 5, 0},
{ 1, 0, 4, 0, 5, 0},
{ 2, 0, 4, 0, 5, 0},
{ 9, 0, 12, 0, 5, 0},
{ 9, 0, 5, 0, 5, 0},
{ 4, 9, 1, 0, 5, 0},
{ 4, 0, 14, 0, 2, 0},
{ 5, 6, 1, 0, 2, 0},
{ 30, 0, 1, 0, 5, 170},
{ 5, 216, 1, 0, 5, 0},
{ 5, 226, 1, 0, 5, 0},
{ 27, 0, 1, 0, 5, 136},
{ 7, 0, 9, 0, 5, 136},
{ 30, 0, 1, 0, 5, 136},
{ 30, 0, 1, 0, 4, 0},
{ 29, 0, 19, 0, 2, 0},
};
unsigned short _PyUnicode_RecordsIndex1[8704];
static const unsigned short _PyUnicode_RecordsIndex1_rodata[323+1][2] = { /* 7.42188% profit */
{ 1, 0x00},
{ 1, 0x01},
{ 1, 0x02},
{ 1, 0x03},
{ 1, 0x04},
{ 1, 0x05},
{ 1, 0x06},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x11},
{ 1, 0x12},
{ 1, 0x13},
{ 1, 0x14},
{ 1, 0x15},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x18},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x1b},
{ 1, 0x1c},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 1, 0x22},
{ 1, 0x23},
{ 1, 0x24},
{ 1, 0x25},
{ 1, 0x26},
{ 1, 0x27},
{ 1, 0x28},
{ 3, 0x29},
{ 1, 0x2a},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x2f},
{ 1, 0x30},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x33},
{ 1, 0x34},
{ 1, 0x35},
{ 1, 0x36},
{ 1, 0x37},
{ 1, 0x38},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x3c},
{ 1, 0x3d},
{ 1, 0x3e},
{ 1, 0x3f},
{ 1, 0x40},
{ 1, 0x41},
{ 1, 0x42},
{ 1, 0x43},
{ 1, 0x44},
{ 1, 0x45},
{ 1, 0x46},
{ 1, 0x47},
{ 1, 0x48},
{ 1, 0x49},
{ 1, 0x4a},
{ 1, 0x4b},
{ 1, 0x4c},
{ 1, 0x4d},
{ 2, 0x4e},
{ 1, 0x4f},
{ 1, 0x50},
{ 1, 0x51},
{ 1, 0x52},
{ 1, 0x53},
{ 1, 0x54},
{ 1, 0x55},
{ 1, 0x56},
{ 1, 0x57},
{ 1, 0x58},
{ 1, 0x59},
{ 1, 0x5a},
{ 1, 0x5b},
{ 1, 0x5c},
{ 1, 0x5d},
{ 1, 0x5e},
{ 1, 0x5f},
{ 1, 0x60},
{ 1, 0x61},
{ 1, 0x62},
{ 1, 0x63},
{ 1, 0x64},
{ 51, 0x65},
{ 1, 0x66},
{163, 0x65},
{ 1, 0x67},
{ 1, 0x68},
{ 8, 0x65},
{ 1, 0x69},
{ 2, 0x29},
{ 1, 0x6a},
{ 1, 0x6b},
{ 1, 0x6c},
{ 1, 0x6d},
{ 1, 0x6e},
{ 1, 0x6f},
{ 1, 0x70},
{ 1, 0x71},
{ 1, 0x72},
{ 1, 0x73},
{ 1, 0x74},
{ 1, 0x75},
{ 87, 0x76},
{ 1, 0x77},
{ 16, 0x78},
{ 50, 0x79},
{ 2, 0x7a},
{ 1, 0x7b},
{ 1, 0x7c},
{ 1, 0x7d},
{ 1, 0x7e},
{ 2, 0x7f},
{ 1, 0x80},
{ 1, 0x81},
{ 1, 0x82},
{ 1, 0x83},
{ 1, 0x84},
{ 1, 0x85},
{ 1, 0x86},
{ 1, 0x87},
{ 1, 0x88},
{ 1, 0x89},
{ 1, 0x8a},
{ 1, 0x8b},
{ 1, 0x8c},
{ 1, 0x8d},
{ 1, 0x8e},
{ 1, 0x8f},
{ 1, 0x90},
{ 1, 0x8a},
{ 2, 0x29},
{ 1, 0x91},
{ 1, 0x8a},
{ 1, 0x92},
{ 1, 0x93},
{ 1, 0x94},
{ 1, 0x95},
{ 1, 0x96},
{ 1, 0x97},
{ 1, 0x98},
{ 1, 0x99},
{ 1, 0x9a},
{ 1, 0x9b},
{ 1, 0x9c},
{ 1, 0x8a},
{ 1, 0x9d},
{ 1, 0x9e},
{ 1, 0x9f},
{ 1, 0xa0},
{ 1, 0xa1},
{ 1, 0xa2},
{ 1, 0xa3},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa6},
{ 1, 0xa7},
{ 1, 0x8a},
{ 1, 0xa8},
{ 1, 0xa9},
{ 1, 0x8a},
{ 1, 0xaa},
{ 1, 0xab},
{ 1, 0xac},
{ 1, 0xad},
{ 1, 0x8a},
{ 1, 0xae},
{ 1, 0xaf},
{ 1, 0xb0},
{ 1, 0xb1},
{ 1, 0xb2},
{ 1, 0xb3},
{ 2, 0x8a},
{ 1, 0xb4},
{ 1, 0xb5},
{ 1, 0xb6},
{ 1, 0xb7},
{ 1, 0x8a},
{ 1, 0xb8},
{ 1, 0x8a},
{ 1, 0xb9},
{ 7, 0x29},
{ 1, 0xba},
{ 1, 0xbb},
{ 1, 0x29},
{ 1, 0xbc},
{ 21, 0x8a},
{ 8, 0x29},
{ 1, 0xbd},
{ 31, 0x8a},
{ 4, 0x29},
{ 1, 0xbe},
{ 67, 0x8a},
{ 4, 0x29},
{ 1, 0xbf},
{ 1, 0xc0},
{ 1, 0xc1},
{ 1, 0xc2},
{ 4, 0x8a},
{ 1, 0xc3},
{ 1, 0xc4},
{ 1, 0xc5},
{ 1, 0xc6},
{ 47, 0x65},
{ 1, 0xc7},
{ 9, 0x65},
{ 1, 0xc8},
{ 1, 0xc9},
{ 69, 0x8a},
{ 2, 0x65},
{ 1, 0xca},
{ 2, 0x65},
{ 1, 0xcb},
{ 18, 0x8a},
{ 1, 0xcc},
{ 1, 0xcd},
{ 38, 0x8a},
{ 1, 0x4e},
{ 1, 0xce},
{ 1, 0xcf},
{ 1, 0xd0},
{ 1, 0xd1},
{ 1, 0xd2},
{ 1, 0xd3},
{ 1, 0x8a},
{ 1, 0xd4},
{ 1, 0xd5},
{ 1, 0xd6},
{ 1, 0xd7},
{ 1, 0xd8},
{ 1, 0xd9},
{ 1, 0xda},
{ 1, 0xdb},
{ 4, 0x4e},
{ 1, 0xdc},
{ 1, 0xdd},
{ 10, 0x8a},
{ 1, 0xde},
{ 1, 0x8a},
{ 1, 0xdf},
{ 2, 0x8a},
{ 1, 0xe0},
{ 10, 0x8a},
{ 1, 0xe1},
{ 1, 0xe2},
{ 1, 0xe3},
{ 5, 0x8a},
{ 1, 0xe4},
{ 1, 0xe5},
{ 1, 0xe6},
{ 1, 0x8a},
{ 1, 0xe7},
{ 1, 0xe8},
{ 2, 0x8a},
{ 1, 0xe9},
{ 1, 0xea},
{ 1, 0xeb},
{ 1, 0xec},
{ 1, 0xed},
{ 1, 0x8a},
{ 1, 0xee},
{ 1, 0xef},
{ 1, 0xf0},
{ 1, 0xf1},
{ 1, 0xf2},
{ 1, 0xf3},
{ 1, 0xf4},
{ 1, 0xf5},
{ 1, 0xf6},
{ 1, 0xf7},
{ 1, 0xf8},
{ 1, 0xf9},
{ 1, 0xfa},
{ 1, 0xfb},
{ 1, 0xfc},
{ 1, 0xfd},
{ 1, 0xfe},
{ 1, 0xff},
{ 8, 0x8a},
{333, 0x65},
{ 1, 0x100},
{ 32, 0x65},
{ 1, 0x101},
{ 1, 0x65},
{ 1, 0x102},
{ 44, 0x65},
{ 1, 0x103},
{ 57, 0x65},
{ 1, 0x104},
{ 24, 0x8a},
{ 4, 0x7a},
{ 1, 0x105},
{ 11, 0x8a},
{ 38, 0x65},
{ 1, 0x106},
{5593, 0x8a},
{ 1, 0x107},
{ 1, 0x8a},
{ 1, 0x108},
{ 1, 0x109},
{508, 0x8a},
{511, 0x79},
{ 1, 0x10a},
{511, 0x79},
{ 1, 0x10a},
{0},
};
static textstartup void _PyUnicode_RecordsIndex1_init(void) {
int i, j, k;
for (k = i = 0; i < 323; ++i) {
for (j = 0; j < _PyUnicode_RecordsIndex1_rodata[i][0]; ++j) {
_PyUnicode_RecordsIndex1[k++] = _PyUnicode_RecordsIndex1_rodata[i][1];
}
}
}
const void *const _PyUnicode_RecordsIndex1_ctor[] initarray = {
_PyUnicode_RecordsIndex1_init,
};
unsigned short _PyUnicode_RecordsIndex2[34176];
static const unsigned short _PyUnicode_RecordsIndex2_rodata[4990+1][2] = { /* 29.2018% profit */
{ 9, 0x01},
{ 1, 0x02},
{ 1, 0x03},
{ 1, 0x02},
{ 1, 0x04},
{ 1, 0x03},
{ 14, 0x01},
{ 3, 0x03},
{ 1, 0x02},
{ 1, 0x05},
{ 2, 0x06},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x07},
{ 2, 0x06},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x06},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 2, 0x0c},
{ 10, 0x0e},
{ 1, 0x0c},
{ 1, 0x06},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x0f},
{ 2, 0x06},
{ 26, 0x11},
{ 1, 0x09},
{ 1, 0x06},
{ 1, 0x0a},
{ 1, 0x12},
{ 1, 0x13},
{ 1, 0x12},
{ 26, 0x14},
{ 1, 0x09},
{ 1, 0x10},
{ 1, 0x0a},
{ 1, 0x10},
{ 6, 0x01},
{ 1, 0x03},
{ 26, 0x01},
{ 1, 0x15},
{ 1, 0x16},
{ 2, 0x08},
{ 1, 0x17},
{ 1, 0x08},
{ 1, 0x18},
{ 1, 0x16},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x1b},
{ 1, 0x1c},
{ 1, 0x10},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 2, 0x22},
{ 1, 0x19},
{ 1, 0x23},
{ 2, 0x16},
{ 1, 0x19},
{ 1, 0x22},
{ 1, 0x1b},
{ 1, 0x24},
{ 3, 0x25},
{ 1, 0x16},
{ 6, 0x26},
{ 1, 0x27},
{ 9, 0x26},
{ 1, 0x27},
{ 6, 0x26},
{ 1, 0x28},
{ 1, 0x27},
{ 5, 0x26},
{ 1, 0x27},
{ 1, 0x29},
{ 2, 0x2a},
{ 4, 0x2b},
{ 1, 0x29},
{ 1, 0x2b},
{ 3, 0x2a},
{ 1, 0x2b},
{ 2, 0x2a},
{ 2, 0x2b},
{ 1, 0x29},
{ 1, 0x2b},
{ 2, 0x2a},
{ 3, 0x2b},
{ 1, 0x28},
{ 1, 0x29},
{ 2, 0x2a},
{ 1, 0x2b},
{ 1, 0x2a},
{ 1, 0x2b},
{ 1, 0x29},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x27},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x29},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x27},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x2e},
{ 1, 0x27},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x27},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x27},
{ 1, 0x29},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 2, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x23},
{ 1, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 3, 0x2c},
{ 2, 0x2f},
{ 4, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 3, 0x2c},
{ 3, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 2, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x26},
{ 1, 0x2b},
{ 3, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 2, 0x2f},
{ 1, 0x30},
{ 1, 0x2c},
{ 3, 0x2f},
{ 4, 0x30},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x23},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x23},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x23},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x26},
{ 1, 0x2a},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 2, 0x2b},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x23},
{ 1, 0x26},
{ 1, 0x2b},
{ 2, 0x2c},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 6, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 2, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 4, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 2, 0x2f},
{ 1, 0x29},
{ 15, 0x2f},
{ 1, 0x29},
{ 50, 0x2f},
{ 1, 0x30},
{ 27, 0x2f},
{ 9, 0x33},
{ 2, 0x34},
{ 7, 0x35},
{ 2, 0x36},
{ 1, 0x37},
{ 1, 0x36},
{ 1, 0x34},
{ 1, 0x38},
{ 1, 0x34},
{ 3, 0x38},
{ 1, 0x34},
{ 1, 0x38},
{ 2, 0x34},
{ 1, 0x39},
{ 1, 0x35},
{ 6, 0x36},
{ 4, 0x19},
{ 1, 0x3a},
{ 1, 0x19},
{ 1, 0x36},
{ 1, 0x37},
{ 5, 0x33},
{ 7, 0x36},
{ 1, 0x34},
{ 1, 0x36},
{ 1, 0x35},
{ 17, 0x36},
{ 5, 0x3b},
{ 1, 0x3c},
{ 7, 0x3b},
{ 2, 0x3c},
{ 1, 0x3b},
{ 1, 0x3c},
{ 1, 0x3b},
{ 1, 0x3c},
{ 2, 0x3b},
{ 1, 0x3d},
{ 4, 0x3e},
{ 1, 0x3d},
{ 1, 0x3f},
{ 5, 0x3e},
{ 2, 0x40},
{ 4, 0x41},
{ 2, 0x42},
{ 4, 0x3e},
{ 2, 0x41},
{ 1, 0x3e},
{ 2, 0x41},
{ 2, 0x3e},
{ 4, 0x43},
{ 1, 0x44},
{ 4, 0x3e},
{ 3, 0x3c},
{ 2, 0x45},
{ 1, 0x3b},
{ 2, 0x45},
{ 1, 0x46},
{ 1, 0x3c},
{ 3, 0x3e},
{ 3, 0x3c},
{ 2, 0x3e},
{ 1, 0x47},
{ 3, 0x3c},
{ 4, 0x3e},
{ 1, 0x3c},
{ 1, 0x3d},
{ 2, 0x3e},
{ 1, 0x3c},
{ 1, 0x48},
{ 2, 0x49},
{ 1, 0x48},
{ 2, 0x49},
{ 1, 0x48},
{ 13, 0x3c},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x4a},
{ 1, 0x36},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x00},
{ 1, 0x33},
{ 3, 0x2f},
{ 1, 0x4b},
{ 1, 0x2c},
{ 4, 0x00},
{ 1, 0x3a},
{ 1, 0x4c},
{ 1, 0x26},
{ 1, 0x4b},
{ 3, 0x26},
{ 1, 0x00},
{ 1, 0x26},
{ 1, 0x00},
{ 2, 0x26},
{ 1, 0x2b},
{ 17, 0x27},
{ 1, 0x00},
{ 7, 0x27},
{ 2, 0x26},
{ 5, 0x2b},
{ 17, 0x29},
{ 1, 0x2f},
{ 7, 0x29},
{ 5, 0x2b},
{ 1, 0x2c},
{ 2, 0x23},
{ 1, 0x31},
{ 2, 0x4d},
{ 2, 0x23},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 3, 0x23},
{ 1, 0x2f},
{ 1, 0x31},
{ 1, 0x23},
{ 1, 0x4e},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x31},
{ 1, 0x2c},
{ 2, 0x2f},
{ 3, 0x2c},
{ 1, 0x26},
{ 1, 0x4f},
{ 1, 0x2c},
{ 1, 0x26},
{ 3, 0x2c},
{ 1, 0x26},
{ 4, 0x2c},
{ 3, 0x26},
{ 1, 0x2c},
{ 9, 0x27},
{ 1, 0x4f},
{ 22, 0x27},
{ 9, 0x29},
{ 1, 0x2a},
{ 22, 0x29},
{ 1, 0x2b},
{ 1, 0x2a},
{ 1, 0x2f},
{ 1, 0x2b},
{ 3, 0x2f},
{ 1, 0x2b},
{ 4, 0x2f},
{ 3, 0x2b},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x50},
{ 5, 0x51},
{ 2, 0x52},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 2, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x00},
{ 38, 0x2c},
{ 2, 0x00},
{ 1, 0x35},
{ 6, 0x53},
{ 39, 0x2f},
{ 1, 0x23},
{ 1, 0x2f},
{ 1, 0x53},
{ 1, 0x54},
{ 2, 0x00},
{ 2, 0x1a},
{ 1, 0x55},
{ 1, 0x00},
{ 1, 0x56},
{ 4, 0x51},
{ 1, 0x56},
{ 3, 0x51},
{ 1, 0x57},
{ 1, 0x56},
{ 6, 0x51},
{ 6, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x57},
{ 1, 0x58},
{ 1, 0x51},
{ 1, 0x59},
{ 1, 0x5a},
{ 1, 0x5b},
{ 1, 0x5c},
{ 1, 0x5d},
{ 1, 0x5e},
{ 1, 0x5f},
{ 1, 0x60},
{ 1, 0x61},
{ 2, 0x62},
{ 1, 0x63},
{ 1, 0x64},
{ 1, 0x65},
{ 1, 0x66},
{ 1, 0x67},
{ 1, 0x68},
{ 1, 0x69},
{ 1, 0x6a},
{ 1, 0x68},
{ 1, 0x51},
{ 1, 0x56},
{ 1, 0x68},
{ 1, 0x61},
{ 8, 0x00},
{ 27, 0x6b},
{ 4, 0x00},
{ 4, 0x6b},
{ 2, 0x68},
{ 11, 0x00},
{ 6, 0x6c},
{ 2, 0x4e},
{ 1, 0x6d},
{ 2, 0x6e},
{ 1, 0x6f},
{ 1, 0x70},
{ 1, 0x71},
{ 2, 0x1a},
{ 8, 0x51},
{ 1, 0x72},
{ 1, 0x73},
{ 1, 0x74},
{ 1, 0x71},
{ 1, 0x75},
{ 1, 0x00},
{ 2, 0x71},
{ 2, 0x76},
{ 5, 0x77},
{ 25, 0x76},
{ 1, 0x78},
{ 10, 0x76},
{ 1, 0x79},
{ 1, 0x7a},
{ 1, 0x7b},
{ 1, 0x72},
{ 1, 0x73},
{ 1, 0x74},
{ 1, 0x7c},
{ 1, 0x7d},
{ 2, 0x7e},
{ 1, 0x7f},
{ 1, 0x56},
{ 5, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 10, 0x80},
{ 1, 0x6e},
{ 2, 0x81},
{ 1, 0x71},
{ 2, 0x76},
{ 1, 0x82},
{ 4, 0x76},
{ 4, 0x83},
{ 71, 0x76},
{ 1, 0x77},
{ 1, 0x76},
{ 1, 0x77},
{ 16, 0x76},
{ 1, 0x77},
{ 1, 0x71},
{ 1, 0x76},
{ 7, 0x51},
{ 1, 0x6c},
{ 1, 0x1a},
{ 4, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 2, 0x78},
{ 2, 0x51},
{ 1, 0x1a},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 2, 0x76},
{ 10, 0x84},
{ 3, 0x76},
{ 2, 0x85},
{ 1, 0x76},
{ 14, 0x71},
{ 1, 0x00},
{ 1, 0x75},
{ 1, 0x76},
{ 1, 0x86},
{ 30, 0x76},
{ 1, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 3, 0x56},
{ 1, 0x51},
{ 2, 0x56},
{ 1, 0x51},
{ 1, 0x56},
{ 3, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 2, 0x00},
{ 89, 0x76},
{ 11, 0x87},
{ 1, 0x76},
{ 14, 0x00},
{ 10, 0x88},
{ 33, 0x6b},
{ 7, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 2, 0x89},
{ 1, 0x1a},
{ 3, 0x8a},
{ 1, 0x89},
{ 2, 0x00},
{ 1, 0x56},
{ 2, 0x8b},
{ 22, 0x6b},
{ 4, 0x51},
{ 1, 0x89},
{ 9, 0x51},
{ 1, 0x89},
{ 3, 0x51},
{ 1, 0x89},
{ 5, 0x51},
{ 2, 0x00},
{ 15, 0x68},
{ 1, 0x00},
{ 25, 0x6b},
{ 3, 0x56},
{ 2, 0x00},
{ 1, 0x68},
{ 1, 0x00},
{ 11, 0x76},
{ 53, 0x00},
{ 21, 0x76},
{ 1, 0x00},
{ 18, 0x76},
{ 11, 0x00},
{ 1, 0x56},
{ 14, 0x51},
{ 1, 0x6c},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 3, 0x51},
{ 3, 0x56},
{ 1, 0x79},
{ 1, 0x7a},
{ 1, 0x7b},
{ 3, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 2, 0x56},
{ 5, 0x51},
{ 3, 0x87},
{ 1, 0x8c},
{ 37, 0x30},
{ 1, 0x8d},
{ 7, 0x30},
{ 1, 0x8d},
{ 2, 0x30},
{ 1, 0x8d},
{ 5, 0x30},
{ 1, 0x87},
{ 1, 0x8c},
{ 1, 0x8e},
{ 1, 0x30},
{ 3, 0x8c},
{ 8, 0x87},
{ 4, 0x8c},
{ 1, 0x8f},
{ 2, 0x8c},
{ 1, 0x30},
{ 1, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 3, 0x87},
{ 8, 0x90},
{ 2, 0x30},
{ 2, 0x87},
{ 2, 0x53},
{ 10, 0x91},
{ 1, 0x53},
{ 1, 0x35},
{ 15, 0x30},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x00},
{ 8, 0x30},
{ 2, 0x00},
{ 2, 0x30},
{ 2, 0x00},
{ 22, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 3, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 1, 0x92},
{ 1, 0x30},
{ 1, 0x93},
{ 2, 0x8c},
{ 4, 0x87},
{ 2, 0x00},
{ 2, 0x8c},
{ 2, 0x00},
{ 2, 0x94},
{ 1, 0x8f},
{ 1, 0x30},
{ 8, 0x00},
{ 1, 0x93},
{ 4, 0x00},
{ 2, 0x90},
{ 1, 0x00},
{ 1, 0x90},
{ 2, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 2, 0x30},
{ 2, 0x55},
{ 6, 0x95},
{ 1, 0x50},
{ 1, 0x55},
{ 1, 0x30},
{ 1, 0x53},
{ 1, 0x51},
{ 2, 0x00},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x00},
{ 6, 0x30},
{ 4, 0x00},
{ 2, 0x30},
{ 2, 0x00},
{ 22, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x90},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x90},
{ 1, 0x00},
{ 2, 0x30},
{ 2, 0x00},
{ 1, 0x92},
{ 1, 0x00},
{ 3, 0x8c},
{ 2, 0x87},
{ 4, 0x00},
{ 2, 0x87},
{ 2, 0x00},
{ 2, 0x87},
{ 1, 0x8f},
{ 3, 0x00},
{ 1, 0x87},
{ 7, 0x00},
{ 3, 0x90},
{ 1, 0x30},
{ 1, 0x00},
{ 1, 0x90},
{ 7, 0x00},
{ 10, 0x91},
{ 2, 0x87},
{ 3, 0x30},
{ 1, 0x87},
{ 1, 0x53},
{ 10, 0x00},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x00},
{ 9, 0x30},
{ 1, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 22, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 5, 0x30},
{ 2, 0x00},
{ 1, 0x92},
{ 1, 0x30},
{ 3, 0x8c},
{ 5, 0x87},
{ 1, 0x00},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x00},
{ 2, 0x8c},
{ 1, 0x8f},
{ 2, 0x00},
{ 1, 0x30},
{ 15, 0x00},
{ 2, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 1, 0x53},
{ 1, 0x55},
{ 7, 0x00},
{ 1, 0x30},
{ 6, 0x87},
{ 1, 0x00},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x00},
{ 8, 0x30},
{ 2, 0x00},
{ 2, 0x30},
{ 2, 0x00},
{ 22, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 5, 0x30},
{ 2, 0x00},
{ 1, 0x92},
{ 1, 0x30},
{ 1, 0x93},
{ 1, 0x87},
{ 1, 0x8c},
{ 4, 0x87},
{ 2, 0x00},
{ 1, 0x8c},
{ 1, 0x94},
{ 2, 0x00},
{ 2, 0x94},
{ 1, 0x8f},
{ 7, 0x00},
{ 1, 0x87},
{ 1, 0x96},
{ 1, 0x93},
{ 4, 0x00},
{ 2, 0x90},
{ 1, 0x00},
{ 3, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 1, 0x50},
{ 1, 0x30},
{ 6, 0x95},
{ 10, 0x00},
{ 1, 0x87},
{ 1, 0x30},
{ 1, 0x00},
{ 6, 0x30},
{ 3, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 3, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 3, 0x00},
{ 2, 0x30},
{ 3, 0x00},
{ 3, 0x30},
{ 3, 0x00},
{ 12, 0x30},
{ 4, 0x00},
{ 1, 0x93},
{ 1, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 3, 0x00},
{ 3, 0x8c},
{ 1, 0x00},
{ 3, 0x94},
{ 1, 0x8f},
{ 2, 0x00},
{ 1, 0x30},
{ 6, 0x00},
{ 1, 0x93},
{ 14, 0x00},
{ 10, 0x91},
{ 3, 0x95},
{ 6, 0x1a},
{ 1, 0x55},
{ 1, 0x1a},
{ 5, 0x00},
{ 1, 0x87},
{ 3, 0x8c},
{ 1, 0x87},
{ 8, 0x30},
{ 1, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 23, 0x30},
{ 1, 0x00},
{ 16, 0x30},
{ 3, 0x00},
{ 1, 0x30},
{ 3, 0x87},
{ 4, 0x8c},
{ 1, 0x00},
{ 2, 0x87},
{ 1, 0x97},
{ 1, 0x00},
{ 3, 0x87},
{ 1, 0x8f},
{ 7, 0x00},
{ 1, 0x98},
{ 1, 0x99},
{ 1, 0x00},
{ 3, 0x30},
{ 5, 0x00},
{ 2, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 7, 0x00},
{ 1, 0x53},
{ 7, 0x9a},
{ 1, 0x50},
{ 1, 0x30},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x53},
{ 8, 0x30},
{ 1, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 23, 0x30},
{ 1, 0x00},
{ 10, 0x30},
{ 1, 0x00},
{ 5, 0x30},
{ 2, 0x00},
{ 1, 0x92},
{ 1, 0x30},
{ 1, 0x8c},
{ 1, 0x9b},
{ 1, 0x94},
{ 1, 0x8c},
{ 1, 0x93},
{ 2, 0x8c},
{ 1, 0x00},
{ 1, 0x9b},
{ 2, 0x94},
{ 1, 0x00},
{ 2, 0x94},
{ 1, 0x87},
{ 1, 0x8f},
{ 7, 0x00},
{ 2, 0x93},
{ 7, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 1, 0x00},
{ 2, 0x30},
{ 13, 0x00},
{ 2, 0x87},
{ 2, 0x8c},
{ 9, 0x30},
{ 1, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 41, 0x30},
{ 2, 0x8f},
{ 1, 0x30},
{ 1, 0x93},
{ 2, 0x8c},
{ 4, 0x87},
{ 1, 0x00},
{ 3, 0x8c},
{ 1, 0x00},
{ 3, 0x94},
{ 1, 0x8f},
{ 1, 0x30},
{ 1, 0x50},
{ 4, 0x00},
{ 3, 0x30},
{ 1, 0x93},
{ 7, 0x95},
{ 3, 0x30},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 9, 0x95},
{ 1, 0x50},
{ 6, 0x30},
{ 1, 0x00},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x00},
{ 18, 0x30},
{ 3, 0x00},
{ 24, 0x30},
{ 1, 0x00},
{ 9, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 2, 0x00},
{ 7, 0x30},
{ 3, 0x00},
{ 1, 0x9c},
{ 4, 0x00},
{ 1, 0x93},
{ 2, 0x8c},
{ 3, 0x87},
{ 1, 0x00},
{ 1, 0x87},
{ 1, 0x00},
{ 2, 0x8c},
{ 1, 0x94},
{ 1, 0x8c},
{ 3, 0x94},
{ 1, 0x93},
{ 6, 0x00},
{ 10, 0x91},
{ 2, 0x00},
{ 2, 0x8c},
{ 1, 0x53},
{ 12, 0x00},
{ 48, 0x30},
{ 1, 0x87},
{ 1, 0x30},
{ 1, 0x9d},
{ 4, 0x87},
{ 2, 0x9e},
{ 1, 0x8f},
{ 4, 0x00},
{ 1, 0x55},
{ 6, 0x30},
{ 1, 0x35},
{ 1, 0x87},
{ 4, 0x9f},
{ 3, 0x87},
{ 1, 0x53},
{ 10, 0x91},
{ 2, 0x53},
{ 37, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 5, 0x30},
{ 1, 0x00},
{ 24, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 10, 0x30},
{ 1, 0x87},
{ 1, 0x30},
{ 1, 0x9d},
{ 4, 0x87},
{ 2, 0xa0},
{ 1, 0x8f},
{ 2, 0x87},
{ 1, 0x30},
{ 2, 0x00},
{ 5, 0x30},
{ 1, 0x00},
{ 1, 0x35},
{ 1, 0x00},
{ 4, 0xa1},
{ 2, 0x87},
{ 2, 0x00},
{ 10, 0x91},
{ 2, 0x00},
{ 2, 0x9d},
{ 2, 0x30},
{ 32, 0x00},
{ 1, 0x30},
{ 3, 0x50},
{ 8, 0x53},
{ 1, 0xa2},
{ 6, 0x53},
{ 1, 0x50},
{ 1, 0x53},
{ 3, 0x50},
{ 2, 0x56},
{ 6, 0x50},
{ 10, 0x91},
{ 10, 0x95},
{ 1, 0x50},
{ 1, 0x56},
{ 1, 0x50},
{ 1, 0x56},
{ 1, 0x50},
{ 1, 0xa3},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 2, 0x8c},
{ 3, 0x30},
{ 1, 0x90},
{ 4, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 1, 0x90},
{ 4, 0x30},
{ 1, 0x90},
{ 4, 0x30},
{ 1, 0x90},
{ 4, 0x30},
{ 1, 0x90},
{ 12, 0x30},
{ 1, 0x90},
{ 3, 0x30},
{ 4, 0x00},
{ 1, 0xa6},
{ 1, 0xa7},
{ 1, 0xa8},
{ 1, 0xa9},
{ 2, 0xa8},
{ 1, 0xaa},
{ 1, 0xa8},
{ 1, 0xaa},
{ 4, 0xa7},
{ 1, 0x87},
{ 1, 0x8c},
{ 1, 0xa7},
{ 1, 0xa8},
{ 2, 0x51},
{ 1, 0x8f},
{ 1, 0x53},
{ 2, 0x51},
{ 5, 0x30},
{ 6, 0x87},
{ 1, 0xa8},
{ 4, 0x87},
{ 1, 0x00},
{ 4, 0x87},
{ 1, 0xa8},
{ 4, 0x87},
{ 1, 0xa8},
{ 4, 0x87},
{ 1, 0xa8},
{ 4, 0x87},
{ 1, 0xa8},
{ 12, 0x87},
{ 1, 0xa8},
{ 3, 0x87},
{ 1, 0x00},
{ 8, 0x50},
{ 1, 0x56},
{ 6, 0x50},
{ 1, 0x00},
{ 2, 0x50},
{ 5, 0x53},
{ 4, 0x50},
{ 2, 0x53},
{ 37, 0x00},
{ 38, 0x30},
{ 1, 0x8d},
{ 4, 0x30},
{ 2, 0x8c},
{ 1, 0x87},
{ 1, 0x96},
{ 2, 0x87},
{ 1, 0x8c},
{ 5, 0x87},
{ 1, 0x92},
{ 1, 0x8c},
{ 2, 0x8f},
{ 2, 0x8c},
{ 2, 0x87},
{ 1, 0x30},
{ 10, 0x91},
{ 6, 0x53},
{ 6, 0x30},
{ 2, 0x8c},
{ 2, 0x87},
{ 4, 0x30},
{ 3, 0x87},
{ 1, 0x30},
{ 3, 0x8c},
{ 2, 0x30},
{ 7, 0x8c},
{ 3, 0x30},
{ 4, 0x87},
{ 13, 0x30},
{ 1, 0x87},
{ 2, 0x8c},
{ 2, 0x87},
{ 6, 0x8c},
{ 1, 0x56},
{ 1, 0x30},
{ 1, 0x8c},
{ 10, 0x91},
{ 3, 0x8c},
{ 1, 0x87},
{ 2, 0x50},
{ 38, 0x2c},
{ 1, 0x00},
{ 1, 0x2c},
{ 5, 0x00},
{ 1, 0x2c},
{ 2, 0x00},
{ 43, 0x2f},
{ 1, 0x53},
{ 1, 0x33},
{ 3, 0x2f},
{ 96, 0xab},
{ 1, 0x30},
{ 21, 0xac},
{ 50, 0x30},
{ 27, 0xac},
{134, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 41, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 33, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 15, 0x30},
{ 1, 0x00},
{ 57, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x00},
{ 67, 0x30},
{ 2, 0x00},
{ 3, 0x51},
{ 9, 0x53},
{ 20, 0x95},
{ 3, 0x00},
{ 16, 0x30},
{ 10, 0x1a},
{ 6, 0x00},
{ 86, 0x2c},
{ 2, 0x00},
{ 6, 0x2f},
{ 2, 0x00},
{ 1, 0x54},
{364, 0x30},
{ 1, 0x50},
{ 1, 0x53},
{ 17, 0x30},
{ 1, 0xad},
{ 26, 0x30},
{ 1, 0xa4},
{ 1, 0xa5},
{ 3, 0x00},
{ 75, 0x30},
{ 3, 0x53},
{ 3, 0xae},
{ 8, 0x30},
{ 7, 0x00},
{ 13, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 2, 0x87},
{ 1, 0x8f},
{ 11, 0x00},
{ 18, 0x30},
{ 2, 0x87},
{ 1, 0x8f},
{ 2, 0x53},
{ 9, 0x00},
{ 18, 0x30},
{ 2, 0x87},
{ 12, 0x00},
{ 13, 0x30},
{ 1, 0x00},
{ 3, 0x30},
{ 1, 0x00},
{ 2, 0x87},
{ 12, 0x00},
{ 52, 0x30},
{ 2, 0x87},
{ 1, 0x8c},
{ 7, 0x87},
{ 8, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 9, 0x87},
{ 1, 0x8f},
{ 1, 0x87},
{ 3, 0x53},
{ 1, 0x35},
{ 3, 0x53},
{ 1, 0x55},
{ 1, 0x30},
{ 1, 0x51},
{ 2, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 10, 0x9a},
{ 6, 0x00},
{ 6, 0x8a},
{ 1, 0x54},
{ 4, 0x8a},
{ 3, 0x87},
{ 1, 0xaf},
{ 1, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 35, 0x30},
{ 1, 0x35},
{ 53, 0x30},
{ 7, 0x00},
{ 5, 0x30},
{ 2, 0x87},
{ 34, 0x30},
{ 1, 0x58},
{ 1, 0x30},
{ 5, 0x00},
{ 70, 0x30},
{ 10, 0x00},
{ 31, 0x30},
{ 1, 0x00},
{ 3, 0x87},
{ 4, 0x8c},
{ 2, 0x87},
{ 3, 0x8c},
{ 4, 0x00},
{ 2, 0x8c},
{ 1, 0x87},
{ 6, 0x8c},
{ 1, 0x57},
{ 1, 0x51},
{ 1, 0x56},
{ 4, 0x00},
{ 1, 0x1a},
{ 3, 0x00},
{ 2, 0x8a},
{ 10, 0x91},
{ 30, 0x30},
{ 2, 0x00},
{ 5, 0x30},
{ 11, 0x00},
{ 44, 0x30},
{ 4, 0x00},
{ 26, 0x30},
{ 6, 0x00},
{ 10, 0x91},
{ 1, 0x95},
{ 3, 0x00},
{ 34, 0x1a},
{ 23, 0x30},
{ 1, 0x51},
{ 1, 0x56},
{ 2, 0x8c},
{ 1, 0x87},
{ 2, 0x00},
{ 2, 0x53},
{ 53, 0x30},
{ 1, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 7, 0x87},
{ 1, 0x00},
{ 1, 0x8f},
{ 1, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 8, 0x87},
{ 6, 0x8c},
{ 2, 0x87},
{ 8, 0x51},
{ 2, 0x00},
{ 1, 0x56},
{ 10, 0x91},
{ 6, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 7, 0x53},
{ 1, 0x35},
{ 6, 0x53},
{ 2, 0x00},
{ 5, 0x51},
{ 6, 0x56},
{ 2, 0x51},
{ 1, 0x56},
{ 1, 0x52},
{ 2, 0x56},
{ 63, 0x00},
{ 4, 0x87},
{ 1, 0x8c},
{ 1, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 1, 0x8d},
{ 3, 0x30},
{ 1, 0x8d},
{ 33, 0x30},
{ 1, 0x92},
{ 1, 0x93},
{ 5, 0x87},
{ 1, 0x94},
{ 1, 0x87},
{ 1, 0x94},
{ 2, 0x8c},
{ 2, 0x94},
{ 1, 0x87},
{ 1, 0x94},
{ 1, 0xb0},
{ 7, 0x30},
{ 4, 0x00},
{ 10, 0x91},
{ 7, 0x53},
{ 10, 0x50},
{ 1, 0x51},
{ 1, 0x56},
{ 7, 0x51},
{ 9, 0x50},
{ 3, 0x00},
{ 2, 0x87},
{ 1, 0x8c},
{ 30, 0x30},
{ 1, 0x8c},
{ 4, 0x87},
{ 2, 0x8c},
{ 2, 0x87},
{ 1, 0xb0},
{ 1, 0x8f},
{ 2, 0x87},
{ 2, 0x30},
{ 10, 0x91},
{ 44, 0x30},
{ 1, 0x92},
{ 1, 0x8c},
{ 2, 0x87},
{ 3, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 3, 0x87},
{ 2, 0xb0},
{ 8, 0x00},
{ 4, 0x53},
{ 36, 0x30},
{ 8, 0x8c},
{ 8, 0x87},
{ 2, 0x8c},
{ 1, 0x87},
{ 1, 0x92},
{ 3, 0x00},
{ 5, 0x53},
{ 10, 0x91},
{ 3, 0x00},
{ 3, 0x30},
{ 10, 0x91},
{ 30, 0x30},
{ 6, 0x35},
{ 2, 0x53},
{ 9, 0x2f},
{ 7, 0x00},
{ 43, 0x2c},
{ 2, 0x00},
{ 3, 0x2c},
{ 8, 0x53},
{ 8, 0x00},
{ 3, 0x51},
{ 1, 0x53},
{ 1, 0xb1},
{ 5, 0x56},
{ 2, 0x51},
{ 4, 0x56},
{ 1, 0x51},
{ 1, 0x8c},
{ 7, 0xb1},
{ 4, 0x30},
{ 1, 0x56},
{ 6, 0x30},
{ 1, 0x51},
{ 2, 0x30},
{ 1, 0x8c},
{ 2, 0x51},
{ 1, 0x30},
{ 5, 0x00},
{ 44, 0x2f},
{ 3, 0x33},
{ 1, 0x35},
{ 11, 0x33},
{ 1, 0x35},
{ 18, 0x33},
{ 1, 0x35},
{ 28, 0x33},
{ 13, 0x2f},
{ 1, 0x33},
{ 34, 0x2f},
{ 37, 0x33},
{ 2, 0x51},
{ 1, 0x56},
{ 7, 0x51},
{ 1, 0x56},
{ 2, 0x51},
{ 1, 0xb2},
{ 1, 0xb3},
{ 1, 0x56},
{ 1, 0xb4},
{ 37, 0x51},
{ 1, 0xb5},
{ 2, 0x58},
{ 1, 0x56},
{ 1, 0x00},
{ 1, 0x51},
{ 1, 0xb6},
{ 1, 0x56},
{ 1, 0x51},
{ 1, 0x56},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 5, 0x2b},
{ 1, 0x23},
{ 1, 0xb7},
{ 2, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x26},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 8, 0x2b},
{ 8, 0x26},
{ 6, 0x2b},
{ 2, 0x00},
{ 6, 0x26},
{ 2, 0x00},
{ 8, 0x2b},
{ 8, 0x26},
{ 8, 0x2b},
{ 8, 0x26},
{ 6, 0x2b},
{ 2, 0x00},
{ 6, 0x26},
{ 2, 0x00},
{ 8, 0x2b},
{ 1, 0x00},
{ 1, 0x26},
{ 1, 0x00},
{ 1, 0x26},
{ 1, 0x00},
{ 1, 0x26},
{ 1, 0x00},
{ 1, 0x26},
{ 8, 0x2b},
{ 8, 0x26},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 1, 0x2b},
{ 1, 0xb8},
{ 2, 0x00},
{ 8, 0x2b},
{ 8, 0xb9},
{ 8, 0x2b},
{ 8, 0xb9},
{ 8, 0x2b},
{ 8, 0xb9},
{ 5, 0x2b},
{ 1, 0x00},
{ 2, 0x2b},
{ 3, 0x26},
{ 1, 0xba},
{ 1, 0xb9},
{ 1, 0x3a},
{ 1, 0xb8},
{ 2, 0x3a},
{ 1, 0x4c},
{ 3, 0x2b},
{ 1, 0x00},
{ 2, 0x2b},
{ 1, 0x26},
{ 1, 0xba},
{ 1, 0x26},
{ 1, 0xba},
{ 1, 0xb9},
{ 3, 0x4c},
{ 3, 0x2b},
{ 1, 0xb8},
{ 2, 0x00},
{ 2, 0x2b},
{ 3, 0x26},
{ 1, 0xba},
{ 1, 0x00},
{ 3, 0x4c},
{ 3, 0x2b},
{ 1, 0xb8},
{ 4, 0x2b},
{ 3, 0x26},
{ 1, 0xba},
{ 1, 0x26},
{ 1, 0x4c},
{ 2, 0xbb},
{ 2, 0x00},
{ 3, 0x2b},
{ 1, 0x00},
{ 2, 0x2b},
{ 1, 0x26},
{ 1, 0xba},
{ 1, 0x26},
{ 1, 0xba},
{ 1, 0xb9},
{ 1, 0xbb},
{ 1, 0x3a},
{ 1, 0x00},
{ 2, 0xbc},
{ 9, 0xbd},
{ 3, 0xaf},
{ 1, 0xbe},
{ 1, 0xbf},
{ 1, 0xc0},
{ 1, 0xc1},
{ 1, 0x54},
{ 3, 0xc0},
{ 1, 0x16},
{ 1, 0xc2},
{ 1, 0xc3},
{ 1, 0xc4},
{ 1, 0xc5},
{ 1, 0xc6},
{ 1, 0xc3},
{ 1, 0xc4},
{ 1, 0xc5},
{ 1, 0xc6},
{ 3, 0x16},
{ 1, 0x8a},
{ 3, 0xc7},
{ 1, 0x16},
{ 1, 0xc8},
{ 1, 0xc9},
{ 1, 0xca},
{ 1, 0xcb},
{ 1, 0xcc},
{ 1, 0xcd},
{ 1, 0xce},
{ 1, 0x15},
{ 1, 0xcf},
{ 1, 0x6e},
{ 1, 0xcf},
{ 1, 0xd0},
{ 1, 0xd1},
{ 1, 0x16},
{ 2, 0xc2},
{ 1, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 1, 0x16},
{ 1, 0xc2},
{ 1, 0x8a},
{ 1, 0xc7},
{ 2, 0xd2},
{ 3, 0x8a},
{ 1, 0xd3},
{ 1, 0xa4},
{ 1, 0xa5},
{ 3, 0xc2},
{ 8, 0x8a},
{ 1, 0x4e},
{ 1, 0x8a},
{ 1, 0xd2},
{ 2, 0x8a},
{ 1, 0xc2},
{ 7, 0x8a},
{ 1, 0xbd},
{ 5, 0xaf},
{ 1, 0x00},
{ 1, 0xd4},
{ 1, 0xd5},
{ 1, 0xd6},
{ 1, 0xd7},
{ 6, 0xaf},
{ 1, 0xd8},
{ 1, 0x33},
{ 2, 0x00},
{ 1, 0x22},
{ 5, 0xd8},
{ 2, 0xd9},
{ 1, 0xda},
{ 1, 0xdb},
{ 1, 0xdc},
{ 1, 0xdd},
{ 1, 0xd8},
{ 4, 0x22},
{ 5, 0xd8},
{ 2, 0xd9},
{ 1, 0xda},
{ 1, 0xdb},
{ 1, 0xdc},
{ 1, 0x00},
{ 13, 0x33},
{ 3, 0x00},
{ 8, 0x55},
{ 1, 0xde},
{ 1, 0xdf},
{ 2, 0x55},
{ 1, 0x17},
{ 19, 0x55},
{ 16, 0x00},
{ 2, 0x51},
{ 2, 0xb1},
{ 4, 0x51},
{ 3, 0xb1},
{ 2, 0x51},
{ 4, 0x52},
{ 1, 0x51},
{ 3, 0x52},
{ 2, 0xb1},
{ 1, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 2, 0xb1},
{ 4, 0x56},
{ 1, 0x51},
{ 15, 0x00},
{ 2, 0xe0},
{ 1, 0x31},
{ 1, 0xe1},
{ 1, 0x1a},
{ 1, 0xe1},
{ 1, 0xe0},
{ 1, 0x31},
{ 1, 0x1a},
{ 1, 0xe1},
{ 1, 0x23},
{ 3, 0x31},
{ 2, 0x23},
{ 3, 0x31},
{ 1, 0x2e},
{ 1, 0x1a},
{ 1, 0x31},
{ 1, 0xe1},
{ 1, 0x1a},
{ 1, 0x4e},
{ 5, 0x31},
{ 2, 0x1a},
{ 1, 0xe0},
{ 2, 0xe1},
{ 1, 0x1a},
{ 1, 0x31},
{ 1, 0x1a},
{ 1, 0xe2},
{ 1, 0x1a},
{ 1, 0x31},
{ 1, 0x1a},
{ 1, 0xba},
{ 1, 0xe2},
{ 2, 0x31},
{ 1, 0xe3},
{ 1, 0x23},
{ 2, 0x31},
{ 1, 0x2c},
{ 1, 0x31},
{ 1, 0x23},
{ 4, 0x9d},
{ 1, 0x23},
{ 1, 0x1a},
{ 1, 0xe0},
{ 2, 0x23},
{ 2, 0x31},
{ 1, 0xe4},
{ 4, 0x4e},
{ 1, 0x31},
{ 4, 0x23},
{ 1, 0x1a},
{ 1, 0x4e},
{ 2, 0x1a},
{ 1, 0x2f},
{ 1, 0x50},
{ 3, 0xe5},
{ 2, 0x25},
{ 6, 0xe5},
{ 4, 0x25},
{ 1, 0xe5},
{ 12, 0xe6},
{ 4, 0xe7},
{ 10, 0xe6},
{ 6, 0xe7},
{ 3, 0xae},
{ 1, 0x2c},
{ 1, 0x2f},
{ 4, 0xae},
{ 1, 0x25},
{ 2, 0x1a},
{ 4, 0x00},
{ 5, 0x28},
{ 5, 0x1e},
{ 2, 0xe8},
{ 4, 0x1a},
{ 1, 0x4e},
{ 2, 0x1a},
{ 1, 0x4e},
{ 2, 0x1a},
{ 1, 0x4e},
{ 7, 0x1a},
{ 1, 0xe8},
{ 9, 0x1a},
{ 2, 0x1e},
{ 19, 0x1a},
{ 1, 0xe9},
{ 2, 0xe8},
{ 2, 0x1a},
{ 1, 0x28},
{ 1, 0x1a},
{ 1, 0x28},
{ 18, 0x1a},
{ 1, 0x1e},
{ 12, 0x1a},
{ 12, 0x4e},
{ 1, 0x28},
{ 1, 0xea},
{ 2, 0xeb},
{ 1, 0xec},
{ 2, 0x4e},
{ 1, 0x28},
{ 1, 0xeb},
{ 1, 0xec},
{ 1, 0xea},
{ 1, 0xeb},
{ 1, 0xec},
{ 1, 0xea},
{ 1, 0x4e},
{ 1, 0x28},
{ 1, 0x4e},
{ 1, 0xeb},
{ 1, 0xed},
{ 1, 0xee},
{ 1, 0x4e},
{ 1, 0xeb},
{ 1, 0xea},
{ 3, 0x4e},
{ 1, 0xeb},
{ 2, 0xea},
{ 1, 0xeb},
{ 1, 0x28},
{ 2, 0xeb},
{ 2, 0xea},
{ 1, 0x28},
{ 1, 0xec},
{ 1, 0x28},
{ 1, 0xec},
{ 4, 0x28},
{ 1, 0xeb},
{ 1, 0xef},
{ 1, 0xe4},
{ 1, 0xeb},
{ 2, 0xe4},
{ 3, 0xea},
{ 4, 0x28},
{ 1, 0x4e},
{ 1, 0xea},
{ 1, 0x4e},
{ 1, 0xea},
{ 2, 0xeb},
{ 3, 0xea},
{ 1, 0xec},
{ 2, 0xea},
{ 1, 0xec},
{ 2, 0xea},
{ 1, 0xec},
{ 1, 0xeb},
{ 1, 0xec},
{ 2, 0xea},
{ 1, 0xeb},
{ 5, 0x4e},
{ 1, 0xeb},
{ 3, 0xea},
{ 9, 0x4e},
{ 1, 0xea},
{ 1, 0xf0},
{ 1, 0x28},
{ 1, 0xec},
{ 1, 0x4e},
{ 4, 0xeb},
{ 2, 0xea},
{ 2, 0xeb},
{ 1, 0x4e},
{ 1, 0xe8},
{ 2, 0xf0},
{ 2, 0xec},
{ 2, 0xea},
{ 2, 0xec},
{ 2, 0xea},
{ 2, 0xec},
{ 6, 0xea},
{ 2, 0xec},
{ 2, 0xeb},
{ 2, 0xec},
{ 2, 0xeb},
{ 2, 0xec},
{ 3, 0xea},
{ 2, 0x4e},
{ 4, 0xea},
{ 2, 0x4e},
{ 1, 0x28},
{ 2, 0x4e},
{ 1, 0xea},
{ 1, 0x28},
{ 8, 0x4e},
{ 2, 0xea},
{ 1, 0x4e},
{ 1, 0x28},
{ 6, 0xea},
{ 4, 0xec},
{ 9, 0xea},
{ 5, 0x4e},
{ 1, 0xea},
{ 1, 0xeb},
{ 9, 0x4e},
{ 5, 0xea},
{ 2, 0x4e},
{ 2, 0xea},
{ 4, 0x4e},
{ 10, 0xea},
{ 4, 0xec},
{ 6, 0xea},
{ 4, 0xec},
{ 2, 0x4e},
{ 16, 0xea},
{ 8, 0x1a},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 6, 0x1a},
{ 1, 0x1e},
{ 7, 0x1a},
{ 2, 0xf1},
{ 4, 0x1a},
{ 2, 0xea},
{ 7, 0x1a},
{ 1, 0xf2},
{ 1, 0xf3},
{ 11, 0x1a},
{ 69, 0x50},
{ 1, 0x1a},
{ 1, 0x4e},
{ 24, 0x1a},
{ 1, 0x50},
{ 5, 0x1a},
{ 25, 0x4e},
{ 40, 0x1a},
{ 6, 0x4e},
{ 7, 0x1a},
{ 4, 0xf1},
{ 3, 0x1a},
{ 1, 0xf1},
{ 2, 0x1a},
{ 1, 0xf1},
{ 51, 0x1a},
{ 25, 0x00},
{ 11, 0x1a},
{ 21, 0x00},
{ 40, 0x25},
{ 20, 0x22},
{ 78, 0xf4},
{ 1, 0xe5},
{ 21, 0xf5},
{ 76, 0x1e},
{ 4, 0x1a},
{ 36, 0x1e},
{ 12, 0x1a},
{ 16, 0x1e},
{ 2, 0x1a},
{ 4, 0x1e},
{ 10, 0x1a},
{ 2, 0x1e},
{ 1, 0x1a},
{ 7, 0x1e},
{ 8, 0x1a},
{ 2, 0x1e},
{ 2, 0x1a},
{ 1, 0x1e},
{ 1, 0x28},
{ 4, 0x1a},
{ 2, 0x1e},
{ 2, 0x1a},
{ 1, 0x1e},
{ 1, 0x28},
{ 4, 0x1a},
{ 3, 0x1e},
{ 2, 0x1a},
{ 1, 0x1e},
{ 2, 0x1a},
{ 4, 0x1e},
{ 16, 0x1a},
{ 4, 0x1e},
{ 9, 0x1a},
{ 1, 0x1e},
{ 8, 0x1a},
{ 5, 0x4e},
{ 2, 0xf6},
{ 1, 0x4e},
{ 5, 0x1a},
{ 2, 0x1e},
{ 2, 0x1a},
{ 1, 0x1e},
{ 4, 0x1a},
{ 2, 0x1e},
{ 4, 0x1a},
{ 2, 0xf1},
{ 6, 0x1a},
{ 1, 0x1e},
{ 1, 0x1a},
{ 1, 0x1e},
{ 33, 0x1a},
{ 1, 0x1e},
{ 1, 0x1a},
{ 1, 0x1e},
{ 5, 0x1a},
{ 12, 0xf1},
{ 12, 0x1a},
{ 2, 0x1e},
{ 1, 0x1a},
{ 3, 0x1e},
{ 1, 0x1a},
{ 4, 0x1e},
{ 1, 0x1a},
{ 2, 0x1e},
{ 1, 0x1a},
{ 1, 0x28},
{ 15, 0x1a},
{ 1, 0xf1},
{ 19, 0x1a},
{ 1, 0xf1},
{ 10, 0x1a},
{ 2, 0x1e},
{ 1, 0x1a},
{ 1, 0xf1},
{ 8, 0x1a},
{ 2, 0xf1},
{ 1, 0x50},
{ 16, 0x1a},
{ 2, 0xf1},
{ 1, 0x1e},
{ 4, 0x1a},
{ 2, 0xf1},
{ 8, 0x1e},
{ 1, 0xf1},
{ 5, 0x1e},
{ 1, 0xf1},
{ 13, 0x1e},
{ 1, 0x1a},
{ 1, 0x1e},
{ 4, 0x1a},
{ 2, 0x1e},
{ 1, 0xf1},
{ 7, 0x1e},
{ 2, 0xf1},
{ 1, 0x1e},
{ 1, 0xf1},
{ 4, 0x1e},
{ 1, 0xf1},
{ 2, 0x1e},
{ 1, 0xf1},
{ 2, 0x1e},
{ 5, 0x1a},
{ 1, 0xf1},
{ 4, 0x1a},
{ 2, 0xf1},
{ 28, 0x1a},
{ 1, 0xf1},
{ 20, 0x1a},
{ 1, 0x1e},
{ 14, 0x1a},
{ 1, 0xf1},
{ 1, 0x1a},
{ 1, 0xf1},
{ 4, 0x1a},
{ 3, 0xf1},
{ 1, 0x1a},
{ 1, 0xf1},
{ 16, 0x1a},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 10, 0xf5},
{ 20, 0x9a},
{ 1, 0x1a},
{ 3, 0xf1},
{ 24, 0x1a},
{ 1, 0xf1},
{ 14, 0x1a},
{ 1, 0xf1},
{ 1, 0xea},
{ 2, 0x4e},
{ 2, 0xea},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0x4e},
{ 2, 0xea},
{ 1, 0x4e},
{ 3, 0xea},
{ 5, 0x4e},
{ 4, 0xea},
{ 5, 0x4e},
{ 3, 0xea},
{ 3, 0x4e},
{ 4, 0xea},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0xa4},
{ 1, 0xa5},
{ 16, 0x4e},
{128, 0x50},
{131, 0x4e},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 2, 0x4e},
{ 6, 0xea},
{ 1, 0x4e},
{ 14, 0xea},
{ 8, 0x4e},
{ 1, 0xea},
{ 7, 0x4e},
{ 6, 0xea},
{ 3, 0x4e},
{ 1, 0xea},
{ 4, 0x4e},
{ 5, 0xea},
{ 1, 0x4e},
{ 2, 0xea},
{ 2, 0x4e},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xea},
{ 4, 0x4e},
{ 1, 0xea},
{ 1, 0x4e},
{ 3, 0xea},
{ 2, 0x4e},
{ 2, 0xea},
{ 10, 0x4e},
{ 6, 0xea},
{ 2, 0x4e},
{ 1, 0xa4},
{ 1, 0xa5},
{ 12, 0x4e},
{ 2, 0xea},
{ 1, 0xe4},
{ 16, 0xea},
{ 1, 0x4e},
{ 4, 0xea},
{ 2, 0x4e},
{ 1, 0xea},
{ 1, 0x4e},
{ 1, 0xea},
{ 2, 0x4e},
{ 1, 0xea},
{ 1, 0x4e},
{ 4, 0xea},
{ 5, 0x4e},
{ 2, 0xea},
{ 6, 0x4e},
{ 3, 0xea},
{ 24, 0x4e},
{ 2, 0xea},
{ 11, 0x4e},
{ 2, 0xea},
{ 4, 0x4e},
{ 4, 0xea},
{ 1, 0x4e},
{ 2, 0xea},
{ 2, 0x4e},
{ 1, 0xea},
{ 1, 0xe4},
{ 2, 0xda},
{ 2, 0x4e},
{ 43, 0xea},
{ 2, 0x4e},
{ 8, 0xea},
{ 1, 0x4e},
{ 40, 0xea},
{ 5, 0x4e},
{ 1, 0xf7},
{ 1, 0x4e},
{ 1, 0xea},
{ 3, 0x4e},
{ 5, 0xea},
{ 5, 0x4e},
{ 3, 0xea},
{ 4, 0x4e},
{ 1, 0xea},
{ 3, 0x4e},
{ 5, 0xea},
{ 1, 0x4e},
{ 1, 0xea},
{ 2, 0x4e},
{ 27, 0x1a},
{ 2, 0xf1},
{ 19, 0x1a},
{ 21, 0x4e},
{ 2, 0x1a},
{ 6, 0x4e},
{ 3, 0x1a},
{ 1, 0xf1},
{ 4, 0x1a},
{ 1, 0xf1},
{ 4, 0x1e},
{ 26, 0x1a},
{ 2, 0x00},
{ 32, 0x1a},
{ 1, 0x00},
{103, 0x1a},
{ 1, 0xf8},
{ 1, 0x1a},
{ 47, 0x2c},
{ 1, 0x00},
{ 47, 0x2f},
{ 1, 0x00},
{ 1, 0x2c},
{ 1, 0x2f},
{ 3, 0x2c},
{ 2, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 4, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 2, 0x2f},
{ 1, 0x2c},
{ 6, 0x2f},
{ 2, 0x33},
{ 3, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 2, 0x2f},
{ 6, 0x1a},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 3, 0x51},
{ 1, 0x2c},
{ 1, 0x2f},
{ 5, 0x00},
{ 4, 0x8a},
{ 1, 0x9a},
{ 2, 0x8a},
{ 38, 0x2f},
{ 1, 0x00},
{ 1, 0x2f},
{ 5, 0x00},
{ 1, 0x2f},
{ 2, 0x00},
{ 56, 0x30},
{ 7, 0x00},
{ 1, 0x33},
{ 1, 0x53},
{ 14, 0x00},
{ 1, 0x8f},
{ 23, 0x30},
{ 9, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 32, 0x51},
{ 2, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 1, 0x1c},
{ 1, 0x24},
{ 3, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 1, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 9, 0x8a},
{ 1, 0x54},
{ 2, 0x8a},
{ 1, 0x54},
{ 1, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 2, 0x8a},
{ 1, 0x1c},
{ 1, 0x24},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa4},
{ 1, 0xa5},
{ 5, 0x8a},
{ 1, 0x34},
{ 10, 0x8a},
{ 2, 0x54},
{ 4, 0x8a},
{ 1, 0x54},
{ 1, 0x8a},
{ 1, 0xc5},
{ 13, 0x8a},
{ 2, 0x1a},
{ 1, 0x8a},
{ 45, 0x00},
{ 26, 0xf1},
{ 1, 0x00},
{ 4, 0xf1},
{ 1, 0xf9},
{ 83, 0xf1},
{ 1, 0xf9},
{ 12, 0x00},
{214, 0xf9},
{ 26, 0x00},
{ 12, 0xf1},
{ 4, 0x00},
{ 1, 0xfa},
{ 3, 0xfb},
{ 1, 0xf1},
{ 1, 0xfc},
{ 1, 0xab},
{ 1, 0xfd},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 2, 0xf1},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0x100},
{ 1, 0x101},
{ 2, 0x102},
{ 1, 0xf1},
{ 9, 0xfd},
{ 1, 0x103},
{ 1, 0x104},
{ 1, 0x105},
{ 1, 0x106},
{ 2, 0x107},
{ 1, 0x100},
{ 5, 0xfc},
{ 1, 0xf9},
{ 1, 0xf1},
{ 3, 0x108},
{ 1, 0xfc},
{ 1, 0xab},
{ 1, 0xfb},
{ 1, 0xf1},
{ 1, 0x1a},
{ 1, 0x00},
{ 11, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 2, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 6, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 22, 0xab},
{ 1, 0x109},
{ 2, 0xab},
{ 2, 0x00},
{ 2, 0x10a},
{ 2, 0x10b},
{ 1, 0xfc},
{ 1, 0x10c},
{ 1, 0x10d},
{ 1, 0x100},
{ 11, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 2, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 1, 0xab},
{ 1, 0x109},
{ 6, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 1, 0xab},
{ 2, 0x109},
{ 22, 0xab},
{ 1, 0x109},
{ 2, 0xab},
{ 4, 0x109},
{ 1, 0xfb},
{ 2, 0xfc},
{ 1, 0x10c},
{ 1, 0x10d},
{ 5, 0x00},
{ 43, 0xab},
{ 1, 0x00},
{ 94, 0x10d},
{ 1, 0x00},
{ 2, 0x10e},
{ 4, 0x10f},
{ 10, 0x110},
{ 32, 0xab},
{ 36, 0xf1},
{ 12, 0x00},
{ 16, 0xab},
{ 29, 0x110},
{ 2, 0xf9},
{ 1, 0x00},
{ 10, 0x10f},
{ 30, 0x110},
{ 8, 0x111},
{ 1, 0xf9},
{ 15, 0x112},
{ 28, 0x110},
{ 3, 0xf9},
{ 1, 0x10e},
{ 10, 0x10f},
{ 39, 0x110},
{ 15, 0x112},
{ 12, 0x110},
{ 4, 0xf9},
{167, 0x110},
{ 4, 0xf9},
{ 99, 0x110},
{ 2, 0xf9},
{ 31, 0x110},
{ 1, 0xf9},
{192, 0xab},
{ 64, 0x1a},
{125, 0xab},
{ 3, 0x00},
{ 21, 0xab},
{ 1, 0xfc},
{119, 0xab},
{ 3, 0x00},
{ 55, 0xf1},
{ 9, 0x00},
{ 40, 0x30},
{ 6, 0x35},
{ 2, 0x53},
{ 12, 0x30},
{ 1, 0x35},
{ 3, 0x8a},
{ 16, 0x30},
{ 10, 0x91},
{ 2, 0x30},
{ 20, 0x00},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x30},
{ 1, 0x51},
{ 3, 0x52},
{ 1, 0x8a},
{ 10, 0x51},
{ 1, 0x8a},
{ 1, 0x34},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x33},
{ 2, 0x51},
{ 70, 0x30},
{ 10, 0xae},
{ 2, 0x51},
{ 6, 0x53},
{ 8, 0x00},
{ 23, 0x36},
{ 9, 0x34},
{ 2, 0x36},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 3, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x33},
{ 8, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x34},
{ 2, 0x113},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x30},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 3, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 5, 0x2c},
{ 1, 0x2f},
{ 5, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 2, 0x00},
{ 1, 0x2c},
{ 1, 0x2f},
{ 4, 0x2c},
{ 1, 0x2f},
{ 1, 0x2c},
{ 1, 0x2f},
{ 42, 0x00},
{ 1, 0x2c},
{ 1, 0x2f},
{ 1, 0x30},
{ 2, 0x33},
{ 1, 0x2f},
{ 7, 0x30},
{ 1, 0x87},
{ 3, 0x30},
{ 1, 0x8f},
{ 4, 0x30},
{ 1, 0x87},
{ 23, 0x30},
{ 2, 0x8c},
{ 2, 0x87},
{ 1, 0x8c},
{ 4, 0x1a},
{ 1, 0x8f},
{ 3, 0x00},
{ 6, 0x95},
{ 2, 0x50},
{ 1, 0x55},
{ 1, 0xe3},
{ 6, 0x00},
{ 52, 0x30},
{ 4, 0x8a},
{ 8, 0x00},
{ 2, 0x8c},
{ 50, 0x30},
{ 16, 0x8c},
{ 1, 0x8f},
{ 1, 0x87},
{ 8, 0x00},
{ 2, 0x53},
{ 10, 0x91},
{ 6, 0x00},
{ 18, 0x51},
{ 6, 0x30},
{ 3, 0x53},
{ 1, 0x30},
{ 1, 0x53},
{ 2, 0x30},
{ 1, 0x87},
{ 10, 0x91},
{ 28, 0x30},
{ 5, 0x87},
{ 3, 0x56},
{ 2, 0x53},
{ 23, 0x30},
{ 11, 0x87},
{ 1, 0x8c},
{ 1, 0xb0},
{ 11, 0x00},
{ 1, 0x53},
{ 29, 0xab},
{ 3, 0x00},
{ 3, 0x87},
{ 1, 0x8c},
{ 47, 0x30},
{ 1, 0x92},
{ 2, 0x8c},
{ 4, 0x87},
{ 2, 0x8c},
{ 2, 0x87},
{ 2, 0x8c},
{ 1, 0xb0},
{ 13, 0x53},
{ 1, 0x00},
{ 1, 0x35},
{ 10, 0x91},
{ 4, 0x00},
{ 2, 0x53},
{ 5, 0x30},
{ 1, 0x87},
{ 1, 0x35},
{ 9, 0x30},
{ 10, 0x91},
{ 5, 0x30},
{ 1, 0x00},
{ 41, 0x30},
{ 6, 0x87},
{ 2, 0x8c},
{ 2, 0x87},
{ 2, 0x8c},
{ 2, 0x87},
{ 9, 0x00},
{ 3, 0x30},
{ 1, 0x87},
{ 8, 0x30},
{ 1, 0x87},
{ 1, 0x8c},
{ 2, 0x00},
{ 10, 0x91},
{ 2, 0x00},
{ 4, 0x53},
{ 16, 0x30},
{ 1, 0x35},
{ 6, 0x30},
{ 3, 0x50},
{ 1, 0x30},
{ 1, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 50, 0x30},
{ 1, 0x51},
{ 1, 0x30},
{ 2, 0x51},
{ 1, 0x56},
{ 2, 0x30},
{ 2, 0x51},
{ 5, 0x30},
{ 2, 0x51},
{ 1, 0x30},
{ 1, 0x51},
{ 1, 0x30},
{ 24, 0x00},
{ 2, 0x30},
{ 1, 0x35},
{ 2, 0x53},
{ 11, 0x30},
{ 1, 0x8c},
{ 2, 0x87},
{ 2, 0x8c},
{ 2, 0x53},
{ 1, 0x30},
{ 2, 0x35},
{ 1, 0x8c},
{ 1, 0x8f},
{ 10, 0x00},
{ 6, 0x30},
{ 2, 0x00},
{ 6, 0x30},
{ 2, 0x00},
{ 6, 0x30},
{ 9, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 43, 0x2f},
{ 1, 0x113},
{ 4, 0x33},
{ 9, 0x2f},
{ 1, 0x33},
{ 2, 0x36},
{ 4, 0x00},
{ 80, 0x2f},
{ 35, 0x30},
{ 2, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 1, 0x53},
{ 1, 0x8c},
{ 1, 0x8f},
{ 2, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{164, 0x109},
{ 12, 0x00},
{ 23, 0x30},
{ 4, 0x00},
{ 49, 0x30},
{ 4, 0x00},
{128, 0x114},
{128, 0x115},
{142, 0x116},
{ 2, 0xab},
{ 1, 0x116},
{ 1, 0xab},
{ 1, 0x116},
{ 2, 0xab},
{ 10, 0x116},
{ 1, 0xab},
{ 1, 0x116},
{ 1, 0xab},
{ 1, 0x116},
{ 2, 0xab},
{ 2, 0x116},
{ 3, 0xab},
{ 68, 0x116},
{ 2, 0x00},
{106, 0x116},
{ 38, 0x00},
{ 7, 0x23},
{ 12, 0x00},
{ 5, 0x23},
{ 5, 0x00},
{ 1, 0x117},
{ 1, 0x118},
{ 1, 0x117},
{ 9, 0x119},
{ 1, 0xd9},
{ 13, 0x117},
{ 1, 0x00},
{ 5, 0x117},
{ 1, 0x00},
{ 1, 0x117},
{ 1, 0x00},
{ 2, 0x117},
{ 1, 0x00},
{ 2, 0x117},
{ 1, 0x00},
{ 9, 0x117},
{ 1, 0x119},
{ 98, 0x83},
{ 16, 0x11a},
{ 17, 0x00},
{235, 0x83},
{ 1, 0x11b},
{ 1, 0xc5},
{ 16, 0x00},
{ 64, 0x83},
{ 2, 0x00},
{ 54, 0x83},
{ 40, 0x00},
{ 12, 0x83},
{ 1, 0x11c},
{ 1, 0x1a},
{ 2, 0x00},
{ 16, 0x47},
{ 7, 0x11d},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11d},
{ 6, 0x00},
{ 7, 0x51},
{ 7, 0x56},
{ 2, 0x51},
{ 1, 0x11d},
{ 2, 0x120},
{ 2, 0x121},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x11e},
{ 1, 0x11f},
{ 2, 0xfb},
{ 1, 0x11e},
{ 1, 0x11f},
{ 4, 0x11d},
{ 3, 0x121},
{ 1, 0x122},
{ 1, 0x11d},
{ 1, 0x122},
{ 1, 0x00},
{ 1, 0x11d},
{ 1, 0x122},
{ 2, 0x11d},
{ 1, 0x120},
{ 1, 0x123},
{ 1, 0x124},
{ 1, 0x123},
{ 1, 0x124},
{ 1, 0x123},
{ 1, 0x124},
{ 1, 0x125},
{ 2, 0x11d},
{ 1, 0x126},
{ 1, 0x127},
{ 2, 0x128},
{ 1, 0x129},
{ 1, 0x00},
{ 1, 0x11d},
{ 1, 0x12a},
{ 1, 0x125},
{ 1, 0x11d},
{ 4, 0x00},
{ 3, 0x83},
{ 1, 0x76},
{ 1, 0x83},
{ 1, 0x00},
{135, 0x83},
{ 2, 0x00},
{ 1, 0xaf},
{ 1, 0x00},
{ 2, 0x12b},
{ 1, 0x12c},
{ 1, 0x12d},
{ 1, 0x12c},
{ 2, 0x12b},
{ 1, 0x12e},
{ 1, 0x12f},
{ 1, 0x12b},
{ 1, 0x130},
{ 1, 0x131},
{ 1, 0x132},
{ 2, 0x131},
{ 10, 0x133},
{ 1, 0x131},
{ 1, 0x12b},
{ 1, 0x134},
{ 1, 0x135},
{ 1, 0x134},
{ 2, 0x12b},
{ 26, 0x136},
{ 1, 0x12e},
{ 1, 0x12b},
{ 1, 0x12f},
{ 1, 0x137},
{ 1, 0x138},
{ 1, 0x137},
{ 26, 0x139},
{ 1, 0x12e},
{ 1, 0x135},
{ 1, 0x12f},
{ 1, 0x135},
{ 1, 0x12e},
{ 1, 0x12f},
{ 1, 0x13a},
{ 1, 0x13b},
{ 1, 0x13c},
{ 2, 0x13a},
{ 10, 0x13d},
{ 1, 0x13e},
{ 45, 0x13d},
{ 2, 0x13e},
{ 31, 0x13d},
{ 3, 0x00},
{ 6, 0x13d},
{ 2, 0x00},
{ 6, 0x13d},
{ 2, 0x00},
{ 6, 0x13d},
{ 2, 0x00},
{ 3, 0x13d},
{ 3, 0x00},
{ 2, 0x12d},
{ 1, 0x135},
{ 1, 0x137},
{ 1, 0x13f},
{ 2, 0x12d},
{ 1, 0x00},
{ 1, 0x140},
{ 4, 0x141},
{ 2, 0x140},
{ 10, 0x00},
{ 3, 0x142},
{ 1, 0x1a},
{ 1, 0x1e},
{ 2, 0x00},
{ 12, 0x30},
{ 1, 0x00},
{ 26, 0x30},
{ 1, 0x00},
{ 19, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 15, 0x30},
{ 2, 0x00},
{ 14, 0x30},
{ 34, 0x00},
{123, 0x30},
{ 5, 0x00},
{ 1, 0x53},
{ 1, 0x8a},
{ 1, 0x53},
{ 4, 0x00},
{ 45, 0x95},
{ 3, 0x00},
{ 9, 0x50},
{ 53, 0x143},
{ 4, 0x9a},
{ 17, 0x1a},
{ 2, 0x9a},
{ 1, 0x1a},
{ 2, 0x50},
{ 1, 0x00},
{ 13, 0x1a},
{ 3, 0x00},
{ 1, 0x1a},
{ 47, 0x00},
{ 45, 0x50},
{ 1, 0x56},
{130, 0x00},
{ 29, 0x30},
{ 3, 0x00},
{ 49, 0x30},
{ 15, 0x00},
{ 1, 0x56},
{ 27, 0x144},
{ 4, 0x00},
{ 32, 0x30},
{ 4, 0x95},
{ 9, 0x00},
{ 20, 0x30},
{ 1, 0xae},
{ 8, 0x30},
{ 1, 0xae},
{ 5, 0x00},
{ 38, 0x30},
{ 5, 0x51},
{ 5, 0x00},
{ 30, 0x30},
{ 1, 0x00},
{ 1, 0x53},
{ 36, 0x30},
{ 4, 0x00},
{ 8, 0x30},
{ 1, 0x53},
{ 5, 0xae},
{ 42, 0x00},
{ 40, 0x2c},
{ 40, 0x2f},
{ 78, 0x30},
{ 2, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 36, 0x2c},
{ 4, 0x00},
{ 36, 0x2f},
{ 4, 0x00},
{ 40, 0x30},
{ 8, 0x00},
{ 52, 0x30},
{ 11, 0x00},
{ 1, 0x53},
{ 16, 0x00},
{ 55, 0x30},
{ 9, 0x00},
{ 22, 0x30},
{ 10, 0x00},
{ 8, 0x30},
{ 24, 0x00},
{ 6, 0x6b},
{ 2, 0x00},
{ 1, 0x6b},
{ 1, 0x00},
{ 44, 0x6b},
{ 1, 0x00},
{ 2, 0x6b},
{ 3, 0x00},
{ 1, 0x6b},
{ 2, 0x00},
{ 23, 0x6b},
{ 1, 0x00},
{ 1, 0x68},
{ 8, 0x145},
{ 23, 0x6b},
{ 2, 0x146},
{ 7, 0x145},
{ 31, 0x6b},
{ 8, 0x00},
{ 9, 0x145},
{ 48, 0x00},
{ 19, 0x6b},
{ 1, 0x00},
{ 2, 0x6b},
{ 5, 0x00},
{ 5, 0x145},
{ 22, 0x6b},
{ 6, 0x145},
{ 3, 0x00},
{ 1, 0x8a},
{ 26, 0x6b},
{ 5, 0x00},
{ 1, 0x68},
{ 64, 0x00},
{ 56, 0x6b},
{ 4, 0x00},
{ 2, 0x145},
{ 2, 0x6b},
{ 16, 0x145},
{ 2, 0x00},
{ 46, 0x145},
{ 1, 0x6b},
{ 3, 0x87},
{ 1, 0x00},
{ 2, 0x87},
{ 5, 0x00},
{ 1, 0x87},
{ 1, 0x56},
{ 1, 0x87},
{ 1, 0x51},
{ 4, 0x6b},
{ 1, 0x00},
{ 3, 0x6b},
{ 1, 0x00},
{ 29, 0x6b},
{ 2, 0x00},
{ 1, 0x51},
{ 1, 0xb1},
{ 1, 0x56},
{ 4, 0x00},
{ 1, 0x8f},
{ 9, 0x145},
{ 7, 0x00},
{ 9, 0x68},
{ 7, 0x00},
{ 29, 0x6b},
{ 2, 0x145},
{ 1, 0x68},
{ 29, 0x6b},
{ 3, 0x145},
{ 32, 0x00},
{ 8, 0x6b},
{ 1, 0x146},
{ 28, 0x6b},
{ 1, 0x51},
{ 1, 0x56},
{ 4, 0x00},
{ 5, 0x145},
{ 7, 0x68},
{ 9, 0x00},
{ 54, 0x6b},
{ 3, 0x00},
{ 7, 0x8a},
{ 22, 0x6b},
{ 2, 0x00},
{ 8, 0x145},
{ 19, 0x6b},
{ 5, 0x00},
{ 8, 0x145},
{ 18, 0x6b},
{ 7, 0x00},
{ 4, 0x68},
{ 12, 0x00},
{ 7, 0x145},
{ 80, 0x00},
{ 73, 0x6b},
{ 55, 0x00},
{ 51, 0x147},
{ 13, 0x00},
{ 51, 0x148},
{ 7, 0x00},
{ 6, 0x145},
{ 36, 0x76},
{ 4, 0x51},
{ 8, 0x00},
{ 10, 0x80},
{166, 0x00},
{ 31, 0x149},
{ 1, 0x00},
{ 42, 0x6b},
{ 1, 0x00},
{ 2, 0x51},
{ 1, 0x66},
{ 2, 0x00},
{ 2, 0x6b},
{ 78, 0x00},
{ 29, 0x6b},
{ 10, 0x145},
{ 1, 0x6b},
{ 8, 0x00},
{ 22, 0x76},
{ 2, 0x56},
{ 3, 0x51},
{ 1, 0x56},
{ 1, 0x51},
{ 4, 0x56},
{ 4, 0x14a},
{ 5, 0x71},
{ 86, 0x00},
{ 21, 0x6b},
{ 7, 0x145},
{ 20, 0x00},
{ 23, 0x6b},
{ 9, 0x00},
{ 1, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 53, 0x30},
{ 14, 0x87},
{ 1, 0x8f},
{ 7, 0x53},
{ 4, 0x00},
{ 20, 0x9a},
{ 10, 0x91},
{ 15, 0x00},
{ 1, 0x8f},
{ 2, 0x87},
{ 1, 0x8c},
{ 23, 0x30},
{ 1, 0x8d},
{ 1, 0x30},
{ 1, 0x8d},
{ 14, 0x30},
{ 1, 0x8d},
{ 4, 0x30},
{ 3, 0x8c},
{ 4, 0x87},
{ 2, 0x8c},
{ 1, 0x8f},
{ 1, 0x8e},
{ 2, 0x53},
{ 1, 0xbe},
{ 4, 0x53},
{ 11, 0x00},
{ 1, 0xbe},
{ 2, 0x00},
{ 25, 0x30},
{ 7, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 3, 0x51},
{ 36, 0x30},
{ 1, 0x96},
{ 4, 0x87},
{ 1, 0x8c},
{ 1, 0x87},
{ 2, 0x97},
{ 3, 0x87},
{ 2, 0x8f},
{ 1, 0x00},
{ 10, 0x91},
{ 4, 0x53},
{ 1, 0x30},
{ 2, 0x8c},
{ 1, 0x30},
{ 8, 0x00},
{ 35, 0x30},
{ 1, 0x92},
{ 2, 0x53},
{ 1, 0x30},
{ 9, 0x00},
{ 2, 0x87},
{ 1, 0x8c},
{ 48, 0x30},
{ 3, 0x8c},
{ 9, 0x87},
{ 1, 0x8c},
{ 1, 0xb0},
{ 4, 0x30},
{ 4, 0x53},
{ 1, 0x87},
{ 1, 0x92},
{ 2, 0x87},
{ 1, 0x53},
{ 1, 0x8c},
{ 1, 0x87},
{ 10, 0x91},
{ 1, 0x30},
{ 1, 0x53},
{ 1, 0x30},
{ 3, 0x53},
{ 1, 0x00},
{ 20, 0x95},
{ 11, 0x00},
{ 18, 0x30},
{ 1, 0x00},
{ 25, 0x30},
{ 3, 0x8c},
{ 3, 0x87},
{ 2, 0x8c},
{ 1, 0x87},
{ 1, 0xb0},
{ 1, 0x92},
{ 1, 0x87},
{ 6, 0x53},
{ 1, 0x87},
{ 65, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 1, 0x30},
{ 1, 0x00},
{ 4, 0x30},
{ 1, 0x00},
{ 15, 0x30},
{ 1, 0x00},
{ 10, 0x30},
{ 1, 0x53},
{ 6, 0x00},
{ 47, 0x30},
{ 1, 0x87},
{ 3, 0x8c},
{ 6, 0x87},
{ 1, 0x92},
{ 1, 0x8f},
{ 5, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 2, 0x87},
{ 2, 0x8c},
{ 1, 0x00},
{ 8, 0x30},
{ 2, 0x00},
{ 2, 0x30},
{ 2, 0x00},
{ 22, 0x30},
{ 1, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 5, 0x30},
{ 1, 0x00},
{ 2, 0x92},
{ 1, 0x30},
{ 1, 0x93},
{ 1, 0x8c},
{ 1, 0x87},
{ 4, 0x8c},
{ 2, 0x00},
{ 2, 0x8c},
{ 2, 0x00},
{ 2, 0x94},
{ 1, 0xb0},
{ 2, 0x00},
{ 1, 0x30},
{ 6, 0x00},
{ 1, 0x93},
{ 5, 0x00},
{ 5, 0x30},
{ 2, 0x8c},
{ 2, 0x00},
{ 7, 0x51},
{ 3, 0x00},
{ 5, 0x51},
{ 11, 0x00},
{ 53, 0x30},
{ 3, 0x8c},
{ 8, 0x87},
{ 2, 0x8c},
{ 1, 0x8f},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x92},
{ 4, 0x30},
{ 5, 0x53},
{ 10, 0x91},
{ 2, 0x53},
{ 1, 0x00},
{ 1, 0x53},
{ 1, 0x51},
{ 3, 0x30},
{ 30, 0x00},
{ 48, 0x30},
{ 1, 0x93},
{ 2, 0x8c},
{ 6, 0x87},
{ 1, 0x8c},
{ 1, 0x96},
{ 2, 0x94},
{ 1, 0x93},
{ 1, 0x94},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x8f},
{ 1, 0x92},
{ 2, 0x30},
{ 1, 0x53},
{ 1, 0x30},
{ 8, 0x00},
{ 10, 0x91},
{ 38, 0x00},
{ 47, 0x30},
{ 1, 0x93},
{ 2, 0x8c},
{ 4, 0x87},
{ 2, 0x00},
{ 2, 0x8c},
{ 2, 0x94},
{ 2, 0x87},
{ 1, 0x8c},
{ 1, 0x8f},
{ 1, 0x92},
{ 23, 0x53},
{ 4, 0x30},
{ 2, 0x87},
{ 34, 0x00},
{ 48, 0x30},
{ 3, 0x8c},
{ 8, 0x87},
{ 2, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 1, 0x8f},
{ 1, 0x87},
{ 3, 0x53},
{ 1, 0x30},
{ 11, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 13, 0x8a},
{ 19, 0x00},
{ 43, 0x30},
{ 1, 0x87},
{ 1, 0x8c},
{ 1, 0x87},
{ 2, 0x8c},
{ 6, 0x87},
{ 1, 0xb0},
{ 1, 0x92},
{ 1, 0x30},
{ 7, 0x00},
{ 10, 0x91},
{ 54, 0x00},
{ 27, 0x30},
{ 2, 0x00},
{ 3, 0x87},
{ 2, 0x8c},
{ 4, 0x87},
{ 1, 0x8c},
{ 4, 0x87},
{ 1, 0x8f},
{ 4, 0x00},
{ 10, 0x91},
{ 2, 0x95},
{ 3, 0x53},
{ 1, 0x50},
{ 64, 0x00},
{ 44, 0x30},
{ 3, 0x8c},
{ 9, 0x87},
{ 1, 0x8c},
{ 1, 0x8f},
{ 1, 0x92},
{ 1, 0x53},
{100, 0x00},
{ 32, 0x2c},
{ 32, 0x2f},
{ 10, 0x91},
{ 9, 0x95},
{ 12, 0x00},
{ 8, 0x30},
{ 2, 0x00},
{ 1, 0x30},
{ 2, 0x00},
{ 8, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 24, 0x30},
{ 1, 0x93},
{ 5, 0x8c},
{ 1, 0x00},
{ 1, 0x8c},
{ 1, 0x94},
{ 2, 0x00},
{ 2, 0x87},
{ 1, 0xb0},
{ 1, 0x8f},
{ 1, 0x30},
{ 1, 0x8c},
{ 1, 0x30},
{ 1, 0x8c},
{ 1, 0x92},
{ 3, 0x53},
{ 9, 0x00},
{ 10, 0x91},
{ 70, 0x00},
{ 8, 0x30},
{ 2, 0x00},
{ 39, 0x30},
{ 3, 0x8c},
{ 4, 0x87},
{ 2, 0x00},
{ 2, 0x87},
{ 4, 0x8c},
{ 1, 0x8f},
{ 1, 0x30},
{ 1, 0x53},
{ 1, 0x30},
{ 1, 0x8c},
{ 27, 0x00},
{ 1, 0x30},
{ 6, 0x87},
{ 2, 0x9b},
{ 2, 0x87},
{ 40, 0x30},
{ 1, 0x87},
{ 1, 0x8f},
{ 4, 0x87},
{ 1, 0x8c},
{ 1, 0x30},
{ 4, 0x87},
{ 8, 0x53},
{ 1, 0x8f},
{ 8, 0x00},
{ 1, 0x30},
{ 6, 0x87},
{ 2, 0x8c},
{ 3, 0x87},
{ 46, 0x30},
{ 13, 0x87},
{ 1, 0x8c},
{ 1, 0x87},
{ 1, 0x8f},
{ 3, 0x53},
{ 1, 0x30},
{ 5, 0x53},
{ 29, 0x00},
{ 57, 0x30},
{ 7, 0x00},
{ 9, 0x30},
{ 1, 0x00},
{ 37, 0x30},
{ 1, 0x8c},
{ 7, 0x87},
{ 1, 0x00},
{ 6, 0x87},
{ 1, 0x8c},
{ 1, 0x14b},
{ 1, 0x30},
{ 5, 0x53},
{ 10, 0x00},
{ 10, 0x91},
{ 19, 0x95},
{ 3, 0x00},
{ 2, 0x53},
{ 30, 0x30},
{ 2, 0x00},
{ 22, 0x87},
{ 1, 0x00},
{ 1, 0x8c},
{ 7, 0x87},
{ 1, 0x8c},
{ 2, 0x87},
{ 1, 0x8c},
{ 2, 0x87},
{ 73, 0x00},
{ 7, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 38, 0x30},
{ 6, 0x87},
{ 3, 0x00},
{ 1, 0x87},
{ 1, 0x00},
{ 2, 0x87},
{ 1, 0x00},
{ 3, 0x87},
{ 1, 0x92},
{ 1, 0x87},
{ 2, 0x8f},
{ 1, 0x30},
{ 1, 0x87},
{ 8, 0x00},
{ 10, 0x91},
{ 6, 0x00},
{ 6, 0x30},
{ 1, 0x00},
{ 2, 0x30},
{ 1, 0x00},
{ 32, 0x30},
{ 5, 0x8c},
{ 1, 0x00},
{ 2, 0x87},
{ 1, 0x00},
{ 2, 0x8c},
{ 1, 0x87},
{ 1, 0x8c},
{ 1, 0x8f},
{ 1, 0x30},
{ 7, 0x00},
{ 10, 0x91},
{182, 0x00},
{ 19, 0x30},
{ 2, 0x87},
{ 2, 0x8c},
{ 2, 0x53},
{ 55, 0x00},
{ 1, 0x30},
{ 15, 0x00},
{ 21, 0x95},
{ 8, 0x1a},
{ 4, 0x55},
{ 17, 0x1a},
{ 13, 0x00},
{ 1, 0x53},
{ 26, 0x30},
{102, 0x00},
{111, 0xae},
{ 1, 0x00},
{ 5, 0x53},
{ 11, 0x00},
{ 68, 0x30},
{ 60, 0x00},
{ 47, 0x30},
{ 1, 0x00},
{ 9, 0xbe},
{ 71, 0x00},
{ 71, 0x30},
{ 57, 0x00},
{ 57, 0x30},
{ 7, 0x00},
{ 31, 0x30},
{ 1, 0x00},
{ 10, 0x91},
{ 4, 0x00},
{ 2, 0x53},
{ 96, 0x00},
{ 30, 0x30},
{ 2, 0x00},
{ 5, 0xb1},
{ 1, 0x53},
{ 10, 0x00},
{ 48, 0x30},
{ 7, 0x51},
{ 5, 0x53},
{ 4, 0x50},
{ 4, 0x35},
{ 1, 0x53},
{ 1, 0x50},
{ 10, 0x00},
{ 10, 0x91},
{ 1, 0x00},
{ 7, 0x95},
{ 1, 0x00},
{ 21, 0x30},
{ 5, 0x00},
{ 19, 0x30},
{176, 0x00},
{ 32, 0x2c},
{ 32, 0x2f},
{ 23, 0x95},
{ 4, 0x53},
{101, 0x00},
{ 75, 0x30},
{ 4, 0x00},
{ 1, 0x87},
{ 1, 0x30},
{ 55, 0x8c},
{ 7, 0x00},
{ 4, 0x87},
{ 13, 0x35},
{ 64, 0x00},
{ 2, 0xfc},
{ 1, 0xfb},
{ 1, 0xfc},
{ 1, 0x14c},
{ 11, 0x00},
{ 2, 0x14d},
{ 14, 0x00},
{120, 0xab},
{ 8, 0x00},
{ 86, 0xab},
{ 42, 0x00},
{ 9, 0xab},
{119, 0x00},
{ 31, 0xab},
{ 49, 0x00},
{ 3, 0xab},
{ 17, 0x00},
{ 4, 0xab},
{ 8, 0x00},
{140, 0xab},
{ 4, 0x00},
{107, 0x30},
{ 5, 0x00},
{ 13, 0x30},
{ 3, 0x00},
{ 9, 0x30},
{ 7, 0x00},
{ 10, 0x30},
{ 2, 0x00},
{ 1, 0x50},
{ 1, 0x87},
{ 1, 0xb1},
{ 1, 0x53},
{ 4, 0xaf},
{ 92, 0x00},
{118, 0x50},
{ 10, 0x00},
{ 39, 0x50},
{ 2, 0x00},
{ 53, 0x50},
{ 7, 0x14e},
{ 2, 0x14f},
{ 3, 0xb1},
{ 3, 0x50},
{ 1, 0x150},
{ 5, 0x14f},
{ 8, 0xaf},
{ 8, 0x56},
{ 2, 0x50},
{ 5, 0x51},
{ 2, 0x56},
{ 30, 0x50},
{ 4, 0x51},
{ 13, 0x50},
{ 6, 0x14e},
{ 40, 0x50},
{ 23, 0x00},
{ 66, 0x1a},
{ 3, 0x51},
{ 1, 0x1a},
{154, 0x00},
{ 20, 0x95},
{ 12, 0x00},
{ 87, 0x1a},
{ 9, 0x00},
{ 25, 0x95},
{ 7, 0x00},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 7, 0x23},
{ 1, 0x00},
{ 18, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 1, 0x31},
{ 1, 0x00},
{ 2, 0x31},
{ 2, 0x00},
{ 1, 0x31},
{ 2, 0x00},
{ 2, 0x31},
{ 2, 0x00},
{ 4, 0x31},
{ 1, 0x00},
{ 8, 0x31},
{ 4, 0x23},
{ 1, 0x00},
{ 1, 0x23},
{ 1, 0x00},
{ 7, 0x23},
{ 1, 0x00},
{ 11, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 2, 0x31},
{ 1, 0x00},
{ 4, 0x31},
{ 2, 0x00},
{ 8, 0x31},
{ 1, 0x00},
{ 7, 0x31},
{ 1, 0x00},
{ 26, 0x23},
{ 2, 0x31},
{ 1, 0x00},
{ 4, 0x31},
{ 1, 0x00},
{ 5, 0x31},
{ 1, 0x00},
{ 1, 0x31},
{ 3, 0x00},
{ 7, 0x31},
{ 1, 0x00},
{ 26, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 26, 0x23},
{ 26, 0x31},
{ 28, 0x23},
{ 2, 0x00},
{ 25, 0x31},
{ 1, 0x151},
{ 25, 0x23},
{ 1, 0xe4},
{ 6, 0x23},
{ 25, 0x31},
{ 1, 0x151},
{ 25, 0x23},
{ 1, 0xe4},
{ 6, 0x23},
{ 25, 0x31},
{ 1, 0x151},
{ 25, 0x23},
{ 1, 0xe4},
{ 6, 0x23},
{ 25, 0x31},
{ 1, 0x151},
{ 25, 0x23},
{ 1, 0xe4},
{ 6, 0x23},
{ 25, 0x31},
{ 1, 0x151},
{ 25, 0x23},
{ 1, 0xe4},
{ 6, 0x23},
{ 1, 0x31},
{ 1, 0x23},
{ 2, 0x00},
{ 50, 0x152},
{ 55, 0x87},
{ 4, 0x50},
{ 50, 0x87},
{ 8, 0x50},
{ 1, 0x87},
{ 14, 0x50},
{ 1, 0x87},
{ 2, 0x50},
{ 5, 0x53},
{ 15, 0x00},
{ 5, 0x87},
{ 1, 0x00},
{ 15, 0x87},
{ 80, 0x00},
{ 7, 0x51},
{ 1, 0x00},
{ 17, 0x51},
{ 2, 0x00},
{ 7, 0x51},
{ 1, 0x00},
{ 2, 0x51},
{ 1, 0x00},
{ 5, 0x51},
{ 85, 0x00},
{ 45, 0x30},
{ 3, 0x00},
{ 7, 0x51},
{ 7, 0x35},
{ 2, 0x00},
{ 10, 0x91},
{ 4, 0x00},
{ 1, 0x30},
{ 1, 0x50},
{112, 0x00},
{ 44, 0x30},
{ 4, 0x51},
{ 10, 0x91},
{ 5, 0x00},
{ 1, 0x55},
{197, 0x6b},
{ 2, 0x00},
{ 9, 0x145},
{ 7, 0x56},
{ 41, 0x00},
{ 34, 0x147},
{ 34, 0x148},
{ 6, 0x51},
{ 1, 0x92},
{ 1, 0x89},
{ 4, 0x00},
{ 10, 0x88},
{ 4, 0x00},
{ 2, 0x68},
{145, 0x00},
{ 59, 0x14a},
{ 1, 0x85},
{ 3, 0x14a},
{ 1, 0x6f},
{ 4, 0x14a},
{ 76, 0x00},
{ 45, 0x14a},
{ 1, 0x85},
{ 15, 0x14a},
{ 66, 0x00},
{ 4, 0x83},
{ 1, 0x00},
{ 27, 0x83},
{ 1, 0x00},
{ 2, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 2, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 10, 0x83},
{ 1, 0x00},
{ 4, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 6, 0x00},
{ 1, 0x83},
{ 4, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 3, 0x83},
{ 1, 0x00},
{ 2, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 2, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 2, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 2, 0x00},
{ 4, 0x83},
{ 1, 0x00},
{ 7, 0x83},
{ 1, 0x00},
{ 4, 0x83},
{ 1, 0x00},
{ 4, 0x83},
{ 1, 0x00},
{ 1, 0x83},
{ 1, 0x00},
{ 10, 0x83},
{ 1, 0x00},
{ 17, 0x83},
{ 5, 0x00},
{ 3, 0x83},
{ 1, 0x00},
{ 5, 0x83},
{ 1, 0x00},
{ 17, 0x83},
{ 52, 0x00},
{ 2, 0x4e},
{ 14, 0x00},
{ 4, 0x1a},
{ 1, 0xf1},
{ 39, 0x1a},
{ 4, 0x00},
{100, 0x1a},
{ 12, 0x00},
{ 15, 0x1a},
{ 2, 0x00},
{ 15, 0x1a},
{ 1, 0x00},
{ 14, 0x1a},
{ 1, 0xf1},
{ 1, 0x00},
{ 37, 0x1a},
{ 10, 0x00},
{ 11, 0x22},
{ 2, 0x9a},
{ 3, 0x1a},
{ 30, 0xf4},
{ 1, 0x153},
{ 1, 0x1a},
{ 32, 0xf4},
{ 26, 0x154},
{ 3, 0xe0},
{ 3, 0x1a},
{ 30, 0x154},
{ 1, 0x10e},
{ 1, 0x154},
{ 1, 0xf4},
{ 10, 0x10e},
{ 18, 0x154},
{ 1, 0x1a},
{ 56, 0x00},
{ 26, 0x50},
{ 3, 0x110},
{ 13, 0x00},
{ 44, 0x110},
{ 4, 0x00},
{ 9, 0x110},
{ 7, 0x00},
{ 2, 0x110},
{ 14, 0x00},
{ 6, 0xf1},
{ 26, 0x00},
{ 33, 0xf1},
{ 12, 0x1a},
{ 9, 0xf1},
{ 1, 0x1a},
{ 70, 0xf1},
{ 1, 0x1a},
{ 22, 0xf1},
{ 12, 0x1a},
{ 43, 0xf1},
{ 4, 0x1a},
{ 5, 0xf1},
{ 12, 0x1a},
{ 17, 0xf1},
{ 3, 0x1a},
{ 1, 0xf1},
{ 3, 0x1a},
{ 3, 0xf1},
{ 5, 0x155},
{ 63, 0xf1},
{ 1, 0x1a},
{ 1, 0xf1},
{ 1, 0x1a},
{187, 0xf1},
{ 2, 0x1a},
{ 63, 0xf1},
{ 13, 0x1a},
{ 4, 0xf1},
{ 1, 0x1a},
{ 24, 0xf1},
{ 18, 0x1a},
{ 1, 0xf1},
{ 26, 0x1a},
{ 2, 0xf1},
{ 13, 0x1a},
{ 1, 0xf1},
{ 86, 0x1a},
{ 85, 0xf1},
{ 48, 0x1a},
{ 70, 0xf1},
{ 6, 0x1a},
{ 1, 0xf1},
{ 3, 0x1a},
{ 3, 0xf1},
{ 2, 0x1a},
{ 3, 0xf1},
{ 8, 0x00},
{ 11, 0x1a},
{ 2, 0xf1},
{ 3, 0x00},
{ 4, 0x1a},
{ 9, 0xf1},
{ 3, 0x00},
{116, 0x1a},
{ 12, 0x00},
{ 89, 0x1a},
{ 7, 0x00},
{ 12, 0xf1},
{ 20, 0x00},
{ 12, 0x1a},
{ 4, 0x00},
{ 56, 0x1a},
{ 8, 0x00},
{ 10, 0x1a},
{ 6, 0x00},
{ 40, 0x1a},
{ 8, 0x00},
{ 30, 0x1a},
{ 2, 0x00},
{ 2, 0x1a},
{ 78, 0x00},
{ 12, 0x1a},
{ 47, 0xf1},
{ 1, 0x1a},
{ 10, 0xf1},
{ 1, 0x1a},
{ 50, 0xf1},
{ 1, 0x00},
{ 82, 0xf1},
{ 1, 0x00},
{ 51, 0xf1},
{ 84, 0x1a},
{ 12, 0x00},
{ 14, 0x1a},
{ 2, 0x00},
{ 5, 0xf1},
{ 3, 0x00},
{ 3, 0xf1},
{ 5, 0x00},
{ 7, 0xf1},
{ 9, 0x00},
{ 25, 0xf1},
{ 7, 0x00},
{ 7, 0xf1},
{ 9, 0x00},
{ 3, 0xf1},
{ 13, 0x00},
{ 7, 0xf1},
{ 41, 0x00},
{147, 0x1a},
{ 1, 0x00},
{ 55, 0x1a},
{ 37, 0x00},
{ 10, 0x152},
{ 6, 0x00},
{ 94, 0xab},
{ 34, 0x00},
{ 53, 0xab},
{ 11, 0x00},
{ 94, 0xab},
{ 2, 0x00},
{130, 0xab},
{ 14, 0x00},
{177, 0xab},
{ 31, 0x00},
{ 30, 0x116},
{ 98, 0x00},
{ 75, 0xab},
{ 54, 0x00},
{ 1, 0xaf},
{ 30, 0x00},
{ 96, 0xaf},
{240, 0x47},
{ 16, 0x00},
{126, 0x115},
{ 2, 0x00},
{0},
};
static textstartup void _PyUnicode_RecordsIndex2_init(void) {
int i, j, k;
for (k = i = 0; i < 4990; ++i) {
for (j = 0; j < _PyUnicode_RecordsIndex2_rodata[i][0]; ++j) {
_PyUnicode_RecordsIndex2[k++] = _PyUnicode_RecordsIndex2_rodata[i][1];
}
}
}
const void *const _PyUnicode_RecordsIndex2_ctor[] initarray = {
_PyUnicode_RecordsIndex2_init,
};
| 104,254 | 5,696 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/itertoolsmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("itertools");
PYTHON_PROVIDE("itertools._grouper");
PYTHON_PROVIDE("itertools._tee");
PYTHON_PROVIDE("itertools._tee_dataobject");
PYTHON_PROVIDE("itertools.accumulate");
PYTHON_PROVIDE("itertools.chain");
PYTHON_PROVIDE("itertools.combinations");
PYTHON_PROVIDE("itertools.combinations_with_replacement");
PYTHON_PROVIDE("itertools.compress");
PYTHON_PROVIDE("itertools.count");
PYTHON_PROVIDE("itertools.cycle");
PYTHON_PROVIDE("itertools.dropwhile");
PYTHON_PROVIDE("itertools.filterfalse");
PYTHON_PROVIDE("itertools.groupby");
PYTHON_PROVIDE("itertools.islice");
PYTHON_PROVIDE("itertools.permutations");
PYTHON_PROVIDE("itertools.product");
PYTHON_PROVIDE("itertools.repeat");
PYTHON_PROVIDE("itertools.starmap");
PYTHON_PROVIDE("itertools.takewhile");
PYTHON_PROVIDE("itertools.tee");
PYTHON_PROVIDE("itertools.zip_longest");
/* Itertools module written and maintained
by Raymond D. Hettinger <[email protected]>
*/
/* groupby object ************************************************************/
typedef struct {
PyObject_HEAD
PyObject *it;
PyObject *keyfunc;
PyObject *tgtkey;
PyObject *currkey;
PyObject *currvalue;
} groupbyobject;
static PyTypeObject groupby_type;
static PyObject *_grouper_create(groupbyobject *, PyObject *);
static PyObject *
groupby_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
static char *kwargs[] = {"iterable", "key", NULL};
groupbyobject *gbo;
PyObject *it, *keyfunc = Py_None;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:groupby", kwargs,
&it, &keyfunc))
return NULL;
gbo = (groupbyobject *)type->tp_alloc(type, 0);
if (gbo == NULL)
return NULL;
gbo->tgtkey = NULL;
gbo->currkey = NULL;
gbo->currvalue = NULL;
gbo->keyfunc = keyfunc;
Py_INCREF(keyfunc);
gbo->it = PyObject_GetIter(it);
if (gbo->it == NULL) {
Py_DECREF(gbo);
return NULL;
}
return (PyObject *)gbo;
}
static void
groupby_dealloc(groupbyobject *gbo)
{
PyObject_GC_UnTrack(gbo);
Py_XDECREF(gbo->it);
Py_XDECREF(gbo->keyfunc);
Py_XDECREF(gbo->tgtkey);
Py_XDECREF(gbo->currkey);
Py_XDECREF(gbo->currvalue);
Py_TYPE(gbo)->tp_free(gbo);
}
static int
groupby_traverse(groupbyobject *gbo, visitproc visit, void *arg)
{
Py_VISIT(gbo->it);
Py_VISIT(gbo->keyfunc);
Py_VISIT(gbo->tgtkey);
Py_VISIT(gbo->currkey);
Py_VISIT(gbo->currvalue);
return 0;
}
Py_LOCAL_INLINE(int)
groupby_step(groupbyobject *gbo)
{
PyObject *newvalue, *newkey, *oldvalue;
newvalue = PyIter_Next(gbo->it);
if (newvalue == NULL)
return -1;
if (gbo->keyfunc == Py_None) {
newkey = newvalue;
Py_INCREF(newvalue);
} else {
newkey = PyObject_CallFunctionObjArgs(gbo->keyfunc, newvalue, NULL);
if (newkey == NULL) {
Py_DECREF(newvalue);
return -1;
}
}
oldvalue = gbo->currvalue;
gbo->currvalue = newvalue;
Py_XSETREF(gbo->currkey, newkey);
Py_XDECREF(oldvalue);
return 0;
}
static PyObject *
groupby_next(groupbyobject *gbo)
{
PyObject *r, *grouper;
/* skip to next iteration group */
for (;;) {
if (gbo->currkey == NULL)
/* pass */;
else if (gbo->tgtkey == NULL)
break;
else {
int rcmp;
rcmp = PyObject_RichCompareBool(gbo->tgtkey, gbo->currkey, Py_EQ);
if (rcmp == -1)
return NULL;
else if (rcmp == 0)
break;
}
if (groupby_step(gbo) < 0)
return NULL;
}
Py_INCREF(gbo->currkey);
Py_XSETREF(gbo->tgtkey, gbo->currkey);
grouper = _grouper_create(gbo, gbo->tgtkey);
if (grouper == NULL)
return NULL;
r = PyTuple_Pack(2, gbo->currkey, grouper);
Py_DECREF(grouper);
return r;
}
static PyObject *
groupby_reduce(groupbyobject *lz)
{
/* reduce as a 'new' call with an optional 'setstate' if groupby
* has started
*/
PyObject *value;
if (lz->tgtkey && lz->currkey && lz->currvalue)
value = Py_BuildValue("O(OO)(OOO)", Py_TYPE(lz),
lz->it, lz->keyfunc, lz->currkey, lz->currvalue, lz->tgtkey);
else
value = Py_BuildValue("O(OO)", Py_TYPE(lz),
lz->it, lz->keyfunc);
return value;
}
PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
static PyObject *
groupby_setstate(groupbyobject *lz, PyObject *state)
{
PyObject *currkey, *currvalue, *tgtkey;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state is not a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "OOO", &currkey, &currvalue, &tgtkey)) {
return NULL;
}
Py_INCREF(currkey);
Py_XSETREF(lz->currkey, currkey);
Py_INCREF(currvalue);
Py_XSETREF(lz->currvalue, currvalue);
Py_INCREF(tgtkey);
Py_XSETREF(lz->tgtkey, tgtkey);
Py_RETURN_NONE;
}
PyDoc_STRVAR(setstate_doc, "Set state information for unpickling.");
static PyMethodDef groupby_methods[] = {
{"__reduce__", (PyCFunction)groupby_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)groupby_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(groupby_doc,
"groupby(iterable, key=None) -> make an iterator that returns consecutive\n\
keys and groups from the iterable. If the key function is not specified or\n\
is None, the element itself is used for grouping.\n");
static PyTypeObject groupby_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.groupby", /* tp_name */
sizeof(groupbyobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)groupby_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
groupby_doc, /* tp_doc */
(traverseproc)groupby_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)groupby_next, /* tp_iternext */
groupby_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
groupby_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* _grouper object (internal) ************************************************/
typedef struct {
PyObject_HEAD
PyObject *parent;
PyObject *tgtkey;
} _grouperobject;
static PyTypeObject _grouper_type;
static PyObject *
_grouper_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *parent, *tgtkey;
if (!PyArg_ParseTuple(args, "O!O", &groupby_type, &parent, &tgtkey))
return NULL;
return _grouper_create((groupbyobject*) parent, tgtkey);
}
static PyObject *
_grouper_create(groupbyobject *parent, PyObject *tgtkey)
{
_grouperobject *igo;
igo = PyObject_GC_New(_grouperobject, &_grouper_type);
if (igo == NULL)
return NULL;
igo->parent = (PyObject *)parent;
Py_INCREF(parent);
igo->tgtkey = tgtkey;
Py_INCREF(tgtkey);
PyObject_GC_Track(igo);
return (PyObject *)igo;
}
static void
_grouper_dealloc(_grouperobject *igo)
{
PyObject_GC_UnTrack(igo);
Py_DECREF(igo->parent);
Py_DECREF(igo->tgtkey);
PyObject_GC_Del(igo);
}
static int
_grouper_traverse(_grouperobject *igo, visitproc visit, void *arg)
{
Py_VISIT(igo->parent);
Py_VISIT(igo->tgtkey);
return 0;
}
static PyObject *
_grouper_next(_grouperobject *igo)
{
groupbyobject *gbo = (groupbyobject *)igo->parent;
PyObject *r;
int rcmp;
if (gbo->currvalue == NULL) {
if (groupby_step(gbo) < 0)
return NULL;
}
assert(gbo->currkey != NULL);
rcmp = PyObject_RichCompareBool(igo->tgtkey, gbo->currkey, Py_EQ);
if (rcmp <= 0)
/* got any error or current group is end */
return NULL;
r = gbo->currvalue;
gbo->currvalue = NULL;
Py_CLEAR(gbo->currkey);
return r;
}
static PyObject *
_grouper_reduce(_grouperobject *lz)
{
return Py_BuildValue("O(OO)", Py_TYPE(lz), lz->parent, lz->tgtkey);
}
static PyMethodDef _grouper_methods[] = {
{"__reduce__", (PyCFunction)_grouper_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
static PyTypeObject _grouper_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools._grouper", /* tp_name */
sizeof(_grouperobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)_grouper_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc)_grouper_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)_grouper_next, /* tp_iternext */
_grouper_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
_grouper_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* tee object and with supporting function and objects ***********************/
/* The teedataobject pre-allocates space for LINKCELLS number of objects.
To help the object fit neatly inside cache lines (space for 16 to 32
pointers), the value should be a multiple of 16 minus space for
the other structure members including PyHEAD overhead. The larger the
value, the less memory overhead per object and the less time spent
allocating/deallocating new links. The smaller the number, the less
wasted space and the more rapid freeing of older data.
*/
#define LINKCELLS 57
typedef struct {
PyObject_HEAD
PyObject *it;
int numread; /* 0 <= numread <= LINKCELLS */
PyObject *nextlink;
PyObject *(values[LINKCELLS]);
} teedataobject;
typedef struct {
PyObject_HEAD
teedataobject *dataobj;
int index; /* 0 <= index <= LINKCELLS */
PyObject *weakreflist;
} teeobject;
static PyTypeObject teedataobject_type;
static PyObject *
teedataobject_newinternal(PyObject *it)
{
teedataobject *tdo;
tdo = PyObject_GC_New(teedataobject, &teedataobject_type);
if (tdo == NULL)
return NULL;
tdo->numread = 0;
tdo->nextlink = NULL;
Py_INCREF(it);
tdo->it = it;
PyObject_GC_Track(tdo);
return (PyObject *)tdo;
}
static PyObject *
teedataobject_jumplink(teedataobject *tdo)
{
if (tdo->nextlink == NULL)
tdo->nextlink = teedataobject_newinternal(tdo->it);
Py_XINCREF(tdo->nextlink);
return tdo->nextlink;
}
static PyObject *
teedataobject_getitem(teedataobject *tdo, int i)
{
PyObject *value;
assert(i < LINKCELLS);
if (i < tdo->numread)
value = tdo->values[i];
else {
/* this is the lead iterator, so fetch more data */
assert(i == tdo->numread);
value = PyIter_Next(tdo->it);
if (value == NULL)
return NULL;
tdo->numread++;
tdo->values[i] = value;
}
Py_INCREF(value);
return value;
}
static int
teedataobject_traverse(teedataobject *tdo, visitproc visit, void * arg)
{
int i;
Py_VISIT(tdo->it);
for (i = 0; i < tdo->numread; i++)
Py_VISIT(tdo->values[i]);
Py_VISIT(tdo->nextlink);
return 0;
}
static void
teedataobject_safe_decref(PyObject *obj)
{
while (obj && Py_TYPE(obj) == &teedataobject_type &&
Py_REFCNT(obj) == 1) {
PyObject *nextlink = ((teedataobject *)obj)->nextlink;
((teedataobject *)obj)->nextlink = NULL;
Py_DECREF(obj);
obj = nextlink;
}
Py_XDECREF(obj);
}
static int
teedataobject_clear(teedataobject *tdo)
{
int i;
PyObject *tmp;
Py_CLEAR(tdo->it);
for (i=0 ; i<tdo->numread ; i++)
Py_CLEAR(tdo->values[i]);
tmp = tdo->nextlink;
tdo->nextlink = NULL;
teedataobject_safe_decref(tmp);
return 0;
}
static void
teedataobject_dealloc(teedataobject *tdo)
{
PyObject_GC_UnTrack(tdo);
teedataobject_clear(tdo);
PyObject_GC_Del(tdo);
}
static PyObject *
teedataobject_reduce(teedataobject *tdo)
{
int i;
/* create a temporary list of already iterated values */
PyObject *values = PyList_New(tdo->numread);
if (!values)
return NULL;
for (i=0 ; i<tdo->numread ; i++) {
Py_INCREF(tdo->values[i]);
PyList_SET_ITEM(values, i, tdo->values[i]);
}
return Py_BuildValue("O(ONO)", Py_TYPE(tdo), tdo->it,
values,
tdo->nextlink ? tdo->nextlink : Py_None);
}
static PyTypeObject teedataobject_type;
static PyObject *
teedataobject_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
teedataobject *tdo;
PyObject *it, *values, *next;
Py_ssize_t i, len;
assert(type == &teedataobject_type);
if (!PyArg_ParseTuple(args, "OO!O", &it, &PyList_Type, &values, &next))
return NULL;
tdo = (teedataobject *)teedataobject_newinternal(it);
if (!tdo)
return NULL;
len = PyList_GET_SIZE(values);
if (len > LINKCELLS)
goto err;
for (i=0; i<len; i++) {
tdo->values[i] = PyList_GET_ITEM(values, i);
Py_INCREF(tdo->values[i]);
}
/* len <= LINKCELLS < INT_MAX */
tdo->numread = Py_SAFE_DOWNCAST(len, Py_ssize_t, int);
if (len == LINKCELLS) {
if (next != Py_None) {
if (Py_TYPE(next) != &teedataobject_type)
goto err;
assert(tdo->nextlink == NULL);
Py_INCREF(next);
tdo->nextlink = next;
}
} else {
if (next != Py_None)
goto err; /* shouldn't have a next if we are not full */
}
return (PyObject*)tdo;
err:
Py_XDECREF(tdo);
PyErr_SetString(PyExc_ValueError, "Invalid arguments");
return NULL;
}
static PyMethodDef teedataobject_methods[] = {
{"__reduce__", (PyCFunction)teedataobject_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(teedataobject_doc, "Data container common to multiple tee objects.");
static PyTypeObject teedataobject_type = {
PyVarObject_HEAD_INIT(0, 0) /* Must fill in type value later */
"itertools._tee_dataobject", /* tp_name */
sizeof(teedataobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)teedataobject_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
teedataobject_doc, /* tp_doc */
(traverseproc)teedataobject_traverse, /* tp_traverse */
(inquiry)teedataobject_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
teedataobject_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
teedataobject_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
static PyTypeObject tee_type;
static PyObject *
tee_next(teeobject *to)
{
PyObject *value, *link;
if (to->index >= LINKCELLS) {
link = teedataobject_jumplink(to->dataobj);
if (link == NULL)
return NULL;
Py_SETREF(to->dataobj, (teedataobject *)link);
to->index = 0;
}
value = teedataobject_getitem(to->dataobj, to->index);
if (value == NULL)
return NULL;
to->index++;
return value;
}
static int
tee_traverse(teeobject *to, visitproc visit, void *arg)
{
Py_VISIT((PyObject *)to->dataobj);
return 0;
}
static PyObject *
tee_copy(teeobject *to)
{
teeobject *newto;
newto = PyObject_GC_New(teeobject, &tee_type);
if (newto == NULL)
return NULL;
Py_INCREF(to->dataobj);
newto->dataobj = to->dataobj;
newto->index = to->index;
newto->weakreflist = NULL;
PyObject_GC_Track(newto);
return (PyObject *)newto;
}
PyDoc_STRVAR(teecopy_doc, "Returns an independent iterator.");
static PyObject *
tee_fromiterable(PyObject *iterable)
{
teeobject *to;
PyObject *it = NULL;
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
if (PyObject_TypeCheck(it, &tee_type)) {
to = (teeobject *)tee_copy((teeobject *)it);
goto done;
}
to = PyObject_GC_New(teeobject, &tee_type);
if (to == NULL)
goto done;
to->dataobj = (teedataobject *)teedataobject_newinternal(it);
if (!to->dataobj) {
PyObject_GC_Del(to);
to = NULL;
goto done;
}
to->index = 0;
to->weakreflist = NULL;
PyObject_GC_Track(to);
done:
Py_XDECREF(it);
return (PyObject *)to;
}
static PyObject *
tee_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *iterable;
if (!PyArg_UnpackTuple(args, "_tee", 1, 1, &iterable))
return NULL;
return tee_fromiterable(iterable);
}
static int
tee_clear(teeobject *to)
{
if (to->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) to);
Py_CLEAR(to->dataobj);
return 0;
}
static void
tee_dealloc(teeobject *to)
{
PyObject_GC_UnTrack(to);
tee_clear(to);
PyObject_GC_Del(to);
}
static PyObject *
tee_reduce(teeobject *to)
{
return Py_BuildValue("O(())(Oi)", Py_TYPE(to), to->dataobj, to->index);
}
static PyObject *
tee_setstate(teeobject *to, PyObject *state)
{
teedataobject *tdo;
int index;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state is not a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "O!i", &teedataobject_type, &tdo, &index)) {
return NULL;
}
if (index < 0 || index > LINKCELLS) {
PyErr_SetString(PyExc_ValueError, "Index out of range");
return NULL;
}
Py_INCREF(tdo);
Py_XSETREF(to->dataobj, tdo);
to->index = index;
Py_RETURN_NONE;
}
PyDoc_STRVAR(teeobject_doc,
"Iterator wrapped to make it copyable");
static PyMethodDef tee_methods[] = {
{"__copy__", (PyCFunction)tee_copy, METH_NOARGS, teecopy_doc},
{"__reduce__", (PyCFunction)tee_reduce, METH_NOARGS, reduce_doc},
{"__setstate__", (PyCFunction)tee_setstate, METH_O, setstate_doc},
{NULL, NULL} /* sentinel */
};
static PyTypeObject tee_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools._tee", /* tp_name */
sizeof(teeobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)tee_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
teeobject_doc, /* tp_doc */
(traverseproc)tee_traverse, /* tp_traverse */
(inquiry)tee_clear, /* tp_clear */
0, /* tp_richcompare */
offsetof(teeobject, weakreflist), /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)tee_next, /* tp_iternext */
tee_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
tee_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
static PyObject *
tee(PyObject *self, PyObject *args)
{
Py_ssize_t i, n=2;
PyObject *it, *iterable, *copyable, *result;
_Py_IDENTIFIER(__copy__);
if (!PyArg_ParseTuple(args, "O|n", &iterable, &n))
return NULL;
if (n < 0) {
PyErr_SetString(PyExc_ValueError, "n must be >= 0");
return NULL;
}
result = PyTuple_New(n);
if (result == NULL)
return NULL;
if (n == 0)
return result;
it = PyObject_GetIter(iterable);
if (it == NULL) {
Py_DECREF(result);
return NULL;
}
if (!_PyObject_HasAttrId(it, &PyId___copy__)) {
copyable = tee_fromiterable(it);
Py_DECREF(it);
if (copyable == NULL) {
Py_DECREF(result);
return NULL;
}
} else
copyable = it;
PyTuple_SET_ITEM(result, 0, copyable);
for (i=1 ; i<n ; i++) {
copyable = _PyObject_CallMethodId(copyable, &PyId___copy__, NULL);
if (copyable == NULL) {
Py_DECREF(result);
return NULL;
}
PyTuple_SET_ITEM(result, i, copyable);
}
return result;
}
PyDoc_STRVAR(tee_doc,
"tee(iterable, n=2) --> tuple of n independent iterators.");
/* cycle object **************************************************************/
typedef struct {
PyObject_HEAD
PyObject *it;
PyObject *saved;
Py_ssize_t index;
int firstpass;
} cycleobject;
static PyTypeObject cycle_type;
static PyObject *
cycle_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *it;
PyObject *iterable;
PyObject *saved;
cycleobject *lz;
if (type == &cycle_type && !_PyArg_NoKeywords("cycle()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "cycle", 1, 1, &iterable))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
saved = PyList_New(0);
if (saved == NULL) {
Py_DECREF(it);
return NULL;
}
/* create cycleobject structure */
lz = (cycleobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
Py_DECREF(saved);
return NULL;
}
lz->it = it;
lz->saved = saved;
lz->index = 0;
lz->firstpass = 0;
return (PyObject *)lz;
}
static void
cycle_dealloc(cycleobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->it);
Py_XDECREF(lz->saved);
Py_TYPE(lz)->tp_free(lz);
}
static int
cycle_traverse(cycleobject *lz, visitproc visit, void *arg)
{
if (lz->it)
Py_VISIT(lz->it);
Py_VISIT(lz->saved);
return 0;
}
static PyObject *
cycle_next(cycleobject *lz)
{
PyObject *item;
if (lz->it != NULL) {
item = PyIter_Next(lz->it);
if (item != NULL) {
if (lz->firstpass)
return item;
if (PyList_Append(lz->saved, item)) {
Py_DECREF(item);
return NULL;
}
return item;
}
/* Note: StopIteration is already cleared by PyIter_Next() */
if (PyErr_Occurred())
return NULL;
Py_CLEAR(lz->it);
}
if (Py_SIZE(lz->saved) == 0)
return NULL;
item = PyList_GET_ITEM(lz->saved, lz->index);
lz->index++;
if (lz->index >= Py_SIZE(lz->saved))
lz->index = 0;
Py_INCREF(item);
return item;
}
static PyObject *
cycle_reduce(cycleobject *lz)
{
/* Create a new cycle with the iterator tuple, then set the saved state */
if (lz->it == NULL) {
PyObject *it = PyObject_GetIter(lz->saved);
if (it == NULL)
return NULL;
if (lz->index != 0) {
_Py_IDENTIFIER(__setstate__);
PyObject *res = _PyObject_CallMethodId(it, &PyId___setstate__,
"n", lz->index);
if (res == NULL) {
Py_DECREF(it);
return NULL;
}
Py_DECREF(res);
}
return Py_BuildValue("O(N)(Oi)", Py_TYPE(lz), it, lz->saved, 1);
}
return Py_BuildValue("O(O)(Oi)", Py_TYPE(lz), lz->it, lz->saved,
lz->firstpass);
}
static PyObject *
cycle_setstate(cycleobject *lz, PyObject *state)
{
PyObject *saved=NULL;
int firstpass;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state is not a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "O!i", &PyList_Type, &saved, &firstpass)) {
return NULL;
}
Py_INCREF(saved);
Py_XSETREF(lz->saved, saved);
lz->firstpass = firstpass != 0;
lz->index = 0;
Py_RETURN_NONE;
}
static PyMethodDef cycle_methods[] = {
{"__reduce__", (PyCFunction)cycle_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)cycle_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(cycle_doc,
"cycle(iterable) --> cycle object\n\
\n\
Return elements from the iterable until it is exhausted.\n\
Then repeat the sequence indefinitely.");
static PyTypeObject cycle_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.cycle", /* tp_name */
sizeof(cycleobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)cycle_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
cycle_doc, /* tp_doc */
(traverseproc)cycle_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)cycle_next, /* tp_iternext */
cycle_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
cycle_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* dropwhile object **********************************************************/
typedef struct {
PyObject_HEAD
PyObject *func;
PyObject *it;
long start;
} dropwhileobject;
static PyTypeObject dropwhile_type;
static PyObject *
dropwhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *func, *seq;
PyObject *it;
dropwhileobject *lz;
if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "dropwhile", 2, 2, &func, &seq))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(seq);
if (it == NULL)
return NULL;
/* create dropwhileobject structure */
lz = (dropwhileobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
Py_INCREF(func);
lz->func = func;
lz->it = it;
lz->start = 0;
return (PyObject *)lz;
}
static void
dropwhile_dealloc(dropwhileobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->func);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
dropwhile_traverse(dropwhileobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->it);
Py_VISIT(lz->func);
return 0;
}
static PyObject *
dropwhile_next(dropwhileobject *lz)
{
PyObject *item, *good;
PyObject *it = lz->it;
long ok;
PyObject *(*iternext)(PyObject *);
iternext = *Py_TYPE(it)->tp_iternext;
for (;;) {
item = iternext(it);
if (item == NULL)
return NULL;
if (lz->start == 1)
return item;
good = PyObject_CallFunctionObjArgs(lz->func, item, NULL);
if (good == NULL) {
Py_DECREF(item);
return NULL;
}
ok = PyObject_IsTrue(good);
Py_DECREF(good);
if (ok == 0) {
lz->start = 1;
return item;
}
Py_DECREF(item);
if (ok < 0)
return NULL;
}
}
static PyObject *
dropwhile_reduce(dropwhileobject *lz)
{
return Py_BuildValue("O(OO)l", Py_TYPE(lz), lz->func, lz->it, lz->start);
}
static PyObject *
dropwhile_setstate(dropwhileobject *lz, PyObject *state)
{
int start = PyObject_IsTrue(state);
if (start < 0)
return NULL;
lz->start = start;
Py_RETURN_NONE;
}
static PyMethodDef dropwhile_methods[] = {
{"__reduce__", (PyCFunction)dropwhile_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)dropwhile_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(dropwhile_doc,
"dropwhile(predicate, iterable) --> dropwhile object\n\
\n\
Drop items from the iterable while predicate(item) is true.\n\
Afterwards, return every element until the iterable is exhausted.");
static PyTypeObject dropwhile_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.dropwhile", /* tp_name */
sizeof(dropwhileobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)dropwhile_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
dropwhile_doc, /* tp_doc */
(traverseproc)dropwhile_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)dropwhile_next, /* tp_iternext */
dropwhile_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
dropwhile_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* takewhile object **********************************************************/
typedef struct {
PyObject_HEAD
PyObject *func;
PyObject *it;
long stop;
} takewhileobject;
static PyTypeObject takewhile_type;
static PyObject *
takewhile_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *func, *seq;
PyObject *it;
takewhileobject *lz;
if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "takewhile", 2, 2, &func, &seq))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(seq);
if (it == NULL)
return NULL;
/* create takewhileobject structure */
lz = (takewhileobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
Py_INCREF(func);
lz->func = func;
lz->it = it;
lz->stop = 0;
return (PyObject *)lz;
}
static void
takewhile_dealloc(takewhileobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->func);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
takewhile_traverse(takewhileobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->it);
Py_VISIT(lz->func);
return 0;
}
static PyObject *
takewhile_next(takewhileobject *lz)
{
PyObject *item, *good;
PyObject *it = lz->it;
long ok;
if (lz->stop == 1)
return NULL;
item = (*Py_TYPE(it)->tp_iternext)(it);
if (item == NULL)
return NULL;
good = PyObject_CallFunctionObjArgs(lz->func, item, NULL);
if (good == NULL) {
Py_DECREF(item);
return NULL;
}
ok = PyObject_IsTrue(good);
Py_DECREF(good);
if (ok > 0)
return item;
Py_DECREF(item);
if (ok == 0)
lz->stop = 1;
return NULL;
}
static PyObject *
takewhile_reduce(takewhileobject *lz)
{
return Py_BuildValue("O(OO)l", Py_TYPE(lz), lz->func, lz->it, lz->stop);
}
static PyObject *
takewhile_reduce_setstate(takewhileobject *lz, PyObject *state)
{
int stop = PyObject_IsTrue(state);
if (stop < 0)
return NULL;
lz->stop = stop;
Py_RETURN_NONE;
}
static PyMethodDef takewhile_reduce_methods[] = {
{"__reduce__", (PyCFunction)takewhile_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)takewhile_reduce_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(takewhile_doc,
"takewhile(predicate, iterable) --> takewhile object\n\
\n\
Return successive entries from an iterable as long as the \n\
predicate evaluates to true for each entry.");
static PyTypeObject takewhile_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.takewhile", /* tp_name */
sizeof(takewhileobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)takewhile_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
takewhile_doc, /* tp_doc */
(traverseproc)takewhile_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)takewhile_next, /* tp_iternext */
takewhile_reduce_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
takewhile_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* islice object *************************************************************/
typedef struct {
PyObject_HEAD
PyObject *it;
Py_ssize_t next;
Py_ssize_t stop;
Py_ssize_t step;
Py_ssize_t cnt;
} isliceobject;
static PyTypeObject islice_type;
static PyObject *
islice_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *seq;
Py_ssize_t start=0, stop=-1, step=1;
PyObject *it, *a1=NULL, *a2=NULL, *a3=NULL;
Py_ssize_t numargs;
isliceobject *lz;
if (type == &islice_type && !_PyArg_NoKeywords("islice()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "islice", 2, 4, &seq, &a1, &a2, &a3))
return NULL;
numargs = PyTuple_Size(args);
if (numargs == 2) {
if (a1 != Py_None) {
stop = PyLong_AsSsize_t(a1);
if (stop == -1) {
if (PyErr_Occurred())
PyErr_Clear();
PyErr_SetString(PyExc_ValueError,
"Stop argument for islice() must be None or "
"an integer: 0 <= x <= sys.maxsize.");
return NULL;
}
}
} else {
if (a1 != Py_None)
start = PyLong_AsSsize_t(a1);
if (start == -1 && PyErr_Occurred())
PyErr_Clear();
if (a2 != Py_None) {
stop = PyLong_AsSsize_t(a2);
if (stop == -1) {
if (PyErr_Occurred())
PyErr_Clear();
PyErr_SetString(PyExc_ValueError,
"Stop argument for islice() must be None or "
"an integer: 0 <= x <= sys.maxsize.");
return NULL;
}
}
}
if (start<0 || stop<-1) {
PyErr_SetString(PyExc_ValueError,
"Indices for islice() must be None or "
"an integer: 0 <= x <= sys.maxsize.");
return NULL;
}
if (a3 != NULL) {
if (a3 != Py_None)
step = PyLong_AsSsize_t(a3);
if (step == -1 && PyErr_Occurred())
PyErr_Clear();
}
if (step<1) {
PyErr_SetString(PyExc_ValueError,
"Step for islice() must be a positive integer or None.");
return NULL;
}
/* Get iterator. */
it = PyObject_GetIter(seq);
if (it == NULL)
return NULL;
/* create isliceobject structure */
lz = (isliceobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
lz->it = it;
lz->next = start;
lz->stop = stop;
lz->step = step;
lz->cnt = 0L;
return (PyObject *)lz;
}
static void
islice_dealloc(isliceobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
islice_traverse(isliceobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->it);
return 0;
}
static PyObject *
islice_next(isliceobject *lz)
{
PyObject *item;
PyObject *it = lz->it;
Py_ssize_t stop = lz->stop;
Py_ssize_t oldnext;
PyObject *(*iternext)(PyObject *);
if (it == NULL)
return NULL;
iternext = *Py_TYPE(it)->tp_iternext;
while (lz->cnt < lz->next) {
item = iternext(it);
if (item == NULL)
goto empty;
Py_DECREF(item);
lz->cnt++;
}
if (stop != -1 && lz->cnt >= stop)
goto empty;
item = iternext(it);
if (item == NULL)
goto empty;
lz->cnt++;
oldnext = lz->next;
/* The (size_t) cast below avoids the danger of undefined
behaviour from signed integer overflow. */
lz->next += (size_t)lz->step;
if (lz->next < oldnext || (stop != -1 && lz->next > stop))
lz->next = stop;
return item;
empty:
Py_CLEAR(lz->it);
return NULL;
}
static PyObject *
islice_reduce(isliceobject *lz)
{
/* When unpickled, generate a new object with the same bounds,
* then 'setstate' with the next and count
*/
PyObject *stop;
if (lz->it == NULL) {
PyObject *empty_list;
PyObject *empty_it;
empty_list = PyList_New(0);
if (empty_list == NULL)
return NULL;
empty_it = PyObject_GetIter(empty_list);
Py_DECREF(empty_list);
if (empty_it == NULL)
return NULL;
return Py_BuildValue("O(Nn)n", Py_TYPE(lz), empty_it, 0, 0);
}
if (lz->stop == -1) {
stop = Py_None;
Py_INCREF(stop);
} else {
stop = PyLong_FromSsize_t(lz->stop);
if (stop == NULL)
return NULL;
}
return Py_BuildValue("O(OnNn)n", Py_TYPE(lz),
lz->it, lz->next, stop, lz->step,
lz->cnt);
}
static PyObject *
islice_setstate(isliceobject *lz, PyObject *state)
{
Py_ssize_t cnt = PyLong_AsSsize_t(state);
if (cnt == -1 && PyErr_Occurred())
return NULL;
lz->cnt = cnt;
Py_RETURN_NONE;
}
static PyMethodDef islice_methods[] = {
{"__reduce__", (PyCFunction)islice_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)islice_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(islice_doc,
"islice(iterable, stop) --> islice object\n\
islice(iterable, start, stop[, step]) --> islice object\n\
\n\
Return an iterator whose next() method returns selected values from an\n\
iterable. If start is specified, will skip all preceding elements;\n\
otherwise, start defaults to zero. Step defaults to one. If\n\
specified as another value, step determines how many values are \n\
skipped between successive calls. Works like a slice() on a list\n\
but returns an iterator.");
static PyTypeObject islice_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.islice", /* tp_name */
sizeof(isliceobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)islice_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
islice_doc, /* tp_doc */
(traverseproc)islice_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)islice_next, /* tp_iternext */
islice_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
islice_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* starmap object ************************************************************/
typedef struct {
PyObject_HEAD
PyObject *func;
PyObject *it;
} starmapobject;
static PyTypeObject starmap_type;
static PyObject *
starmap_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *func, *seq;
PyObject *it;
starmapobject *lz;
if (type == &starmap_type && !_PyArg_NoKeywords("starmap()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "starmap", 2, 2, &func, &seq))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(seq);
if (it == NULL)
return NULL;
/* create starmapobject structure */
lz = (starmapobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
Py_INCREF(func);
lz->func = func;
lz->it = it;
return (PyObject *)lz;
}
static void
starmap_dealloc(starmapobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->func);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
starmap_traverse(starmapobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->it);
Py_VISIT(lz->func);
return 0;
}
static PyObject *
starmap_next(starmapobject *lz)
{
PyObject *args;
PyObject *result;
PyObject *it = lz->it;
args = (*Py_TYPE(it)->tp_iternext)(it);
if (args == NULL)
return NULL;
if (!PyTuple_CheckExact(args)) {
PyObject *newargs = PySequence_Tuple(args);
Py_DECREF(args);
if (newargs == NULL)
return NULL;
args = newargs;
}
result = PyObject_Call(lz->func, args, NULL);
Py_DECREF(args);
return result;
}
static PyObject *
starmap_reduce(starmapobject *lz)
{
/* Just pickle the iterator */
return Py_BuildValue("O(OO)", Py_TYPE(lz), lz->func, lz->it);
}
static PyMethodDef starmap_methods[] = {
{"__reduce__", (PyCFunction)starmap_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(starmap_doc,
"starmap(function, sequence) --> starmap object\n\
\n\
Return an iterator whose values are returned from the function evaluated\n\
with an argument tuple taken from the given sequence.");
static PyTypeObject starmap_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.starmap", /* tp_name */
sizeof(starmapobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)starmap_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
starmap_doc, /* tp_doc */
(traverseproc)starmap_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)starmap_next, /* tp_iternext */
starmap_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
starmap_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* chain object **************************************************************/
typedef struct {
PyObject_HEAD
PyObject *source; /* Iterator over input iterables */
PyObject *active; /* Currently running input iterator */
} chainobject;
static PyTypeObject chain_type;
static PyObject *
chain_new_internal(PyTypeObject *type, PyObject *source)
{
chainobject *lz;
lz = (chainobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(source);
return NULL;
}
lz->source = source;
lz->active = NULL;
return (PyObject *)lz;
}
static PyObject *
chain_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *source;
if (type == &chain_type && !_PyArg_NoKeywords("chain()", kwds))
return NULL;
source = PyObject_GetIter(args);
if (source == NULL)
return NULL;
return chain_new_internal(type, source);
}
static PyObject *
chain_new_from_iterable(PyTypeObject *type, PyObject *arg)
{
PyObject *source;
source = PyObject_GetIter(arg);
if (source == NULL)
return NULL;
return chain_new_internal(type, source);
}
static void
chain_dealloc(chainobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->active);
Py_XDECREF(lz->source);
Py_TYPE(lz)->tp_free(lz);
}
static int
chain_traverse(chainobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->source);
Py_VISIT(lz->active);
return 0;
}
static PyObject *
chain_next(chainobject *lz)
{
PyObject *item;
/* lz->source is the iterator of iterables. If it's NULL, we've already
* consumed them all. lz->active is the current iterator. If it's NULL,
* we should grab a new one from lz->source. */
while (lz->source != NULL) {
if (lz->active == NULL) {
PyObject *iterable = PyIter_Next(lz->source);
if (iterable == NULL) {
Py_CLEAR(lz->source);
return NULL; /* no more input sources */
}
lz->active = PyObject_GetIter(iterable);
Py_DECREF(iterable);
if (lz->active == NULL) {
Py_CLEAR(lz->source);
return NULL; /* input not iterable */
}
}
item = (*Py_TYPE(lz->active)->tp_iternext)(lz->active);
if (item != NULL)
return item;
if (PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_StopIteration))
PyErr_Clear();
else
return NULL; /* input raised an exception */
}
/* lz->active is consumed, try with the next iterable. */
Py_CLEAR(lz->active);
}
/* Everything had been consumed already. */
return NULL;
}
static PyObject *
chain_reduce(chainobject *lz)
{
if (lz->source) {
/* we can't pickle function objects (itertools.from_iterable) so
* we must use setstate to replace the iterable. One day we
* will fix pickling of functions
*/
if (lz->active) {
return Py_BuildValue("O()(OO)", Py_TYPE(lz), lz->source, lz->active);
} else {
return Py_BuildValue("O()(O)", Py_TYPE(lz), lz->source);
}
} else {
return Py_BuildValue("O()", Py_TYPE(lz)); /* exhausted */
}
return NULL;
}
static PyObject *
chain_setstate(chainobject *lz, PyObject *state)
{
PyObject *source, *active=NULL;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state is not a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "O|O", &source, &active)) {
return NULL;
}
if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) {
PyErr_SetString(PyExc_TypeError, "Arguments must be iterators.");
return NULL;
}
Py_INCREF(source);
Py_XSETREF(lz->source, source);
Py_XINCREF(active);
Py_XSETREF(lz->active, active);
Py_RETURN_NONE;
}
PyDoc_STRVAR(chain_doc,
"chain(*iterables) --> chain object\n\
\n\
Return a chain object whose .__next__() method returns elements from the\n\
first iterable until it is exhausted, then elements from the next\n\
iterable, until all of the iterables are exhausted.");
PyDoc_STRVAR(chain_from_iterable_doc,
"chain.from_iterable(iterable) --> chain object\n\
\n\
Alternate chain() constructor taking a single iterable argument\n\
that evaluates lazily.");
static PyMethodDef chain_methods[] = {
{"from_iterable", (PyCFunction) chain_new_from_iterable, METH_O | METH_CLASS,
chain_from_iterable_doc},
{"__reduce__", (PyCFunction)chain_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)chain_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
static PyTypeObject chain_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.chain", /* tp_name */
sizeof(chainobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)chain_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
chain_doc, /* tp_doc */
(traverseproc)chain_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)chain_next, /* tp_iternext */
chain_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
chain_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* product object ************************************************************/
typedef struct {
PyObject_HEAD
PyObject *pools; /* tuple of pool tuples */
Py_ssize_t *indices; /* one index per pool */
PyObject *result; /* most recently returned result tuple */
int stopped; /* set to 1 when the iterator is exhausted */
} productobject;
static PyTypeObject product_type;
static PyObject *
product_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
productobject *lz;
Py_ssize_t nargs, npools, repeat=1;
PyObject *pools = NULL;
Py_ssize_t *indices = NULL;
Py_ssize_t i;
if (kwds != NULL) {
char *kwlist[] = {"repeat", 0};
PyObject *tmpargs = PyTuple_New(0);
if (tmpargs == NULL)
return NULL;
if (!PyArg_ParseTupleAndKeywords(tmpargs, kwds, "|n:product",
kwlist, &repeat)) {
Py_DECREF(tmpargs);
return NULL;
}
Py_DECREF(tmpargs);
if (repeat < 0) {
PyErr_SetString(PyExc_ValueError,
"repeat argument cannot be negative");
return NULL;
}
}
assert(PyTuple_CheckExact(args));
if (repeat == 0) {
nargs = 0;
} else {
nargs = PyTuple_GET_SIZE(args);
if ((size_t)nargs > PY_SSIZE_T_MAX/sizeof(Py_ssize_t)/repeat) {
PyErr_SetString(PyExc_OverflowError, "repeat argument too large");
return NULL;
}
}
npools = nargs * repeat;
indices = PyMem_New(Py_ssize_t, npools);
if (indices == NULL) {
PyErr_NoMemory();
goto error;
}
pools = PyTuple_New(npools);
if (pools == NULL)
goto error;
for (i=0; i < nargs ; ++i) {
PyObject *item = PyTuple_GET_ITEM(args, i);
PyObject *pool = PySequence_Tuple(item);
if (pool == NULL)
goto error;
PyTuple_SET_ITEM(pools, i, pool);
indices[i] = 0;
}
for ( ; i < npools; ++i) {
PyObject *pool = PyTuple_GET_ITEM(pools, i - nargs);
Py_INCREF(pool);
PyTuple_SET_ITEM(pools, i, pool);
indices[i] = 0;
}
/* create productobject structure */
lz = (productobject *)type->tp_alloc(type, 0);
if (lz == NULL)
goto error;
lz->pools = pools;
lz->indices = indices;
lz->result = NULL;
lz->stopped = 0;
return (PyObject *)lz;
error:
if (indices != NULL)
PyMem_Free(indices);
Py_XDECREF(pools);
return NULL;
}
static void
product_dealloc(productobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->pools);
Py_XDECREF(lz->result);
if (lz->indices != NULL)
PyMem_Free(lz->indices);
Py_TYPE(lz)->tp_free(lz);
}
static PyObject *
product_sizeof(productobject *lz, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(lz));
res += PyTuple_GET_SIZE(lz->pools) * sizeof(Py_ssize_t);
return PyLong_FromSsize_t(res);
}
PyDoc_STRVAR(sizeof_doc, "Returns size in memory, in bytes.");
static int
product_traverse(productobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->pools);
Py_VISIT(lz->result);
return 0;
}
static PyObject *
product_next(productobject *lz)
{
PyObject *pool;
PyObject *elem;
PyObject *oldelem;
PyObject *pools = lz->pools;
PyObject *result = lz->result;
Py_ssize_t npools = PyTuple_GET_SIZE(pools);
Py_ssize_t i;
if (lz->stopped)
return NULL;
if (result == NULL) {
/* On the first pass, return an initial tuple filled with the
first element from each pool. */
result = PyTuple_New(npools);
if (result == NULL)
goto empty;
lz->result = result;
for (i=0; i < npools; i++) {
pool = PyTuple_GET_ITEM(pools, i);
if (PyTuple_GET_SIZE(pool) == 0)
goto empty;
elem = PyTuple_GET_ITEM(pool, 0);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
} else {
Py_ssize_t *indices = lz->indices;
/* Copy the previous result tuple or re-use it if available */
if (Py_REFCNT(result) > 1) {
PyObject *old_result = result;
result = PyTuple_New(npools);
if (result == NULL)
goto empty;
lz->result = result;
for (i=0; i < npools; i++) {
elem = PyTuple_GET_ITEM(old_result, i);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
Py_DECREF(old_result);
}
/* Now, we've got the only copy so we can update it in-place */
assert (npools==0 || Py_REFCNT(result) == 1);
/* Update the pool indices right-to-left. Only advance to the
next pool when the previous one rolls-over */
for (i=npools-1 ; i >= 0 ; i--) {
pool = PyTuple_GET_ITEM(pools, i);
indices[i]++;
if (indices[i] == PyTuple_GET_SIZE(pool)) {
/* Roll-over and advance to next pool */
indices[i] = 0;
elem = PyTuple_GET_ITEM(pool, 0);
Py_INCREF(elem);
oldelem = PyTuple_GET_ITEM(result, i);
PyTuple_SET_ITEM(result, i, elem);
Py_DECREF(oldelem);
} else {
/* No rollover. Just increment and stop here. */
elem = PyTuple_GET_ITEM(pool, indices[i]);
Py_INCREF(elem);
oldelem = PyTuple_GET_ITEM(result, i);
PyTuple_SET_ITEM(result, i, elem);
Py_DECREF(oldelem);
break;
}
}
/* If i is negative, then the indices have all rolled-over
and we're done. */
if (i < 0)
goto empty;
}
Py_INCREF(result);
return result;
empty:
lz->stopped = 1;
return NULL;
}
static PyObject *
product_reduce(productobject *lz)
{
if (lz->stopped) {
return Py_BuildValue("O(())", Py_TYPE(lz));
} else if (lz->result == NULL) {
return Py_BuildValue("OO", Py_TYPE(lz), lz->pools);
} else {
PyObject *indices;
Py_ssize_t n, i;
/* we must pickle the indices use them for setstate, and
* additionally indicate that the iterator has started
*/
n = PyTuple_GET_SIZE(lz->pools);
indices = PyTuple_New(n);
if (indices == NULL)
return NULL;
for (i=0; i<n; i++){
PyObject* index = PyLong_FromSsize_t(lz->indices[i]);
if (!index) {
Py_DECREF(indices);
return NULL;
}
PyTuple_SET_ITEM(indices, i, index);
}
return Py_BuildValue("OON", Py_TYPE(lz), lz->pools, indices);
}
}
static PyObject *
product_setstate(productobject *lz, PyObject *state)
{
PyObject *result;
Py_ssize_t n, i;
n = PyTuple_GET_SIZE(lz->pools);
if (!PyTuple_Check(state) || PyTuple_GET_SIZE(state) != n) {
PyErr_SetString(PyExc_ValueError, "invalid arguments");
return NULL;
}
for (i=0; i<n; i++)
{
PyObject* indexObject = PyTuple_GET_ITEM(state, i);
Py_ssize_t index = PyLong_AsSsize_t(indexObject);
PyObject* pool;
Py_ssize_t poolsize;
if (index < 0 && PyErr_Occurred())
return NULL; /* not an integer */
pool = PyTuple_GET_ITEM(lz->pools, i);
poolsize = PyTuple_GET_SIZE(pool);
if (poolsize == 0) {
lz->stopped = 1;
Py_RETURN_NONE;
}
/* clamp the index */
if (index < 0)
index = 0;
else if (index > poolsize-1)
index = poolsize-1;
lz->indices[i] = index;
}
result = PyTuple_New(n);
if (!result)
return NULL;
for (i=0; i<n; i++) {
PyObject *pool = PyTuple_GET_ITEM(lz->pools, i);
PyObject *element = PyTuple_GET_ITEM(pool, lz->indices[i]);
Py_INCREF(element);
PyTuple_SET_ITEM(result, i, element);
}
Py_XSETREF(lz->result, result);
Py_RETURN_NONE;
}
static PyMethodDef product_methods[] = {
{"__reduce__", (PyCFunction)product_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)product_setstate, METH_O,
setstate_doc},
{"__sizeof__", (PyCFunction)product_sizeof, METH_NOARGS,
sizeof_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(product_doc,
"product(*iterables, repeat=1) --> product object\n\
\n\
Cartesian product of input iterables. Equivalent to nested for-loops.\n\n\
For example, product(A, B) returns the same as: ((x,y) for x in A for y in B).\n\
The leftmost iterators are in the outermost for-loop, so the output tuples\n\
cycle in a manner similar to an odometer (with the rightmost element changing\n\
on every iteration).\n\n\
To compute the product of an iterable with itself, specify the number\n\
of repetitions with the optional repeat keyword argument. For example,\n\
product(A, repeat=4) means the same as product(A, A, A, A).\n\n\
product('ab', range(3)) --> ('a',0) ('a',1) ('a',2) ('b',0) ('b',1) ('b',2)\n\
product((0,1), (0,1), (0,1)) --> (0,0,0) (0,0,1) (0,1,0) (0,1,1) (1,0,0) ...");
static PyTypeObject product_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.product", /* tp_name */
sizeof(productobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)product_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
product_doc, /* tp_doc */
(traverseproc)product_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)product_next, /* tp_iternext */
product_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
product_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* combinations object *******************************************************/
typedef struct {
PyObject_HEAD
PyObject *pool; /* input converted to a tuple */
Py_ssize_t *indices; /* one index per result element */
PyObject *result; /* most recently returned result tuple */
Py_ssize_t r; /* size of result tuple */
int stopped; /* set to 1 when the iterator is exhausted */
} combinationsobject;
static PyTypeObject combinations_type;
static PyObject *
combinations_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
combinationsobject *co;
Py_ssize_t n;
Py_ssize_t r;
PyObject *pool = NULL;
PyObject *iterable = NULL;
Py_ssize_t *indices = NULL;
Py_ssize_t i;
static char *kwargs[] = {"iterable", "r", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "On:combinations", kwargs,
&iterable, &r))
return NULL;
pool = PySequence_Tuple(iterable);
if (pool == NULL)
goto error;
n = PyTuple_GET_SIZE(pool);
if (r < 0) {
PyErr_SetString(PyExc_ValueError, "r must be non-negative");
goto error;
}
indices = PyMem_New(Py_ssize_t, r);
if (indices == NULL) {
PyErr_NoMemory();
goto error;
}
for (i=0 ; i<r ; i++)
indices[i] = i;
/* create combinationsobject structure */
co = (combinationsobject *)type->tp_alloc(type, 0);
if (co == NULL)
goto error;
co->pool = pool;
co->indices = indices;
co->result = NULL;
co->r = r;
co->stopped = r > n ? 1 : 0;
return (PyObject *)co;
error:
if (indices != NULL)
PyMem_Free(indices);
Py_XDECREF(pool);
return NULL;
}
static void
combinations_dealloc(combinationsobject *co)
{
PyObject_GC_UnTrack(co);
Py_XDECREF(co->pool);
Py_XDECREF(co->result);
if (co->indices != NULL)
PyMem_Free(co->indices);
Py_TYPE(co)->tp_free(co);
}
static PyObject *
combinations_sizeof(combinationsobject *co, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(co));
res += co->r * sizeof(Py_ssize_t);
return PyLong_FromSsize_t(res);
}
static int
combinations_traverse(combinationsobject *co, visitproc visit, void *arg)
{
Py_VISIT(co->pool);
Py_VISIT(co->result);
return 0;
}
static PyObject *
combinations_next(combinationsobject *co)
{
PyObject *elem;
PyObject *oldelem;
PyObject *pool = co->pool;
Py_ssize_t *indices = co->indices;
PyObject *result = co->result;
Py_ssize_t n = PyTuple_GET_SIZE(pool);
Py_ssize_t r = co->r;
Py_ssize_t i, j, index;
if (co->stopped)
return NULL;
if (result == NULL) {
/* On the first pass, initialize result tuple using the indices */
result = PyTuple_New(r);
if (result == NULL)
goto empty;
co->result = result;
for (i=0; i<r ; i++) {
index = indices[i];
elem = PyTuple_GET_ITEM(pool, index);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
} else {
/* Copy the previous result tuple or re-use it if available */
if (Py_REFCNT(result) > 1) {
PyObject *old_result = result;
result = PyTuple_New(r);
if (result == NULL)
goto empty;
co->result = result;
for (i=0; i<r ; i++) {
elem = PyTuple_GET_ITEM(old_result, i);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
Py_DECREF(old_result);
}
/* Now, we've got the only copy so we can update it in-place
* CPython's empty tuple is a singleton and cached in
* PyTuple's freelist.
*/
assert(r == 0 || Py_REFCNT(result) == 1);
/* Scan indices right-to-left until finding one that is not
at its maximum (i + n - r). */
for (i=r-1 ; i >= 0 && indices[i] == i+n-r ; i--)
;
/* If i is negative, then the indices are all at
their maximum value and we're done. */
if (i < 0)
goto empty;
/* Increment the current index which we know is not at its
maximum. Then move back to the right setting each index
to its lowest possible value (one higher than the index
to its left -- this maintains the sort order invariant). */
indices[i]++;
for (j=i+1 ; j<r ; j++)
indices[j] = indices[j-1] + 1;
/* Update the result tuple for the new indices
starting with i, the leftmost index that changed */
for ( ; i<r ; i++) {
index = indices[i];
elem = PyTuple_GET_ITEM(pool, index);
Py_INCREF(elem);
oldelem = PyTuple_GET_ITEM(result, i);
PyTuple_SET_ITEM(result, i, elem);
Py_DECREF(oldelem);
}
}
Py_INCREF(result);
return result;
empty:
co->stopped = 1;
return NULL;
}
static PyObject *
combinations_reduce(combinationsobject *lz)
{
if (lz->result == NULL) {
return Py_BuildValue("O(On)", Py_TYPE(lz), lz->pool, lz->r);
} else if (lz->stopped) {
return Py_BuildValue("O(()n)", Py_TYPE(lz), lz->r);
} else {
PyObject *indices;
Py_ssize_t i;
/* we must pickle the indices and use them for setstate */
indices = PyTuple_New(lz->r);
if (!indices)
return NULL;
for (i=0; i<lz->r; i++)
{
PyObject* index = PyLong_FromSsize_t(lz->indices[i]);
if (!index) {
Py_DECREF(indices);
return NULL;
}
PyTuple_SET_ITEM(indices, i, index);
}
return Py_BuildValue("O(On)N", Py_TYPE(lz), lz->pool, lz->r, indices);
}
}
static PyObject *
combinations_setstate(combinationsobject *lz, PyObject *state)
{
PyObject *result;
Py_ssize_t i;
Py_ssize_t n = PyTuple_GET_SIZE(lz->pool);
if (!PyTuple_Check(state) || PyTuple_GET_SIZE(state) != lz->r) {
PyErr_SetString(PyExc_ValueError, "invalid arguments");
return NULL;
}
for (i=0; i<lz->r; i++) {
Py_ssize_t max;
PyObject* indexObject = PyTuple_GET_ITEM(state, i);
Py_ssize_t index = PyLong_AsSsize_t(indexObject);
if (index == -1 && PyErr_Occurred())
return NULL; /* not an integer */
max = i + n - lz->r;
/* clamp the index (beware of negative max) */
if (index > max)
index = max;
if (index < 0)
index = 0;
lz->indices[i] = index;
}
result = PyTuple_New(lz->r);
if (result == NULL)
return NULL;
for (i=0; i<lz->r; i++) {
PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]);
Py_INCREF(element);
PyTuple_SET_ITEM(result, i, element);
}
Py_XSETREF(lz->result, result);
Py_RETURN_NONE;
}
static PyMethodDef combinations_methods[] = {
{"__reduce__", (PyCFunction)combinations_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)combinations_setstate, METH_O,
setstate_doc},
{"__sizeof__", (PyCFunction)combinations_sizeof, METH_NOARGS,
sizeof_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(combinations_doc,
"combinations(iterable, r) --> combinations object\n\
\n\
Return successive r-length combinations of elements in the iterable.\n\n\
combinations(range(4), 3) --> (0,1,2), (0,1,3), (0,2,3), (1,2,3)");
static PyTypeObject combinations_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.combinations", /* tp_name */
sizeof(combinationsobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)combinations_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
combinations_doc, /* tp_doc */
(traverseproc)combinations_traverse,/* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)combinations_next, /* tp_iternext */
combinations_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
combinations_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* combinations with replacement object **************************************/
/* Equivalent to:
def combinations_with_replacement(iterable, r):
"combinations_with_replacement('ABC', 2) --> AA AB AC BB BC CC"
# number items returned: (n+r-1)! / r! / (n-1)!
pool = tuple(iterable)
n = len(pool)
indices = [0] * r
yield tuple(pool[i] for i in indices)
while 1:
for i in reversed(range(r)):
if indices[i] != n - 1:
break
else:
return
indices[i:] = [indices[i] + 1] * (r - i)
yield tuple(pool[i] for i in indices)
def combinations_with_replacement2(iterable, r):
'Alternate version that filters from product()'
pool = tuple(iterable)
n = len(pool)
for indices in product(range(n), repeat=r):
if sorted(indices) == list(indices):
yield tuple(pool[i] for i in indices)
*/
typedef struct {
PyObject_HEAD
PyObject *pool; /* input converted to a tuple */
Py_ssize_t *indices; /* one index per result element */
PyObject *result; /* most recently returned result tuple */
Py_ssize_t r; /* size of result tuple */
int stopped; /* set to 1 when the cwr iterator is exhausted */
} cwrobject;
static PyTypeObject cwr_type;
static PyObject *
cwr_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
cwrobject *co;
Py_ssize_t n;
Py_ssize_t r;
PyObject *pool = NULL;
PyObject *iterable = NULL;
Py_ssize_t *indices = NULL;
Py_ssize_t i;
static char *kwargs[] = {"iterable", "r", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds,
"On:combinations_with_replacement",
kwargs, &iterable, &r))
return NULL;
pool = PySequence_Tuple(iterable);
if (pool == NULL)
goto error;
n = PyTuple_GET_SIZE(pool);
if (r < 0) {
PyErr_SetString(PyExc_ValueError, "r must be non-negative");
goto error;
}
indices = PyMem_New(Py_ssize_t, r);
if (indices == NULL) {
PyErr_NoMemory();
goto error;
}
for (i=0 ; i<r ; i++)
indices[i] = 0;
/* create cwrobject structure */
co = (cwrobject *)type->tp_alloc(type, 0);
if (co == NULL)
goto error;
co->pool = pool;
co->indices = indices;
co->result = NULL;
co->r = r;
co->stopped = !n && r;
return (PyObject *)co;
error:
if (indices != NULL)
PyMem_Free(indices);
Py_XDECREF(pool);
return NULL;
}
static void
cwr_dealloc(cwrobject *co)
{
PyObject_GC_UnTrack(co);
Py_XDECREF(co->pool);
Py_XDECREF(co->result);
if (co->indices != NULL)
PyMem_Free(co->indices);
Py_TYPE(co)->tp_free(co);
}
static PyObject *
cwr_sizeof(cwrobject *co, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(co));
res += co->r * sizeof(Py_ssize_t);
return PyLong_FromSsize_t(res);
}
static int
cwr_traverse(cwrobject *co, visitproc visit, void *arg)
{
Py_VISIT(co->pool);
Py_VISIT(co->result);
return 0;
}
static PyObject *
cwr_next(cwrobject *co)
{
PyObject *elem;
PyObject *oldelem;
PyObject *pool = co->pool;
Py_ssize_t *indices = co->indices;
PyObject *result = co->result;
Py_ssize_t n = PyTuple_GET_SIZE(pool);
Py_ssize_t r = co->r;
Py_ssize_t i, index;
if (co->stopped)
return NULL;
if (result == NULL) {
/* On the first pass, initialize result tuple with pool[0] */
result = PyTuple_New(r);
if (result == NULL)
goto empty;
co->result = result;
if (n > 0) {
elem = PyTuple_GET_ITEM(pool, 0);
for (i=0; i<r ; i++) {
assert(indices[i] == 0);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
}
} else {
/* Copy the previous result tuple or re-use it if available */
if (Py_REFCNT(result) > 1) {
PyObject *old_result = result;
result = PyTuple_New(r);
if (result == NULL)
goto empty;
co->result = result;
for (i=0; i<r ; i++) {
elem = PyTuple_GET_ITEM(old_result, i);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
Py_DECREF(old_result);
}
/* Now, we've got the only copy so we can update it in-place CPython's
empty tuple is a singleton and cached in PyTuple's freelist. */
assert(r == 0 || Py_REFCNT(result) == 1);
/* Scan indices right-to-left until finding one that is not
* at its maximum (n-1). */
for (i=r-1 ; i >= 0 && indices[i] == n-1; i--)
;
/* If i is negative, then the indices are all at
their maximum value and we're done. */
if (i < 0)
goto empty;
/* Increment the current index which we know is not at its
maximum. Then set all to the right to the same value. */
index = indices[i] + 1;
assert(index < n);
elem = PyTuple_GET_ITEM(pool, index);
for ( ; i<r ; i++) {
indices[i] = index;
Py_INCREF(elem);
oldelem = PyTuple_GET_ITEM(result, i);
PyTuple_SET_ITEM(result, i, elem);
Py_DECREF(oldelem);
}
}
Py_INCREF(result);
return result;
empty:
co->stopped = 1;
return NULL;
}
static PyObject *
cwr_reduce(cwrobject *lz)
{
if (lz->result == NULL) {
return Py_BuildValue("O(On)", Py_TYPE(lz), lz->pool, lz->r);
} else if (lz->stopped) {
return Py_BuildValue("O(()n)", Py_TYPE(lz), lz->r);
} else {
PyObject *indices;
Py_ssize_t i;
/* we must pickle the indices and use them for setstate */
indices = PyTuple_New(lz->r);
if (!indices)
return NULL;
for (i=0; i<lz->r; i++) {
PyObject* index = PyLong_FromSsize_t(lz->indices[i]);
if (!index) {
Py_DECREF(indices);
return NULL;
}
PyTuple_SET_ITEM(indices, i, index);
}
return Py_BuildValue("O(On)N", Py_TYPE(lz), lz->pool, lz->r, indices);
}
}
static PyObject *
cwr_setstate(cwrobject *lz, PyObject *state)
{
PyObject *result;
Py_ssize_t n, i;
if (!PyTuple_Check(state) || PyTuple_GET_SIZE(state) != lz->r)
{
PyErr_SetString(PyExc_ValueError, "invalid arguments");
return NULL;
}
n = PyTuple_GET_SIZE(lz->pool);
for (i=0; i<lz->r; i++) {
PyObject* indexObject = PyTuple_GET_ITEM(state, i);
Py_ssize_t index = PyLong_AsSsize_t(indexObject);
if (index < 0 && PyErr_Occurred())
return NULL; /* not an integer */
/* clamp the index */
if (index < 0)
index = 0;
else if (index > n-1)
index = n-1;
lz->indices[i] = index;
}
result = PyTuple_New(lz->r);
if (result == NULL)
return NULL;
for (i=0; i<lz->r; i++) {
PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]);
Py_INCREF(element);
PyTuple_SET_ITEM(result, i, element);
}
Py_XSETREF(lz->result, result);
Py_RETURN_NONE;
}
static PyMethodDef cwr_methods[] = {
{"__reduce__", (PyCFunction)cwr_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)cwr_setstate, METH_O,
setstate_doc},
{"__sizeof__", (PyCFunction)cwr_sizeof, METH_NOARGS,
sizeof_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(cwr_doc,
"combinations_with_replacement(iterable, r) --> combinations_with_replacement object\n\
\n\
Return successive r-length combinations of elements in the iterable\n\
allowing individual elements to have successive repeats.\n\
combinations_with_replacement('ABC', 2) --> AA AB AC BB BC CC");
static PyTypeObject cwr_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.combinations_with_replacement", /* tp_name */
sizeof(cwrobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)cwr_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
cwr_doc, /* tp_doc */
(traverseproc)cwr_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)cwr_next, /* tp_iternext */
cwr_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
cwr_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* permutations object ********************************************************
def permutations(iterable, r=None):
'permutations(range(3), 2) --> (0,1) (0,2) (1,0) (1,2) (2,0) (2,1)'
pool = tuple(iterable)
n = len(pool)
r = n if r is None else r
indices = range(n)
cycles = range(n-r+1, n+1)[::-1]
yield tuple(pool[i] for i in indices[:r])
while n:
for i in reversed(range(r)):
cycles[i] -= 1
if cycles[i] == 0:
indices[i:] = indices[i+1:] + indices[i:i+1]
cycles[i] = n - i
else:
j = cycles[i]
indices[i], indices[-j] = indices[-j], indices[i]
yield tuple(pool[i] for i in indices[:r])
break
else:
return
*/
typedef struct {
PyObject_HEAD
PyObject *pool; /* input converted to a tuple */
Py_ssize_t *indices; /* one index per element in the pool */
Py_ssize_t *cycles; /* one rollover counter per element in the result */
PyObject *result; /* most recently returned result tuple */
Py_ssize_t r; /* size of result tuple */
int stopped; /* set to 1 when the iterator is exhausted */
} permutationsobject;
static PyTypeObject permutations_type;
static PyObject *
permutations_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
permutationsobject *po;
Py_ssize_t n;
Py_ssize_t r;
PyObject *robj = Py_None;
PyObject *pool = NULL;
PyObject *iterable = NULL;
Py_ssize_t *indices = NULL;
Py_ssize_t *cycles = NULL;
Py_ssize_t i;
static char *kwargs[] = {"iterable", "r", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:permutations", kwargs,
&iterable, &robj))
return NULL;
pool = PySequence_Tuple(iterable);
if (pool == NULL)
goto error;
n = PyTuple_GET_SIZE(pool);
r = n;
if (robj != Py_None) {
if (!PyLong_Check(robj)) {
PyErr_SetString(PyExc_TypeError, "Expected int as r");
goto error;
}
r = PyLong_AsSsize_t(robj);
if (r == -1 && PyErr_Occurred())
goto error;
}
if (r < 0) {
PyErr_SetString(PyExc_ValueError, "r must be non-negative");
goto error;
}
indices = PyMem_New(Py_ssize_t, n);
cycles = PyMem_New(Py_ssize_t, r);
if (indices == NULL || cycles == NULL) {
PyErr_NoMemory();
goto error;
}
for (i=0 ; i<n ; i++)
indices[i] = i;
for (i=0 ; i<r ; i++)
cycles[i] = n - i;
/* create permutationsobject structure */
po = (permutationsobject *)type->tp_alloc(type, 0);
if (po == NULL)
goto error;
po->pool = pool;
po->indices = indices;
po->cycles = cycles;
po->result = NULL;
po->r = r;
po->stopped = r > n ? 1 : 0;
return (PyObject *)po;
error:
if (indices != NULL)
PyMem_Free(indices);
if (cycles != NULL)
PyMem_Free(cycles);
Py_XDECREF(pool);
return NULL;
}
static void
permutations_dealloc(permutationsobject *po)
{
PyObject_GC_UnTrack(po);
Py_XDECREF(po->pool);
Py_XDECREF(po->result);
PyMem_Free(po->indices);
PyMem_Free(po->cycles);
Py_TYPE(po)->tp_free(po);
}
static PyObject *
permutations_sizeof(permutationsobject *po, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(po));
res += PyTuple_GET_SIZE(po->pool) * sizeof(Py_ssize_t);
res += po->r * sizeof(Py_ssize_t);
return PyLong_FromSsize_t(res);
}
static int
permutations_traverse(permutationsobject *po, visitproc visit, void *arg)
{
Py_VISIT(po->pool);
Py_VISIT(po->result);
return 0;
}
static PyObject *
permutations_next(permutationsobject *po)
{
PyObject *elem;
PyObject *oldelem;
PyObject *pool = po->pool;
Py_ssize_t *indices = po->indices;
Py_ssize_t *cycles = po->cycles;
PyObject *result = po->result;
Py_ssize_t n = PyTuple_GET_SIZE(pool);
Py_ssize_t r = po->r;
Py_ssize_t i, j, k, index;
if (po->stopped)
return NULL;
if (result == NULL) {
/* On the first pass, initialize result tuple using the indices */
result = PyTuple_New(r);
if (result == NULL)
goto empty;
po->result = result;
for (i=0; i<r ; i++) {
index = indices[i];
elem = PyTuple_GET_ITEM(pool, index);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
} else {
if (n == 0)
goto empty;
/* Copy the previous result tuple or re-use it if available */
if (Py_REFCNT(result) > 1) {
PyObject *old_result = result;
result = PyTuple_New(r);
if (result == NULL)
goto empty;
po->result = result;
for (i=0; i<r ; i++) {
elem = PyTuple_GET_ITEM(old_result, i);
Py_INCREF(elem);
PyTuple_SET_ITEM(result, i, elem);
}
Py_DECREF(old_result);
}
/* Now, we've got the only copy so we can update it in-place */
assert(r == 0 || Py_REFCNT(result) == 1);
/* Decrement rightmost cycle, moving leftward upon zero rollover */
for (i=r-1 ; i>=0 ; i--) {
cycles[i] -= 1;
if (cycles[i] == 0) {
/* rotatation: indices[i:] = indices[i+1:] + indices[i:i+1] */
index = indices[i];
for (j=i ; j<n-1 ; j++)
indices[j] = indices[j+1];
indices[n-1] = index;
cycles[i] = n - i;
} else {
j = cycles[i];
index = indices[i];
indices[i] = indices[n-j];
indices[n-j] = index;
for (k=i; k<r ; k++) {
/* start with i, the leftmost element that changed */
/* yield tuple(pool[k] for k in indices[:r]) */
index = indices[k];
elem = PyTuple_GET_ITEM(pool, index);
Py_INCREF(elem);
oldelem = PyTuple_GET_ITEM(result, k);
PyTuple_SET_ITEM(result, k, elem);
Py_DECREF(oldelem);
}
break;
}
}
/* If i is negative, then the cycles have all
rolled-over and we're done. */
if (i < 0)
goto empty;
}
Py_INCREF(result);
return result;
empty:
po->stopped = 1;
return NULL;
}
static PyObject *
permutations_reduce(permutationsobject *po)
{
if (po->result == NULL) {
return Py_BuildValue("O(On)", Py_TYPE(po), po->pool, po->r);
} else if (po->stopped) {
return Py_BuildValue("O(()n)", Py_TYPE(po), po->r);
} else {
PyObject *indices=NULL, *cycles=NULL;
Py_ssize_t n, i;
/* we must pickle the indices and cycles and use them for setstate */
n = PyTuple_GET_SIZE(po->pool);
indices = PyTuple_New(n);
if (indices == NULL)
goto err;
for (i=0; i<n; i++) {
PyObject* index = PyLong_FromSsize_t(po->indices[i]);
if (!index)
goto err;
PyTuple_SET_ITEM(indices, i, index);
}
cycles = PyTuple_New(po->r);
if (cycles == NULL)
goto err;
for (i=0 ; i<po->r ; i++) {
PyObject* index = PyLong_FromSsize_t(po->cycles[i]);
if (!index)
goto err;
PyTuple_SET_ITEM(cycles, i, index);
}
return Py_BuildValue("O(On)(NN)", Py_TYPE(po),
po->pool, po->r,
indices, cycles);
err:
Py_XDECREF(indices);
Py_XDECREF(cycles);
return NULL;
}
}
static PyObject *
permutations_setstate(permutationsobject *po, PyObject *state)
{
PyObject *indices, *cycles, *result;
Py_ssize_t n, i;
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError, "state is not a tuple");
return NULL;
}
if (!PyArg_ParseTuple(state, "O!O!",
&PyTuple_Type, &indices,
&PyTuple_Type, &cycles)) {
return NULL;
}
n = PyTuple_GET_SIZE(po->pool);
if (PyTuple_GET_SIZE(indices) != n || PyTuple_GET_SIZE(cycles) != po->r) {
PyErr_SetString(PyExc_ValueError, "invalid arguments");
return NULL;
}
for (i=0; i<n; i++) {
PyObject* indexObject = PyTuple_GET_ITEM(indices, i);
Py_ssize_t index = PyLong_AsSsize_t(indexObject);
if (index < 0 && PyErr_Occurred())
return NULL; /* not an integer */
/* clamp the index */
if (index < 0)
index = 0;
else if (index > n-1)
index = n-1;
po->indices[i] = index;
}
for (i=0; i<po->r; i++) {
PyObject* indexObject = PyTuple_GET_ITEM(cycles, i);
Py_ssize_t index = PyLong_AsSsize_t(indexObject);
if (index < 0 && PyErr_Occurred())
return NULL; /* not an integer */
if (index < 1)
index = 1;
else if (index > n-i)
index = n-i;
po->cycles[i] = index;
}
result = PyTuple_New(po->r);
if (result == NULL)
return NULL;
for (i=0; i<po->r; i++) {
PyObject *element = PyTuple_GET_ITEM(po->pool, po->indices[i]);
Py_INCREF(element);
PyTuple_SET_ITEM(result, i, element);
}
Py_XSETREF(po->result, result);
Py_RETURN_NONE;
}
static PyMethodDef permuations_methods[] = {
{"__reduce__", (PyCFunction)permutations_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)permutations_setstate, METH_O,
setstate_doc},
{"__sizeof__", (PyCFunction)permutations_sizeof, METH_NOARGS,
sizeof_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(permutations_doc,
"permutations(iterable[, r]) --> permutations object\n\
\n\
Return successive r-length permutations of elements in the iterable.\n\n\
permutations(range(3), 2) --> (0,1), (0,2), (1,0), (1,2), (2,0), (2,1)");
static PyTypeObject permutations_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.permutations", /* tp_name */
sizeof(permutationsobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)permutations_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
permutations_doc, /* tp_doc */
(traverseproc)permutations_traverse,/* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)permutations_next, /* tp_iternext */
permuations_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
permutations_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* accumulate object ********************************************************/
typedef struct {
PyObject_HEAD
PyObject *total;
PyObject *it;
PyObject *binop;
} accumulateobject;
static PyTypeObject accumulate_type;
static PyObject *
accumulate_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
static char *kwargs[] = {"iterable", "func", NULL};
PyObject *iterable;
PyObject *it;
PyObject *binop = Py_None;
accumulateobject *lz;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:accumulate",
kwargs, &iterable, &binop))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
/* create accumulateobject structure */
lz = (accumulateobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
if (binop != Py_None) {
Py_XINCREF(binop);
lz->binop = binop;
}
lz->total = NULL;
lz->it = it;
return (PyObject *)lz;
}
static void
accumulate_dealloc(accumulateobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->binop);
Py_XDECREF(lz->total);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
accumulate_traverse(accumulateobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->binop);
Py_VISIT(lz->it);
Py_VISIT(lz->total);
return 0;
}
static PyObject *
accumulate_next(accumulateobject *lz)
{
PyObject *val, *newtotal;
val = (*Py_TYPE(lz->it)->tp_iternext)(lz->it);
if (val == NULL)
return NULL;
if (lz->total == NULL) {
Py_INCREF(val);
lz->total = val;
return lz->total;
}
if (lz->binop == NULL)
newtotal = PyNumber_Add(lz->total, val);
else
newtotal = PyObject_CallFunctionObjArgs(lz->binop, lz->total, val, NULL);
Py_DECREF(val);
if (newtotal == NULL)
return NULL;
Py_INCREF(newtotal);
Py_SETREF(lz->total, newtotal);
return newtotal;
}
static PyObject *
accumulate_reduce(accumulateobject *lz)
{
if (lz->total == Py_None) {
PyObject *it;
if (PyType_Ready(&chain_type) < 0)
return NULL;
if (PyType_Ready(&islice_type) < 0)
return NULL;
it = PyObject_CallFunction((PyObject *)&chain_type, "(O)O",
lz->total, lz->it);
if (it == NULL)
return NULL;
it = PyObject_CallFunction((PyObject *)Py_TYPE(lz), "NO",
it, lz->binop ? lz->binop : Py_None);
if (it == NULL)
return NULL;
return Py_BuildValue("O(NiO)", &islice_type, it, 1, Py_None);
}
return Py_BuildValue("O(OO)O", Py_TYPE(lz),
lz->it, lz->binop?lz->binop:Py_None,
lz->total?lz->total:Py_None);
}
static PyObject *
accumulate_setstate(accumulateobject *lz, PyObject *state)
{
Py_INCREF(state);
Py_XSETREF(lz->total, state);
Py_RETURN_NONE;
}
static PyMethodDef accumulate_methods[] = {
{"__reduce__", (PyCFunction)accumulate_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)accumulate_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(accumulate_doc,
"accumulate(iterable[, func]) --> accumulate object\n\
\n\
Return series of accumulated sums (or other binary function results).");
static PyTypeObject accumulate_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.accumulate", /* tp_name */
sizeof(accumulateobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)accumulate_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
accumulate_doc, /* tp_doc */
(traverseproc)accumulate_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)accumulate_next, /* tp_iternext */
accumulate_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
accumulate_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* compress object ************************************************************/
/* Equivalent to:
def compress(data, selectors):
"compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F"
return (d for d, s in zip(data, selectors) if s)
*/
typedef struct {
PyObject_HEAD
PyObject *data;
PyObject *selectors;
} compressobject;
static PyTypeObject compress_type;
static PyObject *
compress_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *seq1, *seq2;
PyObject *data=NULL, *selectors=NULL;
compressobject *lz;
static char *kwargs[] = {"data", "selectors", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OO:compress", kwargs, &seq1, &seq2))
return NULL;
data = PyObject_GetIter(seq1);
if (data == NULL)
goto fail;
selectors = PyObject_GetIter(seq2);
if (selectors == NULL)
goto fail;
/* create compressobject structure */
lz = (compressobject *)type->tp_alloc(type, 0);
if (lz == NULL)
goto fail;
lz->data = data;
lz->selectors = selectors;
return (PyObject *)lz;
fail:
Py_XDECREF(data);
Py_XDECREF(selectors);
return NULL;
}
static void
compress_dealloc(compressobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->data);
Py_XDECREF(lz->selectors);
Py_TYPE(lz)->tp_free(lz);
}
static int
compress_traverse(compressobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->data);
Py_VISIT(lz->selectors);
return 0;
}
static PyObject *
compress_next(compressobject *lz)
{
PyObject *data = lz->data, *selectors = lz->selectors;
PyObject *datum, *selector;
PyObject *(*datanext)(PyObject *) = *Py_TYPE(data)->tp_iternext;
PyObject *(*selectornext)(PyObject *) = *Py_TYPE(selectors)->tp_iternext;
int ok;
while (1) {
/* Steps: get datum, get selector, evaluate selector.
Order is important (to match the pure python version
in terms of which input gets a chance to raise an
exception first).
*/
datum = datanext(data);
if (datum == NULL)
return NULL;
selector = selectornext(selectors);
if (selector == NULL) {
Py_DECREF(datum);
return NULL;
}
ok = PyObject_IsTrue(selector);
Py_DECREF(selector);
if (ok > 0)
return datum;
Py_DECREF(datum);
if (ok < 0)
return NULL;
}
}
static PyObject *
compress_reduce(compressobject *lz)
{
return Py_BuildValue("O(OO)", Py_TYPE(lz),
lz->data, lz->selectors);
}
static PyMethodDef compress_methods[] = {
{"__reduce__", (PyCFunction)compress_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(compress_doc,
"compress(data, selectors) --> iterator over selected data\n\
\n\
Return data elements corresponding to true selector elements.\n\
Forms a shorter iterator from selected data elements using the\n\
selectors to choose the data elements.");
static PyTypeObject compress_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.compress", /* tp_name */
sizeof(compressobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)compress_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
compress_doc, /* tp_doc */
(traverseproc)compress_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)compress_next, /* tp_iternext */
compress_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
compress_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* filterfalse object ************************************************************/
typedef struct {
PyObject_HEAD
PyObject *func;
PyObject *it;
} filterfalseobject;
static PyTypeObject filterfalse_type;
static PyObject *
filterfalse_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *func, *seq;
PyObject *it;
filterfalseobject *lz;
if (type == &filterfalse_type &&
!_PyArg_NoKeywords("filterfalse()", kwds))
return NULL;
if (!PyArg_UnpackTuple(args, "filterfalse", 2, 2, &func, &seq))
return NULL;
/* Get iterator. */
it = PyObject_GetIter(seq);
if (it == NULL)
return NULL;
/* create filterfalseobject structure */
lz = (filterfalseobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(it);
return NULL;
}
Py_INCREF(func);
lz->func = func;
lz->it = it;
return (PyObject *)lz;
}
static void
filterfalse_dealloc(filterfalseobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->func);
Py_XDECREF(lz->it);
Py_TYPE(lz)->tp_free(lz);
}
static int
filterfalse_traverse(filterfalseobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->it);
Py_VISIT(lz->func);
return 0;
}
static PyObject *
filterfalse_next(filterfalseobject *lz)
{
PyObject *item;
PyObject *it = lz->it;
long ok;
PyObject *(*iternext)(PyObject *);
iternext = *Py_TYPE(it)->tp_iternext;
for (;;) {
item = iternext(it);
if (item == NULL)
return NULL;
if (lz->func == Py_None || lz->func == (PyObject *)&PyBool_Type) {
ok = PyObject_IsTrue(item);
} else {
PyObject *good;
good = PyObject_CallFunctionObjArgs(lz->func, item, NULL);
if (good == NULL) {
Py_DECREF(item);
return NULL;
}
ok = PyObject_IsTrue(good);
Py_DECREF(good);
}
if (ok == 0)
return item;
Py_DECREF(item);
if (ok < 0)
return NULL;
}
}
static PyObject *
filterfalse_reduce(filterfalseobject *lz)
{
return Py_BuildValue("O(OO)", Py_TYPE(lz), lz->func, lz->it);
}
static PyMethodDef filterfalse_methods[] = {
{"__reduce__", (PyCFunction)filterfalse_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(filterfalse_doc,
"filterfalse(function or None, sequence) --> filterfalse object\n\
\n\
Return those items of sequence for which function(item) is false.\n\
If function is None, return the items that are false.");
static PyTypeObject filterfalse_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.filterfalse", /* tp_name */
sizeof(filterfalseobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)filterfalse_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
filterfalse_doc, /* tp_doc */
(traverseproc)filterfalse_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)filterfalse_next, /* tp_iternext */
filterfalse_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
filterfalse_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* count object ************************************************************/
typedef struct {
PyObject_HEAD
Py_ssize_t cnt;
PyObject *long_cnt;
PyObject *long_step;
} countobject;
/* Counting logic and invariants:
fast_mode: when cnt an integer < PY_SSIZE_T_MAX and no step is specified.
assert(cnt != PY_SSIZE_T_MAX && long_cnt == NULL && long_step==PyLong(1));
Advances with: cnt += 1
When count hits Y_SSIZE_T_MAX, switch to slow_mode.
slow_mode: when cnt == PY_SSIZE_T_MAX, step is not int(1), or cnt is a float.
assert(cnt == PY_SSIZE_T_MAX && long_cnt != NULL && long_step != NULL);
All counting is done with python objects (no overflows or underflows).
Advances with: long_cnt += long_step
Step may be zero -- effectively a slow version of repeat(cnt).
Either long_cnt or long_step may be a float, Fraction, or Decimal.
*/
static PyTypeObject count_type;
static PyObject *
count_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
countobject *lz;
int fast_mode;
Py_ssize_t cnt = 0;
PyObject *long_cnt = NULL;
PyObject *long_step = NULL;
long step;
static char *kwlist[] = {"start", "step", 0};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|OO:count",
kwlist, &long_cnt, &long_step))
return NULL;
if ((long_cnt != NULL && !PyNumber_Check(long_cnt)) ||
(long_step != NULL && !PyNumber_Check(long_step))) {
PyErr_SetString(PyExc_TypeError, "a number is required");
return NULL;
}
fast_mode = (long_cnt == NULL || PyLong_Check(long_cnt)) &&
(long_step == NULL || PyLong_Check(long_step));
/* If not specified, start defaults to 0 */
if (long_cnt != NULL) {
if (fast_mode) {
assert(PyLong_Check(long_cnt));
cnt = PyLong_AsSsize_t(long_cnt);
if (cnt == -1 && PyErr_Occurred()) {
PyErr_Clear();
fast_mode = 0;
}
}
Py_INCREF(long_cnt);
} else {
cnt = 0;
long_cnt = PyLong_FromLong(0);
if (long_cnt == NULL) {
return NULL;
}
}
/* If not specified, step defaults to 1 */
if (long_step == NULL) {
long_step = PyLong_FromLong(1);
if (long_step == NULL) {
Py_DECREF(long_cnt);
return NULL;
}
} else
Py_INCREF(long_step);
assert(long_cnt != NULL && long_step != NULL);
/* Fast mode only works when the step is 1 */
if (fast_mode) {
assert(PyLong_Check(long_step));
step = PyLong_AsLong(long_step);
if (step != 1) {
fast_mode = 0;
if (step == -1 && PyErr_Occurred())
PyErr_Clear();
}
}
if (fast_mode)
Py_CLEAR(long_cnt);
else
cnt = PY_SSIZE_T_MAX;
assert((cnt != PY_SSIZE_T_MAX && long_cnt == NULL && fast_mode) ||
(cnt == PY_SSIZE_T_MAX && long_cnt != NULL && !fast_mode));
assert(!fast_mode ||
(PyLong_Check(long_step) && PyLong_AS_LONG(long_step) == 1));
/* create countobject structure */
lz = (countobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_XDECREF(long_cnt);
return NULL;
}
lz->cnt = cnt;
lz->long_cnt = long_cnt;
lz->long_step = long_step;
return (PyObject *)lz;
}
static void
count_dealloc(countobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->long_cnt);
Py_XDECREF(lz->long_step);
Py_TYPE(lz)->tp_free(lz);
}
static int
count_traverse(countobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->long_cnt);
Py_VISIT(lz->long_step);
return 0;
}
static PyObject *
count_nextlong(countobject *lz)
{
PyObject *long_cnt;
PyObject *stepped_up;
long_cnt = lz->long_cnt;
if (long_cnt == NULL) {
/* Switch to slow_mode */
long_cnt = PyLong_FromSsize_t(PY_SSIZE_T_MAX);
if (long_cnt == NULL)
return NULL;
}
assert(lz->cnt == PY_SSIZE_T_MAX && long_cnt != NULL);
stepped_up = PyNumber_Add(long_cnt, lz->long_step);
if (stepped_up == NULL)
return NULL;
lz->long_cnt = stepped_up;
return long_cnt;
}
static PyObject *
count_next(countobject *lz)
{
if (lz->cnt == PY_SSIZE_T_MAX)
return count_nextlong(lz);
return PyLong_FromSsize_t(lz->cnt++);
}
static PyObject *
count_repr(countobject *lz)
{
if (lz->cnt != PY_SSIZE_T_MAX)
return PyUnicode_FromFormat("count(%zd)", lz->cnt);
if (PyLong_Check(lz->long_step)) {
long step = PyLong_AsLong(lz->long_step);
if (step == -1 && PyErr_Occurred()) {
PyErr_Clear();
}
if (step == 1) {
/* Don't display step when it is an integer equal to 1 */
return PyUnicode_FromFormat("count(%R)", lz->long_cnt);
}
}
return PyUnicode_FromFormat("count(%R, %R)",
lz->long_cnt, lz->long_step);
}
static PyObject *
count_reduce(countobject *lz)
{
if (lz->cnt == PY_SSIZE_T_MAX)
return Py_BuildValue("O(OO)", Py_TYPE(lz), lz->long_cnt, lz->long_step);
return Py_BuildValue("O(n)", Py_TYPE(lz), lz->cnt);
}
static PyMethodDef count_methods[] = {
{"__reduce__", (PyCFunction)count_reduce, METH_NOARGS,
reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(count_doc,
"count(start=0, step=1) --> count object\n\
\n\
Return a count object whose .__next__() method returns consecutive values.\n\
Equivalent to:\n\n\
def count(firstval=0, step=1):\n\
x = firstval\n\
while 1:\n\
yield x\n\
x += step\n");
static PyTypeObject count_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.count", /* tp_name */
sizeof(countobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)count_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)count_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
count_doc, /* tp_doc */
(traverseproc)count_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)count_next, /* tp_iternext */
count_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
count_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* repeat object ************************************************************/
typedef struct {
PyObject_HEAD
PyObject *element;
Py_ssize_t cnt;
} repeatobject;
static PyTypeObject repeat_type;
static PyObject *
repeat_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
repeatobject *ro;
PyObject *element;
Py_ssize_t cnt = -1, n_kwds = 0;
static char *kwargs[] = {"object", "times", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|n:repeat", kwargs,
&element, &cnt))
return NULL;
if (kwds != NULL)
n_kwds = PyDict_Size(kwds);
/* Does user supply times argument? */
if ((PyTuple_Size(args) + n_kwds == 2) && cnt < 0)
cnt = 0;
ro = (repeatobject *)type->tp_alloc(type, 0);
if (ro == NULL)
return NULL;
Py_INCREF(element);
ro->element = element;
ro->cnt = cnt;
return (PyObject *)ro;
}
static void
repeat_dealloc(repeatobject *ro)
{
PyObject_GC_UnTrack(ro);
Py_XDECREF(ro->element);
Py_TYPE(ro)->tp_free(ro);
}
static int
repeat_traverse(repeatobject *ro, visitproc visit, void *arg)
{
Py_VISIT(ro->element);
return 0;
}
static PyObject *
repeat_next(repeatobject *ro)
{
if (ro->cnt == 0)
return NULL;
if (ro->cnt > 0)
ro->cnt--;
Py_INCREF(ro->element);
return ro->element;
}
static PyObject *
repeat_repr(repeatobject *ro)
{
if (ro->cnt == -1)
return PyUnicode_FromFormat("repeat(%R)", ro->element);
else
return PyUnicode_FromFormat("repeat(%R, %zd)", ro->element, ro->cnt);
}
static PyObject *
repeat_len(repeatobject *ro)
{
if (ro->cnt == -1) {
PyErr_SetString(PyExc_TypeError, "len() of unsized object");
return NULL;
}
return PyLong_FromSize_t(ro->cnt);
}
PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
static PyObject *
repeat_reduce(repeatobject *ro)
{
/* unpickle this so that a new repeat iterator is constructed with an
* object, then call __setstate__ on it to set cnt
*/
if (ro->cnt >= 0)
return Py_BuildValue("O(On)", Py_TYPE(ro), ro->element, ro->cnt);
else
return Py_BuildValue("O(O)", Py_TYPE(ro), ro->element);
}
static PyMethodDef repeat_methods[] = {
{"__length_hint__", (PyCFunction)repeat_len, METH_NOARGS, length_hint_doc},
{"__reduce__", (PyCFunction)repeat_reduce, METH_NOARGS, reduce_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(repeat_doc,
"repeat(object [,times]) -> create an iterator which returns the object\n\
for the specified number of times. If not specified, returns the object\n\
endlessly.");
static PyTypeObject repeat_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.repeat", /* tp_name */
sizeof(repeatobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)repeat_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)repeat_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
repeat_doc, /* tp_doc */
(traverseproc)repeat_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)repeat_next, /* tp_iternext */
repeat_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
repeat_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* ziplongest object *********************************************************/
typedef struct {
PyObject_HEAD
Py_ssize_t tuplesize;
Py_ssize_t numactive;
PyObject *ittuple; /* tuple of iterators */
PyObject *result;
PyObject *fillvalue;
} ziplongestobject;
static PyTypeObject ziplongest_type;
static PyObject *
zip_longest_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
ziplongestobject *lz;
Py_ssize_t i;
PyObject *ittuple; /* tuple of iterators */
PyObject *result;
PyObject *fillvalue = Py_None;
Py_ssize_t tuplesize = PySequence_Length(args);
if (kwds != NULL && PyDict_CheckExact(kwds) && PyDict_Size(kwds) > 0) {
fillvalue = PyDict_GetItemString(kwds, "fillvalue");
if (fillvalue == NULL || PyDict_Size(kwds) > 1) {
PyErr_SetString(PyExc_TypeError,
"zip_longest() got an unexpected keyword argument");
return NULL;
}
}
/* args must be a tuple */
assert(PyTuple_Check(args));
/* obtain iterators */
ittuple = PyTuple_New(tuplesize);
if (ittuple == NULL)
return NULL;
for (i=0; i < tuplesize; i++) {
PyObject *item = PyTuple_GET_ITEM(args, i);
PyObject *it = PyObject_GetIter(item);
if (it == NULL) {
if (PyErr_ExceptionMatches(PyExc_TypeError))
PyErr_Format(PyExc_TypeError,
"zip_longest argument #%zd must support iteration",
i+1);
Py_DECREF(ittuple);
return NULL;
}
PyTuple_SET_ITEM(ittuple, i, it);
}
/* create a result holder */
result = PyTuple_New(tuplesize);
if (result == NULL) {
Py_DECREF(ittuple);
return NULL;
}
for (i=0 ; i < tuplesize ; i++) {
Py_INCREF(Py_None);
PyTuple_SET_ITEM(result, i, Py_None);
}
/* create ziplongestobject structure */
lz = (ziplongestobject *)type->tp_alloc(type, 0);
if (lz == NULL) {
Py_DECREF(ittuple);
Py_DECREF(result);
return NULL;
}
lz->ittuple = ittuple;
lz->tuplesize = tuplesize;
lz->numactive = tuplesize;
lz->result = result;
Py_INCREF(fillvalue);
lz->fillvalue = fillvalue;
return (PyObject *)lz;
}
static void
zip_longest_dealloc(ziplongestobject *lz)
{
PyObject_GC_UnTrack(lz);
Py_XDECREF(lz->ittuple);
Py_XDECREF(lz->result);
Py_XDECREF(lz->fillvalue);
Py_TYPE(lz)->tp_free(lz);
}
static int
zip_longest_traverse(ziplongestobject *lz, visitproc visit, void *arg)
{
Py_VISIT(lz->ittuple);
Py_VISIT(lz->result);
Py_VISIT(lz->fillvalue);
return 0;
}
static PyObject *
zip_longest_next(ziplongestobject *lz)
{
Py_ssize_t i;
Py_ssize_t tuplesize = lz->tuplesize;
PyObject *result = lz->result;
PyObject *it;
PyObject *item;
PyObject *olditem;
if (tuplesize == 0)
return NULL;
if (lz->numactive == 0)
return NULL;
if (Py_REFCNT(result) == 1) {
Py_INCREF(result);
for (i=0 ; i < tuplesize ; i++) {
it = PyTuple_GET_ITEM(lz->ittuple, i);
if (it == NULL) {
Py_INCREF(lz->fillvalue);
item = lz->fillvalue;
} else {
item = PyIter_Next(it);
if (item == NULL) {
lz->numactive -= 1;
if (lz->numactive == 0 || PyErr_Occurred()) {
lz->numactive = 0;
Py_DECREF(result);
return NULL;
} else {
Py_INCREF(lz->fillvalue);
item = lz->fillvalue;
PyTuple_SET_ITEM(lz->ittuple, i, NULL);
Py_DECREF(it);
}
}
}
olditem = PyTuple_GET_ITEM(result, i);
PyTuple_SET_ITEM(result, i, item);
Py_DECREF(olditem);
}
} else {
result = PyTuple_New(tuplesize);
if (result == NULL)
return NULL;
for (i=0 ; i < tuplesize ; i++) {
it = PyTuple_GET_ITEM(lz->ittuple, i);
if (it == NULL) {
Py_INCREF(lz->fillvalue);
item = lz->fillvalue;
} else {
item = PyIter_Next(it);
if (item == NULL) {
lz->numactive -= 1;
if (lz->numactive == 0 || PyErr_Occurred()) {
lz->numactive = 0;
Py_DECREF(result);
return NULL;
} else {
Py_INCREF(lz->fillvalue);
item = lz->fillvalue;
PyTuple_SET_ITEM(lz->ittuple, i, NULL);
Py_DECREF(it);
}
}
}
PyTuple_SET_ITEM(result, i, item);
}
}
return result;
}
static PyObject *
zip_longest_reduce(ziplongestobject *lz)
{
/* Create a new tuple with empty sequences where appropriate to pickle.
* Then use setstate to set the fillvalue
*/
int i;
PyObject *args = PyTuple_New(PyTuple_GET_SIZE(lz->ittuple));
if (args == NULL)
return NULL;
for (i=0; i<PyTuple_GET_SIZE(lz->ittuple); i++) {
PyObject *elem = PyTuple_GET_ITEM(lz->ittuple, i);
if (elem == NULL) {
elem = PyTuple_New(0);
if (elem == NULL) {
Py_DECREF(args);
return NULL;
}
} else
Py_INCREF(elem);
PyTuple_SET_ITEM(args, i, elem);
}
return Py_BuildValue("ONO", Py_TYPE(lz), args, lz->fillvalue);
}
static PyObject *
zip_longest_setstate(ziplongestobject *lz, PyObject *state)
{
Py_INCREF(state);
Py_XSETREF(lz->fillvalue, state);
Py_RETURN_NONE;
}
static PyMethodDef zip_longest_methods[] = {
{"__reduce__", (PyCFunction)zip_longest_reduce, METH_NOARGS,
reduce_doc},
{"__setstate__", (PyCFunction)zip_longest_setstate, METH_O,
setstate_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(zip_longest_doc,
"zip_longest(iter1 [,iter2 [...]], [fillvalue=None]) --> zip_longest object\n\
\n\
Return a zip_longest object whose .__next__() method returns a tuple where\n\
the i-th element comes from the i-th iterable argument. The .__next__()\n\
method continues until the longest iterable in the argument sequence\n\
is exhausted and then it raises StopIteration. When the shorter iterables\n\
are exhausted, the fillvalue is substituted in their place. The fillvalue\n\
defaults to None or can be specified by a keyword argument.\n\
");
static PyTypeObject ziplongest_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"itertools.zip_longest", /* tp_name */
sizeof(ziplongestobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)zip_longest_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
zip_longest_doc, /* tp_doc */
(traverseproc)zip_longest_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)zip_longest_next, /* tp_iternext */
zip_longest_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
zip_longest_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* module level code ********************************************************/
PyDoc_STRVAR(module_doc,
"Functional tools for creating and using iterators.\n\
\n\
Infinite iterators:\n\
count(start=0, step=1) --> start, start+step, start+2*step, ...\n\
cycle(p) --> p0, p1, ... plast, p0, p1, ...\n\
repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\
\n\
Iterators terminating on the shortest input sequence:\n\
accumulate(p[, func]) --> p0, p0+p1, p0+p1+p2\n\
chain(p, q, ...) --> p0, p1, ... plast, q0, q1, ... \n\
chain.from_iterable([p, q, ...]) --> p0, p1, ... plast, q0, q1, ... \n\
compress(data, selectors) --> (d[0] if s[0]), (d[1] if s[1]), ...\n\
dropwhile(pred, seq) --> seq[n], seq[n+1], starting when pred fails\n\
groupby(iterable[, keyfunc]) --> sub-iterators grouped by value of keyfunc(v)\n\
filterfalse(pred, seq) --> elements of seq where pred(elem) is False\n\
islice(seq, [start,] stop [, step]) --> elements from\n\
seq[start:stop:step]\n\
starmap(fun, seq) --> fun(*seq[0]), fun(*seq[1]), ...\n\
tee(it, n=2) --> (it1, it2 , ... itn) splits one iterator into n\n\
takewhile(pred, seq) --> seq[0], seq[1], until pred fails\n\
zip_longest(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\
\n\
Combinatoric generators:\n\
product(p, q, ... [repeat=1]) --> cartesian product\n\
permutations(p[, r])\n\
combinations(p, r)\n\
combinations_with_replacement(p, r)\n\
");
static PyMethodDef module_methods[] = {
{"tee", (PyCFunction)tee, METH_VARARGS, tee_doc},
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef itertoolsmodule = {
PyModuleDef_HEAD_INIT,
"itertools",
module_doc,
-1,
module_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_itertools(void)
{
int i;
PyObject *m;
char *name;
PyTypeObject *typelist[] = {
&accumulate_type,
&combinations_type,
&cwr_type,
&cycle_type,
&dropwhile_type,
&takewhile_type,
&islice_type,
&starmap_type,
&chain_type,
&compress_type,
&filterfalse_type,
&count_type,
&ziplongest_type,
&permutations_type,
&product_type,
&repeat_type,
&groupby_type,
&_grouper_type,
&tee_type,
&teedataobject_type,
NULL
};
Py_TYPE(&teedataobject_type) = &PyType_Type;
m = PyModule_Create(&itertoolsmodule);
if (m == NULL)
return NULL;
for (i=0 ; typelist[i] != NULL ; i++) {
if (PyType_Ready(typelist[i]) < 0)
return NULL;
name = strchr(typelist[i]->tp_name, '.');
assert (name != NULL);
Py_INCREF(typelist[i]);
PyModule_AddObject(m, name+1, (PyObject *)typelist[i]);
}
return m;
}
| 150,373 | 4,713 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_aliases.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const unsigned int _PyUnicode_NameAliases[468] = {
0x0000,
0x0000,
0x0001,
0x0001,
0x0002,
0x0002,
0x0003,
0x0003,
0x0004,
0x0004,
0x0005,
0x0005,
0x0006,
0x0006,
0x0007,
0x0007,
0x0008,
0x0008,
0x0009,
0x0009,
0x0009,
0x0009,
0x000A,
0x000A,
0x000A,
0x000A,
0x000A,
0x000A,
0x000B,
0x000B,
0x000B,
0x000C,
0x000C,
0x000D,
0x000D,
0x000E,
0x000E,
0x000E,
0x000F,
0x000F,
0x000F,
0x0010,
0x0010,
0x0011,
0x0011,
0x0012,
0x0012,
0x0013,
0x0013,
0x0014,
0x0014,
0x0015,
0x0015,
0x0016,
0x0016,
0x0017,
0x0017,
0x0018,
0x0018,
0x0019,
0x0019,
0x001A,
0x001A,
0x001B,
0x001B,
0x001C,
0x001C,
0x001C,
0x001D,
0x001D,
0x001D,
0x001E,
0x001E,
0x001E,
0x001F,
0x001F,
0x001F,
0x0020,
0x007F,
0x007F,
0x0080,
0x0080,
0x0081,
0x0081,
0x0082,
0x0082,
0x0083,
0x0083,
0x0084,
0x0084,
0x0085,
0x0085,
0x0086,
0x0086,
0x0087,
0x0087,
0x0088,
0x0088,
0x0088,
0x0089,
0x0089,
0x0089,
0x008A,
0x008A,
0x008A,
0x008B,
0x008B,
0x008B,
0x008C,
0x008C,
0x008C,
0x008D,
0x008D,
0x008D,
0x008E,
0x008E,
0x008E,
0x008F,
0x008F,
0x008F,
0x0090,
0x0090,
0x0091,
0x0091,
0x0091,
0x0092,
0x0092,
0x0092,
0x0093,
0x0093,
0x0094,
0x0094,
0x0095,
0x0095,
0x0096,
0x0096,
0x0096,
0x0097,
0x0097,
0x0097,
0x0098,
0x0098,
0x0099,
0x0099,
0x009A,
0x009A,
0x009B,
0x009B,
0x009C,
0x009C,
0x009D,
0x009D,
0x009E,
0x009E,
0x009F,
0x009F,
0x00A0,
0x00AD,
0x01A2,
0x01A3,
0x034F,
0x061C,
0x0709,
0x0CDE,
0x0E9D,
0x0E9F,
0x0EA3,
0x0EA5,
0x0FD0,
0x11EC,
0x11ED,
0x11EE,
0x11EF,
0x180B,
0x180C,
0x180D,
0x180E,
0x200B,
0x200C,
0x200D,
0x200E,
0x200F,
0x202A,
0x202B,
0x202C,
0x202D,
0x202E,
0x202F,
0x205F,
0x2060,
0x2066,
0x2067,
0x2068,
0x2069,
0x2118,
0x2448,
0x2449,
0x2B7A,
0x2B7C,
0xA015,
0xFE00,
0xFE01,
0xFE02,
0xFE03,
0xFE04,
0xFE05,
0xFE06,
0xFE07,
0xFE08,
0xFE09,
0xFE0A,
0xFE0B,
0xFE0C,
0xFE0D,
0xFE0E,
0xFE0F,
0xFE18,
0xFEFF,
0xFEFF,
0xFEFF,
0x122D4,
0x122D5,
0x16E56,
0x16E57,
0x16E76,
0x16E77,
0x1B001,
0x1D0C5,
0xE0100,
0xE0101,
0xE0102,
0xE0103,
0xE0104,
0xE0105,
0xE0106,
0xE0107,
0xE0108,
0xE0109,
0xE010A,
0xE010B,
0xE010C,
0xE010D,
0xE010E,
0xE010F,
0xE0110,
0xE0111,
0xE0112,
0xE0113,
0xE0114,
0xE0115,
0xE0116,
0xE0117,
0xE0118,
0xE0119,
0xE011A,
0xE011B,
0xE011C,
0xE011D,
0xE011E,
0xE011F,
0xE0120,
0xE0121,
0xE0122,
0xE0123,
0xE0124,
0xE0125,
0xE0126,
0xE0127,
0xE0128,
0xE0129,
0xE012A,
0xE012B,
0xE012C,
0xE012D,
0xE012E,
0xE012F,
0xE0130,
0xE0131,
0xE0132,
0xE0133,
0xE0134,
0xE0135,
0xE0136,
0xE0137,
0xE0138,
0xE0139,
0xE013A,
0xE013B,
0xE013C,
0xE013D,
0xE013E,
0xE013F,
0xE0140,
0xE0141,
0xE0142,
0xE0143,
0xE0144,
0xE0145,
0xE0146,
0xE0147,
0xE0148,
0xE0149,
0xE014A,
0xE014B,
0xE014C,
0xE014D,
0xE014E,
0xE014F,
0xE0150,
0xE0151,
0xE0152,
0xE0153,
0xE0154,
0xE0155,
0xE0156,
0xE0157,
0xE0158,
0xE0159,
0xE015A,
0xE015B,
0xE015C,
0xE015D,
0xE015E,
0xE015F,
0xE0160,
0xE0161,
0xE0162,
0xE0163,
0xE0164,
0xE0165,
0xE0166,
0xE0167,
0xE0168,
0xE0169,
0xE016A,
0xE016B,
0xE016C,
0xE016D,
0xE016E,
0xE016F,
0xE0170,
0xE0171,
0xE0172,
0xE0173,
0xE0174,
0xE0175,
0xE0176,
0xE0177,
0xE0178,
0xE0179,
0xE017A,
0xE017B,
0xE017C,
0xE017D,
0xE017E,
0xE017F,
0xE0180,
0xE0181,
0xE0182,
0xE0183,
0xE0184,
0xE0185,
0xE0186,
0xE0187,
0xE0188,
0xE0189,
0xE018A,
0xE018B,
0xE018C,
0xE018D,
0xE018E,
0xE018F,
0xE0190,
0xE0191,
0xE0192,
0xE0193,
0xE0194,
0xE0195,
0xE0196,
0xE0197,
0xE0198,
0xE0199,
0xE019A,
0xE019B,
0xE019C,
0xE019D,
0xE019E,
0xE019F,
0xE01A0,
0xE01A1,
0xE01A2,
0xE01A3,
0xE01A4,
0xE01A5,
0xE01A6,
0xE01A7,
0xE01A8,
0xE01A9,
0xE01AA,
0xE01AB,
0xE01AC,
0xE01AD,
0xE01AE,
0xE01AF,
0xE01B0,
0xE01B1,
0xE01B2,
0xE01B3,
0xE01B4,
0xE01B5,
0xE01B6,
0xE01B7,
0xE01B8,
0xE01B9,
0xE01BA,
0xE01BB,
0xE01BC,
0xE01BD,
0xE01BE,
0xE01BF,
0xE01C0,
0xE01C1,
0xE01C2,
0xE01C3,
0xE01C4,
0xE01C5,
0xE01C6,
0xE01C7,
0xE01C8,
0xE01C9,
0xE01CA,
0xE01CB,
0xE01CC,
0xE01CD,
0xE01CE,
0xE01CF,
0xE01D0,
0xE01D1,
0xE01D2,
0xE01D3,
0xE01D4,
0xE01D5,
0xE01D6,
0xE01D7,
0xE01D8,
0xE01D9,
0xE01DA,
0xE01DB,
0xE01DC,
0xE01DD,
0xE01DE,
0xE01DF,
0xE01E0,
0xE01E1,
0xE01E2,
0xE01E3,
0xE01E4,
0xE01E5,
0xE01E6,
0xE01E7,
0xE01E8,
0xE01E9,
0xE01EA,
0xE01EB,
0xE01EC,
0xE01ED,
0xE01EE,
0xE01EF,
};
| 6,108 | 476 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_operator.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_operator");
PYTHON_PROVIDE("_operator.__doc__");
PYTHON_PROVIDE("_operator.__loader__");
PYTHON_PROVIDE("_operator.__name__");
PYTHON_PROVIDE("_operator.__package__");
PYTHON_PROVIDE("_operator.__spec__");
PYTHON_PROVIDE("_operator._compare_digest");
PYTHON_PROVIDE("_operator.abs");
PYTHON_PROVIDE("_operator.add");
PYTHON_PROVIDE("_operator.and_");
PYTHON_PROVIDE("_operator.attrgetter");
PYTHON_PROVIDE("_operator.concat");
PYTHON_PROVIDE("_operator.contains");
PYTHON_PROVIDE("_operator.countOf");
PYTHON_PROVIDE("_operator.delitem");
PYTHON_PROVIDE("_operator.eq");
PYTHON_PROVIDE("_operator.floordiv");
PYTHON_PROVIDE("_operator.ge");
PYTHON_PROVIDE("_operator.getitem");
PYTHON_PROVIDE("_operator.gt");
PYTHON_PROVIDE("_operator.iadd");
PYTHON_PROVIDE("_operator.iand");
PYTHON_PROVIDE("_operator.iconcat");
PYTHON_PROVIDE("_operator.ifloordiv");
PYTHON_PROVIDE("_operator.ilshift");
PYTHON_PROVIDE("_operator.imatmul");
PYTHON_PROVIDE("_operator.imod");
PYTHON_PROVIDE("_operator.imul");
PYTHON_PROVIDE("_operator.index");
PYTHON_PROVIDE("_operator.indexOf");
PYTHON_PROVIDE("_operator.inv");
PYTHON_PROVIDE("_operator.invert");
PYTHON_PROVIDE("_operator.ior");
PYTHON_PROVIDE("_operator.ipow");
PYTHON_PROVIDE("_operator.irshift");
PYTHON_PROVIDE("_operator.is_");
PYTHON_PROVIDE("_operator.is_not");
PYTHON_PROVIDE("_operator.isub");
PYTHON_PROVIDE("_operator.itemgetter");
PYTHON_PROVIDE("_operator.itruediv");
PYTHON_PROVIDE("_operator.ixor");
PYTHON_PROVIDE("_operator.le");
PYTHON_PROVIDE("_operator.length_hint");
PYTHON_PROVIDE("_operator.lshift");
PYTHON_PROVIDE("_operator.lt");
PYTHON_PROVIDE("_operator.matmul");
PYTHON_PROVIDE("_operator.methodcaller");
PYTHON_PROVIDE("_operator.mod");
PYTHON_PROVIDE("_operator.mul");
PYTHON_PROVIDE("_operator.ne");
PYTHON_PROVIDE("_operator.neg");
PYTHON_PROVIDE("_operator.not_");
PYTHON_PROVIDE("_operator.or_");
PYTHON_PROVIDE("_operator.pos");
PYTHON_PROVIDE("_operator.pow");
PYTHON_PROVIDE("_operator.rshift");
PYTHON_PROVIDE("_operator.setitem");
PYTHON_PROVIDE("_operator.sub");
PYTHON_PROVIDE("_operator.truediv");
PYTHON_PROVIDE("_operator.truth");
PYTHON_PROVIDE("_operator.xor");
PyDoc_STRVAR(operator_doc,
"Operator interface.\n\
\n\
This module exports a set of functions implemented in C corresponding\n\
to the intrinsic operators of Python. For example, operator.add(x, y)\n\
is equivalent to the expression x+y. The function names are those\n\
used for special methods; variants without leading and trailing\n\
'__' are also provided for convenience.");
#define spam1(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
return AOP(a1); }
#define spam2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
return AOP(a1,a2); }
#define spamoi(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1; int a2; \
if(! PyArg_ParseTuple(a,"Oi:" #OP,&a1,&a2)) return NULL; \
return AOP(a1,a2); }
#define spam2n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
if(-1 == AOP(a1,a2)) return NULL; \
Py_INCREF(Py_None); \
return Py_None; }
#define spam3n(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2, *a3; \
if(! PyArg_UnpackTuple(a,#OP,3,3,&a1,&a2,&a3)) return NULL; \
if(-1 == AOP(a1,a2,a3)) return NULL; \
Py_INCREF(Py_None); \
return Py_None; }
#define spami(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a1) { \
long r; \
if(-1 == (r=AOP(a1))) return NULL; \
return PyBool_FromLong(r); }
#define spami2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; long r; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
if(-1 == (r=AOP(a1,a2))) return NULL; \
return PyLong_FromLong(r); }
#define spamn2(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; Py_ssize_t r; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
if(-1 == (r=AOP(a1,a2))) return NULL; \
return PyLong_FromSsize_t(r); }
#define spami2b(OP,AOP) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; long r; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
if(-1 == (r=AOP(a1,a2))) return NULL; \
return PyBool_FromLong(r); }
#define spamrc(OP,A) static PyObject *OP(PyObject *s, PyObject *a) { \
PyObject *a1, *a2; \
if(! PyArg_UnpackTuple(a,#OP,2,2,&a1,&a2)) return NULL; \
return PyObject_RichCompare(a1,a2,A); }
spami(truth , PyObject_IsTrue)
spam2(op_add , PyNumber_Add)
spam2(op_sub , PyNumber_Subtract)
spam2(op_mul , PyNumber_Multiply)
spam2(op_matmul , PyNumber_MatrixMultiply)
spam2(op_floordiv , PyNumber_FloorDivide)
spam2(op_truediv , PyNumber_TrueDivide)
spam2(op_mod , PyNumber_Remainder)
spam1(op_neg , PyNumber_Negative)
spam1(op_pos , PyNumber_Positive)
spam1(op_abs , PyNumber_Absolute)
spam1(op_inv , PyNumber_Invert)
spam1(op_invert , PyNumber_Invert)
spam2(op_lshift , PyNumber_Lshift)
spam2(op_rshift , PyNumber_Rshift)
spami(op_not_ , PyObject_Not)
spam2(op_and_ , PyNumber_And)
spam2(op_xor , PyNumber_Xor)
spam2(op_or_ , PyNumber_Or)
spam2(op_iadd , PyNumber_InPlaceAdd)
spam2(op_isub , PyNumber_InPlaceSubtract)
spam2(op_imul , PyNumber_InPlaceMultiply)
spam2(op_imatmul , PyNumber_InPlaceMatrixMultiply)
spam2(op_ifloordiv , PyNumber_InPlaceFloorDivide)
spam2(op_itruediv , PyNumber_InPlaceTrueDivide)
spam2(op_imod , PyNumber_InPlaceRemainder)
spam2(op_ilshift , PyNumber_InPlaceLshift)
spam2(op_irshift , PyNumber_InPlaceRshift)
spam2(op_iand , PyNumber_InPlaceAnd)
spam2(op_ixor , PyNumber_InPlaceXor)
spam2(op_ior , PyNumber_InPlaceOr)
spam2(op_concat , PySequence_Concat)
spam2(op_iconcat , PySequence_InPlaceConcat)
spami2b(op_contains , PySequence_Contains)
spamn2(indexOf , PySequence_Index)
spamn2(countOf , PySequence_Count)
spam2(op_getitem , PyObject_GetItem)
spam2n(op_delitem , PyObject_DelItem)
spam3n(op_setitem , PyObject_SetItem)
spamrc(op_lt , Py_LT)
spamrc(op_le , Py_LE)
spamrc(op_eq , Py_EQ)
spamrc(op_ne , Py_NE)
spamrc(op_gt , Py_GT)
spamrc(op_ge , Py_GE)
static PyObject*
op_pow(PyObject *s, PyObject *a)
{
PyObject *a1, *a2;
if (PyArg_UnpackTuple(a,"pow", 2, 2, &a1, &a2))
return PyNumber_Power(a1, a2, Py_None);
return NULL;
}
static PyObject*
op_ipow(PyObject *s, PyObject *a)
{
PyObject *a1, *a2;
if (PyArg_UnpackTuple(a,"ipow", 2, 2, &a1, &a2))
return PyNumber_InPlacePower(a1, a2, Py_None);
return NULL;
}
static PyObject *
op_index(PyObject *s, PyObject *a)
{
return PyNumber_Index(a);
}
static PyObject*
is_(PyObject *s, PyObject *a)
{
PyObject *a1, *a2, *result = NULL;
if (PyArg_UnpackTuple(a,"is_", 2, 2, &a1, &a2)) {
result = (a1 == a2) ? Py_True : Py_False;
Py_INCREF(result);
}
return result;
}
static PyObject*
is_not(PyObject *s, PyObject *a)
{
PyObject *a1, *a2, *result = NULL;
if (PyArg_UnpackTuple(a,"is_not", 2, 2, &a1, &a2)) {
result = (a1 != a2) ? Py_True : Py_False;
Py_INCREF(result);
}
return result;
}
#undef spam1
#undef spam2
#undef spam1o
#undef spam1o
/* compare_digest **********************************************************/
/*
* timing safe compare
*
* Returns 1 of the strings are equal.
* In case of len(a) != len(b) the function tries to keep the timing
* dependent on the length of b. CPU cache locally may still alter timing
* a bit.
*/
static int
_tscmp(const unsigned char *a, const unsigned char *b,
Py_ssize_t len_a, Py_ssize_t len_b)
{
/* The volatile type declarations make sure that the compiler has no
* chance to optimize and fold the code in any way that may change
* the timing.
*/
volatile Py_ssize_t length;
volatile const unsigned char *left;
volatile const unsigned char *right;
Py_ssize_t i;
volatile unsigned char result;
/* loop count depends on length of b */
length = len_b;
left = NULL;
right = b;
/* don't use else here to keep the amount of CPU instructions constant,
* volatile forces re-evaluation
* */
if (len_a == length) {
left = *((volatile const unsigned char**)&a);
result = 0;
}
if (len_a != length) {
left = b;
result = 1;
}
for (i=0; i < length; i++) {
result |= *left++ ^ *right++;
}
return (result == 0);
}
PyDoc_STRVAR(length_hint__doc__,
"length_hint(obj, default=0) -> int\n"
"Return an estimate of the number of items in obj.\n"
"This is useful for presizing containers when building from an\n"
"iterable.\n"
"\n"
"If the object supports len(), the result will be\n"
"exact. Otherwise, it may over- or under-estimate by an\n"
"arbitrary amount. The result will be an integer >= 0.");
static PyObject *length_hint(PyObject *self, PyObject *args)
{
PyObject *obj;
Py_ssize_t defaultvalue = 0, res;
if (!PyArg_ParseTuple(args, "O|n:length_hint", &obj, &defaultvalue)) {
return NULL;
}
res = PyObject_LengthHint(obj, defaultvalue);
if (res == -1 && PyErr_Occurred()) {
return NULL;
}
return PyLong_FromSsize_t(res);
}
PyDoc_STRVAR(compare_digest__doc__,
"compare_digest(a, b) -> bool\n"
"\n"
"Return 'a == b'. This function uses an approach designed to prevent\n"
"timing analysis, making it appropriate for cryptography.\n"
"a and b must both be of the same type: either str (ASCII only),\n"
"or any bytes-like object.\n"
"\n"
"Note: If a and b are of different lengths, or if an error occurs,\n"
"a timing attack could theoretically reveal information about the\n"
"types and lengths of a and b--but not their values.\n");
static PyObject*
compare_digest(PyObject *self, PyObject *args)
{
PyObject *a, *b;
int rc;
if (!PyArg_ParseTuple(args, "OO:compare_digest", &a, &b)) {
return NULL;
}
/* ASCII unicode string */
if(PyUnicode_Check(a) && PyUnicode_Check(b)) {
if (PyUnicode_READY(a) == -1 || PyUnicode_READY(b) == -1) {
return NULL;
}
if (!PyUnicode_IS_ASCII(a) || !PyUnicode_IS_ASCII(b)) {
PyErr_SetString(PyExc_TypeError,
"comparing strings with non-ASCII characters is "
"not supported");
return NULL;
}
rc = _tscmp(PyUnicode_DATA(a),
PyUnicode_DATA(b),
PyUnicode_GET_LENGTH(a),
PyUnicode_GET_LENGTH(b));
}
/* fallback to buffer interface for bytes, bytesarray and other */
else {
Py_buffer view_a;
Py_buffer view_b;
if (PyObject_CheckBuffer(a) == 0 && PyObject_CheckBuffer(b) == 0) {
PyErr_Format(PyExc_TypeError,
"unsupported operand types(s) or combination of types: "
"'%.100s' and '%.100s'",
Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name);
return NULL;
}
if (PyObject_GetBuffer(a, &view_a, PyBUF_SIMPLE) == -1) {
return NULL;
}
if (view_a.ndim > 1) {
PyErr_SetString(PyExc_BufferError,
"Buffer must be single dimension");
PyBuffer_Release(&view_a);
return NULL;
}
if (PyObject_GetBuffer(b, &view_b, PyBUF_SIMPLE) == -1) {
PyBuffer_Release(&view_a);
return NULL;
}
if (view_b.ndim > 1) {
PyErr_SetString(PyExc_BufferError,
"Buffer must be single dimension");
PyBuffer_Release(&view_a);
PyBuffer_Release(&view_b);
return NULL;
}
rc = _tscmp((const unsigned char*)view_a.buf,
(const unsigned char*)view_b.buf,
view_a.len,
view_b.len);
PyBuffer_Release(&view_a);
PyBuffer_Release(&view_b);
}
return PyBool_FromLong(rc);
}
/* operator methods **********************************************************/
#define spam1(OP,DOC) {#OP, OP, METH_VARARGS, PyDoc_STR(DOC)},
#define spam2(OP,DOC) {#OP, op_##OP, METH_VARARGS, PyDoc_STR(DOC)},
#define spam1o(OP,DOC) {#OP, OP, METH_O, PyDoc_STR(DOC)},
#define spam2o(OP,DOC) {#OP, op_##OP, METH_O, PyDoc_STR(DOC)},
static struct PyMethodDef operator_methods[] = {
spam1o(truth,
"truth(a) -- Return True if a is true, False otherwise.")
spam2(contains,
"contains(a, b) -- Same as b in a (note reversed operands).")
spam1(indexOf,
"indexOf(a, b) -- Return the first index of b in a.")
spam1(countOf,
"countOf(a, b) -- Return the number of times b occurs in a.")
spam1(is_, "is_(a, b) -- Same as a is b.")
spam1(is_not, "is_not(a, b) -- Same as a is not b.")
spam2o(index, "index(a) -- Same as a.__index__()")
spam2(add, "add(a, b) -- Same as a + b.")
spam2(sub, "sub(a, b) -- Same as a - b.")
spam2(mul, "mul(a, b) -- Same as a * b.")
spam2(matmul, "matmul(a, b) -- Same as a @ b.")
spam2(floordiv, "floordiv(a, b) -- Same as a // b.")
spam2(truediv, "truediv(a, b) -- Same as a / b.")
spam2(mod, "mod(a, b) -- Same as a % b.")
spam2o(neg, "neg(a) -- Same as -a.")
spam2o(pos, "pos(a) -- Same as +a.")
spam2o(abs, "abs(a) -- Same as abs(a).")
spam2o(inv, "inv(a) -- Same as ~a.")
spam2o(invert, "invert(a) -- Same as ~a.")
spam2(lshift, "lshift(a, b) -- Same as a << b.")
spam2(rshift, "rshift(a, b) -- Same as a >> b.")
spam2o(not_, "not_(a) -- Same as not a.")
spam2(and_, "and_(a, b) -- Same as a & b.")
spam2(xor, "xor(a, b) -- Same as a ^ b.")
spam2(or_, "or_(a, b) -- Same as a | b.")
spam2(iadd, "a = iadd(a, b) -- Same as a += b.")
spam2(isub, "a = isub(a, b) -- Same as a -= b.")
spam2(imul, "a = imul(a, b) -- Same as a *= b.")
spam2(imatmul, "a = imatmul(a, b) -- Same as a @= b.")
spam2(ifloordiv, "a = ifloordiv(a, b) -- Same as a //= b.")
spam2(itruediv, "a = itruediv(a, b) -- Same as a /= b")
spam2(imod, "a = imod(a, b) -- Same as a %= b.")
spam2(ilshift, "a = ilshift(a, b) -- Same as a <<= b.")
spam2(irshift, "a = irshift(a, b) -- Same as a >>= b.")
spam2(iand, "a = iand(a, b) -- Same as a &= b.")
spam2(ixor, "a = ixor(a, b) -- Same as a ^= b.")
spam2(ior, "a = ior(a, b) -- Same as a |= b.")
spam2(concat,
"concat(a, b) -- Same as a + b, for a and b sequences.")
spam2(iconcat,
"a = iconcat(a, b) -- Same as a += b, for a and b sequences.")
spam2(getitem,
"getitem(a, b) -- Same as a[b].")
spam2(setitem,
"setitem(a, b, c) -- Same as a[b] = c.")
spam2(delitem,
"delitem(a, b) -- Same as del a[b].")
spam2(pow, "pow(a, b) -- Same as a ** b.")
spam2(ipow, "a = ipow(a, b) -- Same as a **= b.")
spam2(lt, "lt(a, b) -- Same as a<b.")
spam2(le, "le(a, b) -- Same as a<=b.")
spam2(eq, "eq(a, b) -- Same as a==b.")
spam2(ne, "ne(a, b) -- Same as a!=b.")
spam2(gt, "gt(a, b) -- Same as a>b.")
spam2(ge, "ge(a, b) -- Same as a>=b.")
{"_compare_digest", (PyCFunction)compare_digest, METH_VARARGS,
compare_digest__doc__},
{"length_hint", (PyCFunction)length_hint, METH_VARARGS,
length_hint__doc__},
{NULL, NULL} /* sentinel */
};
/* itemgetter object **********************************************************/
typedef struct {
PyObject_HEAD
Py_ssize_t nitems;
PyObject *item;
} itemgetterobject;
static PyTypeObject itemgetter_type;
static PyObject *
itemgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
itemgetterobject *ig;
PyObject *item;
Py_ssize_t nitems;
if (!_PyArg_NoKeywords("itemgetter()", kwds))
return NULL;
nitems = PyTuple_GET_SIZE(args);
if (nitems <= 1) {
if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &item))
return NULL;
} else
item = args;
/* create itemgetterobject structure */
ig = PyObject_GC_New(itemgetterobject, &itemgetter_type);
if (ig == NULL)
return NULL;
Py_INCREF(item);
ig->item = item;
ig->nitems = nitems;
PyObject_GC_Track(ig);
return (PyObject *)ig;
}
static void
itemgetter_dealloc(itemgetterobject *ig)
{
PyObject_GC_UnTrack(ig);
Py_XDECREF(ig->item);
PyObject_GC_Del(ig);
}
static int
itemgetter_traverse(itemgetterobject *ig, visitproc visit, void *arg)
{
Py_VISIT(ig->item);
return 0;
}
static PyObject *
itemgetter_call(itemgetterobject *ig, PyObject *args, PyObject *kw)
{
PyObject *obj, *result;
Py_ssize_t i, nitems=ig->nitems;
if (kw != NULL && !_PyArg_NoKeywords("itemgetter", kw))
return NULL;
if (!PyArg_UnpackTuple(args, "itemgetter", 1, 1, &obj))
return NULL;
if (nitems == 1)
return PyObject_GetItem(obj, ig->item);
assert(PyTuple_Check(ig->item));
assert(PyTuple_GET_SIZE(ig->item) == nitems);
result = PyTuple_New(nitems);
if (result == NULL)
return NULL;
for (i=0 ; i < nitems ; i++) {
PyObject *item, *val;
item = PyTuple_GET_ITEM(ig->item, i);
val = PyObject_GetItem(obj, item);
if (val == NULL) {
Py_DECREF(result);
return NULL;
}
PyTuple_SET_ITEM(result, i, val);
}
return result;
}
static PyObject *
itemgetter_repr(itemgetterobject *ig)
{
PyObject *repr;
const char *reprfmt;
int status = Py_ReprEnter((PyObject *)ig);
if (status != 0) {
if (status < 0)
return NULL;
return PyUnicode_FromFormat("%s(...)", Py_TYPE(ig)->tp_name);
}
reprfmt = ig->nitems == 1 ? "%s(%R)" : "%s%R";
repr = PyUnicode_FromFormat(reprfmt, Py_TYPE(ig)->tp_name, ig->item);
Py_ReprLeave((PyObject *)ig);
return repr;
}
static PyObject *
itemgetter_reduce(itemgetterobject *ig)
{
if (ig->nitems == 1)
return Py_BuildValue("O(O)", Py_TYPE(ig), ig->item);
return PyTuple_Pack(2, Py_TYPE(ig), ig->item);
}
PyDoc_STRVAR(reduce_doc, "Return state information for pickling");
static PyMethodDef itemgetter_methods[] = {
{"__reduce__", (PyCFunction)itemgetter_reduce, METH_NOARGS,
reduce_doc},
{NULL}
};
PyDoc_STRVAR(itemgetter_doc,
"itemgetter(item, ...) --> itemgetter object\n\
\n\
Return a callable object that fetches the given item(s) from its operand.\n\
After f = itemgetter(2), the call f(r) returns r[2].\n\
After g = itemgetter(2, 5, 3), the call g(r) returns (r[2], r[5], r[3])");
static PyTypeObject itemgetter_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"operator.itemgetter", /* tp_name */
sizeof(itemgetterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)itemgetter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)itemgetter_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)itemgetter_call, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
itemgetter_doc, /* tp_doc */
(traverseproc)itemgetter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
itemgetter_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
itemgetter_new, /* tp_new */
0, /* tp_free */
};
/* attrgetter object **********************************************************/
typedef struct {
PyObject_HEAD
Py_ssize_t nattrs;
PyObject *attr;
} attrgetterobject;
static PyTypeObject attrgetter_type;
static PyObject *
attrgetter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
attrgetterobject *ag;
PyObject *attr;
Py_ssize_t nattrs, idx, char_idx;
if (!_PyArg_NoKeywords("attrgetter()", kwds))
return NULL;
nattrs = PyTuple_GET_SIZE(args);
if (nattrs <= 1) {
if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &attr))
return NULL;
}
attr = PyTuple_New(nattrs);
if (attr == NULL)
return NULL;
/* prepare attr while checking args */
for (idx = 0; idx < nattrs; ++idx) {
PyObject *item = PyTuple_GET_ITEM(args, idx);
Py_ssize_t item_len;
void *data;
unsigned int kind;
int dot_count;
if (!PyUnicode_Check(item)) {
PyErr_SetString(PyExc_TypeError,
"attribute name must be a string");
Py_DECREF(attr);
return NULL;
}
if (PyUnicode_READY(item)) {
Py_DECREF(attr);
return NULL;
}
item_len = PyUnicode_GET_LENGTH(item);
kind = PyUnicode_KIND(item);
data = PyUnicode_DATA(item);
/* check whethere the string is dotted */
dot_count = 0;
for (char_idx = 0; char_idx < item_len; ++char_idx) {
if (PyUnicode_READ(kind, data, char_idx) == '.')
++dot_count;
}
if (dot_count == 0) {
Py_INCREF(item);
PyUnicode_InternInPlace(&item);
PyTuple_SET_ITEM(attr, idx, item);
} else { /* make it a tuple of non-dotted attrnames */
PyObject *attr_chain = PyTuple_New(dot_count + 1);
PyObject *attr_chain_item;
Py_ssize_t unibuff_from = 0;
Py_ssize_t unibuff_till = 0;
Py_ssize_t attr_chain_idx = 0;
if (attr_chain == NULL) {
Py_DECREF(attr);
return NULL;
}
for (; dot_count > 0; --dot_count) {
while (PyUnicode_READ(kind, data, unibuff_till) != '.') {
++unibuff_till;
}
attr_chain_item = PyUnicode_Substring(item,
unibuff_from,
unibuff_till);
if (attr_chain_item == NULL) {
Py_DECREF(attr_chain);
Py_DECREF(attr);
return NULL;
}
PyUnicode_InternInPlace(&attr_chain_item);
PyTuple_SET_ITEM(attr_chain, attr_chain_idx, attr_chain_item);
++attr_chain_idx;
unibuff_till = unibuff_from = unibuff_till + 1;
}
/* now add the last dotless name */
attr_chain_item = PyUnicode_Substring(item,
unibuff_from, item_len);
if (attr_chain_item == NULL) {
Py_DECREF(attr_chain);
Py_DECREF(attr);
return NULL;
}
PyUnicode_InternInPlace(&attr_chain_item);
PyTuple_SET_ITEM(attr_chain, attr_chain_idx, attr_chain_item);
PyTuple_SET_ITEM(attr, idx, attr_chain);
}
}
/* create attrgetterobject structure */
ag = PyObject_GC_New(attrgetterobject, &attrgetter_type);
if (ag == NULL) {
Py_DECREF(attr);
return NULL;
}
ag->attr = attr;
ag->nattrs = nattrs;
PyObject_GC_Track(ag);
return (PyObject *)ag;
}
static void
attrgetter_dealloc(attrgetterobject *ag)
{
PyObject_GC_UnTrack(ag);
Py_XDECREF(ag->attr);
PyObject_GC_Del(ag);
}
static int
attrgetter_traverse(attrgetterobject *ag, visitproc visit, void *arg)
{
Py_VISIT(ag->attr);
return 0;
}
static PyObject *
dotted_getattr(PyObject *obj, PyObject *attr)
{
PyObject *newobj;
/* attr is either a tuple or instance of str.
Ensured by the setup code of attrgetter_new */
if (PyTuple_CheckExact(attr)) { /* chained getattr */
Py_ssize_t name_idx = 0, name_count;
PyObject *attr_name;
name_count = PyTuple_GET_SIZE(attr);
Py_INCREF(obj);
for (name_idx = 0; name_idx < name_count; ++name_idx) {
attr_name = PyTuple_GET_ITEM(attr, name_idx);
newobj = PyObject_GetAttr(obj, attr_name);
Py_DECREF(obj);
if (newobj == NULL) {
return NULL;
}
/* here */
obj = newobj;
}
} else { /* single getattr */
newobj = PyObject_GetAttr(obj, attr);
if (newobj == NULL)
return NULL;
obj = newobj;
}
return obj;
}
static PyObject *
attrgetter_call(attrgetterobject *ag, PyObject *args, PyObject *kw)
{
PyObject *obj, *result;
Py_ssize_t i, nattrs=ag->nattrs;
if (kw != NULL && !_PyArg_NoKeywords("attrgetter", kw))
return NULL;
if (!PyArg_UnpackTuple(args, "attrgetter", 1, 1, &obj))
return NULL;
if (ag->nattrs == 1) /* ag->attr is always a tuple */
return dotted_getattr(obj, PyTuple_GET_ITEM(ag->attr, 0));
assert(PyTuple_Check(ag->attr));
assert(PyTuple_GET_SIZE(ag->attr) == nattrs);
result = PyTuple_New(nattrs);
if (result == NULL)
return NULL;
for (i=0 ; i < nattrs ; i++) {
PyObject *attr, *val;
attr = PyTuple_GET_ITEM(ag->attr, i);
val = dotted_getattr(obj, attr);
if (val == NULL) {
Py_DECREF(result);
return NULL;
}
PyTuple_SET_ITEM(result, i, val);
}
return result;
}
static PyObject *
dotjoinattr(PyObject *attr, PyObject **attrsep)
{
if (PyTuple_CheckExact(attr)) {
if (*attrsep == NULL) {
*attrsep = PyUnicode_FromString(".");
if (*attrsep == NULL)
return NULL;
}
return PyUnicode_Join(*attrsep, attr);
} else {
Py_INCREF(attr);
return attr;
}
}
static PyObject *
attrgetter_args(attrgetterobject *ag)
{
Py_ssize_t i;
PyObject *attrsep = NULL;
PyObject *attrstrings = PyTuple_New(ag->nattrs);
if (attrstrings == NULL)
return NULL;
for (i = 0; i < ag->nattrs; ++i) {
PyObject *attr = PyTuple_GET_ITEM(ag->attr, i);
PyObject *attrstr = dotjoinattr(attr, &attrsep);
if (attrstr == NULL) {
Py_XDECREF(attrsep);
Py_DECREF(attrstrings);
return NULL;
}
PyTuple_SET_ITEM(attrstrings, i, attrstr);
}
Py_XDECREF(attrsep);
return attrstrings;
}
static PyObject *
attrgetter_repr(attrgetterobject *ag)
{
PyObject *repr = NULL;
int status = Py_ReprEnter((PyObject *)ag);
if (status != 0) {
if (status < 0)
return NULL;
return PyUnicode_FromFormat("%s(...)", Py_TYPE(ag)->tp_name);
}
if (ag->nattrs == 1) {
PyObject *attrsep = NULL;
PyObject *attr = dotjoinattr(PyTuple_GET_ITEM(ag->attr, 0), &attrsep);
if (attr != NULL) {
repr = PyUnicode_FromFormat("%s(%R)", Py_TYPE(ag)->tp_name, attr);
Py_DECREF(attr);
}
Py_XDECREF(attrsep);
}
else {
PyObject *attrstrings = attrgetter_args(ag);
if (attrstrings != NULL) {
repr = PyUnicode_FromFormat("%s%R",
Py_TYPE(ag)->tp_name, attrstrings);
Py_DECREF(attrstrings);
}
}
Py_ReprLeave((PyObject *)ag);
return repr;
}
static PyObject *
attrgetter_reduce(attrgetterobject *ag)
{
PyObject *attrstrings = attrgetter_args(ag);
if (attrstrings == NULL)
return NULL;
return Py_BuildValue("ON", Py_TYPE(ag), attrstrings);
}
static PyMethodDef attrgetter_methods[] = {
{"__reduce__", (PyCFunction)attrgetter_reduce, METH_NOARGS,
reduce_doc},
{NULL}
};
PyDoc_STRVAR(attrgetter_doc,
"attrgetter(attr, ...) --> attrgetter object\n\
\n\
Return a callable object that fetches the given attribute(s) from its operand.\n\
After f = attrgetter('name'), the call f(r) returns r.name.\n\
After g = attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).\n\
After h = attrgetter('name.first', 'name.last'), the call h(r) returns\n\
(r.name.first, r.name.last).");
static PyTypeObject attrgetter_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"operator.attrgetter", /* tp_name */
sizeof(attrgetterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)attrgetter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)attrgetter_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)attrgetter_call, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
attrgetter_doc, /* tp_doc */
(traverseproc)attrgetter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
attrgetter_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
attrgetter_new, /* tp_new */
0, /* tp_free */
};
/* methodcaller object **********************************************************/
typedef struct {
PyObject_HEAD
PyObject *name;
PyObject *args;
PyObject *kwds;
} methodcallerobject;
static PyTypeObject methodcaller_type;
static PyObject *
methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
methodcallerobject *mc;
PyObject *name;
if (PyTuple_GET_SIZE(args) < 1) {
PyErr_SetString(PyExc_TypeError, "methodcaller needs at least "
"one argument, the method name");
return NULL;
}
name = PyTuple_GET_ITEM(args, 0);
if (!PyUnicode_Check(name)) {
PyErr_SetString(PyExc_TypeError,
"method name must be a string");
return NULL;
}
/* create methodcallerobject structure */
mc = PyObject_GC_New(methodcallerobject, &methodcaller_type);
if (mc == NULL)
return NULL;
name = PyTuple_GET_ITEM(args, 0);
Py_INCREF(name);
PyUnicode_InternInPlace(&name);
mc->name = name;
Py_XINCREF(kwds);
mc->kwds = kwds;
mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
if (mc->args == NULL) {
Py_DECREF(mc);
return NULL;
}
PyObject_GC_Track(mc);
return (PyObject *)mc;
}
static void
methodcaller_dealloc(methodcallerobject *mc)
{
PyObject_GC_UnTrack(mc);
Py_XDECREF(mc->name);
Py_XDECREF(mc->args);
Py_XDECREF(mc->kwds);
PyObject_GC_Del(mc);
}
static int
methodcaller_traverse(methodcallerobject *mc, visitproc visit, void *arg)
{
Py_VISIT(mc->args);
Py_VISIT(mc->kwds);
return 0;
}
static PyObject *
methodcaller_call(methodcallerobject *mc, PyObject *args, PyObject *kw)
{
PyObject *method, *obj, *result;
if (kw != NULL && !_PyArg_NoKeywords("methodcaller", kw))
return NULL;
if (!PyArg_UnpackTuple(args, "methodcaller", 1, 1, &obj))
return NULL;
method = PyObject_GetAttr(obj, mc->name);
if (method == NULL)
return NULL;
result = PyObject_Call(method, mc->args, mc->kwds);
Py_DECREF(method);
return result;
}
static PyObject *
methodcaller_repr(methodcallerobject *mc)
{
PyObject *argreprs, *repr = NULL, *sep, *joinedargreprs;
Py_ssize_t numtotalargs, numposargs, numkwdargs, i;
int status = Py_ReprEnter((PyObject *)mc);
if (status != 0) {
if (status < 0)
return NULL;
return PyUnicode_FromFormat("%s(...)", Py_TYPE(mc)->tp_name);
}
if (mc->kwds != NULL) {
numkwdargs = PyDict_Size(mc->kwds);
if (numkwdargs < 0) {
Py_ReprLeave((PyObject *)mc);
return NULL;
}
} else {
numkwdargs = 0;
}
numposargs = PyTuple_GET_SIZE(mc->args);
numtotalargs = numposargs + numkwdargs;
if (numtotalargs == 0) {
repr = PyUnicode_FromFormat("%s(%R)", Py_TYPE(mc)->tp_name, mc->name);
Py_ReprLeave((PyObject *)mc);
return repr;
}
argreprs = PyTuple_New(numtotalargs);
if (argreprs == NULL) {
Py_ReprLeave((PyObject *)mc);
return NULL;
}
for (i = 0; i < numposargs; ++i) {
PyObject *onerepr = PyObject_Repr(PyTuple_GET_ITEM(mc->args, i));
if (onerepr == NULL)
goto done;
PyTuple_SET_ITEM(argreprs, i, onerepr);
}
if (numkwdargs != 0) {
PyObject *key, *value;
Py_ssize_t pos = 0;
while (PyDict_Next(mc->kwds, &pos, &key, &value)) {
PyObject *onerepr = PyUnicode_FromFormat("%U=%R", key, value);
if (onerepr == NULL)
goto done;
if (i >= numtotalargs) {
i = -1;
Py_DECREF(onerepr);
break;
}
PyTuple_SET_ITEM(argreprs, i, onerepr);
++i;
}
if (i != numtotalargs) {
PyErr_SetString(PyExc_RuntimeError,
"keywords dict changed size during iteration");
goto done;
}
}
sep = PyUnicode_FromString(", ");
if (sep == NULL)
goto done;
joinedargreprs = PyUnicode_Join(sep, argreprs);
Py_DECREF(sep);
if (joinedargreprs == NULL)
goto done;
repr = PyUnicode_FromFormat("%s(%R, %U)", Py_TYPE(mc)->tp_name,
mc->name, joinedargreprs);
Py_DECREF(joinedargreprs);
done:
Py_DECREF(argreprs);
Py_ReprLeave((PyObject *)mc);
return repr;
}
static PyObject *
methodcaller_reduce(methodcallerobject *mc)
{
PyObject *newargs;
if (!mc->kwds || PyDict_Size(mc->kwds) == 0) {
Py_ssize_t i;
Py_ssize_t callargcount = PyTuple_GET_SIZE(mc->args);
newargs = PyTuple_New(1 + callargcount);
if (newargs == NULL)
return NULL;
Py_INCREF(mc->name);
PyTuple_SET_ITEM(newargs, 0, mc->name);
for (i = 0; i < callargcount; ++i) {
PyObject *arg = PyTuple_GET_ITEM(mc->args, i);
Py_INCREF(arg);
PyTuple_SET_ITEM(newargs, i + 1, arg);
}
return Py_BuildValue("ON", Py_TYPE(mc), newargs);
}
else {
PyObject *functools;
PyObject *partial;
PyObject *constructor;
PyObject *newargs[2];
_Py_IDENTIFIER(partial);
functools = PyImport_ImportModule("functools");
if (!functools)
return NULL;
partial = _PyObject_GetAttrId(functools, &PyId_partial);
Py_DECREF(functools);
if (!partial)
return NULL;
newargs[0] = (PyObject *)Py_TYPE(mc);
newargs[1] = mc->name;
constructor = _PyObject_FastCallDict(partial, newargs, 2, mc->kwds);
Py_DECREF(partial);
return Py_BuildValue("NO", constructor, mc->args);
}
}
static PyMethodDef methodcaller_methods[] = {
{"__reduce__", (PyCFunction)methodcaller_reduce, METH_NOARGS,
reduce_doc},
{NULL}
};
PyDoc_STRVAR(methodcaller_doc,
"methodcaller(name, ...) --> methodcaller object\n\
\n\
Return a callable object that calls the given method on its operand.\n\
After f = methodcaller('name'), the call f(r) returns r.name().\n\
After g = methodcaller('name', 'date', foo=1), the call g(r) returns\n\
r.name('date', foo=1).");
static PyTypeObject methodcaller_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"operator.methodcaller", /* tp_name */
sizeof(methodcallerobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)methodcaller_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)methodcaller_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)methodcaller_call, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
methodcaller_doc, /* tp_doc */
(traverseproc)methodcaller_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
methodcaller_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
methodcaller_new, /* tp_new */
0, /* tp_free */
};
/* Initialization function for the module (*must* be called PyInit__operator) */
static struct PyModuleDef operatormodule = {
PyModuleDef_HEAD_INIT,
"_operator",
operator_doc,
-1,
operator_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__operator(void)
{
PyObject *m;
/* Create the module and add the functions */
m = PyModule_Create(&operatormodule);
if (m == NULL)
return NULL;
if (PyType_Ready(&itemgetter_type) < 0)
return NULL;
Py_INCREF(&itemgetter_type);
PyModule_AddObject(m, "itemgetter", (PyObject *)&itemgetter_type);
if (PyType_Ready(&attrgetter_type) < 0)
return NULL;
Py_INCREF(&attrgetter_type);
PyModule_AddObject(m, "attrgetter", (PyObject *)&attrgetter_type);
if (PyType_Ready(&methodcaller_type) < 0)
return NULL;
Py_INCREF(&methodcaller_type);
PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__operator = {
"_operator",
PyInit__operator,
};
| 42,883 | 1,312 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_testcapimodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#undef Py_BUILD_CORE
#include "libc/calls/calls.h"
#include "libc/calls/weirdtypes.h"
#include "libc/errno.h"
#include "libc/fmt/fmt.h"
#include "libc/limits.h"
#include "libc/math.h"
#include "libc/mem/mem.h"
#include "libc/sysv/consts/sig.h"
#include "libc/time/time.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytearrayobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/classobject.h"
#include "third_party/python/Include/code.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/complexobject.h"
#include "third_party/python/Include/datetime.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/genobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/marshal.h"
#include "third_party/python/Include/memoryobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pystrtod.h"
#include "third_party/python/Include/pythonrun.h"
#include "third_party/python/Include/pytime.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/traceback.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
PYTHON_PROVIDE("_testcapi");
PYTHON_PROVIDE("_testcapi.CHAR_MAX");
PYTHON_PROVIDE("_testcapi.CHAR_MIN");
PYTHON_PROVIDE("_testcapi.DBL_MAX");
PYTHON_PROVIDE("_testcapi.DBL_MIN");
PYTHON_PROVIDE("_testcapi.FLT_MAX");
PYTHON_PROVIDE("_testcapi.FLT_MIN");
PYTHON_PROVIDE("_testcapi.INT_MAX");
PYTHON_PROVIDE("_testcapi.INT_MIN");
PYTHON_PROVIDE("_testcapi.LLONG_MAX");
PYTHON_PROVIDE("_testcapi.LLONG_MIN");
PYTHON_PROVIDE("_testcapi.LONG_MAX");
PYTHON_PROVIDE("_testcapi.LONG_MIN");
PYTHON_PROVIDE("_testcapi.PY_SSIZE_T_MAX");
PYTHON_PROVIDE("_testcapi.PY_SSIZE_T_MIN");
PYTHON_PROVIDE("_testcapi.PyTime_AsMicroseconds");
PYTHON_PROVIDE("_testcapi.PyTime_AsMilliseconds");
PYTHON_PROVIDE("_testcapi.PyTime_AsSecondsDouble");
PYTHON_PROVIDE("_testcapi.PyTime_AsTimespec");
PYTHON_PROVIDE("_testcapi.PyTime_AsTimeval");
PYTHON_PROVIDE("_testcapi.PyTime_FromSeconds");
PYTHON_PROVIDE("_testcapi.PyTime_FromSecondsObject");
PYTHON_PROVIDE("_testcapi.RecursingInfinitelyError");
PYTHON_PROVIDE("_testcapi.SHRT_MAX");
PYTHON_PROVIDE("_testcapi.SHRT_MIN");
PYTHON_PROVIDE("_testcapi.SIZEOF_PYGC_HEAD");
PYTHON_PROVIDE("_testcapi.SIZEOF_TIME_T");
PYTHON_PROVIDE("_testcapi.UCHAR_MAX");
PYTHON_PROVIDE("_testcapi.UINT_MAX");
PYTHON_PROVIDE("_testcapi.ULLONG_MAX");
PYTHON_PROVIDE("_testcapi.ULONG_MAX");
PYTHON_PROVIDE("_testcapi.USHRT_MAX");
PYTHON_PROVIDE("_testcapi.W_STOPCODE");
PYTHON_PROVIDE("_testcapi._test_structmembersType");
PYTHON_PROVIDE("_testcapi.argparsing");
PYTHON_PROVIDE("_testcapi.awaitType");
PYTHON_PROVIDE("_testcapi.code_newempty");
PYTHON_PROVIDE("_testcapi.codec_incrementaldecoder");
PYTHON_PROVIDE("_testcapi.codec_incrementalencoder");
PYTHON_PROVIDE("_testcapi.crash_no_current_thread");
PYTHON_PROVIDE("_testcapi.create_cfunction");
PYTHON_PROVIDE("_testcapi.dict_get_version");
PYTHON_PROVIDE("_testcapi.dict_getitem_knownhash");
PYTHON_PROVIDE("_testcapi.dict_hassplittable");
PYTHON_PROVIDE("_testcapi.docstring_empty");
PYTHON_PROVIDE("_testcapi.docstring_no_signature");
PYTHON_PROVIDE("_testcapi.docstring_with_invalid_signature");
PYTHON_PROVIDE("_testcapi.docstring_with_invalid_signature2");
PYTHON_PROVIDE("_testcapi.docstring_with_signature");
PYTHON_PROVIDE("_testcapi.docstring_with_signature_and_extra_newlines");
PYTHON_PROVIDE("_testcapi.docstring_with_signature_but_no_doc");
PYTHON_PROVIDE("_testcapi.docstring_with_signature_with_defaults");
PYTHON_PROVIDE("_testcapi.error");
PYTHON_PROVIDE("_testcapi.exception_print");
PYTHON_PROVIDE("_testcapi.get_args");
PYTHON_PROVIDE("_testcapi.get_kwargs");
PYTHON_PROVIDE("_testcapi.get_recursion_depth");
PYTHON_PROVIDE("_testcapi.getargs_B");
PYTHON_PROVIDE("_testcapi.getargs_C");
PYTHON_PROVIDE("_testcapi.getargs_D");
PYTHON_PROVIDE("_testcapi.getargs_H");
PYTHON_PROVIDE("_testcapi.getargs_I");
PYTHON_PROVIDE("_testcapi.getargs_K");
PYTHON_PROVIDE("_testcapi.getargs_L");
PYTHON_PROVIDE("_testcapi.getargs_S");
PYTHON_PROVIDE("_testcapi.getargs_U");
PYTHON_PROVIDE("_testcapi.getargs_Y");
PYTHON_PROVIDE("_testcapi.getargs_Z");
PYTHON_PROVIDE("_testcapi.getargs_Z_hash");
PYTHON_PROVIDE("_testcapi.getargs_b");
PYTHON_PROVIDE("_testcapi.getargs_c");
PYTHON_PROVIDE("_testcapi.getargs_d");
PYTHON_PROVIDE("_testcapi.getargs_es");
PYTHON_PROVIDE("_testcapi.getargs_es_hash");
PYTHON_PROVIDE("_testcapi.getargs_et");
PYTHON_PROVIDE("_testcapi.getargs_et_hash");
PYTHON_PROVIDE("_testcapi.getargs_f");
PYTHON_PROVIDE("_testcapi.getargs_h");
PYTHON_PROVIDE("_testcapi.getargs_i");
PYTHON_PROVIDE("_testcapi.getargs_k");
PYTHON_PROVIDE("_testcapi.getargs_keyword_only");
PYTHON_PROVIDE("_testcapi.getargs_keywords");
PYTHON_PROVIDE("_testcapi.getargs_l");
PYTHON_PROVIDE("_testcapi.getargs_n");
PYTHON_PROVIDE("_testcapi.getargs_p");
PYTHON_PROVIDE("_testcapi.getargs_positional_only_and_keywords");
PYTHON_PROVIDE("_testcapi.getargs_s");
PYTHON_PROVIDE("_testcapi.getargs_s_hash");
PYTHON_PROVIDE("_testcapi.getargs_s_star");
PYTHON_PROVIDE("_testcapi.getargs_tuple");
PYTHON_PROVIDE("_testcapi.getargs_u");
PYTHON_PROVIDE("_testcapi.getargs_u_hash");
PYTHON_PROVIDE("_testcapi.getargs_w_star");
PYTHON_PROVIDE("_testcapi.getargs_y");
PYTHON_PROVIDE("_testcapi.getargs_y_hash");
PYTHON_PROVIDE("_testcapi.getargs_y_star");
PYTHON_PROVIDE("_testcapi.getargs_z");
PYTHON_PROVIDE("_testcapi.getargs_z_hash");
PYTHON_PROVIDE("_testcapi.getargs_z_star");
PYTHON_PROVIDE("_testcapi.getbuffer_with_null_view");
PYTHON_PROVIDE("_testcapi.instancemethod");
PYTHON_PROVIDE("_testcapi.make_exception_with_doc");
PYTHON_PROVIDE("_testcapi.make_memoryview_from_NULL_pointer");
PYTHON_PROVIDE("_testcapi.matmulType");
PYTHON_PROVIDE("_testcapi.no_docstring");
PYTHON_PROVIDE("_testcapi.parse_tuple_and_keywords");
PYTHON_PROVIDE("_testcapi.profile_int");
PYTHON_PROVIDE("_testcapi.pymarshal_read_last_object_from_file");
PYTHON_PROVIDE("_testcapi.pymarshal_read_long_from_file");
PYTHON_PROVIDE("_testcapi.pymarshal_read_object_from_file");
PYTHON_PROVIDE("_testcapi.pymarshal_read_short_from_file");
PYTHON_PROVIDE("_testcapi.pymarshal_write_long_to_file");
PYTHON_PROVIDE("_testcapi.pymarshal_write_object_to_file");
PYTHON_PROVIDE("_testcapi.pymem_api_misuse");
PYTHON_PROVIDE("_testcapi.pymem_buffer_overflow");
PYTHON_PROVIDE("_testcapi.pymem_malloc_without_gil");
PYTHON_PROVIDE("_testcapi.pyobject_fastcall");
PYTHON_PROVIDE("_testcapi.pyobject_fastcalldict");
PYTHON_PROVIDE("_testcapi.pyobject_fastcallkeywords");
PYTHON_PROVIDE("_testcapi.pyobject_malloc_without_gil");
PYTHON_PROVIDE("_testcapi.pytime_object_to_time_t");
PYTHON_PROVIDE("_testcapi.pytime_object_to_timespec");
PYTHON_PROVIDE("_testcapi.pytime_object_to_timeval");
PYTHON_PROVIDE("_testcapi.raise_SIGINT_then_send_None");
PYTHON_PROVIDE("_testcapi.raise_exception");
PYTHON_PROVIDE("_testcapi.raise_memoryerror");
PYTHON_PROVIDE("_testcapi.raise_signal");
PYTHON_PROVIDE("_testcapi.remove_mem_hooks");
PYTHON_PROVIDE("_testcapi.return_null_without_error");
PYTHON_PROVIDE("_testcapi.return_result_with_error");
PYTHON_PROVIDE("_testcapi.run_in_subinterp");
PYTHON_PROVIDE("_testcapi.set_errno");
PYTHON_PROVIDE("_testcapi.set_exc_info");
PYTHON_PROVIDE("_testcapi.set_nomemory");
PYTHON_PROVIDE("_testcapi.test_L_code");
PYTHON_PROVIDE("_testcapi.test_Z_code");
PYTHON_PROVIDE("_testcapi.test_buildvalue_N");
PYTHON_PROVIDE("_testcapi.test_capsule");
PYTHON_PROVIDE("_testcapi.test_config");
PYTHON_PROVIDE("_testcapi.test_datetime_capi");
PYTHON_PROVIDE("_testcapi.test_decref_doesnt_leak");
PYTHON_PROVIDE("_testcapi.test_dict_iteration");
PYTHON_PROVIDE("_testcapi.test_empty_argparse");
PYTHON_PROVIDE("_testcapi.test_from_contiguous");
PYTHON_PROVIDE("_testcapi.test_incref_decref_API");
PYTHON_PROVIDE("_testcapi.test_incref_doesnt_leak");
PYTHON_PROVIDE("_testcapi.test_k_code");
PYTHON_PROVIDE("_testcapi.test_lazy_hash_inheritance");
PYTHON_PROVIDE("_testcapi.test_list_api");
PYTHON_PROVIDE("_testcapi.test_long_and_overflow");
PYTHON_PROVIDE("_testcapi.test_long_api");
PYTHON_PROVIDE("_testcapi.test_long_as_double");
PYTHON_PROVIDE("_testcapi.test_long_as_size_t");
PYTHON_PROVIDE("_testcapi.test_long_long_and_overflow");
PYTHON_PROVIDE("_testcapi.test_long_numbits");
PYTHON_PROVIDE("_testcapi.test_longlong_api");
PYTHON_PROVIDE("_testcapi.test_null_strings");
PYTHON_PROVIDE("_testcapi.test_pymem_alloc0");
PYTHON_PROVIDE("_testcapi.test_pymem_setallocators");
PYTHON_PROVIDE("_testcapi.test_pymem_setrawallocators");
PYTHON_PROVIDE("_testcapi.test_pyobject_setallocators");
PYTHON_PROVIDE("_testcapi.test_s_code");
PYTHON_PROVIDE("_testcapi.test_sizeof_c_types");
PYTHON_PROVIDE("_testcapi.test_string_from_format");
PYTHON_PROVIDE("_testcapi.test_string_to_double");
PYTHON_PROVIDE("_testcapi.test_u_code");
PYTHON_PROVIDE("_testcapi.test_unicode_compare_with_ascii");
PYTHON_PROVIDE("_testcapi.test_widechar");
PYTHON_PROVIDE("_testcapi.test_with_docstring");
PYTHON_PROVIDE("_testcapi.test_xdecref_doesnt_leak");
PYTHON_PROVIDE("_testcapi.test_xincref_doesnt_leak");
PYTHON_PROVIDE("_testcapi.the_number_three");
PYTHON_PROVIDE("_testcapi.traceback_print");
PYTHON_PROVIDE("_testcapi.tracemalloc_get_traceback");
PYTHON_PROVIDE("_testcapi.tracemalloc_track");
PYTHON_PROVIDE("_testcapi.tracemalloc_untrack");
PYTHON_PROVIDE("_testcapi.unicode_asucs4");
PYTHON_PROVIDE("_testcapi.unicode_aswidechar");
PYTHON_PROVIDE("_testcapi.unicode_aswidecharstring");
PYTHON_PROVIDE("_testcapi.unicode_copycharacters");
PYTHON_PROVIDE("_testcapi.unicode_encodedecimal");
PYTHON_PROVIDE("_testcapi.unicode_legacy_string");
PYTHON_PROVIDE("_testcapi.unicode_transformdecimaltoascii");
PYTHON_PROVIDE("_testcapi.with_tp_del");
PYTHON_YOINK("encodings.ascii");
PYTHON_YOINK("encodings.latin_1");
/*
* C Extension module to test Python interpreter C APIs.
*
* The 'test_*' functions exported by this module are run as part of the
* standard Python regression test, via Lib/test/test_capi.py.
*/
#ifdef WITH_THREAD
#include "third_party/python/Include/pythread.h"
#endif
static PyObject *TestError; /* set to exception object in init */
/* Raise TestError with test_name + ": " + msg, and return NULL. */
static PyObject *
raiseTestError(const char* test_name, const char* msg)
{
PyErr_Format(TestError, "%s: %s", test_name, msg);
return NULL;
}
/* Test #defines from pyconfig.h (particularly the SIZEOF_* defines).
The ones derived from autoconf on the UNIX-like OSes can be relied
upon (in the absence of sloppy cross-compiling), but the Windows
platforms have these hardcoded. Better safe than sorry.
*/
static PyObject*
sizeof_error(const char* fatname, const char* typname,
int expected, int got)
{
PyErr_Format(TestError,
"%s #define == %d but sizeof(%s) == %d",
fatname, expected, typname, got);
return (PyObject*)NULL;
}
static PyObject*
test_config(PyObject *self)
{
#define CHECK_SIZEOF(FATNAME, TYPE) \
if (FATNAME != sizeof(TYPE)) \
return sizeof_error(#FATNAME, #TYPE, FATNAME, sizeof(TYPE))
CHECK_SIZEOF(SIZEOF_SHORT, short);
CHECK_SIZEOF(SIZEOF_INT, int);
CHECK_SIZEOF(SIZEOF_LONG, long);
CHECK_SIZEOF(SIZEOF_VOID_P, void*);
CHECK_SIZEOF(SIZEOF_TIME_T, time_t);
CHECK_SIZEOF(SIZEOF_LONG_LONG, long long);
#undef CHECK_SIZEOF
Py_INCREF(Py_None);
return Py_None;
}
static PyObject*
test_sizeof_c_types(PyObject *self)
{
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#define CHECK_SIZEOF(TYPE, EXPECTED) \
if (EXPECTED != sizeof(TYPE)) { \
PyErr_Format(TestError, \
"sizeof(%s) = %u instead of %u", \
#TYPE, sizeof(TYPE), EXPECTED); \
return (PyObject*)NULL; \
}
#define IS_SIGNED(TYPE) (((TYPE)-1) < (TYPE)0)
#define CHECK_SIGNNESS(TYPE, SIGNED) \
if (IS_SIGNED(TYPE) != SIGNED) { \
PyErr_Format(TestError, \
"%s signness is, instead of %i", \
#TYPE, IS_SIGNED(TYPE), SIGNED); \
return (PyObject*)NULL; \
}
/* integer types */
CHECK_SIZEOF(Py_UCS1, 1);
CHECK_SIZEOF(Py_UCS2, 2);
CHECK_SIZEOF(Py_UCS4, 4);
CHECK_SIGNNESS(Py_UCS1, 0);
CHECK_SIGNNESS(Py_UCS2, 0);
CHECK_SIGNNESS(Py_UCS4, 0);
CHECK_SIZEOF(int32_t, 4);
CHECK_SIGNNESS(int32_t, 1);
CHECK_SIZEOF(uint32_t, 4);
CHECK_SIGNNESS(uint32_t, 0);
CHECK_SIZEOF(int64_t, 8);
CHECK_SIGNNESS(int64_t, 1);
CHECK_SIZEOF(uint64_t, 8);
CHECK_SIGNNESS(uint64_t, 0);
/* pointer/size types */
CHECK_SIZEOF(size_t, sizeof(void *));
CHECK_SIGNNESS(size_t, 0);
CHECK_SIZEOF(Py_ssize_t, sizeof(void *));
CHECK_SIGNNESS(Py_ssize_t, 1);
CHECK_SIZEOF(uintptr_t, sizeof(void *));
CHECK_SIGNNESS(uintptr_t, 0);
CHECK_SIZEOF(intptr_t, sizeof(void *));
CHECK_SIGNNESS(intptr_t, 1);
Py_INCREF(Py_None);
return Py_None;
#undef IS_SIGNED
#undef CHECK_SIGNESS
#undef CHECK_SIZEOF
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))
#pragma GCC diagnostic pop
#endif
}
static PyObject*
test_list_api(PyObject *self)
{
PyObject* list;
int i;
/* SF bug 132008: PyList_Reverse segfaults */
#define NLIST 30
list = PyList_New(NLIST);
if (list == (PyObject*)NULL)
return (PyObject*)NULL;
/* list = range(NLIST) */
for (i = 0; i < NLIST; ++i) {
PyObject* anint = PyLong_FromLong(i);
if (anint == (PyObject*)NULL) {
Py_DECREF(list);
return (PyObject*)NULL;
}
PyList_SET_ITEM(list, i, anint);
}
/* list.reverse(), via PyList_Reverse() */
i = PyList_Reverse(list); /* should not blow up! */
if (i != 0) {
Py_DECREF(list);
return (PyObject*)NULL;
}
/* Check that list == range(29, -1, -1) now */
for (i = 0; i < NLIST; ++i) {
PyObject* anint = PyList_GET_ITEM(list, i);
if (PyLong_AS_LONG(anint) != NLIST-1-i) {
PyErr_SetString(TestError,
"test_list_api: reverse screwed up");
Py_DECREF(list);
return (PyObject*)NULL;
}
}
Py_DECREF(list);
#undef NLIST
Py_INCREF(Py_None);
return Py_None;
}
static int
test_dict_inner(int count)
{
Py_ssize_t pos = 0, iterations = 0;
int i;
PyObject *dict = PyDict_New();
PyObject *v, *k;
if (dict == NULL)
return -1;
for (i = 0; i < count; i++) {
v = PyLong_FromLong(i);
if (v == NULL) {
return -1;
}
if (PyDict_SetItem(dict, v, v) < 0) {
Py_DECREF(v);
return -1;
}
Py_DECREF(v);
}
while (PyDict_Next(dict, &pos, &k, &v)) {
PyObject *o;
iterations++;
i = PyLong_AS_LONG(v) + 1;
o = PyLong_FromLong(i);
if (o == NULL)
return -1;
if (PyDict_SetItem(dict, k, o) < 0) {
Py_DECREF(o);
return -1;
}
Py_DECREF(o);
}
Py_DECREF(dict);
if (iterations != count) {
PyErr_SetString(
TestError,
"test_dict_iteration: dict iteration went wrong ");
return -1;
} else {
return 0;
}
}
static PyObject *
test_dict_iteration(PyObject* self)
{
int i;
for (i = 0; i < 200; i++) {
if (test_dict_inner(i) < 0) {
return NULL;
}
}
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
dict_getitem_knownhash(PyObject *self, PyObject *args)
{
PyObject *mp, *key, *result;
Py_ssize_t hash;
if (!PyArg_ParseTuple(args, "OOn:dict_getitem_knownhash",
&mp, &key, &hash)) {
return NULL;
}
result = _PyDict_GetItem_KnownHash(mp, key, (Py_hash_t)hash);
if (result == NULL && !PyErr_Occurred()) {
_PyErr_SetKeyError(key);
return NULL;
}
Py_XINCREF(result);
return result;
}
static PyObject *
dict_hassplittable(PyObject *self, PyObject *arg)
{
if (!PyDict_Check(arg)) {
PyErr_Format(PyExc_TypeError,
"dict_hassplittable() argument must be dict, not '%s'",
arg->ob_type->tp_name);
return NULL;
}
return PyBool_FromLong(_PyDict_HasSplitTable((PyDictObject*)arg));
}
/* Issue #4701: Check that PyObject_Hash implicitly calls
* PyType_Ready if it hasn't already been called
*/
static PyTypeObject _HashInheritanceTester_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"hashinheritancetester", /* Name of this type */
sizeof(PyObject), /* Basic object size */
0, /* Item size for varobject */
(destructor)PyObject_Del, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
static PyObject*
test_lazy_hash_inheritance(PyObject* self)
{
PyTypeObject *type;
PyObject *obj;
Py_hash_t hash;
type = &_HashInheritanceTester_Type;
if (type->tp_dict != NULL)
/* The type has already been initialized. This probably means
-R is being used. */
Py_RETURN_NONE;
obj = PyObject_New(PyObject, type);
if (obj == NULL) {
PyErr_Clear();
PyErr_SetString(
TestError,
"test_lazy_hash_inheritance: failed to create object");
return NULL;
}
if (type->tp_dict != NULL) {
PyErr_SetString(
TestError,
"test_lazy_hash_inheritance: type initialised too soon");
Py_DECREF(obj);
return NULL;
}
hash = PyObject_Hash(obj);
if ((hash == -1) && PyErr_Occurred()) {
PyErr_Clear();
PyErr_SetString(
TestError,
"test_lazy_hash_inheritance: could not hash object");
Py_DECREF(obj);
return NULL;
}
if (type->tp_dict == NULL) {
PyErr_SetString(
TestError,
"test_lazy_hash_inheritance: type not initialised by hash()");
Py_DECREF(obj);
return NULL;
}
if (type->tp_hash != PyType_Type.tp_hash) {
PyErr_SetString(
TestError,
"test_lazy_hash_inheritance: unexpected hash function");
Py_DECREF(obj);
return NULL;
}
Py_DECREF(obj);
Py_RETURN_NONE;
}
/* Tests of PyLong_{As, From}{Unsigned,}Long(), and
PyLong_{As, From}{Unsigned,}LongLong().
Note that the meat of the test is contained in testcapi_long.h.
This is revolting, but delicate code duplication is worse: "almost
exactly the same" code is needed to test long long, but the ubiquitous
dependence on type names makes it impossible to use a parameterized
function. A giant macro would be even worse than this. A C++ template
would be perfect.
The "report an error" functions are deliberately not part of the #include
file: if the test fails, you can set a breakpoint in the appropriate
error function directly, and crawl back from there in the debugger.
*/
#define UNBIND(X) Py_DECREF(X); (X) = NULL
static PyObject *
raise_test_long_error(const char* msg)
{
return raiseTestError("test_long_api", msg);
}
#define TESTNAME test_long_api_inner
#define TYPENAME long
#define F_S_TO_PY PyLong_FromLong
#define F_PY_TO_S PyLong_AsLong
#define F_U_TO_PY PyLong_FromUnsignedLong
#define F_PY_TO_U PyLong_AsUnsignedLong
#include "third_party/python/Modules/testcapi_long.inc"
static PyObject *
test_long_api(PyObject* self)
{
return TESTNAME(raise_test_long_error);
}
#undef TESTNAME
#undef TYPENAME
#undef F_S_TO_PY
#undef F_PY_TO_S
#undef F_U_TO_PY
#undef F_PY_TO_U
static PyObject *
raise_test_longlong_error(const char* msg)
{
return raiseTestError("test_longlong_api", msg);
}
#define TESTNAME test_longlong_api_inner
#define TYPENAME long long
#define F_S_TO_PY PyLong_FromLongLong
#define F_PY_TO_S PyLong_AsLongLong
#define F_U_TO_PY PyLong_FromUnsignedLongLong
#define F_PY_TO_U PyLong_AsUnsignedLongLong
#include "third_party/python/Modules/testcapi_long.inc"
static PyObject *
test_longlong_api(PyObject* self, PyObject *args)
{
return TESTNAME(raise_test_longlong_error);
}
#undef TESTNAME
#undef TYPENAME
#undef F_S_TO_PY
#undef F_PY_TO_S
#undef F_U_TO_PY
#undef F_PY_TO_U
/* Test the PyLong_AsLongAndOverflow API. General conversion to PY_LONG
is tested by test_long_api_inner. This test will concentrate on proper
handling of overflow.
*/
static PyObject *
test_long_and_overflow(PyObject *self)
{
PyObject *num, *one, *temp;
long value;
int overflow;
/* Test that overflow is set properly for a large value. */
/* num is a number larger than LONG_MAX even on 64-bit platforms */
num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_and_overflow",
"return value was not set to -1");
if (overflow != 1)
return raiseTestError("test_long_and_overflow",
"overflow was not set to 1");
/* Same again, with num = LONG_MAX + 1 */
num = PyLong_FromLong(LONG_MAX);
if (num == NULL)
return NULL;
one = PyLong_FromLong(1L);
if (one == NULL) {
Py_DECREF(num);
return NULL;
}
temp = PyNumber_Add(num, one);
Py_DECREF(one);
Py_DECREF(num);
num = temp;
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_and_overflow",
"return value was not set to -1");
if (overflow != 1)
return raiseTestError("test_long_and_overflow",
"overflow was not set to 1");
/* Test that overflow is set properly for a large negative value. */
/* num is a number smaller than LONG_MIN even on 64-bit platforms */
num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_and_overflow",
"return value was not set to -1");
if (overflow != -1)
return raiseTestError("test_long_and_overflow",
"overflow was not set to -1");
/* Same again, with num = LONG_MIN - 1 */
num = PyLong_FromLong(LONG_MIN);
if (num == NULL)
return NULL;
one = PyLong_FromLong(1L);
if (one == NULL) {
Py_DECREF(num);
return NULL;
}
temp = PyNumber_Subtract(num, one);
Py_DECREF(one);
Py_DECREF(num);
num = temp;
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_and_overflow",
"return value was not set to -1");
if (overflow != -1)
return raiseTestError("test_long_and_overflow",
"overflow was not set to -1");
/* Test that overflow is cleared properly for small values. */
num = PyLong_FromString("FF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != 0xFF)
return raiseTestError("test_long_and_overflow",
"expected return value 0xFF");
if (overflow != 0)
return raiseTestError("test_long_and_overflow",
"overflow was not cleared");
num = PyLong_FromString("-FF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -0xFF)
return raiseTestError("test_long_and_overflow",
"expected return value 0xFF");
if (overflow != 0)
return raiseTestError("test_long_and_overflow",
"overflow was set incorrectly");
num = PyLong_FromLong(LONG_MAX);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != LONG_MAX)
return raiseTestError("test_long_and_overflow",
"expected return value LONG_MAX");
if (overflow != 0)
return raiseTestError("test_long_and_overflow",
"overflow was not cleared");
num = PyLong_FromLong(LONG_MIN);
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != LONG_MIN)
return raiseTestError("test_long_and_overflow",
"expected return value LONG_MIN");
if (overflow != 0)
return raiseTestError("test_long_and_overflow",
"overflow was not cleared");
Py_INCREF(Py_None);
return Py_None;
}
/* Test the PyLong_AsLongLongAndOverflow API. General conversion to
long long is tested by test_long_api_inner. This test will
concentrate on proper handling of overflow.
*/
static PyObject *
test_long_long_and_overflow(PyObject *self)
{
PyObject *num, *one, *temp;
long long value;
int overflow;
/* Test that overflow is set properly for a large value. */
/* num is a number larger than PY_LLONG_MAX on a typical machine. */
num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_long_and_overflow",
"return value was not set to -1");
if (overflow != 1)
return raiseTestError("test_long_long_and_overflow",
"overflow was not set to 1");
/* Same again, with num = PY_LLONG_MAX + 1 */
num = PyLong_FromLongLong(PY_LLONG_MAX);
if (num == NULL)
return NULL;
one = PyLong_FromLong(1L);
if (one == NULL) {
Py_DECREF(num);
return NULL;
}
temp = PyNumber_Add(num, one);
Py_DECREF(one);
Py_DECREF(num);
num = temp;
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_long_and_overflow",
"return value was not set to -1");
if (overflow != 1)
return raiseTestError("test_long_long_and_overflow",
"overflow was not set to 1");
/* Test that overflow is set properly for a large negative value. */
/* num is a number smaller than PY_LLONG_MIN on a typical platform */
num = PyLong_FromString("-FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_long_and_overflow",
"return value was not set to -1");
if (overflow != -1)
return raiseTestError("test_long_long_and_overflow",
"overflow was not set to -1");
/* Same again, with num = PY_LLONG_MIN - 1 */
num = PyLong_FromLongLong(PY_LLONG_MIN);
if (num == NULL)
return NULL;
one = PyLong_FromLong(1L);
if (one == NULL) {
Py_DECREF(num);
return NULL;
}
temp = PyNumber_Subtract(num, one);
Py_DECREF(one);
Py_DECREF(num);
num = temp;
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -1)
return raiseTestError("test_long_long_and_overflow",
"return value was not set to -1");
if (overflow != -1)
return raiseTestError("test_long_long_and_overflow",
"overflow was not set to -1");
/* Test that overflow is cleared properly for small values. */
num = PyLong_FromString("FF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != 0xFF)
return raiseTestError("test_long_long_and_overflow",
"expected return value 0xFF");
if (overflow != 0)
return raiseTestError("test_long_long_and_overflow",
"overflow was not cleared");
num = PyLong_FromString("-FF", NULL, 16);
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != -0xFF)
return raiseTestError("test_long_long_and_overflow",
"expected return value 0xFF");
if (overflow != 0)
return raiseTestError("test_long_long_and_overflow",
"overflow was set incorrectly");
num = PyLong_FromLongLong(PY_LLONG_MAX);
if (num == NULL)
return NULL;
overflow = 1234;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != PY_LLONG_MAX)
return raiseTestError("test_long_long_and_overflow",
"expected return value PY_LLONG_MAX");
if (overflow != 0)
return raiseTestError("test_long_long_and_overflow",
"overflow was not cleared");
num = PyLong_FromLongLong(PY_LLONG_MIN);
if (num == NULL)
return NULL;
overflow = 0;
value = PyLong_AsLongLongAndOverflow(num, &overflow);
Py_DECREF(num);
if (value == -1 && PyErr_Occurred())
return NULL;
if (value != PY_LLONG_MIN)
return raiseTestError("test_long_long_and_overflow",
"expected return value PY_LLONG_MIN");
if (overflow != 0)
return raiseTestError("test_long_long_and_overflow",
"overflow was not cleared");
Py_INCREF(Py_None);
return Py_None;
}
/* Test the PyLong_As{Size,Ssize}_t API. At present this just tests that
non-integer arguments are handled correctly. It should be extended to
test overflow handling.
*/
static PyObject *
test_long_as_size_t(PyObject *self)
{
size_t out_u;
Py_ssize_t out_s;
Py_INCREF(Py_None);
out_u = PyLong_AsSize_t(Py_None);
if (out_u != (size_t)-1 || !PyErr_Occurred())
return raiseTestError("test_long_as_size_t",
"PyLong_AsSize_t(None) didn't complain");
if (!PyErr_ExceptionMatches(PyExc_TypeError))
return raiseTestError("test_long_as_size_t",
"PyLong_AsSize_t(None) raised "
"something other than TypeError");
PyErr_Clear();
out_s = PyLong_AsSsize_t(Py_None);
if (out_s != (Py_ssize_t)-1 || !PyErr_Occurred())
return raiseTestError("test_long_as_size_t",
"PyLong_AsSsize_t(None) didn't complain");
if (!PyErr_ExceptionMatches(PyExc_TypeError))
return raiseTestError("test_long_as_size_t",
"PyLong_AsSsize_t(None) raised "
"something other than TypeError");
PyErr_Clear();
/* Py_INCREF(Py_None) omitted - we already have a reference to it. */
return Py_None;
}
/* Test the PyLong_AsDouble API. At present this just tests that
non-integer arguments are handled correctly.
*/
static PyObject *
test_long_as_double(PyObject *self)
{
double out;
Py_INCREF(Py_None);
out = PyLong_AsDouble(Py_None);
if (out != -1.0 || !PyErr_Occurred())
return raiseTestError("test_long_as_double",
"PyLong_AsDouble(None) didn't complain");
if (!PyErr_ExceptionMatches(PyExc_TypeError))
return raiseTestError("test_long_as_double",
"PyLong_AsDouble(None) raised "
"something other than TypeError");
PyErr_Clear();
/* Py_INCREF(Py_None) omitted - we already have a reference to it. */
return Py_None;
}
/* Test the L code for PyArg_ParseTuple. This should deliver a long long
for both long and int arguments. The test may leak a little memory if
it fails.
*/
static PyObject *
test_L_code(PyObject *self)
{
PyObject *tuple, *num;
long long value;
tuple = PyTuple_New(1);
if (tuple == NULL)
return NULL;
num = PyLong_FromLong(42);
if (num == NULL)
return NULL;
PyTuple_SET_ITEM(tuple, 0, num);
value = -1;
if (!PyArg_ParseTuple(tuple, "L:test_L_code", &value)) {
return NULL;
}
if (value != 42)
return raiseTestError("test_L_code",
"L code returned wrong value for long 42");
Py_DECREF(num);
num = PyLong_FromLong(42);
if (num == NULL)
return NULL;
PyTuple_SET_ITEM(tuple, 0, num);
value = -1;
if (!PyArg_ParseTuple(tuple, "L:test_L_code", &value)) {
return NULL;
}
if (value != 42)
return raiseTestError("test_L_code",
"L code returned wrong value for int 42");
Py_DECREF(tuple);
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
return_none(void *unused)
{
Py_RETURN_NONE;
}
static PyObject *
raise_error(void *unused)
{
PyErr_SetNone(PyExc_ValueError);
return NULL;
}
static int
test_buildvalue_N_error(const char *fmt)
{
PyObject *arg, *res;
arg = PyList_New(0);
if (arg == NULL) {
return -1;
}
Py_INCREF(arg);
res = Py_BuildValue(fmt, return_none, NULL, arg);
if (res == NULL) {
return -1;
}
Py_DECREF(res);
if (Py_REFCNT(arg) != 1) {
PyErr_Format(TestError, "test_buildvalue_N: "
"arg was not decrefed in successful "
"Py_BuildValue(\"%s\")", fmt);
return -1;
}
Py_INCREF(arg);
res = Py_BuildValue(fmt, raise_error, NULL, arg);
if (res != NULL || !PyErr_Occurred()) {
PyErr_Format(TestError, "test_buildvalue_N: "
"Py_BuildValue(\"%s\") didn't complain", fmt);
return -1;
}
PyErr_Clear();
if (Py_REFCNT(arg) != 1) {
PyErr_Format(TestError, "test_buildvalue_N: "
"arg was not decrefed in failed "
"Py_BuildValue(\"%s\")", fmt);
return -1;
}
Py_DECREF(arg);
return 0;
}
static PyObject *
test_buildvalue_N(PyObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *arg, *res;
arg = PyList_New(0);
if (arg == NULL) {
return NULL;
}
Py_INCREF(arg);
res = Py_BuildValue("N", arg);
if (res == NULL) {
return NULL;
}
if (res != arg) {
return raiseTestError("test_buildvalue_N",
"Py_BuildValue(\"N\") returned wrong result");
}
if (Py_REFCNT(arg) != 2) {
return raiseTestError("test_buildvalue_N",
"arg was not decrefed in Py_BuildValue(\"N\")");
}
Py_DECREF(res);
Py_DECREF(arg);
if (test_buildvalue_N_error("O&N") < 0)
return NULL;
if (test_buildvalue_N_error("(O&N)") < 0)
return NULL;
if (test_buildvalue_N_error("[O&N]") < 0)
return NULL;
if (test_buildvalue_N_error("{O&N}") < 0)
return NULL;
if (test_buildvalue_N_error("{()O&(())N}") < 0)
return NULL;
Py_RETURN_NONE;
}
static PyObject *
get_args(PyObject *self, PyObject *args)
{
if (args == NULL) {
args = Py_None;
}
Py_INCREF(args);
return args;
}
static PyObject *
get_kwargs(PyObject *self, PyObject *args, PyObject *kwargs)
{
if (kwargs == NULL) {
kwargs = Py_None;
}
Py_INCREF(kwargs);
return kwargs;
}
/* Test tuple argument processing */
static PyObject *
getargs_tuple(PyObject *self, PyObject *args)
{
int a, b, c;
if (!PyArg_ParseTuple(args, "i(ii)", &a, &b, &c))
return NULL;
return Py_BuildValue("iii", a, b, c);
}
/* test PyArg_ParseTupleAndKeywords */
static PyObject *
getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs)
{
static char *keywords[] = {"arg1","arg2","arg3","arg4","arg5", NULL};
static const char fmt[] = "(ii)i|(i(ii))(iii)i";
int int_args[10]={-1, -1, -1, -1, -1, -1, -1, -1, -1, -1};
if (!PyArg_ParseTupleAndKeywords(args, kwargs, fmt, keywords,
&int_args[0], &int_args[1], &int_args[2], &int_args[3], &int_args[4],
&int_args[5], &int_args[6], &int_args[7], &int_args[8], &int_args[9]))
return NULL;
return Py_BuildValue("iiiiiiiiii",
int_args[0], int_args[1], int_args[2], int_args[3], int_args[4],
int_args[5], int_args[6], int_args[7], int_args[8], int_args[9]);
}
/* test PyArg_ParseTupleAndKeywords keyword-only arguments */
static PyObject *
getargs_keyword_only(PyObject *self, PyObject *args, PyObject *kwargs)
{
static char *keywords[] = {"required", "optional", "keyword_only", NULL};
int required = -1;
int optional = -1;
int keyword_only = -1;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|i$i", keywords,
&required, &optional, &keyword_only))
return NULL;
return Py_BuildValue("iii", required, optional, keyword_only);
}
/* test PyArg_ParseTupleAndKeywords positional-only arguments */
static PyObject *
getargs_positional_only_and_keywords(PyObject *self, PyObject *args, PyObject *kwargs)
{
static char *keywords[] = {"", "", "keyword", NULL};
int required = -1;
int optional = -1;
int keyword = -1;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|ii", keywords,
&required, &optional, &keyword))
return NULL;
return Py_BuildValue("iii", required, optional, keyword);
}
/* Functions to call PyArg_ParseTuple with integer format codes,
and return the result.
*/
static PyObject *
getargs_b(PyObject *self, PyObject *args)
{
unsigned char value;
if (!PyArg_ParseTuple(args, "b", &value))
return NULL;
return PyLong_FromUnsignedLong((unsigned long)value);
}
static PyObject *
getargs_B(PyObject *self, PyObject *args)
{
unsigned char value;
if (!PyArg_ParseTuple(args, "B", &value))
return NULL;
return PyLong_FromUnsignedLong((unsigned long)value);
}
static PyObject *
getargs_h(PyObject *self, PyObject *args)
{
short value;
if (!PyArg_ParseTuple(args, "h", &value))
return NULL;
return PyLong_FromLong((long)value);
}
static PyObject *
getargs_H(PyObject *self, PyObject *args)
{
unsigned short value;
if (!PyArg_ParseTuple(args, "H", &value))
return NULL;
return PyLong_FromUnsignedLong((unsigned long)value);
}
static PyObject *
getargs_I(PyObject *self, PyObject *args)
{
unsigned int value;
if (!PyArg_ParseTuple(args, "I", &value))
return NULL;
return PyLong_FromUnsignedLong((unsigned long)value);
}
static PyObject *
getargs_k(PyObject *self, PyObject *args)
{
unsigned long value;
if (!PyArg_ParseTuple(args, "k", &value))
return NULL;
return PyLong_FromUnsignedLong(value);
}
static PyObject *
getargs_i(PyObject *self, PyObject *args)
{
int value;
if (!PyArg_ParseTuple(args, "i", &value))
return NULL;
return PyLong_FromLong((long)value);
}
static PyObject *
getargs_l(PyObject *self, PyObject *args)
{
long value;
if (!PyArg_ParseTuple(args, "l", &value))
return NULL;
return PyLong_FromLong(value);
}
static PyObject *
getargs_n(PyObject *self, PyObject *args)
{
Py_ssize_t value;
if (!PyArg_ParseTuple(args, "n", &value))
return NULL;
return PyLong_FromSsize_t(value);
}
static PyObject *
getargs_p(PyObject *self, PyObject *args)
{
int value;
if (!PyArg_ParseTuple(args, "p", &value))
return NULL;
return PyLong_FromLong(value);
}
static PyObject *
getargs_L(PyObject *self, PyObject *args)
{
long long value;
if (!PyArg_ParseTuple(args, "L", &value))
return NULL;
return PyLong_FromLongLong(value);
}
static PyObject *
getargs_K(PyObject *self, PyObject *args)
{
unsigned long long value;
if (!PyArg_ParseTuple(args, "K", &value))
return NULL;
return PyLong_FromUnsignedLongLong(value);
}
/* This function not only tests the 'k' getargs code, but also the
PyLong_AsUnsignedLongMask() and PyLong_AsUnsignedLongMask() functions. */
static PyObject *
test_k_code(PyObject *self)
{
PyObject *tuple, *num;
unsigned long value;
tuple = PyTuple_New(1);
if (tuple == NULL)
return NULL;
/* a number larger than ULONG_MAX even on 64-bit platforms */
num = PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL, 16);
if (num == NULL)
return NULL;
value = PyLong_AsUnsignedLongMask(num);
if (value != ULONG_MAX)
return raiseTestError("test_k_code",
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
PyTuple_SET_ITEM(tuple, 0, num);
value = 0;
if (!PyArg_ParseTuple(tuple, "k:test_k_code", &value)) {
return NULL;
}
if (value != ULONG_MAX)
return raiseTestError("test_k_code",
"k code returned wrong value for long 0xFFF...FFF");
Py_DECREF(num);
num = PyLong_FromString("-FFFFFFFF000000000000000042", NULL, 16);
if (num == NULL)
return NULL;
value = PyLong_AsUnsignedLongMask(num);
if (value != (unsigned long)-0x42)
return raiseTestError("test_k_code",
"PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
PyTuple_SET_ITEM(tuple, 0, num);
value = 0;
if (!PyArg_ParseTuple(tuple, "k:test_k_code", &value)) {
return NULL;
}
if (value != (unsigned long)-0x42)
return raiseTestError("test_k_code",
"k code returned wrong value for long -0xFFF..000042");
Py_DECREF(tuple);
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
getargs_f(PyObject *self, PyObject *args)
{
float f;
if (!PyArg_ParseTuple(args, "f", &f))
return NULL;
return PyFloat_FromDouble(f);
}
static PyObject *
getargs_d(PyObject *self, PyObject *args)
{
double d;
if (!PyArg_ParseTuple(args, "d", &d))
return NULL;
return PyFloat_FromDouble(d);
}
static PyObject *
getargs_D(PyObject *self, PyObject *args)
{
Py_complex cval;
if (!PyArg_ParseTuple(args, "D", &cval))
return NULL;
return PyComplex_FromCComplex(cval);
}
static PyObject *
getargs_S(PyObject *self, PyObject *args)
{
PyObject *obj;
if (!PyArg_ParseTuple(args, "S", &obj))
return NULL;
Py_INCREF(obj);
return obj;
}
static PyObject *
getargs_Y(PyObject *self, PyObject *args)
{
PyObject *obj;
if (!PyArg_ParseTuple(args, "Y", &obj))
return NULL;
Py_INCREF(obj);
return obj;
}
static PyObject *
getargs_U(PyObject *self, PyObject *args)
{
PyObject *obj;
if (!PyArg_ParseTuple(args, "U", &obj))
return NULL;
Py_INCREF(obj);
return obj;
}
static PyObject *
getargs_c(PyObject *self, PyObject *args)
{
char c;
if (!PyArg_ParseTuple(args, "c", &c))
return NULL;
return PyLong_FromLong((unsigned char)c);
}
static PyObject *
getargs_C(PyObject *self, PyObject *args)
{
int c;
if (!PyArg_ParseTuple(args, "C", &c))
return NULL;
return PyLong_FromLong(c);
}
static PyObject *
getargs_s(PyObject *self, PyObject *args)
{
char *str;
if (!PyArg_ParseTuple(args, "s", &str))
return NULL;
return PyBytes_FromString(str);
}
static PyObject *
getargs_s_star(PyObject *self, PyObject *args)
{
Py_buffer buffer;
PyObject *bytes;
if (!PyArg_ParseTuple(args, "s*", &buffer))
return NULL;
bytes = PyBytes_FromStringAndSize(buffer.buf, buffer.len);
PyBuffer_Release(&buffer);
return bytes;
}
static PyObject *
getargs_s_hash(PyObject *self, PyObject *args)
{
char *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "s#", &str, &size))
return NULL;
return PyBytes_FromStringAndSize(str, size);
}
static PyObject *
getargs_z(PyObject *self, PyObject *args)
{
char *str;
if (!PyArg_ParseTuple(args, "z", &str))
return NULL;
if (str != NULL)
return PyBytes_FromString(str);
else
Py_RETURN_NONE;
}
static PyObject *
getargs_z_star(PyObject *self, PyObject *args)
{
Py_buffer buffer;
PyObject *bytes;
if (!PyArg_ParseTuple(args, "z*", &buffer))
return NULL;
if (buffer.buf != NULL)
bytes = PyBytes_FromStringAndSize(buffer.buf, buffer.len);
else {
Py_INCREF(Py_None);
bytes = Py_None;
}
PyBuffer_Release(&buffer);
return bytes;
}
static PyObject *
getargs_z_hash(PyObject *self, PyObject *args)
{
char *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "z#", &str, &size))
return NULL;
if (str != NULL)
return PyBytes_FromStringAndSize(str, size);
else
Py_RETURN_NONE;
}
static PyObject *
getargs_y(PyObject *self, PyObject *args)
{
char *str;
if (!PyArg_ParseTuple(args, "y", &str))
return NULL;
return PyBytes_FromString(str);
}
static PyObject *
getargs_y_star(PyObject *self, PyObject *args)
{
Py_buffer buffer;
PyObject *bytes;
if (!PyArg_ParseTuple(args, "y*", &buffer))
return NULL;
bytes = PyBytes_FromStringAndSize(buffer.buf, buffer.len);
PyBuffer_Release(&buffer);
return bytes;
}
static PyObject *
getargs_y_hash(PyObject *self, PyObject *args)
{
char *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "y#", &str, &size))
return NULL;
return PyBytes_FromStringAndSize(str, size);
}
static PyObject *
getargs_u(PyObject *self, PyObject *args)
{
Py_UNICODE *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "u", &str))
return NULL;
size = wcslen(str);
return PyUnicode_FromUnicode(str, size);
}
static PyObject *
getargs_u_hash(PyObject *self, PyObject *args)
{
Py_UNICODE *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "u#", &str, &size))
return NULL;
return PyUnicode_FromUnicode(str, size);
}
static PyObject *
getargs_Z(PyObject *self, PyObject *args)
{
Py_UNICODE *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "Z", &str))
return NULL;
if (str != NULL) {
size = wcslen(str);
return PyUnicode_FromUnicode(str, size);
} else
Py_RETURN_NONE;
}
static PyObject *
getargs_Z_hash(PyObject *self, PyObject *args)
{
Py_UNICODE *str;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "Z#", &str, &size))
return NULL;
if (str != NULL)
return PyUnicode_FromUnicode(str, size);
else
Py_RETURN_NONE;
}
static PyObject *
getargs_es(PyObject *self, PyObject *args)
{
PyObject *arg, *result;
const char *encoding = NULL;
char *str;
if (!PyArg_ParseTuple(args, "O|s", &arg, &encoding))
return NULL;
if (!PyArg_Parse(arg, "es", encoding, &str))
return NULL;
result = PyBytes_FromString(str);
PyMem_Free(str);
return result;
}
static PyObject *
getargs_et(PyObject *self, PyObject *args)
{
PyObject *arg, *result;
const char *encoding = NULL;
char *str;
if (!PyArg_ParseTuple(args, "O|s", &arg, &encoding))
return NULL;
if (!PyArg_Parse(arg, "et", encoding, &str))
return NULL;
result = PyBytes_FromString(str);
PyMem_Free(str);
return result;
}
static PyObject *
getargs_es_hash(PyObject *self, PyObject *args)
{
PyObject *arg, *result;
const char *encoding = NULL;
PyByteArrayObject *buffer = NULL;
char *str = NULL;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "O|sY", &arg, &encoding, &buffer))
return NULL;
if (buffer != NULL) {
str = PyByteArray_AS_STRING(buffer);
size = PyByteArray_GET_SIZE(buffer);
}
if (!PyArg_Parse(arg, "es#", encoding, &str, &size))
return NULL;
result = PyBytes_FromStringAndSize(str, size);
if (buffer == NULL)
PyMem_Free(str);
return result;
}
static PyObject *
getargs_et_hash(PyObject *self, PyObject *args)
{
PyObject *arg, *result;
const char *encoding = NULL;
PyByteArrayObject *buffer = NULL;
char *str = NULL;
Py_ssize_t size;
if (!PyArg_ParseTuple(args, "O|sY", &arg, &encoding, &buffer))
return NULL;
if (buffer != NULL) {
str = PyByteArray_AS_STRING(buffer);
size = PyByteArray_GET_SIZE(buffer);
}
if (!PyArg_Parse(arg, "et#", encoding, &str, &size))
return NULL;
result = PyBytes_FromStringAndSize(str, size);
if (buffer == NULL)
PyMem_Free(str);
return result;
}
/* Test the s and z codes for PyArg_ParseTuple.
*/
static PyObject *
test_s_code(PyObject *self)
{
/* Unicode strings should be accepted */
PyObject *tuple, *obj;
char *value;
tuple = PyTuple_New(1);
if (tuple == NULL)
return NULL;
obj = PyUnicode_Decode("t\xeate", strlen("t\xeate"),
"latin-1", NULL);
if (obj == NULL)
return NULL;
PyTuple_SET_ITEM(tuple, 0, obj);
/* These two blocks used to raise a TypeError:
* "argument must be string without null bytes, not str"
*/
if (!PyArg_ParseTuple(tuple, "s:test_s_code1", &value)) {
return NULL;
}
if (!PyArg_ParseTuple(tuple, "z:test_s_code2", &value)) {
return NULL;
}
Py_DECREF(tuple);
Py_RETURN_NONE;
}
static PyObject *
parse_tuple_and_keywords(PyObject *self, PyObject *args)
{
PyObject *sub_args;
PyObject *sub_kwargs;
const char *sub_format;
PyObject *sub_keywords;
Py_ssize_t i, size;
char *keywords[8 + 1]; /* space for NULL at end */
PyObject *o;
PyObject *converted[8];
int result;
PyObject *return_value = NULL;
double buffers[8][4]; /* double ensures alignment where necessary */
if (!PyArg_ParseTuple(args, "OOsO:parse_tuple_and_keywords",
&sub_args, &sub_kwargs,
&sub_format, &sub_keywords))
return NULL;
if (!(PyList_CheckExact(sub_keywords) || PyTuple_CheckExact(sub_keywords))) {
PyErr_SetString(PyExc_ValueError,
"parse_tuple_and_keywords: sub_keywords must be either list or tuple");
return NULL;
}
bzero(buffers, sizeof(buffers));
bzero(converted, sizeof(converted));
bzero(keywords, sizeof(keywords));
size = PySequence_Fast_GET_SIZE(sub_keywords);
if (size > 8) {
PyErr_SetString(PyExc_ValueError,
"parse_tuple_and_keywords: too many keywords in sub_keywords");
goto exit;
}
for (i = 0; i < size; i++) {
o = PySequence_Fast_GET_ITEM(sub_keywords, i);
if (!PyUnicode_FSConverter(o, (void *)(converted + i))) {
PyErr_Format(PyExc_ValueError,
"parse_tuple_and_keywords: could not convert keywords[%zd] to narrow string", i);
goto exit;
}
keywords[i] = PyBytes_AS_STRING(converted[i]);
}
result = PyArg_ParseTupleAndKeywords(sub_args, sub_kwargs,
sub_format, keywords,
buffers + 0, buffers + 1, buffers + 2, buffers + 3,
buffers + 4, buffers + 5, buffers + 6, buffers + 7);
if (result) {
return_value = Py_None;
Py_INCREF(Py_None);
}
exit:
size = sizeof(converted) / sizeof(converted[0]);
for (i = 0; i < size; i++) {
Py_XDECREF(converted[i]);
}
return return_value;
}
static volatile int x;
/* Test the u and u# codes for PyArg_ParseTuple. May leak memory in case
of an error.
*/
static PyObject *
test_u_code(PyObject *self)
{
PyObject *tuple, *obj;
Py_UNICODE *value;
Py_ssize_t len;
/* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
/* Just use the macro and check that it compiles */
x = Py_UNICODE_ISSPACE(25);
tuple = PyTuple_New(1);
if (tuple == NULL)
return NULL;
obj = PyUnicode_Decode("test", strlen("test"),
"ascii", NULL);
if (obj == NULL)
return NULL;
PyTuple_SET_ITEM(tuple, 0, obj);
value = 0;
if (!PyArg_ParseTuple(tuple, "u:test_u_code", &value)) {
return NULL;
}
if (value != PyUnicode_AS_UNICODE(obj))
return raiseTestError("test_u_code",
"u code returned wrong value for u'test'");
value = 0;
if (!PyArg_ParseTuple(tuple, "u#:test_u_code", &value, &len)) {
return NULL;
}
if (value != PyUnicode_AS_UNICODE(obj) ||
len != PyUnicode_GET_SIZE(obj))
return raiseTestError("test_u_code",
"u# code returned wrong values for u'test'");
Py_DECREF(tuple);
Py_INCREF(Py_None);
return Py_None;
}
/* Test Z and Z# codes for PyArg_ParseTuple */
static PyObject *
test_Z_code(PyObject *self)
{
PyObject *tuple, *obj;
const Py_UNICODE *value1, *value2;
Py_ssize_t len1, len2;
tuple = PyTuple_New(2);
if (tuple == NULL)
return NULL;
obj = PyUnicode_FromString("test");
PyTuple_SET_ITEM(tuple, 0, obj);
Py_INCREF(Py_None);
PyTuple_SET_ITEM(tuple, 1, Py_None);
/* swap values on purpose */
value1 = NULL;
value2 = PyUnicode_AS_UNICODE(obj);
/* Test Z for both values */
if (!PyArg_ParseTuple(tuple, "ZZ:test_Z_code", &value1, &value2)) {
return NULL;
}
if (value1 != PyUnicode_AS_UNICODE(obj))
return raiseTestError("test_Z_code",
"Z code returned wrong value for 'test'");
if (value2 != NULL)
return raiseTestError("test_Z_code",
"Z code returned wrong value for None");
value1 = NULL;
value2 = PyUnicode_AS_UNICODE(obj);
len1 = -1;
len2 = -1;
/* Test Z# for both values */
if (!PyArg_ParseTuple(tuple, "Z#Z#:test_Z_code", &value1, &len1,
&value2, &len2))
{
return NULL;
}
if (value1 != PyUnicode_AS_UNICODE(obj) ||
len1 != PyUnicode_GET_SIZE(obj))
return raiseTestError("test_Z_code",
"Z# code returned wrong values for 'test'");
if (value2 != NULL ||
len2 != 0)
return raiseTestError("test_Z_code",
"Z# code returned wrong values for None'");
Py_DECREF(tuple);
Py_RETURN_NONE;
}
static PyObject *
test_widechar(PyObject *self)
{
#if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4)
const wchar_t wtext[2] = {(wchar_t)0x10ABCDu};
size_t wtextlen = 1;
const wchar_t invalid[1] = {(wchar_t)0x110000u};
#else
const wchar_t wtext[3] = {(wchar_t)0xDBEAu, (wchar_t)0xDFCDu};
size_t wtextlen = 2;
#endif
PyObject *wide, *utf8;
wide = PyUnicode_FromWideChar(wtext, wtextlen);
if (wide == NULL)
return NULL;
utf8 = PyUnicode_FromString("\xf4\x8a\xaf\x8d");
if (utf8 == NULL) {
Py_DECREF(wide);
return NULL;
}
if (PyUnicode_GET_LENGTH(wide) != PyUnicode_GET_LENGTH(utf8)) {
Py_DECREF(wide);
Py_DECREF(utf8);
return raiseTestError("test_widechar",
"wide string and utf8 string "
"have different length");
}
if (PyUnicode_Compare(wide, utf8)) {
Py_DECREF(wide);
Py_DECREF(utf8);
if (PyErr_Occurred())
return NULL;
return raiseTestError("test_widechar",
"wide string and utf8 string "
"are different");
}
Py_DECREF(wide);
Py_DECREF(utf8);
#if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4)
wide = PyUnicode_FromWideChar(invalid, 1);
if (wide == NULL)
PyErr_Clear();
else
return raiseTestError("test_widechar",
"PyUnicode_FromWideChar(L\"\\U00110000\", 1) didn't fail");
wide = PyUnicode_FromUnicode(invalid, 1);
if (wide == NULL)
PyErr_Clear();
else
return raiseTestError("test_widechar",
"PyUnicode_FromUnicode(L\"\\U00110000\", 1) didn't fail");
wide = PyUnicode_FromUnicode(NULL, 1);
if (wide == NULL)
return NULL;
PyUnicode_AS_UNICODE(wide)[0] = invalid[0];
if (_PyUnicode_Ready(wide) < 0) {
Py_DECREF(wide);
PyErr_Clear();
}
else {
Py_DECREF(wide);
return raiseTestError("test_widechar",
"PyUnicode_Ready() didn't fail");
}
#endif
Py_RETURN_NONE;
}
static PyObject *
unicode_aswidechar(PyObject *self, PyObject *args)
{
PyObject *unicode, *result;
Py_ssize_t buflen, size;
wchar_t *buffer;
if (!PyArg_ParseTuple(args, "Un", &unicode, &buflen))
return NULL;
buffer = PyMem_New(wchar_t, buflen);
if (buffer == NULL)
return PyErr_NoMemory();
size = PyUnicode_AsWideChar(unicode, buffer, buflen);
if (size == -1) {
PyMem_Free(buffer);
return NULL;
}
if (size < buflen)
buflen = size + 1;
else
buflen = size;
result = PyUnicode_FromWideChar(buffer, buflen);
PyMem_Free(buffer);
if (result == NULL)
return NULL;
return Py_BuildValue("(Nn)", result, size);
}
static PyObject *
unicode_aswidecharstring(PyObject *self, PyObject *args)
{
PyObject *unicode, *result;
Py_ssize_t size;
wchar_t *buffer;
if (!PyArg_ParseTuple(args, "U", &unicode))
return NULL;
buffer = PyUnicode_AsWideCharString(unicode, &size);
if (buffer == NULL)
return NULL;
result = PyUnicode_FromWideChar(buffer, size + 1);
PyMem_Free(buffer);
if (result == NULL)
return NULL;
return Py_BuildValue("(Nn)", result, size);
}
static PyObject *
unicode_asucs4(PyObject *self, PyObject *args)
{
PyObject *unicode, *result;
Py_UCS4 *buffer;
int copy_null;
Py_ssize_t str_len, buf_len;
if (!PyArg_ParseTuple(args, "Unp:unicode_asucs4", &unicode, &str_len, ©_null)) {
return NULL;
}
buf_len = str_len + 1;
buffer = PyMem_NEW(Py_UCS4, buf_len);
if (buffer == NULL) {
return PyErr_NoMemory();
}
bzero(buffer, sizeof(Py_UCS4)*buf_len);
buffer[str_len] = 0xffffU;
if (!PyUnicode_AsUCS4(unicode, buffer, buf_len, copy_null)) {
PyMem_FREE(buffer);
return NULL;
}
result = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, buffer, buf_len);
PyMem_FREE(buffer);
return result;
}
static PyObject *
unicode_copycharacters(PyObject *self, PyObject *args)
{
PyObject *from, *to, *to_copy;
Py_ssize_t from_start, to_start, how_many, copied;
if (!PyArg_ParseTuple(args, "UnOnn:unicode_copycharacters", &to, &to_start,
&from, &from_start, &how_many)) {
return NULL;
}
if (PyUnicode_READY(to) < 0) {
return NULL;
}
if (!(to_copy = PyUnicode_New(PyUnicode_GET_LENGTH(to),
PyUnicode_MAX_CHAR_VALUE(to)))) {
return NULL;
}
if (PyUnicode_Fill(to_copy, 0, PyUnicode_GET_LENGTH(to_copy), 0U) < 0) {
Py_DECREF(to_copy);
return NULL;
}
if ((copied = PyUnicode_CopyCharacters(to_copy, to_start, from,
from_start, how_many)) < 0) {
Py_DECREF(to_copy);
return NULL;
}
return Py_BuildValue("(Nn)", to_copy, copied);
}
static PyObject *
unicode_encodedecimal(PyObject *self, PyObject *args)
{
Py_UNICODE *unicode;
Py_ssize_t length;
char *errors = NULL;
PyObject *decimal;
Py_ssize_t decimal_length, new_length;
int res;
if (!PyArg_ParseTuple(args, "u#|s", &unicode, &length, &errors))
return NULL;
decimal_length = length * 7; /* len('€') */
decimal = PyBytes_FromStringAndSize(NULL, decimal_length);
if (decimal == NULL)
return NULL;
res = PyUnicode_EncodeDecimal(unicode, length,
PyBytes_AS_STRING(decimal),
errors);
if (res < 0) {
Py_DECREF(decimal);
return NULL;
}
new_length = strlen(PyBytes_AS_STRING(decimal));
assert(new_length <= decimal_length);
res = _PyBytes_Resize(&decimal, new_length);
if (res < 0)
return NULL;
return decimal;
}
static PyObject *
unicode_transformdecimaltoascii(PyObject *self, PyObject *args)
{
Py_UNICODE *unicode;
Py_ssize_t length;
if (!PyArg_ParseTuple(args, "u#|s", &unicode, &length))
return NULL;
return PyUnicode_TransformDecimalToASCII(unicode, length);
}
static PyObject *
unicode_legacy_string(PyObject *self, PyObject *args)
{
Py_UNICODE *data;
Py_ssize_t len;
PyObject *u;
if (!PyArg_ParseTuple(args, "u#", &data, &len))
return NULL;
u = PyUnicode_FromUnicode(NULL, len);
if (u == NULL)
return NULL;
memcpy(PyUnicode_AS_UNICODE(u), data, len * sizeof(Py_UNICODE));
if (len > 0) { /* The empty string is always ready. */
assert(!PyUnicode_IS_READY(u));
}
return u;
}
static PyObject *
getargs_w_star(PyObject *self, PyObject *args)
{
Py_buffer buffer;
PyObject *result;
char *str;
if (!PyArg_ParseTuple(args, "w*:getargs_w_star", &buffer))
return NULL;
if (2 <= buffer.len) {
str = buffer.buf;
str[0] = '[';
str[buffer.len-1] = ']';
}
result = PyBytes_FromStringAndSize(buffer.buf, buffer.len);
PyBuffer_Release(&buffer);
return result;
}
static PyObject *
test_empty_argparse(PyObject *self)
{
/* Test that formats can begin with '|'. See issue #4720. */
PyObject *tuple, *dict = NULL;
static char *kwlist[] = {NULL};
int result;
tuple = PyTuple_New(0);
if (!tuple)
return NULL;
if (!(result = PyArg_ParseTuple(tuple, "|:test_empty_argparse"))) {
goto done;
}
dict = PyDict_New();
if (!dict)
goto done;
result = PyArg_ParseTupleAndKeywords(tuple, dict, "|:test_empty_argparse", kwlist);
done:
Py_DECREF(tuple);
Py_XDECREF(dict);
if (!result) {
return NULL;
}
else {
Py_RETURN_NONE;
}
}
static PyObject *
codec_incrementalencoder(PyObject *self, PyObject *args)
{
const char *encoding, *errors = NULL;
if (!PyArg_ParseTuple(args, "s|s:test_incrementalencoder",
&encoding, &errors))
return NULL;
return PyCodec_IncrementalEncoder(encoding, errors);
}
static PyObject *
codec_incrementaldecoder(PyObject *self, PyObject *args)
{
const char *encoding, *errors = NULL;
if (!PyArg_ParseTuple(args, "s|s:test_incrementaldecoder",
&encoding, &errors))
return NULL;
return PyCodec_IncrementalDecoder(encoding, errors);
}
/* Simple test of _PyLong_NumBits and _PyLong_Sign. */
static PyObject *
test_long_numbits(PyObject *self)
{
struct triple {
long input;
size_t nbits;
int sign;
} testcases[] = {{0, 0, 0},
{1L, 1, 1},
{-1L, 1, -1},
{2L, 2, 1},
{-2L, 2, -1},
{3L, 2, 1},
{-3L, 2, -1},
{4L, 3, 1},
{-4L, 3, -1},
{0x7fffL, 15, 1}, /* one Python int digit */
{-0x7fffL, 15, -1},
{0xffffL, 16, 1},
{-0xffffL, 16, -1},
{0xfffffffL, 28, 1},
{-0xfffffffL, 28, -1}};
size_t i;
for (i = 0; i < Py_ARRAY_LENGTH(testcases); ++i) {
size_t nbits;
int sign;
PyObject *plong;
plong = PyLong_FromLong(testcases[i].input);
if (plong == NULL)
return NULL;
nbits = _PyLong_NumBits(plong);
sign = _PyLong_Sign(plong);
Py_DECREF(plong);
if (nbits != testcases[i].nbits)
return raiseTestError("test_long_numbits",
"wrong result for _PyLong_NumBits");
if (sign != testcases[i].sign)
return raiseTestError("test_long_numbits",
"wrong result for _PyLong_Sign");
}
Py_INCREF(Py_None);
return Py_None;
}
/* Example passing NULLs to PyObject_Str(NULL). */
static PyObject *
test_null_strings(PyObject *self)
{
PyObject *o1 = PyObject_Str(NULL), *o2 = PyObject_Str(NULL);
PyObject *tuple = PyTuple_Pack(2, o1, o2);
Py_XDECREF(o1);
Py_XDECREF(o2);
return tuple;
}
static PyObject *
raise_exception(PyObject *self, PyObject *args)
{
PyObject *exc;
PyObject *exc_args, *v;
int num_args, i;
if (!PyArg_ParseTuple(args, "Oi:raise_exception",
&exc, &num_args))
return NULL;
exc_args = PyTuple_New(num_args);
if (exc_args == NULL)
return NULL;
for (i = 0; i < num_args; ++i) {
v = PyLong_FromLong(i);
if (v == NULL) {
Py_DECREF(exc_args);
return NULL;
}
PyTuple_SET_ITEM(exc_args, i, v);
}
PyErr_SetObject(exc, exc_args);
Py_DECREF(exc_args);
return NULL;
}
static PyObject *
set_errno(PyObject *self, PyObject *args)
{
int new_errno;
if (!PyArg_ParseTuple(args, "i:set_errno", &new_errno))
return NULL;
errno = new_errno;
Py_RETURN_NONE;
}
static PyObject *
test_set_exc_info(PyObject *self, PyObject *args)
{
PyObject *orig_exc;
PyObject *new_type, *new_value, *new_tb;
PyObject *type, *value, *tb;
if (!PyArg_ParseTuple(args, "OOO:test_set_exc_info",
&new_type, &new_value, &new_tb))
return NULL;
PyErr_GetExcInfo(&type, &value, &tb);
Py_INCREF(new_type);
Py_INCREF(new_value);
Py_INCREF(new_tb);
PyErr_SetExcInfo(new_type, new_value, new_tb);
orig_exc = PyTuple_Pack(3, type ? type : Py_None, value ? value : Py_None, tb ? tb : Py_None);
Py_XDECREF(type);
Py_XDECREF(value);
Py_XDECREF(tb);
return orig_exc;
}
static int test_run_counter = 0;
static PyObject *
test_datetime_capi(PyObject *self, PyObject *args) {
if (PyDateTimeAPI) {
if (test_run_counter) {
/* Probably regrtest.py -R */
Py_RETURN_NONE;
}
else {
PyErr_SetString(PyExc_AssertionError,
"PyDateTime_CAPI somehow initialized");
return NULL;
}
}
test_run_counter++;
PyDateTime_IMPORT;
if (PyDateTimeAPI)
Py_RETURN_NONE;
else
return NULL;
}
#ifdef WITH_THREAD
/* test_thread_state spawns a thread of its own, and that thread releases
* `thread_done` when it's finished. The driver code has to know when the
* thread finishes, because the thread uses a PyObject (the callable) that
* may go away when the driver finishes. The former lack of this explicit
* synchronization caused rare segfaults, so rare that they were seen only
* on a Mac buildbot (although they were possible on any box).
*/
static PyThread_type_lock thread_done = NULL;
static int
_make_call(void *callable)
{
PyObject *rc;
int success;
PyGILState_STATE s = PyGILState_Ensure();
rc = _PyObject_CallNoArg((PyObject *)callable);
success = (rc != NULL);
Py_XDECREF(rc);
PyGILState_Release(s);
return success;
}
/* Same thing, but releases `thread_done` when it returns. This variant
* should be called only from threads spawned by test_thread_state().
*/
static void
_make_call_from_thread(void *callable)
{
_make_call(callable);
PyThread_release_lock(thread_done);
}
static PyObject *
test_thread_state(PyObject *self, PyObject *args)
{
PyObject *fn;
int success = 1;
if (!PyArg_ParseTuple(args, "O:test_thread_state", &fn))
return NULL;
if (!PyCallable_Check(fn)) {
PyErr_Format(PyExc_TypeError, "'%s' object is not callable",
fn->ob_type->tp_name);
return NULL;
}
/* Ensure Python is set up for threading */
PyEval_InitThreads();
thread_done = PyThread_allocate_lock();
if (thread_done == NULL)
return PyErr_NoMemory();
PyThread_acquire_lock(thread_done, 1);
/* Start a new thread with our callback. */
PyThread_start_new_thread(_make_call_from_thread, fn);
/* Make the callback with the thread lock held by this thread */
success &= _make_call(fn);
/* Do it all again, but this time with the thread-lock released */
Py_BEGIN_ALLOW_THREADS
success &= _make_call(fn);
PyThread_acquire_lock(thread_done, 1); /* wait for thread to finish */
Py_END_ALLOW_THREADS
/* And once more with and without a thread
XXX - should use a lock and work out exactly what we are trying
to test <wink>
*/
Py_BEGIN_ALLOW_THREADS
PyThread_start_new_thread(_make_call_from_thread, fn);
success &= _make_call(fn);
PyThread_acquire_lock(thread_done, 1); /* wait for thread to finish */
Py_END_ALLOW_THREADS
/* Release lock we acquired above. This is required on HP-UX. */
PyThread_release_lock(thread_done);
PyThread_free_lock(thread_done);
if (!success)
return NULL;
Py_RETURN_NONE;
}
/* test Py_AddPendingCalls using threads */
static int _pending_callback(void *arg)
{
/* we assume the argument is callable object to which we own a reference */
PyObject *callable = (PyObject *)arg;
PyObject *r = PyObject_CallObject(callable, NULL);
Py_DECREF(callable);
Py_XDECREF(r);
return r != NULL ? 0 : -1;
}
/* The following requests n callbacks to _pending_callback. It can be
* run from any python thread.
*/
static PyObject *
pending_threadfunc(PyObject *self, PyObject *arg)
{
PyObject *callable;
int r;
if (PyArg_ParseTuple(arg, "O", &callable) == 0)
return NULL;
/* create the reference for the callbackwhile we hold the lock */
Py_INCREF(callable);
Py_BEGIN_ALLOW_THREADS
r = Py_AddPendingCall(&_pending_callback, callable);
Py_END_ALLOW_THREADS
if (r<0) {
Py_DECREF(callable); /* unsuccessful add, destroy the extra reference */
Py_INCREF(Py_False);
return Py_False;
}
Py_INCREF(Py_True);
return Py_True;
}
#endif
/* Some tests of PyUnicode_FromFormat(). This needs more tests. */
static PyObject *
test_string_from_format(PyObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *result;
char *msg;
#define CHECK_1_FORMAT(FORMAT, TYPE) \
result = PyUnicode_FromFormat(FORMAT, (TYPE)1); \
if (result == NULL) \
return NULL; \
if (!_PyUnicode_EqualToASCIIString(result, "1")) { \
msg = FORMAT " failed at 1"; \
goto Fail; \
} \
Py_DECREF(result)
CHECK_1_FORMAT("%d", int);
CHECK_1_FORMAT("%ld", long);
/* The z width modifier was added in Python 2.5. */
CHECK_1_FORMAT("%zd", Py_ssize_t);
/* The u type code was added in Python 2.5. */
CHECK_1_FORMAT("%u", unsigned int);
CHECK_1_FORMAT("%lu", unsigned long);
CHECK_1_FORMAT("%zu", size_t);
/* "%lld" and "%llu" support added in Python 2.7. */
CHECK_1_FORMAT("%llu", unsigned long long);
CHECK_1_FORMAT("%lld", long long);
Py_RETURN_NONE;
Fail:
Py_XDECREF(result);
return raiseTestError("test_string_from_format", msg);
#undef CHECK_1_FORMAT
}
static PyObject *
test_unicode_compare_with_ascii(PyObject *self) {
PyObject *py_s = PyUnicode_FromStringAndSize("str\0", 4);
int result;
if (py_s == NULL)
return NULL;
result = PyUnicode_CompareWithASCIIString(py_s, "str");
Py_DECREF(py_s);
if (!result) {
PyErr_SetString(TestError, "Python string ending in NULL "
"should not compare equal to c string.");
return NULL;
}
Py_RETURN_NONE;
}
/* This is here to provide a docstring for test_descr. */
static PyObject *
test_with_docstring(PyObject *self)
{
Py_RETURN_NONE;
}
/* Test PyOS_string_to_double. */
static PyObject *
test_string_to_double(PyObject *self) {
double result;
char *msg;
#define CHECK_STRING(STR, expected) \
result = PyOS_string_to_double(STR, NULL, NULL); \
if (result == -1.0 && PyErr_Occurred()) \
return NULL; \
if (result != (double)expected) { \
msg = "conversion of " STR " to float failed"; \
goto fail; \
}
#define CHECK_INVALID(STR) \
result = PyOS_string_to_double(STR, NULL, NULL); \
if (result == -1.0 && PyErr_Occurred()) { \
if (PyErr_ExceptionMatches(PyExc_ValueError)) \
PyErr_Clear(); \
else \
return NULL; \
} \
else { \
msg = "conversion of " STR " didn't raise ValueError"; \
goto fail; \
}
CHECK_STRING("0.1", 0.1);
CHECK_STRING("1.234", 1.234);
CHECK_STRING("-1.35", -1.35);
CHECK_STRING(".1e01", 1.0);
CHECK_STRING("2.e-2", 0.02);
CHECK_INVALID(" 0.1");
CHECK_INVALID("\t\n-3");
CHECK_INVALID(".123 ");
CHECK_INVALID("3\n");
CHECK_INVALID("123abc");
Py_RETURN_NONE;
fail:
return raiseTestError("test_string_to_double", msg);
#undef CHECK_STRING
#undef CHECK_INVALID
}
/* Coverage testing of capsule objects. */
static const char *capsule_name = "capsule name";
static char *capsule_pointer = "capsule pointer";
static char *capsule_context = "capsule context";
static const char *capsule_error = NULL;
static int
capsule_destructor_call_count = 0;
static void
capsule_destructor(PyObject *o) {
capsule_destructor_call_count++;
if (PyCapsule_GetContext(o) != capsule_context) {
capsule_error = "context did not match in destructor!";
} else if (PyCapsule_GetDestructor(o) != capsule_destructor) {
capsule_error = "destructor did not match in destructor! (woah!)";
} else if (PyCapsule_GetName(o) != capsule_name) {
capsule_error = "name did not match in destructor!";
} else if (PyCapsule_GetPointer(o, capsule_name) != capsule_pointer) {
capsule_error = "pointer did not match in destructor!";
}
}
typedef struct {
char *name;
char *module;
char *attribute;
} known_capsule;
static PyObject *
test_capsule(PyObject *self, PyObject *Py_UNUSED(ignored))
{
PyObject *object;
const char *error = NULL;
void *pointer;
void *pointer2;
known_capsule known_capsules[] = {
#define KNOWN_CAPSULE(module, name) { module "." name, module, name }
KNOWN_CAPSULE("_socket", "CAPI"),
KNOWN_CAPSULE("_curses", "_C_API"),
KNOWN_CAPSULE("datetime", "datetime_CAPI"),
{ NULL, NULL },
};
known_capsule *known = &known_capsules[0];
#define FAIL(x) { error = (x); goto exit; }
#define CHECK_DESTRUCTOR \
if (capsule_error) { \
FAIL(capsule_error); \
} \
else if (!capsule_destructor_call_count) { \
FAIL("destructor not called!"); \
} \
capsule_destructor_call_count = 0; \
object = PyCapsule_New(capsule_pointer, capsule_name, capsule_destructor);
PyCapsule_SetContext(object, capsule_context);
capsule_destructor(object);
CHECK_DESTRUCTOR;
Py_DECREF(object);
CHECK_DESTRUCTOR;
object = PyCapsule_New(known, "ignored", NULL);
PyCapsule_SetPointer(object, capsule_pointer);
PyCapsule_SetName(object, capsule_name);
PyCapsule_SetDestructor(object, capsule_destructor);
PyCapsule_SetContext(object, capsule_context);
capsule_destructor(object);
CHECK_DESTRUCTOR;
/* intentionally access using the wrong name */
pointer2 = PyCapsule_GetPointer(object, "the wrong name");
if (!PyErr_Occurred()) {
FAIL("PyCapsule_GetPointer should have failed but did not!");
}
PyErr_Clear();
if (pointer2) {
if (pointer2 == capsule_pointer) {
FAIL("PyCapsule_GetPointer should not have"
" returned the internal pointer!");
} else {
FAIL("PyCapsule_GetPointer should have "
"returned NULL pointer but did not!");
}
}
PyCapsule_SetDestructor(object, NULL);
Py_DECREF(object);
if (capsule_destructor_call_count) {
FAIL("destructor called when it should not have been!");
}
for (known = &known_capsules[0]; known->module != NULL; known++) {
/* yeah, ordinarily I wouldn't do this either,
but it's fine for this test harness.
*/
static char buffer[256];
#undef FAIL
#define FAIL(x) \
{ \
sprintf(buffer, "%s module: \"%s\" attribute: \"%s\"", \
x, known->module, known->attribute); \
error = buffer; \
goto exit; \
} \
PyObject *module = PyImport_ImportModule(known->module);
if (module) {
pointer = PyCapsule_Import(known->name, 0);
if (!pointer) {
Py_DECREF(module);
FAIL("PyCapsule_GetPointer returned NULL unexpectedly!");
}
object = PyObject_GetAttrString(module, known->attribute);
if (!object) {
Py_DECREF(module);
return NULL;
}
pointer2 = PyCapsule_GetPointer(object,
"weebles wobble but they don't fall down");
if (!PyErr_Occurred()) {
Py_DECREF(object);
Py_DECREF(module);
FAIL("PyCapsule_GetPointer should have failed but did not!");
}
PyErr_Clear();
if (pointer2) {
Py_DECREF(module);
Py_DECREF(object);
if (pointer2 == pointer) {
FAIL("PyCapsule_GetPointer should not have"
" returned its internal pointer!");
} else {
FAIL("PyCapsule_GetPointer should have"
" returned NULL pointer but did not!");
}
}
Py_DECREF(object);
Py_DECREF(module);
}
else
PyErr_Clear();
}
exit:
if (error) {
return raiseTestError("test_capsule", error);
}
Py_RETURN_NONE;
#undef FAIL
}
#ifdef HAVE_GETTIMEOFDAY
/* Profiling of integer performance */
static void print_delta(int test, struct timeval *s, struct timeval *e)
{
e->tv_sec -= s->tv_sec;
e->tv_usec -= s->tv_usec;
if (e->tv_usec < 0) {
e->tv_sec -=1;
e->tv_usec += 1000000;
}
printf("Test %d: %d.%06ds\n", test, (int)e->tv_sec, (int)e->tv_usec);
}
static PyObject *
profile_int(PyObject *self, PyObject* args)
{
int i, k;
struct timeval start, stop;
PyObject *single, **multiple, *op1, *result;
/* Test 1: Allocate and immediately deallocate
many small integers */
gettimeofday(&start, NULL);
for(k=0; k < 20000; k++)
for(i=0; i < 1000; i++) {
single = PyLong_FromLong(i);
Py_DECREF(single);
}
gettimeofday(&stop, NULL);
print_delta(1, &start, &stop);
/* Test 2: Allocate and immediately deallocate
many large integers */
gettimeofday(&start, NULL);
for(k=0; k < 20000; k++)
for(i=0; i < 1000; i++) {
single = PyLong_FromLong(i+1000000);
Py_DECREF(single);
}
gettimeofday(&stop, NULL);
print_delta(2, &start, &stop);
/* Test 3: Allocate a few integers, then release
them all simultaneously. */
multiple = malloc(sizeof(PyObject*) * 1000);
if (multiple == NULL)
return PyErr_NoMemory();
gettimeofday(&start, NULL);
for(k=0; k < 20000; k++) {
for(i=0; i < 1000; i++) {
multiple[i] = PyLong_FromLong(i+1000000);
}
for(i=0; i < 1000; i++) {
Py_DECREF(multiple[i]);
}
}
gettimeofday(&stop, NULL);
print_delta(3, &start, &stop);
free(multiple);
/* Test 4: Allocate many integers, then release
them all simultaneously. */
multiple = malloc(sizeof(PyObject*) * 1000000);
if (multiple == NULL)
return PyErr_NoMemory();
gettimeofday(&start, NULL);
for(k=0; k < 20; k++) {
for(i=0; i < 1000000; i++) {
multiple[i] = PyLong_FromLong(i+1000000);
}
for(i=0; i < 1000000; i++) {
Py_DECREF(multiple[i]);
}
}
gettimeofday(&stop, NULL);
print_delta(4, &start, &stop);
free(multiple);
/* Test 5: Allocate many integers < 32000 */
multiple = malloc(sizeof(PyObject*) * 1000000);
if (multiple == NULL)
return PyErr_NoMemory();
gettimeofday(&start, NULL);
for(k=0; k < 10; k++) {
for(i=0; i < 1000000; i++) {
multiple[i] = PyLong_FromLong(i+1000);
}
for(i=0; i < 1000000; i++) {
Py_DECREF(multiple[i]);
}
}
gettimeofday(&stop, NULL);
print_delta(5, &start, &stop);
free(multiple);
/* Test 6: Perform small int addition */
op1 = PyLong_FromLong(1);
gettimeofday(&start, NULL);
for(i=0; i < 10000000; i++) {
result = PyNumber_Add(op1, op1);
Py_DECREF(result);
}
gettimeofday(&stop, NULL);
Py_DECREF(op1);
print_delta(6, &start, &stop);
/* Test 7: Perform medium int addition */
op1 = PyLong_FromLong(1000);
if (op1 == NULL)
return NULL;
gettimeofday(&start, NULL);
for(i=0; i < 10000000; i++) {
result = PyNumber_Add(op1, op1);
Py_XDECREF(result);
}
gettimeofday(&stop, NULL);
Py_DECREF(op1);
print_delta(7, &start, &stop);
Py_INCREF(Py_None);
return Py_None;
}
#endif
/* To test the format of tracebacks as printed out. */
static PyObject *
traceback_print(PyObject *self, PyObject *args)
{
PyObject *file;
PyObject *traceback;
int result;
if (!PyArg_ParseTuple(args, "OO:traceback_print",
&traceback, &file))
return NULL;
result = PyTraceBack_Print(traceback, file);
if (result < 0)
return NULL;
Py_RETURN_NONE;
}
/* To test the format of exceptions as printed out. */
static PyObject *
exception_print(PyObject *self, PyObject *args)
{
PyObject *value;
PyObject *tb;
if (!PyArg_ParseTuple(args, "O:exception_print",
&value))
return NULL;
if (!PyExceptionInstance_Check(value)) {
PyErr_Format(PyExc_TypeError, "an exception instance is required");
return NULL;
}
tb = PyException_GetTraceback(value);
PyErr_Display((PyObject *) Py_TYPE(value), value, tb);
Py_XDECREF(tb);
Py_RETURN_NONE;
}
/* reliably raise a MemoryError */
static PyObject *
raise_memoryerror(PyObject *self)
{
PyErr_NoMemory();
return NULL;
}
/* Issue 6012 */
static PyObject *str1, *str2;
static int
failing_converter(PyObject *obj, void *arg)
{
/* Clone str1, then let the conversion fail. */
assert(str1);
str2 = str1;
Py_INCREF(str2);
return 0;
}
static PyObject*
argparsing(PyObject *o, PyObject *args)
{
PyObject *res;
str1 = str2 = NULL;
if (!PyArg_ParseTuple(args, "O&O&",
PyUnicode_FSConverter, &str1,
failing_converter, &str2)) {
if (!str2)
/* argument converter not called? */
return NULL;
/* Should be 1 */
res = PyLong_FromSsize_t(Py_REFCNT(str2));
Py_DECREF(str2);
PyErr_Clear();
return res;
}
Py_RETURN_NONE;
}
/* To test that the result of PyCode_NewEmpty has the right members. */
static PyObject *
code_newempty(PyObject *self, PyObject *args)
{
const char *filename;
const char *funcname;
int firstlineno;
if (!PyArg_ParseTuple(args, "ssi:code_newempty",
&filename, &funcname, &firstlineno))
return NULL;
return (PyObject *)PyCode_NewEmpty(filename, funcname, firstlineno);
}
/* Test PyErr_NewExceptionWithDoc (also exercise PyErr_NewException).
Run via Lib/test/test_exceptions.py */
static PyObject *
make_exception_with_doc(PyObject *self, PyObject *args, PyObject *kwargs)
{
const char *name;
const char *doc = NULL;
PyObject *base = NULL;
PyObject *dict = NULL;
static char *kwlist[] = {"name", "doc", "base", "dict", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
"s|sOO:make_exception_with_doc", kwlist,
&name, &doc, &base, &dict))
return NULL;
return PyErr_NewExceptionWithDoc(name, doc, base, dict);
}
static PyObject *
make_memoryview_from_NULL_pointer(PyObject *self)
{
Py_buffer info;
if (PyBuffer_FillInfo(&info, NULL, NULL, 1, 1, PyBUF_FULL_RO) < 0)
return NULL;
return PyMemoryView_FromBuffer(&info);
}
static PyObject *
test_from_contiguous(PyObject* self, PyObject *Py_UNUSED(ignored))
{
int data[9] = {-1,-1,-1,-1,-1,-1,-1,-1,-1};
int init[5] = {0, 1, 2, 3, 4};
Py_ssize_t itemsize = sizeof(int);
Py_ssize_t shape = 5;
Py_ssize_t strides = 2 * itemsize;
Py_buffer view = {
data,
NULL,
5 * itemsize,
itemsize,
1,
1,
NULL,
&shape,
&strides,
NULL,
NULL
};
int *ptr;
int i;
PyBuffer_FromContiguous(&view, init, view.len, 'C');
ptr = view.buf;
for (i = 0; i < 5; i++) {
if (ptr[2*i] != i) {
PyErr_SetString(TestError,
"test_from_contiguous: incorrect result");
return NULL;
}
}
view.buf = &data[8];
view.strides[0] = -2 * itemsize;
PyBuffer_FromContiguous(&view, init, view.len, 'C');
ptr = view.buf;
for (i = 0; i < 5; i++) {
if (*(ptr-2*i) != i) {
PyErr_SetString(TestError,
"test_from_contiguous: incorrect result");
return NULL;
}
}
Py_RETURN_NONE;
}
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__GNUC__)
extern PyTypeObject _PyBytesIOBuffer_Type;
static PyObject *
test_pep3118_obsolete_write_locks(PyObject* self, PyObject *Py_UNUSED(ignored))
{
PyTypeObject *type = &_PyBytesIOBuffer_Type;
PyObject *b;
char *dummy[1];
int ret, match;
/* PyBuffer_FillInfo() */
ret = PyBuffer_FillInfo(NULL, NULL, dummy, 1, 0, PyBUF_SIMPLE);
match = PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_BufferError);
PyErr_Clear();
if (ret != -1 || match == 0)
goto error;
/* bytesiobuf_getbuffer() */
b = type->tp_alloc(type, 0);
if (b == NULL) {
return NULL;
}
ret = PyObject_GetBuffer(b, NULL, PyBUF_SIMPLE);
Py_DECREF(b);
match = PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_BufferError);
PyErr_Clear();
if (ret != -1 || match == 0)
goto error;
Py_RETURN_NONE;
error:
PyErr_SetString(TestError,
"test_pep3118_obsolete_write_locks: failure");
return NULL;
}
#endif
/* This tests functions that historically supported write locks. It is
wrong to call getbuffer() with view==NULL and a compliant getbufferproc
is entitled to segfault in that case. */
static PyObject *
getbuffer_with_null_view(PyObject* self, PyObject *obj)
{
if (PyObject_GetBuffer(obj, NULL, PyBUF_SIMPLE) < 0)
return NULL;
Py_RETURN_NONE;
}
/* Test that the fatal error from not having a current thread doesn't
cause an infinite loop. Run via Lib/test/test_capi.py */
static PyObject *
crash_no_current_thread(PyObject *self)
{
Py_BEGIN_ALLOW_THREADS
/* Using PyThreadState_Get() directly allows the test to pass in
!pydebug mode. However, the test only actually tests anything
in pydebug mode, since that's where the infinite loop was in
the first place. */
PyThreadState_Get();
Py_END_ALLOW_THREADS
return NULL;
}
/* To run some code in a sub-interpreter. */
static PyObject *
run_in_subinterp(PyObject *self, PyObject *args)
{
const char *code;
int r;
PyThreadState *substate, *mainstate;
if (!PyArg_ParseTuple(args, "s:run_in_subinterp",
&code))
return NULL;
mainstate = PyThreadState_Get();
PyThreadState_Swap(NULL);
substate = Py_NewInterpreter();
if (substate == NULL) {
/* Since no new thread state was created, there is no exception to
propagate; raise a fresh one after swapping in the old thread
state. */
PyThreadState_Swap(mainstate);
PyErr_SetString(PyExc_RuntimeError, "sub-interpreter creation failed");
return NULL;
}
r = PyRun_SimpleString(code);
Py_EndInterpreter(substate);
PyThreadState_Swap(mainstate);
return PyLong_FromLong(r);
}
static int
check_time_rounding(int round)
{
if (round != _PyTime_ROUND_FLOOR
&& round != _PyTime_ROUND_CEILING
&& round != _PyTime_ROUND_HALF_EVEN
&& round != _PyTime_ROUND_UP) {
PyErr_SetString(PyExc_ValueError, "invalid rounding");
return -1;
}
return 0;
}
static PyObject *
test_pytime_object_to_time_t(PyObject *self, PyObject *args)
{
PyObject *obj;
time_t sec;
int round;
if (!PyArg_ParseTuple(args, "Oi:pytime_object_to_time_t", &obj, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
if (_PyTime_ObjectToTime_t(obj, &sec, round) == -1)
return NULL;
return _PyLong_FromTime_t(sec);
}
static PyObject *
test_pytime_object_to_timeval(PyObject *self, PyObject *args)
{
PyObject *obj;
time_t sec;
long usec;
int round;
if (!PyArg_ParseTuple(args, "Oi:pytime_object_to_timeval", &obj, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
if (_PyTime_ObjectToTimeval(obj, &sec, &usec, round) == -1)
return NULL;
return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), usec);
}
static PyObject *
test_pytime_object_to_timespec(PyObject *self, PyObject *args)
{
PyObject *obj;
time_t sec;
long nsec;
int round;
if (!PyArg_ParseTuple(args, "Oi:pytime_object_to_timespec", &obj, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
if (_PyTime_ObjectToTimespec(obj, &sec, &nsec, round) == -1)
return NULL;
return Py_BuildValue("Nl", _PyLong_FromTime_t(sec), nsec);
}
static void
slot_tp_del(PyObject *self)
{
_Py_IDENTIFIER(__tp_del__);
PyObject *del, *res;
PyObject *error_type, *error_value, *error_traceback;
/* Temporarily resurrect the object. */
assert(self->ob_refcnt == 0);
self->ob_refcnt = 1;
/* Save the current exception, if any. */
PyErr_Fetch(&error_type, &error_value, &error_traceback);
/* Execute __del__ method, if any. */
del = _PyObject_LookupSpecial(self, &PyId___tp_del__);
if (del != NULL) {
res = PyEval_CallObject(del, NULL);
if (res == NULL)
PyErr_WriteUnraisable(del);
else
Py_DECREF(res);
Py_DECREF(del);
}
/* Restore the saved exception. */
PyErr_Restore(error_type, error_value, error_traceback);
/* Undo the temporary resurrection; can't use DECREF here, it would
* cause a recursive call.
*/
assert(self->ob_refcnt > 0);
if (--self->ob_refcnt == 0)
return; /* this is the normal path out */
/* __del__ resurrected it! Make it look like the original Py_DECREF
* never happened.
*/
{
Py_ssize_t refcnt = self->ob_refcnt;
_Py_NewReference(self);
self->ob_refcnt = refcnt;
}
assert(!PyType_IS_GC(Py_TYPE(self)) ||
_Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
/* If Py_REF_DEBUG, _Py_NewReference bumped _Py_RefTotal, so
* we need to undo that. */
_Py_DEC_REFTOTAL;
/* If Py_TRACE_REFS, _Py_NewReference re-added self to the object
* chain, so no more to do there.
* If COUNT_ALLOCS, the original decref bumped tp_frees, and
* _Py_NewReference bumped tp_allocs: both of those need to be
* undone.
*/
#ifdef COUNT_ALLOCS
--Py_TYPE(self)->tp_frees;
--Py_TYPE(self)->tp_allocs;
#endif
}
static PyObject *
with_tp_del(PyObject *self, PyObject *args)
{
PyObject *obj;
PyTypeObject *tp;
if (!PyArg_ParseTuple(args, "O:with_tp_del", &obj))
return NULL;
tp = (PyTypeObject *) obj;
if (!PyType_Check(obj) || !PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) {
PyErr_Format(PyExc_TypeError,
"heap type expected, got %R", obj);
return NULL;
}
tp->tp_del = slot_tp_del;
Py_INCREF(obj);
return obj;
}
static PyMethodDef ml;
static PyObject *
create_cfunction(PyObject *self, PyObject *args)
{
return PyCFunction_NewEx(&ml, self, NULL);
}
static PyMethodDef ml = {
"create_cfunction",
create_cfunction,
METH_NOARGS,
NULL
};
static PyObject *
_test_incref(PyObject *ob)
{
Py_INCREF(ob);
return ob;
}
static PyObject *
test_xincref_doesnt_leak(PyObject *ob)
{
PyObject *obj = PyLong_FromLong(0);
Py_XINCREF(_test_incref(obj));
Py_DECREF(obj);
Py_DECREF(obj);
Py_DECREF(obj);
Py_RETURN_NONE;
}
static PyObject *
test_incref_doesnt_leak(PyObject *ob)
{
PyObject *obj = PyLong_FromLong(0);
Py_INCREF(_test_incref(obj));
Py_DECREF(obj);
Py_DECREF(obj);
Py_DECREF(obj);
Py_RETURN_NONE;
}
static PyObject *
test_xdecref_doesnt_leak(PyObject *ob)
{
Py_XDECREF(PyLong_FromLong(0));
Py_RETURN_NONE;
}
static PyObject *
test_decref_doesnt_leak(PyObject *ob)
{
Py_DECREF(PyLong_FromLong(0));
Py_RETURN_NONE;
}
static PyObject *
test_incref_decref_API(PyObject *ob)
{
PyObject *obj = PyLong_FromLong(0);
Py_IncRef(obj);
Py_DecRef(obj);
Py_DecRef(obj);
Py_RETURN_NONE;
}
static PyObject *
test_pymem_alloc0(PyObject *self)
{
void *ptr;
ptr = PyMem_RawMalloc(0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyMem_RawMalloc(0) returns NULL");
return NULL;
}
PyMem_RawFree(ptr);
ptr = PyMem_RawCalloc(0, 0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyMem_RawCalloc(0, 0) returns NULL");
return NULL;
}
PyMem_RawFree(ptr);
ptr = PyMem_Malloc(0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyMem_Malloc(0) returns NULL");
return NULL;
}
PyMem_Free(ptr);
ptr = PyMem_Calloc(0, 0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyMem_Calloc(0, 0) returns NULL");
return NULL;
}
PyMem_Free(ptr);
ptr = PyObject_Malloc(0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyObject_Malloc(0) returns NULL");
return NULL;
}
PyObject_Free(ptr);
ptr = PyObject_Calloc(0, 0);
if (ptr == NULL) {
PyErr_SetString(PyExc_RuntimeError, "PyObject_Calloc(0, 0) returns NULL");
return NULL;
}
PyObject_Free(ptr);
Py_RETURN_NONE;
}
#if IsModeDbg()
typedef struct {
PyMemAllocatorEx alloc;
size_t malloc_size;
size_t calloc_nelem;
size_t calloc_elsize;
void *realloc_ptr;
size_t realloc_new_size;
void *free_ptr;
} alloc_hook_t;
static void* hook_malloc (void* ctx, size_t size)
{
alloc_hook_t *hook = (alloc_hook_t *)ctx;
hook->malloc_size = size;
return hook->alloc.malloc(hook->alloc.ctx, size);
}
static void* hook_calloc (void* ctx, size_t nelem, size_t elsize)
{
alloc_hook_t *hook = (alloc_hook_t *)ctx;
hook->calloc_nelem = nelem;
hook->calloc_elsize = elsize;
return hook->alloc.calloc(hook->alloc.ctx, nelem, elsize);
}
static void* hook_realloc (void* ctx, void* ptr, size_t new_size)
{
alloc_hook_t *hook = (alloc_hook_t *)ctx;
hook->realloc_ptr = ptr;
hook->realloc_new_size = new_size;
return hook->alloc.realloc(hook->alloc.ctx, ptr, new_size);
}
static void hook_free (void *ctx, void *ptr)
{
alloc_hook_t *hook = (alloc_hook_t *)ctx;
hook->free_ptr = ptr;
hook->alloc.free(hook->alloc.ctx, ptr);
}
static PyObject *
test_setallocators(PyMemAllocatorDomain domain)
{
PyObject *res = NULL;
const char *error_msg;
alloc_hook_t hook;
PyMemAllocatorEx alloc;
size_t size, size2, nelem, elsize;
void *ptr, *ptr2;
bzero(&hook, sizeof(hook));
alloc.ctx = &hook;
alloc.malloc = &hook_malloc;
alloc.calloc = &hook_calloc;
alloc.realloc = &hook_realloc;
alloc.free = &hook_free;
PyMem_GetAllocator(domain, &hook.alloc);
PyMem_SetAllocator(domain, &alloc);
size = 42;
switch(domain)
{
case PYMEM_DOMAIN_RAW: ptr = PyMem_RawMalloc(size); break;
case PYMEM_DOMAIN_MEM: ptr = PyMem_Malloc(size); break;
case PYMEM_DOMAIN_OBJ: ptr = PyObject_Malloc(size); break;
default: ptr = NULL; break;
}
if (ptr == NULL) {
error_msg = "malloc failed";
goto fail;
}
if (hook.malloc_size != size) {
error_msg = "malloc invalid size";
goto fail;
}
size2 = 200;
switch(domain)
{
case PYMEM_DOMAIN_RAW: ptr2 = PyMem_RawRealloc(ptr, size2); break;
case PYMEM_DOMAIN_MEM: ptr2 = PyMem_Realloc(ptr, size2); break;
case PYMEM_DOMAIN_OBJ: ptr2 = PyObject_Realloc(ptr, size2); break;
default: ptr2 = NULL; break;
}
if (ptr2 == NULL) {
error_msg = "realloc failed";
goto fail;
}
if (hook.realloc_ptr != ptr
|| hook.realloc_new_size != size2) {
error_msg = "realloc invalid parameters";
goto fail;
}
switch(domain)
{
case PYMEM_DOMAIN_RAW: PyMem_RawFree(ptr2); break;
case PYMEM_DOMAIN_MEM: PyMem_Free(ptr2); break;
case PYMEM_DOMAIN_OBJ: PyObject_Free(ptr2); break;
}
if (hook.free_ptr != ptr2) {
error_msg = "free invalid pointer";
goto fail;
}
nelem = 2;
elsize = 5;
switch(domain)
{
case PYMEM_DOMAIN_RAW: ptr = PyMem_RawCalloc(nelem, elsize); break;
case PYMEM_DOMAIN_MEM: ptr = PyMem_Calloc(nelem, elsize); break;
case PYMEM_DOMAIN_OBJ: ptr = PyObject_Calloc(nelem, elsize); break;
default: ptr = NULL; break;
}
if (ptr == NULL) {
error_msg = "calloc failed";
goto fail;
}
if (hook.calloc_nelem != nelem || hook.calloc_elsize != elsize) {
error_msg = "calloc invalid nelem or elsize";
goto fail;
}
switch(domain)
{
case PYMEM_DOMAIN_RAW: PyMem_RawFree(ptr); break;
case PYMEM_DOMAIN_MEM: PyMem_Free(ptr); break;
case PYMEM_DOMAIN_OBJ: PyObject_Free(ptr); break;
}
Py_INCREF(Py_None);
res = Py_None;
goto finally;
fail:
PyErr_SetString(PyExc_RuntimeError, error_msg);
finally:
PyMem_SetAllocator(domain, &hook.alloc);
return res;
}
static PyObject *
test_pymem_setrawallocators(PyObject *self)
{
return test_setallocators(PYMEM_DOMAIN_RAW);
}
static PyObject *
test_pymem_setallocators(PyObject *self)
{
return test_setallocators(PYMEM_DOMAIN_MEM);
}
static PyObject *
test_pyobject_setallocators(PyObject *self)
{
return test_setallocators(PYMEM_DOMAIN_OBJ);
}
/* Most part of the following code is inherited from the pyfailmalloc project
* written by Victor Stinner. */
static struct {
int installed;
PyMemAllocatorEx raw;
PyMemAllocatorEx mem;
PyMemAllocatorEx obj;
} FmHook;
static struct {
int start;
int stop;
Py_ssize_t count;
} FmData;
static int
fm_nomemory(void)
{
FmData.count++;
if (FmData.count > FmData.start &&
(FmData.stop <= 0 || FmData.count <= FmData.stop)) {
return 1;
}
return 0;
}
static void *
hook_fmalloc(void *ctx, size_t size)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (fm_nomemory()) {
return NULL;
}
return alloc->malloc(alloc->ctx, size);
}
static void *
hook_fcalloc(void *ctx, size_t nelem, size_t elsize)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (fm_nomemory()) {
return NULL;
}
return alloc->calloc(alloc->ctx, nelem, elsize);
}
static void *
hook_frealloc(void *ctx, void *ptr, size_t new_size)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
if (fm_nomemory()) {
return NULL;
}
return alloc->realloc(alloc->ctx, ptr, new_size);
}
static void
hook_ffree(void *ctx, void *ptr)
{
PyMemAllocatorEx *alloc = (PyMemAllocatorEx *)ctx;
alloc->free(alloc->ctx, ptr);
}
static void
fm_setup_hooks(void)
{
PyMemAllocatorEx alloc;
if (FmHook.installed) {
return;
}
FmHook.installed = 1;
alloc.malloc = hook_fmalloc;
alloc.calloc = hook_fcalloc;
alloc.realloc = hook_frealloc;
alloc.free = hook_ffree;
PyMem_GetAllocator(PYMEM_DOMAIN_RAW, &FmHook.raw);
PyMem_GetAllocator(PYMEM_DOMAIN_MEM, &FmHook.mem);
PyMem_GetAllocator(PYMEM_DOMAIN_OBJ, &FmHook.obj);
alloc.ctx = &FmHook.raw;
PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &alloc);
alloc.ctx = &FmHook.mem;
PyMem_SetAllocator(PYMEM_DOMAIN_MEM, &alloc);
alloc.ctx = &FmHook.obj;
PyMem_SetAllocator(PYMEM_DOMAIN_OBJ, &alloc);
}
static void
fm_remove_hooks(void)
{
if (FmHook.installed) {
FmHook.installed = 0;
PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &FmHook.raw);
PyMem_SetAllocator(PYMEM_DOMAIN_MEM, &FmHook.mem);
PyMem_SetAllocator(PYMEM_DOMAIN_OBJ, &FmHook.obj);
}
}
static PyObject*
set_nomemory(PyObject *self, PyObject *args)
{
/* Memory allocation fails after 'start' allocation requests, and until
* 'stop' allocation requests except when 'stop' is negative or equal
* to 0 (default) in which case allocation failures never stop. */
FmData.count = 0;
FmData.stop = 0;
if (!PyArg_ParseTuple(args, "i|i", &FmData.start, &FmData.stop)) {
return NULL;
}
fm_setup_hooks();
Py_RETURN_NONE;
}
static PyObject*
remove_mem_hooks(PyObject *self)
{
fm_remove_hooks();
Py_RETURN_NONE;
}
#endif
PyDoc_STRVAR(docstring_empty,
""
);
PyDoc_STRVAR(docstring_no_signature,
"This docstring has no signature."
);
PyDoc_STRVAR(docstring_with_invalid_signature,
"docstring_with_invalid_signature($module, /, boo)\n"
"\n"
"This docstring has an invalid signature."
);
PyDoc_STRVAR(docstring_with_invalid_signature2,
"docstring_with_invalid_signature2($module, /, boo)\n"
"\n"
"--\n"
"\n"
"This docstring also has an invalid signature."
);
PyDoc_STRVAR(docstring_with_signature,
"docstring_with_signature($module, /, sig)\n"
"--\n"
"\n"
"This docstring has a valid signature."
);
PyDoc_STRVAR(docstring_with_signature_but_no_doc,
"docstring_with_signature_but_no_doc($module, /, sig)\n"
"--\n"
"\n"
);
PyDoc_STRVAR(docstring_with_signature_and_extra_newlines,
"docstring_with_signature_and_extra_newlines($module, /, parameter)\n"
"--\n"
"\n"
"\n"
"This docstring has a valid signature and some extra newlines."
);
PyDoc_STRVAR(docstring_with_signature_with_defaults,
"docstring_with_signature_with_defaults(module, s='avocado',\n"
" b=b'bytes', d=3.14, i=35, n=None, t=True, f=False,\n"
" local=the_number_three, sys=sys.maxsize,\n"
" exp=sys.maxsize - 1)\n"
"--\n"
"\n"
"\n"
"\n"
"This docstring has a valid signature with parameters,\n"
"and the parameters take defaults of varying types."
);
#ifdef WITH_THREAD
typedef struct {
PyThread_type_lock start_event;
PyThread_type_lock exit_event;
PyObject *callback;
} test_c_thread_t;
static void
temporary_c_thread(void *data)
{
test_c_thread_t *test_c_thread = data;
PyGILState_STATE state;
PyObject *res;
PyThread_release_lock(test_c_thread->start_event);
/* Allocate a Python thread state for this thread */
state = PyGILState_Ensure();
res = _PyObject_CallNoArg(test_c_thread->callback);
Py_CLEAR(test_c_thread->callback);
if (res == NULL) {
PyErr_Print();
}
else {
Py_DECREF(res);
}
/* Destroy the Python thread state for this thread */
PyGILState_Release(state);
PyThread_release_lock(test_c_thread->exit_event);
PyThread_exit_thread();
}
static PyObject *
call_in_temporary_c_thread(PyObject *self, PyObject *callback)
{
PyObject *res = NULL;
test_c_thread_t test_c_thread;
long thread;
PyEval_InitThreads();
test_c_thread.start_event = PyThread_allocate_lock();
test_c_thread.exit_event = PyThread_allocate_lock();
test_c_thread.callback = NULL;
if (!test_c_thread.start_event || !test_c_thread.exit_event) {
PyErr_SetString(PyExc_RuntimeError, "could not allocate lock");
goto exit;
}
Py_INCREF(callback);
test_c_thread.callback = callback;
PyThread_acquire_lock(test_c_thread.start_event, 1);
PyThread_acquire_lock(test_c_thread.exit_event, 1);
thread = PyThread_start_new_thread(temporary_c_thread, &test_c_thread);
if (thread == -1) {
PyErr_SetString(PyExc_RuntimeError, "unable to start the thread");
PyThread_release_lock(test_c_thread.start_event);
PyThread_release_lock(test_c_thread.exit_event);
goto exit;
}
PyThread_acquire_lock(test_c_thread.start_event, 1);
PyThread_release_lock(test_c_thread.start_event);
Py_BEGIN_ALLOW_THREADS
PyThread_acquire_lock(test_c_thread.exit_event, 1);
PyThread_release_lock(test_c_thread.exit_event);
Py_END_ALLOW_THREADS
Py_INCREF(Py_None);
res = Py_None;
exit:
Py_CLEAR(test_c_thread.callback);
if (test_c_thread.start_event)
PyThread_free_lock(test_c_thread.start_event);
if (test_c_thread.exit_event)
PyThread_free_lock(test_c_thread.exit_event);
return res;
}
#endif /* WITH_THREAD */
static PyObject*
test_raise_signal(PyObject* self, PyObject *args)
{
int signum, err;
if (!PyArg_ParseTuple(args, "i:raise_signal", &signum)) {
return NULL;
}
err = raise(signum);
if (err)
return PyErr_SetFromErrno(PyExc_OSError);
if (PyErr_CheckSignals() < 0)
return NULL;
Py_RETURN_NONE;
}
/* marshal */
static PyObject*
pymarshal_write_long_to_file(PyObject* self, PyObject *args)
{
long value;
char *filename;
int version;
FILE *fp;
if (!PyArg_ParseTuple(args, "lsi:pymarshal_write_long_to_file",
&value, &filename, &version))
return NULL;
fp = fopen(filename, "wb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
PyMarshal_WriteLongToFile(value, fp, version);
fclose(fp);
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
static PyObject*
pymarshal_write_object_to_file(PyObject* self, PyObject *args)
{
PyObject *obj;
char *filename;
int version;
FILE *fp;
if (!PyArg_ParseTuple(args, "Osi:pymarshal_write_object_to_file",
&obj, &filename, &version))
return NULL;
fp = fopen(filename, "wb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
PyMarshal_WriteObjectToFile(obj, fp, version);
fclose(fp);
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
static PyObject*
pymarshal_read_short_from_file(PyObject* self, PyObject *args)
{
int value;
long pos;
char *filename;
FILE *fp;
if (!PyArg_ParseTuple(args, "s:pymarshal_read_short_from_file", &filename))
return NULL;
fp = fopen(filename, "rb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
value = PyMarshal_ReadShortFromFile(fp);
pos = ftell(fp);
fclose(fp);
if (PyErr_Occurred())
return NULL;
return Py_BuildValue("il", value, pos);
}
static PyObject*
pymarshal_read_long_from_file(PyObject* self, PyObject *args)
{
long value, pos;
char *filename;
FILE *fp;
if (!PyArg_ParseTuple(args, "s:pymarshal_read_long_from_file", &filename))
return NULL;
fp = fopen(filename, "rb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
value = PyMarshal_ReadLongFromFile(fp);
pos = ftell(fp);
fclose(fp);
if (PyErr_Occurred())
return NULL;
return Py_BuildValue("ll", value, pos);
}
static PyObject*
pymarshal_read_last_object_from_file(PyObject* self, PyObject *args)
{
PyObject *obj;
long pos;
char *filename;
FILE *fp;
if (!PyArg_ParseTuple(args, "s:pymarshal_read_last_object_from_file", &filename))
return NULL;
fp = fopen(filename, "rb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
obj = PyMarshal_ReadLastObjectFromFile(fp);
pos = ftell(fp);
fclose(fp);
return Py_BuildValue("Nl", obj, pos);
}
static PyObject*
pymarshal_read_object_from_file(PyObject* self, PyObject *args)
{
PyObject *obj;
long pos;
char *filename;
FILE *fp;
if (!PyArg_ParseTuple(args, "s:pymarshal_read_object_from_file", &filename))
return NULL;
fp = fopen(filename, "rb");
if (fp == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
obj = PyMarshal_ReadObjectFromFile(fp);
pos = ftell(fp);
fclose(fp);
return Py_BuildValue("Nl", obj, pos);
}
static PyObject*
return_null_without_error(PyObject *self, PyObject *args)
{
/* invalid call: return NULL without setting an error,
* _Py_CheckFunctionResult() must detect such bug at runtime. */
PyErr_Clear();
return NULL;
}
static PyObject*
return_result_with_error(PyObject *self, PyObject *args)
{
/* invalid call: return a result with an error set,
* _Py_CheckFunctionResult() must detect such bug at runtime. */
PyErr_SetNone(PyExc_ValueError);
Py_RETURN_NONE;
}
static PyObject *
test_pytime_fromseconds(PyObject *self, PyObject *args)
{
int seconds;
_PyTime_t ts;
if (!PyArg_ParseTuple(args, "i", &seconds))
return NULL;
ts = _PyTime_FromSeconds(seconds);
return _PyTime_AsNanosecondsObject(ts);
}
static PyObject *
test_pytime_fromsecondsobject(PyObject *self, PyObject *args)
{
PyObject *obj;
int round;
_PyTime_t ts;
if (!PyArg_ParseTuple(args, "Oi", &obj, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
if (_PyTime_FromSecondsObject(&ts, obj, round) == -1)
return NULL;
return _PyTime_AsNanosecondsObject(ts);
}
static PyObject *
test_pytime_assecondsdouble(PyObject *self, PyObject *args)
{
long long ns;
_PyTime_t ts;
double d;
if (!PyArg_ParseTuple(args, "L", &ns))
return NULL;
ts = _PyTime_FromNanoseconds(ns);
d = _PyTime_AsSecondsDouble(ts);
return PyFloat_FromDouble(d);
}
static PyObject *
test_PyTime_AsTimeval(PyObject *self, PyObject *args)
{
long long ns;
int round;
_PyTime_t t;
struct timeval tv;
PyObject *seconds;
if (!PyArg_ParseTuple(args, "Li", &ns, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
t = _PyTime_FromNanoseconds(ns);
if (_PyTime_AsTimeval(t, &tv, round) < 0)
return NULL;
seconds = PyLong_FromLongLong(tv.tv_sec);
if (seconds == NULL)
return NULL;
return Py_BuildValue("Nl", seconds, tv.tv_usec);
}
#ifdef HAVE_CLOCK_GETTIME
static PyObject *
test_PyTime_AsTimespec(PyObject *self, PyObject *args)
{
long long ns;
_PyTime_t t;
struct timespec ts;
if (!PyArg_ParseTuple(args, "L", &ns))
return NULL;
t = _PyTime_FromNanoseconds(ns);
if (_PyTime_AsTimespec(t, &ts) == -1)
return NULL;
return Py_BuildValue("Nl", _PyLong_FromTime_t(ts.tv_sec), ts.tv_nsec);
}
#endif
static PyObject *
test_PyTime_AsMilliseconds(PyObject *self, PyObject *args)
{
long long ns;
int round;
_PyTime_t t, ms;
if (!PyArg_ParseTuple(args, "Li", &ns, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
t = _PyTime_FromNanoseconds(ns);
ms = _PyTime_AsMilliseconds(t, round);
/* This conversion rely on the fact that _PyTime_t is a number of
nanoseconds */
return _PyTime_AsNanosecondsObject(ms);
}
static PyObject *
test_PyTime_AsMicroseconds(PyObject *self, PyObject *args)
{
long long ns;
int round;
_PyTime_t t, ms;
if (!PyArg_ParseTuple(args, "Li", &ns, &round))
return NULL;
if (check_time_rounding(round) < 0)
return NULL;
t = _PyTime_FromNanoseconds(ns);
ms = _PyTime_AsMicroseconds(t, round);
/* This conversion rely on the fact that _PyTime_t is a number of
nanoseconds */
return _PyTime_AsNanosecondsObject(ms);
}
#if IsModeDbg()
static PyObject*
get_recursion_depth(PyObject *self, PyObject *args)
{
PyThreadState *tstate = PyThreadState_GET();
/* subtract one to ignore the frame of the get_recursion_depth() call */
return PyLong_FromLong(tstate->recursion_depth - 1);
}
#endif
static PyObject*
pymem_buffer_overflow(PyObject *self, PyObject *args)
{
char *buffer;
/* Deliberate buffer overflow to check that PyMem_Free() detects
the overflow when debug hooks are installed. */
buffer = PyMem_Malloc(16);
buffer[16] = 'x';
PyMem_Free(buffer);
Py_RETURN_NONE;
}
static PyObject*
pymem_api_misuse(PyObject *self, PyObject *args)
{
char *buffer;
/* Deliberate misusage of Python allocators:
allococate with PyMem but release with PyMem_Raw. */
buffer = PyMem_Malloc(16);
PyMem_RawFree(buffer);
Py_RETURN_NONE;
}
static PyObject*
pymem_malloc_without_gil(PyObject *self, PyObject *args)
{
char *buffer;
/* Deliberate bug to test debug hooks on Python memory allocators:
call PyMem_Malloc() without holding the GIL */
Py_BEGIN_ALLOW_THREADS
buffer = PyMem_Malloc(10);
Py_END_ALLOW_THREADS
PyMem_Free(buffer);
Py_RETURN_NONE;
}
static PyObject*
pyobject_malloc_without_gil(PyObject *self, PyObject *args)
{
char *buffer;
/* Deliberate bug to test debug hooks on Python memory allocators:
call PyObject_Malloc() without holding the GIL */
Py_BEGIN_ALLOW_THREADS
buffer = PyObject_Malloc(10);
Py_END_ALLOW_THREADS
PyObject_Free(buffer);
Py_RETURN_NONE;
}
static PyObject *
tracemalloc_track(PyObject *self, PyObject *args)
{
unsigned int domain;
PyObject *ptr_obj;
void *ptr;
Py_ssize_t size;
int release_gil = 0;
int res;
if (!PyArg_ParseTuple(args, "IOn|i", &domain, &ptr_obj, &size, &release_gil))
return NULL;
ptr = PyLong_AsVoidPtr(ptr_obj);
if (PyErr_Occurred())
return NULL;
if (release_gil) {
Py_BEGIN_ALLOW_THREADS
res = _PyTraceMalloc_Track(domain, (uintptr_t)ptr, size);
Py_END_ALLOW_THREADS
}
else {
res = _PyTraceMalloc_Track(domain, (uintptr_t)ptr, size);
}
if (res < 0) {
PyErr_SetString(PyExc_RuntimeError, "_PyTraceMalloc_Track error");
return NULL;
}
Py_RETURN_NONE;
}
static PyObject *
tracemalloc_untrack(PyObject *self, PyObject *args)
{
unsigned int domain;
PyObject *ptr_obj;
void *ptr;
int res;
if (!PyArg_ParseTuple(args, "IO", &domain, &ptr_obj))
return NULL;
ptr = PyLong_AsVoidPtr(ptr_obj);
if (PyErr_Occurred())
return NULL;
res = _PyTraceMalloc_Untrack(domain, (uintptr_t)ptr);
if (res < 0) {
PyErr_SetString(PyExc_RuntimeError, "_PyTraceMalloc_Track error");
return NULL;
}
Py_RETURN_NONE;
}
static PyObject *
tracemalloc_get_traceback(PyObject *self, PyObject *args)
{
unsigned int domain;
PyObject *ptr_obj;
void *ptr;
if (!PyArg_ParseTuple(args, "IO", &domain, &ptr_obj))
return NULL;
ptr = PyLong_AsVoidPtr(ptr_obj);
if (PyErr_Occurred())
return NULL;
return _PyTraceMalloc_GetTraceback(domain, (uintptr_t)ptr);
}
static PyObject *
dict_get_version(PyObject *self, PyObject *args)
{
PyDictObject *dict;
uint64_t version;
if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict))
return NULL;
version = dict->ma_version_tag;
Py_BUILD_ASSERT(sizeof(unsigned PY_LONG_LONG) >= sizeof(version));
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)version);
}
static int
fastcall_args(PyObject *args, PyObject ***stack, Py_ssize_t *nargs)
{
if (args == Py_None) {
*stack = NULL;
*nargs = 0;
}
else if (PyTuple_Check(args)) {
*stack = &PyTuple_GET_ITEM(args, 0);
*nargs = PyTuple_GET_SIZE(args);
}
else {
PyErr_SetString(PyExc_TypeError, "args must be None or a tuple");
return -1;
}
return 0;
}
static PyObject *
test_pyobject_fastcall(PyObject *self, PyObject *args)
{
PyObject *func, *func_args;
PyObject **stack;
Py_ssize_t nargs;
if (!PyArg_ParseTuple(args, "OO", &func, &func_args)) {
return NULL;
}
if (fastcall_args(func_args, &stack, &nargs) < 0) {
return NULL;
}
return _PyObject_FastCall(func, stack, nargs);
}
static PyObject *
test_pyobject_fastcalldict(PyObject *self, PyObject *args)
{
PyObject *func, *func_args, *kwargs;
PyObject **stack;
Py_ssize_t nargs;
if (!PyArg_ParseTuple(args, "OOO", &func, &func_args, &kwargs)) {
return NULL;
}
if (fastcall_args(func_args, &stack, &nargs) < 0) {
return NULL;
}
if (kwargs == Py_None) {
kwargs = NULL;
}
else if (!PyDict_Check(kwargs)) {
PyErr_SetString(PyExc_TypeError, "kwnames must be None or a dict");
return NULL;
}
return _PyObject_FastCallDict(func, stack, nargs, kwargs);
}
static PyObject *
test_pyobject_fastcallkeywords(PyObject *self, PyObject *args)
{
PyObject *func, *func_args, *kwnames = NULL;
PyObject **stack;
Py_ssize_t nargs, nkw;
if (!PyArg_ParseTuple(args, "OOO", &func, &func_args, &kwnames)) {
return NULL;
}
if (fastcall_args(func_args, &stack, &nargs) < 0) {
return NULL;
}
if (kwnames == Py_None) {
kwnames = NULL;
}
else if (PyTuple_Check(kwnames)) {
nkw = PyTuple_GET_SIZE(kwnames);
if (nargs < nkw) {
PyErr_SetString(PyExc_ValueError, "kwnames longer than args");
return NULL;
}
nargs -= nkw;
}
else {
PyErr_SetString(PyExc_TypeError, "kwnames must be None or a tuple");
return NULL;
}
return _PyObject_FastCallKeywords(func, stack, nargs, kwnames);
}
static PyObject *
raise_SIGINT_then_send_None(PyObject *self, PyObject *args)
{
PyGenObject *gen;
if (!PyArg_ParseTuple(args, "O!", &PyGen_Type, &gen))
return NULL;
/* This is used in a test to check what happens if a signal arrives just
as we're in the process of entering a yield from chain (see
bpo-30039).
Needs to be done in C, because:
- we don't have a Python wrapper for raise()
- we need to make sure that the Python-level signal handler doesn't run
*before* we enter the generator frame, which is impossible in Python
because we check for signals before every bytecode operation.
*/
raise(SIGINT);
return _PyGen_Send(gen, Py_None);
}
#ifdef W_STOPCODE
static PyObject*
py_w_stopcode(PyObject *self, PyObject *args)
{
int sig, status;
if (!PyArg_ParseTuple(args, "i", &sig)) {
return NULL;
}
status = W_STOPCODE(sig);
return PyLong_FromLong(status);
}
#endif
static PyMethodDef TestMethods[] = {
{"raise_exception", raise_exception, METH_VARARGS},
{"raise_memoryerror", (PyCFunction)raise_memoryerror, METH_NOARGS},
{"set_errno", set_errno, METH_VARARGS},
{"test_config", (PyCFunction)test_config, METH_NOARGS},
{"test_sizeof_c_types", (PyCFunction)test_sizeof_c_types, METH_NOARGS},
{"test_datetime_capi", test_datetime_capi, METH_NOARGS},
{"test_list_api", (PyCFunction)test_list_api, METH_NOARGS},
{"test_dict_iteration", (PyCFunction)test_dict_iteration,METH_NOARGS},
{"dict_getitem_knownhash", dict_getitem_knownhash, METH_VARARGS},
{"dict_hassplittable", dict_hassplittable, METH_O},
{"test_lazy_hash_inheritance", (PyCFunction)test_lazy_hash_inheritance,METH_NOARGS},
{"test_long_api", (PyCFunction)test_long_api, METH_NOARGS},
{"test_xincref_doesnt_leak",(PyCFunction)test_xincref_doesnt_leak, METH_NOARGS},
{"test_incref_doesnt_leak", (PyCFunction)test_incref_doesnt_leak, METH_NOARGS},
{"test_xdecref_doesnt_leak",(PyCFunction)test_xdecref_doesnt_leak, METH_NOARGS},
{"test_decref_doesnt_leak", (PyCFunction)test_decref_doesnt_leak, METH_NOARGS},
{"test_incref_decref_API", (PyCFunction)test_incref_decref_API, METH_NOARGS},
{"test_long_and_overflow", (PyCFunction)test_long_and_overflow,
METH_NOARGS},
{"test_long_as_double", (PyCFunction)test_long_as_double,METH_NOARGS},
{"test_long_as_size_t", (PyCFunction)test_long_as_size_t,METH_NOARGS},
{"test_long_numbits", (PyCFunction)test_long_numbits, METH_NOARGS},
{"test_k_code", (PyCFunction)test_k_code, METH_NOARGS},
{"test_empty_argparse", (PyCFunction)test_empty_argparse,METH_NOARGS},
{"parse_tuple_and_keywords", parse_tuple_and_keywords, METH_VARARGS},
{"test_null_strings", (PyCFunction)test_null_strings, METH_NOARGS},
{"test_string_from_format", (PyCFunction)test_string_from_format, METH_NOARGS},
{"test_with_docstring", (PyCFunction)test_with_docstring, METH_NOARGS,
PyDoc_STR("This is a pretty normal docstring.")},
{"test_string_to_double", (PyCFunction)test_string_to_double, METH_NOARGS},
{"test_unicode_compare_with_ascii", (PyCFunction)test_unicode_compare_with_ascii, METH_NOARGS},
{"test_capsule", (PyCFunction)test_capsule, METH_NOARGS},
{"test_from_contiguous", (PyCFunction)test_from_contiguous, METH_NOARGS},
#if (defined(__linux__) || defined(__FreeBSD__)) && defined(__GNUC__)
/* {"test_pep3118_obsolete_write_locks", (PyCFunction)test_pep3118_obsolete_write_locks, METH_NOARGS}, */
#endif
{"getbuffer_with_null_view", getbuffer_with_null_view, METH_O},
{"test_buildvalue_N", test_buildvalue_N, METH_NOARGS},
{"get_args", get_args, METH_VARARGS},
{"get_kwargs", (PyCFunction)get_kwargs, METH_VARARGS|METH_KEYWORDS},
{"getargs_tuple", getargs_tuple, METH_VARARGS},
{"getargs_keywords", (PyCFunction)getargs_keywords,
METH_VARARGS|METH_KEYWORDS},
{"getargs_keyword_only", (PyCFunction)getargs_keyword_only,
METH_VARARGS|METH_KEYWORDS},
{"getargs_positional_only_and_keywords",
(PyCFunction)getargs_positional_only_and_keywords,
METH_VARARGS|METH_KEYWORDS},
{"getargs_b", getargs_b, METH_VARARGS},
{"getargs_B", getargs_B, METH_VARARGS},
{"getargs_h", getargs_h, METH_VARARGS},
{"getargs_H", getargs_H, METH_VARARGS},
{"getargs_I", getargs_I, METH_VARARGS},
{"getargs_k", getargs_k, METH_VARARGS},
{"getargs_i", getargs_i, METH_VARARGS},
{"getargs_l", getargs_l, METH_VARARGS},
{"getargs_n", getargs_n, METH_VARARGS},
{"getargs_p", getargs_p, METH_VARARGS},
{"getargs_L", getargs_L, METH_VARARGS},
{"getargs_K", getargs_K, METH_VARARGS},
{"test_longlong_api", test_longlong_api, METH_NOARGS},
{"test_long_long_and_overflow",
(PyCFunction)test_long_long_and_overflow, METH_NOARGS},
{"test_L_code", (PyCFunction)test_L_code, METH_NOARGS},
{"getargs_f", getargs_f, METH_VARARGS},
{"getargs_d", getargs_d, METH_VARARGS},
{"getargs_D", getargs_D, METH_VARARGS},
{"getargs_S", getargs_S, METH_VARARGS},
{"getargs_Y", getargs_Y, METH_VARARGS},
{"getargs_U", getargs_U, METH_VARARGS},
{"getargs_c", getargs_c, METH_VARARGS},
{"getargs_C", getargs_C, METH_VARARGS},
{"getargs_s", getargs_s, METH_VARARGS},
{"getargs_s_star", getargs_s_star, METH_VARARGS},
{"getargs_s_hash", getargs_s_hash, METH_VARARGS},
{"getargs_z", getargs_z, METH_VARARGS},
{"getargs_z_star", getargs_z_star, METH_VARARGS},
{"getargs_z_hash", getargs_z_hash, METH_VARARGS},
{"getargs_y", getargs_y, METH_VARARGS},
{"getargs_y_star", getargs_y_star, METH_VARARGS},
{"getargs_y_hash", getargs_y_hash, METH_VARARGS},
{"getargs_u", getargs_u, METH_VARARGS},
{"getargs_u_hash", getargs_u_hash, METH_VARARGS},
{"getargs_Z", getargs_Z, METH_VARARGS},
{"getargs_Z_hash", getargs_Z_hash, METH_VARARGS},
{"getargs_w_star", getargs_w_star, METH_VARARGS},
{"getargs_es", getargs_es, METH_VARARGS},
{"getargs_et", getargs_et, METH_VARARGS},
{"getargs_es_hash", getargs_es_hash, METH_VARARGS},
{"getargs_et_hash", getargs_et_hash, METH_VARARGS},
{"codec_incrementalencoder",
(PyCFunction)codec_incrementalencoder, METH_VARARGS},
{"codec_incrementaldecoder",
(PyCFunction)codec_incrementaldecoder, METH_VARARGS},
{"test_s_code", (PyCFunction)test_s_code, METH_NOARGS},
{"test_u_code", (PyCFunction)test_u_code, METH_NOARGS},
{"test_Z_code", (PyCFunction)test_Z_code, METH_NOARGS},
{"test_widechar", (PyCFunction)test_widechar, METH_NOARGS},
{"unicode_aswidechar", unicode_aswidechar, METH_VARARGS},
{"unicode_aswidecharstring",unicode_aswidecharstring, METH_VARARGS},
{"unicode_asucs4", unicode_asucs4, METH_VARARGS},
{"unicode_copycharacters", unicode_copycharacters, METH_VARARGS},
{"unicode_encodedecimal", unicode_encodedecimal, METH_VARARGS},
{"unicode_transformdecimaltoascii", unicode_transformdecimaltoascii, METH_VARARGS},
{"unicode_legacy_string", unicode_legacy_string, METH_VARARGS},
#ifdef WITH_THREAD
{"_test_thread_state", test_thread_state, METH_VARARGS},
{"_pending_threadfunc", pending_threadfunc, METH_VARARGS},
#endif
#ifdef HAVE_GETTIMEOFDAY
{"profile_int", profile_int, METH_NOARGS},
#endif
{"traceback_print", traceback_print, METH_VARARGS},
{"exception_print", exception_print, METH_VARARGS},
{"set_exc_info", test_set_exc_info, METH_VARARGS},
{"argparsing", argparsing, METH_VARARGS},
{"code_newempty", code_newempty, METH_VARARGS},
{"make_exception_with_doc", (PyCFunction)make_exception_with_doc,
METH_VARARGS | METH_KEYWORDS},
{"make_memoryview_from_NULL_pointer", (PyCFunction)make_memoryview_from_NULL_pointer,
METH_NOARGS},
{"crash_no_current_thread", (PyCFunction)crash_no_current_thread, METH_NOARGS},
{"run_in_subinterp", run_in_subinterp, METH_VARARGS},
{"pytime_object_to_time_t", test_pytime_object_to_time_t, METH_VARARGS},
{"pytime_object_to_timeval", test_pytime_object_to_timeval, METH_VARARGS},
{"pytime_object_to_timespec", test_pytime_object_to_timespec, METH_VARARGS},
{"with_tp_del", with_tp_del, METH_VARARGS},
{"create_cfunction", create_cfunction, METH_NOARGS},
{"test_pymem_alloc0",
(PyCFunction)test_pymem_alloc0, METH_NOARGS},
#if IsModeDbg()
{"test_pymem_setrawallocators",
(PyCFunction)test_pymem_setrawallocators, METH_NOARGS},
{"test_pymem_setallocators",
(PyCFunction)test_pymem_setallocators, METH_NOARGS},
{"test_pyobject_setallocators",
(PyCFunction)test_pyobject_setallocators, METH_NOARGS},
{"set_nomemory", (PyCFunction)set_nomemory, METH_VARARGS,
PyDoc_STR("set_nomemory(start:int, stop:int = 0)")},
{"remove_mem_hooks", (PyCFunction)remove_mem_hooks, METH_NOARGS,
PyDoc_STR("Remove memory hooks.")},
#endif
{"no_docstring",
(PyCFunction)test_with_docstring, METH_NOARGS},
{"docstring_empty",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_empty},
{"docstring_no_signature",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_no_signature},
{"docstring_with_invalid_signature",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_invalid_signature},
{"docstring_with_invalid_signature2",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_invalid_signature2},
{"docstring_with_signature",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_signature},
{"docstring_with_signature_but_no_doc",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_signature_but_no_doc},
{"docstring_with_signature_and_extra_newlines",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_signature_and_extra_newlines},
{"docstring_with_signature_with_defaults",
(PyCFunction)test_with_docstring, METH_NOARGS,
docstring_with_signature_with_defaults},
{"raise_signal",
(PyCFunction)test_raise_signal, METH_VARARGS},
#ifdef WITH_THREAD
{"call_in_temporary_c_thread", call_in_temporary_c_thread, METH_O,
PyDoc_STR("set_error_class(error_class) -> None")},
#endif
{"pymarshal_write_long_to_file",
pymarshal_write_long_to_file, METH_VARARGS},
{"pymarshal_write_object_to_file",
pymarshal_write_object_to_file, METH_VARARGS},
{"pymarshal_read_short_from_file",
pymarshal_read_short_from_file, METH_VARARGS},
{"pymarshal_read_long_from_file",
pymarshal_read_long_from_file, METH_VARARGS},
{"pymarshal_read_last_object_from_file",
pymarshal_read_last_object_from_file, METH_VARARGS},
{"pymarshal_read_object_from_file",
pymarshal_read_object_from_file, METH_VARARGS},
{"return_null_without_error",
return_null_without_error, METH_NOARGS},
{"return_result_with_error",
return_result_with_error, METH_NOARGS},
{"PyTime_FromSeconds", test_pytime_fromseconds, METH_VARARGS},
{"PyTime_FromSecondsObject", test_pytime_fromsecondsobject, METH_VARARGS},
{"PyTime_AsSecondsDouble", test_pytime_assecondsdouble, METH_VARARGS},
{"PyTime_AsTimeval", test_PyTime_AsTimeval, METH_VARARGS},
#ifdef HAVE_CLOCK_GETTIME
{"PyTime_AsTimespec", test_PyTime_AsTimespec, METH_VARARGS},
#endif
{"PyTime_AsMilliseconds", test_PyTime_AsMilliseconds, METH_VARARGS},
{"PyTime_AsMicroseconds", test_PyTime_AsMicroseconds, METH_VARARGS},
#if IsModeDbg()
{"get_recursion_depth", get_recursion_depth, METH_NOARGS},
{"pymem_buffer_overflow", pymem_buffer_overflow, METH_NOARGS},
{"pymem_api_misuse", pymem_api_misuse, METH_NOARGS},
{"pymem_malloc_without_gil", pymem_malloc_without_gil, METH_NOARGS},
{"pyobject_malloc_without_gil", pyobject_malloc_without_gil, METH_NOARGS},
{"tracemalloc_track", tracemalloc_track, METH_VARARGS},
{"tracemalloc_untrack", tracemalloc_untrack, METH_VARARGS},
{"tracemalloc_get_traceback", tracemalloc_get_traceback, METH_VARARGS},
#endif
{"dict_get_version", dict_get_version, METH_VARARGS},
{"pyobject_fastcall", test_pyobject_fastcall, METH_VARARGS},
{"pyobject_fastcalldict", test_pyobject_fastcalldict, METH_VARARGS},
{"pyobject_fastcallkeywords", test_pyobject_fastcallkeywords, METH_VARARGS},
{"raise_SIGINT_then_send_None", raise_SIGINT_then_send_None, METH_VARARGS},
#ifdef W_STOPCODE
{"W_STOPCODE", py_w_stopcode, METH_VARARGS},
#endif
{NULL, NULL} /* sentinel */
};
#define AddSym(d, n, f, v) {PyObject *o = f(v); PyDict_SetItemString(d, n, o); Py_DECREF(o);}
typedef struct {
char bool_member;
char byte_member;
unsigned char ubyte_member;
short short_member;
unsigned short ushort_member;
int int_member;
unsigned int uint_member;
long long_member;
unsigned long ulong_member;
Py_ssize_t pyssizet_member;
float float_member;
double double_member;
char inplace_member[6];
long long longlong_member;
unsigned long long ulonglong_member;
} all_structmembers;
typedef struct {
PyObject_HEAD
all_structmembers structmembers;
} test_structmembers;
static struct PyMemberDef test_members[] = {
{"T_BOOL", T_BOOL, offsetof(test_structmembers, structmembers.bool_member), 0, NULL},
{"T_BYTE", T_BYTE, offsetof(test_structmembers, structmembers.byte_member), 0, NULL},
{"T_UBYTE", T_UBYTE, offsetof(test_structmembers, structmembers.ubyte_member), 0, NULL},
{"T_SHORT", T_SHORT, offsetof(test_structmembers, structmembers.short_member), 0, NULL},
{"T_USHORT", T_USHORT, offsetof(test_structmembers, structmembers.ushort_member), 0, NULL},
{"T_INT", T_INT, offsetof(test_structmembers, structmembers.int_member), 0, NULL},
{"T_UINT", T_UINT, offsetof(test_structmembers, structmembers.uint_member), 0, NULL},
{"T_LONG", T_LONG, offsetof(test_structmembers, structmembers.long_member), 0, NULL},
{"T_ULONG", T_ULONG, offsetof(test_structmembers, structmembers.ulong_member), 0, NULL},
{"T_PYSSIZET", T_PYSSIZET, offsetof(test_structmembers, structmembers.pyssizet_member), 0, NULL},
{"T_FLOAT", T_FLOAT, offsetof(test_structmembers, structmembers.float_member), 0, NULL},
{"T_DOUBLE", T_DOUBLE, offsetof(test_structmembers, structmembers.double_member), 0, NULL},
{"T_STRING_INPLACE", T_STRING_INPLACE, offsetof(test_structmembers, structmembers.inplace_member), 0, NULL},
{"T_LONGLONG", T_LONGLONG, offsetof(test_structmembers, structmembers.longlong_member), 0, NULL},
{"T_ULONGLONG", T_ULONGLONG, offsetof(test_structmembers, structmembers.ulonglong_member), 0, NULL},
{NULL}
};
static PyObject *
test_structmembers_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
{
static char *keywords[] = {
"T_BOOL", "T_BYTE", "T_UBYTE", "T_SHORT", "T_USHORT",
"T_INT", "T_UINT", "T_LONG", "T_ULONG", "T_PYSSIZET",
"T_FLOAT", "T_DOUBLE", "T_STRING_INPLACE",
"T_LONGLONG", "T_ULONGLONG",
NULL};
static const char fmt[] = "|bbBhHiIlknfds#LK";
test_structmembers *ob;
const char *s = NULL;
Py_ssize_t string_len = 0;
ob = PyObject_New(test_structmembers, type);
if (ob == NULL)
return NULL;
bzero(&ob->structmembers, sizeof(all_structmembers));
if (!PyArg_ParseTupleAndKeywords(args, kwargs, fmt, keywords,
&ob->structmembers.bool_member,
&ob->structmembers.byte_member,
&ob->structmembers.ubyte_member,
&ob->structmembers.short_member,
&ob->structmembers.ushort_member,
&ob->structmembers.int_member,
&ob->structmembers.uint_member,
&ob->structmembers.long_member,
&ob->structmembers.ulong_member,
&ob->structmembers.pyssizet_member,
&ob->structmembers.float_member,
&ob->structmembers.double_member,
&s, &string_len
, &ob->structmembers.longlong_member,
&ob->structmembers.ulonglong_member
)) {
Py_DECREF(ob);
return NULL;
}
if (s != NULL) {
if (string_len > 5) {
Py_DECREF(ob);
PyErr_SetString(PyExc_ValueError, "string too long");
return NULL;
}
strcpy(ob->structmembers.inplace_member, s);
}
else {
strcpy(ob->structmembers.inplace_member, "");
}
return (PyObject *)ob;
}
static void
test_structmembers_free(PyObject *ob)
{
PyObject_FREE(ob);
}
static PyTypeObject test_structmembersType = {
PyVarObject_HEAD_INIT(NULL, 0)
"test_structmembersType",
sizeof(test_structmembers), /* tp_basicsize */
0, /* tp_itemsize */
test_structmembers_free, /* destructor tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
0, /* tp_flags */
"Type containing all structmember types",
0, /* traverseproc tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
test_members, /* tp_members */
0,
0,
0,
0,
0,
0,
0,
0,
test_structmembers_new, /* tp_new */
};
typedef struct {
PyObject_HEAD
} matmulObject;
static PyObject *
matmulType_matmul(PyObject *self, PyObject *other)
{
return Py_BuildValue("(sOO)", "matmul", self, other);
}
static PyObject *
matmulType_imatmul(PyObject *self, PyObject *other)
{
return Py_BuildValue("(sOO)", "imatmul", self, other);
}
static void
matmulType_dealloc(PyObject *self)
{
Py_TYPE(self)->tp_free(self);
}
static PyNumberMethods matmulType_as_number = {
0, /* nb_add */
0, /* nb_subtract */
0, /* nb_multiply */
0, /* nb_remainde r*/
0, /* nb_divmod */
0, /* nb_power */
0, /* nb_negative */
0, /* tp_positive */
0, /* tp_absolute */
0, /* tp_bool */
0, /* nb_invert */
0, /* nb_lshift */
0, /* nb_rshift */
0, /* nb_and */
0, /* nb_xor */
0, /* nb_or */
0, /* nb_int */
0, /* nb_reserved */
0, /* nb_float */
0, /* nb_inplace_add */
0, /* nb_inplace_subtract */
0, /* nb_inplace_multiply */
0, /* nb_inplace_remainder */
0, /* nb_inplace_power */
0, /* nb_inplace_lshift */
0, /* nb_inplace_rshift */
0, /* nb_inplace_and */
0, /* nb_inplace_xor */
0, /* nb_inplace_or */
0, /* nb_floor_divide */
0, /* nb_true_divide */
0, /* nb_inplace_floor_divide */
0, /* nb_inplace_true_divide */
0, /* nb_index */
matmulType_matmul, /* nb_matrix_multiply */
matmulType_imatmul /* nb_matrix_inplace_multiply */
};
static PyTypeObject matmulType = {
PyVarObject_HEAD_INIT(NULL, 0)
"matmulType",
sizeof(matmulObject), /* tp_basicsize */
0, /* tp_itemsize */
matmulType_dealloc, /* destructor tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
&matmulType_as_number, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
0, /* tp_flags */
"C level type with matrix operations defined",
0, /* traverseproc tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0,
0,
0,
0,
0,
0,
0,
0,
PyType_GenericNew, /* tp_new */
PyObject_Del, /* tp_free */
};
typedef struct {
PyObject_HEAD
PyObject *ao_iterator;
} awaitObject;
static PyObject *
awaitObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *v;
awaitObject *ao;
if (!PyArg_UnpackTuple(args, "awaitObject", 1, 1, &v))
return NULL;
ao = (awaitObject *)type->tp_alloc(type, 0);
if (ao == NULL) {
return NULL;
}
Py_INCREF(v);
ao->ao_iterator = v;
return (PyObject *)ao;
}
static void
awaitObject_dealloc(awaitObject *ao)
{
Py_CLEAR(ao->ao_iterator);
Py_TYPE(ao)->tp_free(ao);
}
static PyObject *
awaitObject_await(awaitObject *ao)
{
Py_INCREF(ao->ao_iterator);
return ao->ao_iterator;
}
static PyAsyncMethods awaitType_as_async = {
(unaryfunc)awaitObject_await, /* am_await */
0, /* am_aiter */
0 /* am_anext */
};
static PyTypeObject awaitType = {
PyVarObject_HEAD_INIT(NULL, 0)
"awaitType",
sizeof(awaitObject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)awaitObject_dealloc, /* destructor tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
&awaitType_as_async, /* tp_as_async */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
0, /* tp_flags */
"C level type with tp_as_async",
0, /* traverseproc tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0,
0,
0,
0,
0,
0,
0,
0,
awaitObject_new, /* tp_new */
PyObject_Del, /* tp_free */
};
static int recurse_infinitely_error_init(PyObject *, PyObject *, PyObject *);
static PyTypeObject PyRecursingInfinitelyError_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"RecursingInfinitelyError", /* tp_name */
sizeof(PyBaseExceptionObject), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
"Instantiating this exception starts infinite recursion.", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)recurse_infinitely_error_init, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
static int
recurse_infinitely_error_init(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject *type = (PyObject *)&PyRecursingInfinitelyError_Type;
/* Instantiating this exception starts infinite recursion. */
Py_INCREF(type);
PyErr_SetObject(type, NULL);
return -1;
}
static struct PyModuleDef _testcapimodule = {
PyModuleDef_HEAD_INIT,
"_testcapi",
NULL,
-1,
TestMethods,
NULL,
NULL,
NULL,
NULL
};
/* Per PEP 489, this module will not be converted to multi-phase initialization
*/
PyMODINIT_FUNC
PyInit__testcapi(void)
{
PyObject *m;
m = PyModule_Create(&_testcapimodule);
if (m == NULL)
return NULL;
Py_TYPE(&_HashInheritanceTester_Type)=&PyType_Type;
Py_TYPE(&test_structmembersType)=&PyType_Type;
Py_INCREF(&test_structmembersType);
/* don't use a name starting with "test", since we don't want
test_capi to automatically call this */
PyModule_AddObject(m, "_test_structmembersType", (PyObject *)&test_structmembersType);
if (PyType_Ready(&matmulType) < 0)
return NULL;
Py_INCREF(&matmulType);
PyModule_AddObject(m, "matmulType", (PyObject *)&matmulType);
if (PyType_Ready(&awaitType) < 0)
return NULL;
Py_INCREF(&awaitType);
PyModule_AddObject(m, "awaitType", (PyObject *)&awaitType);
PyRecursingInfinitelyError_Type.tp_base = (PyTypeObject *)PyExc_Exception;
if (PyType_Ready(&PyRecursingInfinitelyError_Type) < 0) {
return NULL;
}
Py_INCREF(&PyRecursingInfinitelyError_Type);
PyModule_AddObject(m, "RecursingInfinitelyError",
(PyObject *)&PyRecursingInfinitelyError_Type);
PyModule_AddObject(m, "CHAR_MAX", PyLong_FromLong(CHAR_MAX));
PyModule_AddObject(m, "CHAR_MIN", PyLong_FromLong(CHAR_MIN));
PyModule_AddObject(m, "UCHAR_MAX", PyLong_FromLong(UCHAR_MAX));
PyModule_AddObject(m, "SHRT_MAX", PyLong_FromLong(SHRT_MAX));
PyModule_AddObject(m, "SHRT_MIN", PyLong_FromLong(SHRT_MIN));
PyModule_AddObject(m, "USHRT_MAX", PyLong_FromLong(USHRT_MAX));
PyModule_AddObject(m, "INT_MAX", PyLong_FromLong(INT_MAX));
PyModule_AddObject(m, "INT_MIN", PyLong_FromLong(INT_MIN));
PyModule_AddObject(m, "UINT_MAX", PyLong_FromUnsignedLong(UINT_MAX));
PyModule_AddObject(m, "LONG_MAX", PyLong_FromLong(LONG_MAX));
PyModule_AddObject(m, "LONG_MIN", PyLong_FromLong(LONG_MIN));
PyModule_AddObject(m, "ULONG_MAX", PyLong_FromUnsignedLong(ULONG_MAX));
PyModule_AddObject(m, "FLT_MAX", PyFloat_FromDouble(FLT_MAX));
PyModule_AddObject(m, "FLT_MIN", PyFloat_FromDouble(FLT_MIN));
PyModule_AddObject(m, "DBL_MAX", PyFloat_FromDouble(DBL_MAX));
PyModule_AddObject(m, "DBL_MIN", PyFloat_FromDouble(DBL_MIN));
PyModule_AddObject(m, "LLONG_MAX", PyLong_FromLongLong(PY_LLONG_MAX));
PyModule_AddObject(m, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN));
PyModule_AddObject(m, "ULLONG_MAX", PyLong_FromUnsignedLongLong(PY_ULLONG_MAX));
PyModule_AddObject(m, "PY_SSIZE_T_MAX", PyLong_FromSsize_t(PY_SSIZE_T_MAX));
PyModule_AddObject(m, "PY_SSIZE_T_MIN", PyLong_FromSsize_t(PY_SSIZE_T_MIN));
PyModule_AddObject(m, "SIZEOF_PYGC_HEAD", PyLong_FromSsize_t(sizeof(PyGC_Head)));
PyModule_AddObject(m, "SIZEOF_TIME_T", PyLong_FromSsize_t(sizeof(time_t)));
Py_INCREF(&PyInstanceMethod_Type);
PyModule_AddObject(m, "instancemethod", (PyObject *)&PyInstanceMethod_Type);
PyModule_AddIntConstant(m, "the_number_three", 3);
TestError = PyErr_NewException("_testcapi.error", NULL, NULL);
Py_INCREF(TestError);
PyModule_AddObject(m, "error", TestError);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__testcapi = {
"_testcapi",
PyInit__testcapi,
};
| 157,413 | 5,225 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/socketmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/calls/calls.h"
#include "libc/calls/ioctl.h"
#include "libc/calls/weirdtypes.h"
#include "libc/dce.h"
#include "libc/dns/dns.h"
#include "libc/dns/ent.h"
#include "libc/errno.h"
#include "libc/nt/enum/version.h"
#include "libc/nt/version.h"
#include "libc/runtime/runtime.h"
#include "libc/sock/sock.h"
#include "libc/sock/struct/pollfd.h"
#include "libc/sysv/consts/af.h"
#include "libc/sysv/consts/f.h"
#include "libc/sysv/consts/fileno.h"
#include "libc/sysv/consts/fio.h"
#include "libc/sysv/consts/inaddr.h"
#include "libc/sysv/consts/ip.h"
#include "libc/sysv/consts/ipport.h"
#include "libc/sysv/consts/ipproto.h"
#include "libc/sysv/consts/msg.h"
#include "libc/sysv/consts/o.h"
#include "libc/sysv/consts/pf.h"
#include "libc/sysv/consts/poll.h"
#include "libc/sysv/consts/shut.h"
#include "libc/sysv/consts/sio.h"
#include "libc/sysv/consts/so.h"
#include "libc/sysv/consts/sock.h"
#include "libc/sysv/consts/sol.h"
#include "libc/sysv/consts/tcp.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytearrayobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pythread.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/warnings.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/socketmodule.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
PYTHON_PROVIDE("_socket");
PYTHON_PROVIDE("_socket.AF_APPLETALK");
PYTHON_PROVIDE("_socket.AF_ASH");
PYTHON_PROVIDE("_socket.AF_ATMPVC");
PYTHON_PROVIDE("_socket.AF_ATMSVC");
PYTHON_PROVIDE("_socket.AF_AX25");
PYTHON_PROVIDE("_socket.AF_BRIDGE");
PYTHON_PROVIDE("_socket.AF_CAN");
PYTHON_PROVIDE("_socket.AF_ECONET");
PYTHON_PROVIDE("_socket.AF_INET");
PYTHON_PROVIDE("_socket.AF_INET6");
PYTHON_PROVIDE("_socket.AF_IPX");
PYTHON_PROVIDE("_socket.AF_IRDA");
PYTHON_PROVIDE("_socket.AF_KEY");
PYTHON_PROVIDE("_socket.AF_LLC");
PYTHON_PROVIDE("_socket.AF_NETBEUI");
PYTHON_PROVIDE("_socket.AF_NETROM");
PYTHON_PROVIDE("_socket.AF_PACKET");
PYTHON_PROVIDE("_socket.AF_PPPOX");
PYTHON_PROVIDE("_socket.AF_ROSE");
PYTHON_PROVIDE("_socket.AF_ROUTE");
PYTHON_PROVIDE("_socket.AF_SECURITY");
PYTHON_PROVIDE("_socket.AF_SNA");
PYTHON_PROVIDE("_socket.AF_UNIX");
PYTHON_PROVIDE("_socket.AF_UNSPEC");
PYTHON_PROVIDE("_socket.AF_X25");
PYTHON_PROVIDE("_socket.AI_ADDRCONFIG");
PYTHON_PROVIDE("_socket.AI_ALL");
PYTHON_PROVIDE("_socket.AI_CANONNAME");
PYTHON_PROVIDE("_socket.AI_NUMERICHOST");
PYTHON_PROVIDE("_socket.AI_NUMERICSERV");
PYTHON_PROVIDE("_socket.AI_PASSIVE");
PYTHON_PROVIDE("_socket.AI_V4MAPPED");
PYTHON_PROVIDE("_socket.CAPI");
PYTHON_PROVIDE("_socket.EAI_ADDRFAMILY");
PYTHON_PROVIDE("_socket.EAI_AGAIN");
PYTHON_PROVIDE("_socket.EAI_BADFLAGS");
PYTHON_PROVIDE("_socket.EAI_FAIL");
PYTHON_PROVIDE("_socket.EAI_FAMILY");
PYTHON_PROVIDE("_socket.EAI_MEMORY");
PYTHON_PROVIDE("_socket.EAI_NODATA");
PYTHON_PROVIDE("_socket.EAI_NONAME");
PYTHON_PROVIDE("_socket.EAI_OVERFLOW");
PYTHON_PROVIDE("_socket.EAI_SERVICE");
PYTHON_PROVIDE("_socket.EAI_SOCKTYPE");
PYTHON_PROVIDE("_socket.EAI_SYSTEM");
PYTHON_PROVIDE("_socket.INADDR_ALLHOSTS_GROUP");
PYTHON_PROVIDE("_socket.INADDR_ANY");
PYTHON_PROVIDE("_socket.INADDR_BROADCAST");
PYTHON_PROVIDE("_socket.INADDR_LOOPBACK");
PYTHON_PROVIDE("_socket.INADDR_MAX_LOCAL_GROUP");
PYTHON_PROVIDE("_socket.INADDR_NONE");
PYTHON_PROVIDE("_socket.INADDR_UNSPEC_GROUP");
PYTHON_PROVIDE("_socket.IPPORT_RESERVED");
PYTHON_PROVIDE("_socket.IPPORT_USERRESERVED");
PYTHON_PROVIDE("_socket.IPPROTO_AH");
PYTHON_PROVIDE("_socket.IPPROTO_DSTOPTS");
PYTHON_PROVIDE("_socket.IPPROTO_EGP");
PYTHON_PROVIDE("_socket.IPPROTO_ESP");
PYTHON_PROVIDE("_socket.IPPROTO_FRAGMENT");
PYTHON_PROVIDE("_socket.IPPROTO_GRE");
PYTHON_PROVIDE("_socket.IPPROTO_HOPOPTS");
PYTHON_PROVIDE("_socket.IPPROTO_ICMP");
PYTHON_PROVIDE("_socket.IPPROTO_ICMPV6");
PYTHON_PROVIDE("_socket.IPPROTO_IDP");
PYTHON_PROVIDE("_socket.IPPROTO_IGMP");
PYTHON_PROVIDE("_socket.IPPROTO_IP");
PYTHON_PROVIDE("_socket.IPPROTO_IPIP");
PYTHON_PROVIDE("_socket.IPPROTO_IPV6");
PYTHON_PROVIDE("_socket.IPPROTO_MAX");
PYTHON_PROVIDE("_socket.IPPROTO_NONE");
PYTHON_PROVIDE("_socket.IPPROTO_PIM");
PYTHON_PROVIDE("_socket.IPPROTO_PUP");
PYTHON_PROVIDE("_socket.IPPROTO_RAW");
PYTHON_PROVIDE("_socket.IPPROTO_ROUTING");
PYTHON_PROVIDE("_socket.IPPROTO_RSVP");
PYTHON_PROVIDE("_socket.IPPROTO_SCTP");
PYTHON_PROVIDE("_socket.IPPROTO_TCP");
PYTHON_PROVIDE("_socket.IPPROTO_TP");
PYTHON_PROVIDE("_socket.IPPROTO_UDP");
PYTHON_PROVIDE("_socket.IP_ADD_MEMBERSHIP");
PYTHON_PROVIDE("_socket.IP_DEFAULT_MULTICAST_LOOP");
PYTHON_PROVIDE("_socket.IP_DEFAULT_MULTICAST_TTL");
PYTHON_PROVIDE("_socket.IP_DROP_MEMBERSHIP");
PYTHON_PROVIDE("_socket.IP_HDRINCL");
PYTHON_PROVIDE("_socket.IP_MAX_MEMBERSHIPS");
PYTHON_PROVIDE("_socket.IP_MULTICAST_IF");
PYTHON_PROVIDE("_socket.IP_MULTICAST_LOOP");
PYTHON_PROVIDE("_socket.IP_MULTICAST_TTL");
PYTHON_PROVIDE("_socket.IP_OPTIONS");
PYTHON_PROVIDE("_socket.IP_RECVOPTS");
PYTHON_PROVIDE("_socket.IP_RECVRETOPTS");
PYTHON_PROVIDE("_socket.IP_RETOPTS");
PYTHON_PROVIDE("_socket.IP_TOS");
PYTHON_PROVIDE("_socket.IP_TRANSPARENT");
PYTHON_PROVIDE("_socket.IP_TTL");
PYTHON_PROVIDE("_socket.MSG_CMSG_CLOEXEC");
PYTHON_PROVIDE("_socket.MSG_CONFIRM");
PYTHON_PROVIDE("_socket.MSG_CTRUNC");
PYTHON_PROVIDE("_socket.MSG_DONTROUTE");
PYTHON_PROVIDE("_socket.MSG_DONTWAIT");
PYTHON_PROVIDE("_socket.MSG_EOF");
PYTHON_PROVIDE("_socket.MSG_EOR");
PYTHON_PROVIDE("_socket.MSG_ERRQUEUE");
PYTHON_PROVIDE("_socket.MSG_FASTOPEN");
PYTHON_PROVIDE("_socket.MSG_MORE");
PYTHON_PROVIDE("_socket.MSG_NOSIGNAL");
PYTHON_PROVIDE("_socket.MSG_NOTIFICATION");
PYTHON_PROVIDE("_socket.MSG_OOB");
PYTHON_PROVIDE("_socket.MSG_PEEK");
PYTHON_PROVIDE("_socket.MSG_TRUNC");
PYTHON_PROVIDE("_socket.MSG_WAITALL");
PYTHON_PROVIDE("_socket.NI_DGRAM");
PYTHON_PROVIDE("_socket.NI_MAXHOST");
PYTHON_PROVIDE("_socket.NI_MAXSERV");
PYTHON_PROVIDE("_socket.NI_NAMEREQD");
PYTHON_PROVIDE("_socket.NI_NOFQDN");
PYTHON_PROVIDE("_socket.NI_NUMERICHOST");
PYTHON_PROVIDE("_socket.NI_NUMERICSERV");
PYTHON_PROVIDE("_socket.PF_CAN");
PYTHON_PROVIDE("_socket.PF_PACKET");
PYTHON_PROVIDE("_socket.PF_RDS");
PYTHON_PROVIDE("_socket.SHUT_RD");
PYTHON_PROVIDE("_socket.SHUT_RDWR");
PYTHON_PROVIDE("_socket.SHUT_WR");
PYTHON_PROVIDE("_socket.SOCK_CLOEXEC");
PYTHON_PROVIDE("_socket.SOCK_DGRAM");
PYTHON_PROVIDE("_socket.SOCK_NONBLOCK");
PYTHON_PROVIDE("_socket.SOCK_RAW");
PYTHON_PROVIDE("_socket.SOCK_RDM");
PYTHON_PROVIDE("_socket.SOCK_SEQPACKET");
PYTHON_PROVIDE("_socket.SOCK_STREAM");
PYTHON_PROVIDE("_socket.SOL_IP");
PYTHON_PROVIDE("_socket.SOL_RDS");
PYTHON_PROVIDE("_socket.SOL_SOCKET");
PYTHON_PROVIDE("_socket.SOL_TCP");
PYTHON_PROVIDE("_socket.SOL_UDP");
PYTHON_PROVIDE("_socket.SOMAXCONN");
PYTHON_PROVIDE("_socket.SO_ACCEPTCONN");
PYTHON_PROVIDE("_socket.SO_BINDTODEVICE");
PYTHON_PROVIDE("_socket.SO_BROADCAST");
PYTHON_PROVIDE("_socket.SO_DEBUG");
PYTHON_PROVIDE("_socket.SO_DOMAIN");
PYTHON_PROVIDE("_socket.SO_DONTROUTE");
PYTHON_PROVIDE("_socket.SO_ERROR");
PYTHON_PROVIDE("_socket.SO_KEEPALIVE");
PYTHON_PROVIDE("_socket.SO_LINGER");
PYTHON_PROVIDE("_socket.SO_MARK");
PYTHON_PROVIDE("_socket.SO_OOBINLINE");
PYTHON_PROVIDE("_socket.SO_PASSCRED");
PYTHON_PROVIDE("_socket.SO_PASSSEC");
PYTHON_PROVIDE("_socket.SO_PEERCRED");
PYTHON_PROVIDE("_socket.SO_PEERSEC");
PYTHON_PROVIDE("_socket.SO_PRIORITY");
PYTHON_PROVIDE("_socket.SO_PROTOCOL");
PYTHON_PROVIDE("_socket.SO_RCVBUF");
PYTHON_PROVIDE("_socket.SO_RCVLOWAT");
PYTHON_PROVIDE("_socket.SO_RCVTIMEO");
PYTHON_PROVIDE("_socket.SO_REUSEADDR");
PYTHON_PROVIDE("_socket.SO_REUSEPORT");
PYTHON_PROVIDE("_socket.SO_SNDBUF");
PYTHON_PROVIDE("_socket.SO_SNDLOWAT");
PYTHON_PROVIDE("_socket.SO_SNDTIMEO");
PYTHON_PROVIDE("_socket.SO_TYPE");
PYTHON_PROVIDE("_socket.SocketType");
PYTHON_PROVIDE("_socket.TCP_CONGESTION");
PYTHON_PROVIDE("_socket.TCP_CORK");
PYTHON_PROVIDE("_socket.TCP_DEFER_ACCEPT");
PYTHON_PROVIDE("_socket.TCP_FASTOPEN");
PYTHON_PROVIDE("_socket.TCP_FASTOPEN_CONNECT");
PYTHON_PROVIDE("_socket.TCP_INFO");
PYTHON_PROVIDE("_socket.TCP_KEEPCNT");
PYTHON_PROVIDE("_socket.TCP_KEEPIDLE");
PYTHON_PROVIDE("_socket.TCP_KEEPINTVL");
PYTHON_PROVIDE("_socket.TCP_LINGER2");
PYTHON_PROVIDE("_socket.TCP_MAXSEG");
PYTHON_PROVIDE("_socket.TCP_NODELAY");
PYTHON_PROVIDE("_socket.TCP_QUICKACK");
PYTHON_PROVIDE("_socket.TCP_SAVED_SYN");
PYTHON_PROVIDE("_socket.TCP_SAVE_SYN");
PYTHON_PROVIDE("_socket.TCP_SYNCNT");
PYTHON_PROVIDE("_socket.TCP_USER_TIMEOUT");
PYTHON_PROVIDE("_socket.TCP_WINDOW_CLAMP");
PYTHON_PROVIDE("_socket.dup");
PYTHON_PROVIDE("_socket.error");
PYTHON_PROVIDE("_socket.gaierror");
PYTHON_PROVIDE("_socket.getaddrinfo");
PYTHON_PROVIDE("_socket.getdefaulttimeout");
PYTHON_PROVIDE("_socket.gethostbyaddr");
PYTHON_PROVIDE("_socket.gethostbyname");
PYTHON_PROVIDE("_socket.gethostbyname_ex");
PYTHON_PROVIDE("_socket.gethostname");
PYTHON_PROVIDE("_socket.getnameinfo");
PYTHON_PROVIDE("_socket.getprotobyname");
PYTHON_PROVIDE("_socket.getservbyname");
PYTHON_PROVIDE("_socket.getservbyport");
PYTHON_PROVIDE("_socket.has_ipv6");
PYTHON_PROVIDE("_socket.herror");
PYTHON_PROVIDE("_socket.htonl");
PYTHON_PROVIDE("_socket.htons");
PYTHON_PROVIDE("_socket.inet_aton");
PYTHON_PROVIDE("_socket.inet_ntoa");
PYTHON_PROVIDE("_socket.inet_ntop");
PYTHON_PROVIDE("_socket.inet_pton");
PYTHON_PROVIDE("_socket.ntohl");
PYTHON_PROVIDE("_socket.ntohs");
PYTHON_PROVIDE("_socket.setdefaulttimeout");
PYTHON_PROVIDE("_socket.sethostname");
PYTHON_PROVIDE("_socket.socket");
PYTHON_PROVIDE("_socket.socketpair");
PYTHON_PROVIDE("_socket.timeout");
/*
This module provides an interface to Berkeley socket IPC.
Limitations:
- Only AF_INET, AF_INET6 and AF_UNIX address families are supported in a
portable manner, though AF_PACKET, and AF_TIPC are supported under Linux.
- No read/write operations (use sendall/recv or makefile instead).
- Additional restrictions apply on some non-Unix platforms (compensated
for by socket.py).
Module interface:
- socket.error: exception raised for socket specific errors, alias for OSError
- socket.gaierror: exception raised for getaddrinfo/getnameinfo errors,
a subclass of socket.error
- socket.herror: exception raised for gethostby* errors,
a subclass of socket.error
- socket.gethostbyname(hostname) --> host IP address (string: 'dd.dd.dd.dd')
- socket.gethostbyaddr(IP address) --> (hostname, [alias, ...], [IP addr, ...])
- socket.gethostname() --> host name (string: 'spam' or 'spam.domain.com')
- socket.getprotobyname(protocolname) --> protocol number
- socket.getservbyname(servicename[, protocolname]) --> port number
- socket.getservbyport(portnumber[, protocolname]) --> service name
- socket.socket([family[, type [, proto, fileno]]]) --> new socket object
(fileno specifies a pre-existing socket file descriptor)
- socket.socketpair([family[, type [, proto]]]) --> (socket, socket)
- socket.ntohs(16 bit value) --> new int object
- socket.ntohl(32 bit value) --> new int object
- socket.htons(16 bit value) --> new int object
- socket.htonl(32 bit value) --> new int object
- socket.getaddrinfo(host, port [, family, type, proto, flags])
--> List of (family, type, proto, canonname, sockaddr)
- socket.getnameinfo(sockaddr, flags) --> (host, port)
- socket.AF_INET, socket.SOCK_STREAM, etc.: constants from <socket.h>
- socket.has_ipv6: boolean value indicating if IPv6 is supported
- socket.inet_aton(IP address) -> 32-bit packed IP representation
- socket.inet_ntoa(packed IP) -> IP address string
- socket.getdefaulttimeout() -> None | float
- socket.setdefaulttimeout(None | float)
- socket.if_nameindex() -> list of tuples (if_index, if_name)
- socket.if_nametoindex(name) -> corresponding interface index
- socket.if_indextoname(index) -> corresponding interface name
- an Internet socket address is a pair (hostname, port)
where hostname can be anything recognized by gethostbyname()
(including the dd.dd.dd.dd notation) and port is in host byte order
- where a hostname is returned, the dd.dd.dd.dd notation is used
- a UNIX domain socket address is a string specifying the pathname
- an AF_PACKET socket address is a tuple containing a string
specifying the ethernet interface and an integer specifying
the Ethernet protocol number to be received. For example:
("eth0",0x1234). Optional 3rd,4th,5th elements in the tuple
specify packet-type and ha-type/addr.
- an AF_TIPC socket address is expressed as
(addr_type, v1, v2, v3 [, scope]); where addr_type can be one of:
TIPC_ADDR_NAMESEQ, TIPC_ADDR_NAME, and TIPC_ADDR_ID;
and scope can be one of:
TIPC_ZONE_SCOPE, TIPC_CLUSTER_SCOPE, and TIPC_NODE_SCOPE.
The meaning of v1, v2 and v3 depends on the value of addr_type:
if addr_type is TIPC_ADDR_NAME:
v1 is the server type
v2 is the port identifier
v3 is ignored
if addr_type is TIPC_ADDR_NAMESEQ:
v1 is the server type
v2 is the lower port number
v3 is the upper port number
if addr_type is TIPC_ADDR_ID:
v1 is the node
v2 is the ref
v3 is ignored
Local naming conventions:
- names starting with sock_ are socket object methods
- names starting with socket_ are module-level functions
- names starting with PySocket are exported through socketmodule.h
*/
/* Socket object documentation */
PyDoc_STRVAR(sock_doc,
"socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) -> socket object\n\
\n\
Open a socket of the given type. The family argument specifies the\n\
address family; it defaults to AF_INET. The type argument specifies\n\
whether this is a stream (SOCK_STREAM, this is the default)\n\
or datagram (SOCK_DGRAM) socket. The protocol argument defaults to 0,\n\
specifying the default protocol. Keyword arguments are accepted.\n\
The socket is created as non-inheritable.\n\
\n\
A socket object represents one endpoint of a network connection.\n\
\n\
Methods of socket objects (keyword arguments not allowed):\n\
\n\
_accept() -- accept connection, returning new socket fd and client address\n\
bind(addr) -- bind the socket to a local address\n\
close() -- close the socket\n\
connect(addr) -- connect the socket to a remote address\n\
connect_ex(addr) -- connect, return an error code instead of an exception\n\
dup() -- return a new socket fd duplicated from fileno()\n\
fileno() -- return underlying file descriptor\n\
getpeername() -- return remote address [*]\n\
getsockname() -- return local address\n\
getsockopt(level, optname[, buflen]) -- get socket options\n\
gettimeout() -- return timeout or None\n\
listen([n]) -- start listening for incoming connections\n\
recv(buflen[, flags]) -- receive data\n\
recv_into(buffer[, nbytes[, flags]]) -- receive data (into a buffer)\n\
recvfrom(buflen[, flags]) -- receive data and sender\'s address\n\
recvfrom_into(buffer[, nbytes, [, flags])\n\
-- receive data and sender\'s address (into a buffer)\n\
sendall(data[, flags]) -- send all data\n\
send(data[, flags]) -- send data, may not send all of it\n\
sendto(data[, flags], addr) -- send data to a given address\n\
setblocking(0 | 1) -- set or clear the blocking I/O flag\n\
setsockopt(level, optname, value[, optlen]) -- set socket options\n\
settimeout(None | float) -- set or clear the timeout\n\
shutdown(how) -- shut down traffic in one or both directions\n\
if_nameindex() -- return all network interface indices and names\n\
if_nametoindex(name) -- return the corresponding interface index\n\
if_indextoname(index) -- return the corresponding interface name\n\
\n\
[*] not available on all platforms!");
/* XXX This is a terrible mess of platform-dependent preprocessor hacks.
I hope some day someone can clean this up please... */
/* Hacks for gethostbyname_r(). On some non-Linux platforms, the configure
script doesn't get this right, so we hardcode some platform checks below.
On the other hand, not all Linux versions agree, so there the settings
computed by the configure script are needed! */
#if !defined(WITH_THREAD)
# undef HAVE_GETHOSTBYNAME_R
#endif
#ifdef HAVE_GETHOSTBYNAME_R
# if defined(_AIX) && !defined(_LINUX_SOURCE_COMPAT)
# define HAVE_GETHOSTBYNAME_R_3_ARG
# elif defined(__sun) || defined(__sgi)
# define HAVE_GETHOSTBYNAME_R_5_ARG
# elif defined(__linux__)
/* Rely on the configure script */
# elif defined(_LINUX_SOURCE_COMPAT) /* Linux compatibility on AIX */
# define HAVE_GETHOSTBYNAME_R_6_ARG
# else
# undef HAVE_GETHOSTBYNAME_R
# endif
#endif
#if !defined(HAVE_GETHOSTBYNAME_R) && defined(WITH_THREAD) && \
!defined(MS_WINDOWS)
# define USE_GETHOSTBYNAME_LOCK
#endif
/* On systems on which getaddrinfo() is believed to not be thread-safe,
(this includes the getaddrinfo emulation) protect access with a lock.
getaddrinfo is thread-safe on Mac OS X 10.5 and later. Originally it was
a mix of code including an unsafe implementation from an old BSD's
libresolv. In 10.5 Apple reimplemented it as a safe IPC call to the
mDNSResponder process. 10.5 is the first be UNIX '03 certified, which
includes the requirement that getaddrinfo be thread-safe. See issue #25924.
It's thread-safe in OpenBSD starting with 5.4, released Nov 2013:
http://www.openbsd.org/plus54.html
It's thread-safe in NetBSD starting with 4.0, released Dec 2007:
http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82&r2=1.83
*/
#if defined(WITH_THREAD) && ( \
(defined(__APPLE__) && \
MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) || \
(defined(__FreeBSD__) && __FreeBSD_version+0 < 503000) || \
(defined(__OpenBSD__) && OpenBSD+0 < 201311) || \
(defined(__NetBSD__) && __NetBSD_Version__+0 < 400000000) || \
!defined(HAVE_GETADDRINFO))
#define USE_GETADDRINFO_LOCK
#endif
#ifdef USE_GETADDRINFO_LOCK
#define ACQUIRE_GETADDRINFO_LOCK PyThread_acquire_lock(netdb_lock, 1);
#define RELEASE_GETADDRINFO_LOCK PyThread_release_lock(netdb_lock);
#else
#define ACQUIRE_GETADDRINFO_LOCK
#define RELEASE_GETADDRINFO_LOCK
#endif
/* Generic socket object definitions and includes */
#define PySocket_BUILDING_SOCKET
/* Addressing includes */
#ifdef AF_CAN
#undef AF_CAN
#endif
#ifdef HAVE_INET_ATON
#define USE_INET_ATON_WEAKLINK
#endif
#ifndef SOCKETCLOSE
#define SOCKETCLOSE close
#endif
#if (defined(HAVE_BLUETOOTH_H) || defined(HAVE_BLUETOOTH_BLUETOOTH_H)) && !defined(__NetBSD__) && !defined(__DragonFly__)
#define USE_BLUETOOTH 1
#if defined(__FreeBSD__)
#define BTPROTO_L2CAP BLUETOOTH_PROTO_L2CAP
#define BTPROTO_RFCOMM BLUETOOTH_PROTO_RFCOMM
#define BTPROTO_HCI BLUETOOTH_PROTO_HCI
#define SOL_HCI SOL_HCI_RAW
#define HCI_FILTER SO_HCI_RAW_FILTER
#define sockaddr_l2 sockaddr_l2cap
#define sockaddr_rc sockaddr_rfcomm
#define hci_dev hci_node
#define _BT_L2_MEMB(sa, memb) ((sa)->l2cap_##memb)
#define _BT_RC_MEMB(sa, memb) ((sa)->rfcomm_##memb)
#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
#elif defined(__NetBSD__) || defined(__DragonFly__)
#define sockaddr_l2 sockaddr_bt
#define sockaddr_rc sockaddr_bt
#define sockaddr_hci sockaddr_bt
#define sockaddr_sco sockaddr_bt
#define SOL_HCI BTPROTO_HCI
#define HCI_DATA_DIR SO_HCI_DIRECTION
#define _BT_L2_MEMB(sa, memb) ((sa)->bt_##memb)
#define _BT_RC_MEMB(sa, memb) ((sa)->bt_##memb)
#define _BT_HCI_MEMB(sa, memb) ((sa)->bt_##memb)
#define _BT_SCO_MEMB(sa, memb) ((sa)->bt_##memb)
#else
#define _BT_L2_MEMB(sa, memb) ((sa)->l2_##memb)
#define _BT_RC_MEMB(sa, memb) ((sa)->rc_##memb)
#define _BT_HCI_MEMB(sa, memb) ((sa)->hci_##memb)
#define _BT_SCO_MEMB(sa, memb) ((sa)->sco_##memb)
#endif
#endif
/* Convert "sock_addr_t *" to "struct sockaddr *". */
#define SAS2SA(x) (&((x)->sa))
/*
* Constants for getnameinfo()
*/
#if !defined(NI_MAXHOST)
#define NI_MAXHOST 1025
#endif
#if !defined(NI_MAXSERV)
#define NI_MAXSERV 32
#endif
#ifndef INVALID_SOCKET /* MS defines this */
#define INVALID_SOCKET (-1)
#endif
#ifndef INADDR_NONE
#define INADDR_NONE (-1)
#endif
#ifndef SOMAXCONN
#define SOMAXCONN 0x80
#endif
#ifdef IPPROTO_MAX
#undef IPPROTO_MAX
#define IPPROTO_MAX 255
#endif
/* XXX There's a problem here: *static* functions are not supposed to have
a Py prefix (or use CapitalizedWords). Later... */
/* Global variable holding the exception type for errors detected
by this module (but not argument type or memory errors, etc.). */
static PyObject *socket_herror;
static PyObject *socket_gaierror;
static PyObject *socket_timeout;
/* A forward reference to the socket type object.
The sock_type variable contains pointers to various functions,
some of which call new_sockobject(), which uses sock_type, so
there has to be a circular reference. */
static PyTypeObject sock_type;
/* Largest value to try to store in a socklen_t (used when handling
ancillary data). POSIX requires socklen_t to hold at least
(2**31)-1 and recommends against storing larger values, but
socklen_t was originally int in the BSD interface, so to be on the
safe side we use the smaller of (2**31)-1 and INT_MAX. */
#if INT_MAX > 0x7fffffff
#define SOCKLEN_T_LIMIT 0x7fffffff
#else
#define SOCKLEN_T_LIMIT INT_MAX
#endif
#ifdef HAVE_POLL
/* Instead of select(), we'll use poll() since poll() works on any fd. */
#define IS_SELECTABLE(s) 1
/* Can we call select() with this socket without a buffer overrun? */
#else
/* If there's no timeout left, we don't have to call select, so it's a safe,
* little white lie. */
#define IS_SELECTABLE(s) (_PyIsSelectable_fd((s)->sock_fd) || (s)->sock_timeout <= 0)
#endif
static PyObject*
select_error(void)
{
PyErr_SetString(PyExc_OSError, "unable to select on socket");
return NULL;
}
#ifdef MS_WINDOWS
#ifndef WSAEAGAIN
#define WSAEAGAIN WSAEWOULDBLOCK
#endif
#define CHECK_ERRNO(expected) \
(WSAGetLastError() == WSA ## expected)
#else
#define CHECK_ERRNO(expected) \
(errno == expected)
#endif
#ifdef MS_WINDOWS
# define GET_SOCK_ERROR WSAGetLastError()
# define SET_SOCK_ERROR(err) WSASetLastError(err)
# define SOCK_TIMEOUT_ERR WSAEWOULDBLOCK
# define SOCK_INPROGRESS_ERR WSAEWOULDBLOCK
#else
# define GET_SOCK_ERROR errno
# define SET_SOCK_ERROR(err) do { errno = err; } while (0)
# define SOCK_TIMEOUT_ERR EWOULDBLOCK
# define SOCK_INPROGRESS_ERR EINPROGRESS
#endif
#ifdef MS_WINDOWS
/* Does WSASocket() support the WSA_FLAG_NO_HANDLE_INHERIT flag? */
static int support_wsa_no_inherit = -1;
#endif
/* Convenience function to raise an error according to errno
and return a NULL pointer from a function. */
static PyObject *
set_error(void)
{
#ifdef MS_WINDOWS
int err_no = WSAGetLastError();
/* PyErr_SetExcFromWindowsErr() invokes FormatMessage() which
recognizes the error codes used by both GetLastError() and
WSAGetLastError */
if (err_no)
return PyErr_SetExcFromWindowsErr(PyExc_OSError, err_no);
#endif
return PyErr_SetFromErrno(PyExc_OSError);
}
static PyObject *
set_herror(int h_error)
{
PyObject *v;
#ifdef HAVE_HSTRERROR
v = Py_BuildValue("(is)", h_error, (char *)hstrerror(h_error));
#else
v = Py_BuildValue("(is)", h_error, "host not found");
#endif
if (v != NULL) {
PyErr_SetObject(socket_herror, v);
Py_DECREF(v);
}
return NULL;
}
static PyObject *
set_gaierror(int error)
{
PyObject *v;
#ifdef EAI_SYSTEM
/* EAI_SYSTEM is not available on Windows XP. */
if (error == EAI_SYSTEM)
return set_error();
#endif
#ifdef HAVE_GAI_STRERROR
v = Py_BuildValue("(is)", error, gai_strerror(error));
#else
v = Py_BuildValue("(is)", error, "getaddrinfo failed");
#endif
if (v != NULL) {
PyErr_SetObject(socket_gaierror, v);
Py_DECREF(v);
}
return NULL;
}
/* Function to perform the setting of socket blocking mode
internally. block = (1 | 0). */
static int
internal_setblocking(PySocketSockObject *s, int block)
{
int result = -1;
#ifdef MS_WINDOWS
u_long arg;
#endif
#if !defined(MS_WINDOWS) \
&& !((defined(HAVE_SYS_IOCTL_H) && defined(FIONBIO)))
int delay_flag, new_delay_flag;
#endif
#ifdef SOCK_NONBLOCK
if (block)
s->sock_type &= (~SOCK_NONBLOCK);
else
s->sock_type |= SOCK_NONBLOCK;
#endif
Py_BEGIN_ALLOW_THREADS
block = !block;
if (ioctl(s->sock_fd, FIONBIO, (unsigned int *)&block) == -1)
goto done;
result = 0;
done:
; /* necessary for --without-threads flag */
Py_END_ALLOW_THREADS
if (result) {
#ifndef MS_WINDOWS
PyErr_SetFromErrno(PyExc_OSError);
#else
PyErr_SetExcFromWindowsErr(PyExc_OSError, WSAGetLastError());
#endif
}
return result;
}
static int
internal_select(PySocketSockObject *s, int writing, _PyTime_t interval,
int connect)
{
int n;
#ifdef HAVE_POLL
struct pollfd pollfd;
_PyTime_t ms;
#else
fd_set fds, efds;
struct timeval tv, *tvp;
#endif
#ifdef WITH_THREAD
/* must be called with the GIL held */
assert(PyGILState_Check());
#endif
/* Error condition is for output only */
assert(!(connect && !writing));
/* Guard against closed socket */
if (s->sock_fd == INVALID_SOCKET)
return 0;
/* Prefer poll, if available, since you can poll() any fd
* which can't be done with select(). */
#ifdef HAVE_POLL
pollfd.fd = s->sock_fd;
pollfd.events = writing ? POLLOUT : POLLIN;
if (connect) {
/* On Windows, the socket becomes writable on connection success,
but a connection failure is notified as an error. On POSIX, the
socket becomes writable on connection success or on connection
failure. */
pollfd.events |= POLLERR;
}
/* s->sock_timeout is in seconds, timeout in ms */
ms = _PyTime_AsMilliseconds(interval, _PyTime_ROUND_CEILING);
assert(ms <= INT_MAX);
Py_BEGIN_ALLOW_THREADS;
n = poll(&pollfd, 1, (int)ms);
Py_END_ALLOW_THREADS;
#else
if (interval >= 0) {
_PyTime_AsTimeval_noraise(interval, &tv, _PyTime_ROUND_CEILING);
tvp = &tv;
}
else
tvp = NULL;
FD_ZERO(&fds);
FD_SET(s->sock_fd, &fds);
FD_ZERO(&efds);
if (connect) {
/* On Windows, the socket becomes writable on connection success,
but a connection failure is notified as an error. On POSIX, the
socket becomes writable on connection success or on connection
failure. */
FD_SET(s->sock_fd, &efds);
}
/* See if the socket is ready */
Py_BEGIN_ALLOW_THREADS;
if (writing)
n = select(Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int),
NULL, &fds, &efds, tvp);
else
n = select(Py_SAFE_DOWNCAST(s->sock_fd+1, SOCKET_T, int),
&fds, NULL, &efds, tvp);
Py_END_ALLOW_THREADS;
#endif
if (n < 0)
return -1;
if (n == 0)
return 1;
return 0;
}
/* Call a socket function.
On error, raise an exception and return -1 if err is set, or fill err and
return -1 otherwise. If a signal was received and the signal handler raised
an exception, return -1, and set err to -1 if err is set.
On success, return 0, and set err to 0 if err is set.
If the socket has a timeout, wait until the socket is ready before calling
the function: wait until the socket is writable if writing is nonzero, wait
until the socket received data otherwise.
If the socket function is interrupted by a signal (failed with EINTR): retry
the function, except if the signal handler raised an exception (PEP 475).
When the function is retried, recompute the timeout using a monotonic clock.
sock_call_ex() must be called with the GIL held. The socket function is
called with the GIL released. */
static int
sock_call_ex(PySocketSockObject *s,
int writing,
int (*sock_func) (PySocketSockObject *s, void *data),
void *data,
int connect,
int *err,
_PyTime_t timeout)
{
int has_timeout = (timeout > 0);
_PyTime_t deadline = 0;
int deadline_initialized = 0;
int res;
#ifdef WITH_THREAD
/* sock_call() must be called with the GIL held. */
assert(PyGILState_Check());
#endif
/* outer loop to retry select() when select() is interrupted by a signal
or to retry select()+sock_func() on false positive (see above) */
while (1) {
/* For connect(), poll even for blocking socket. The connection
runs asynchronously. */
if (has_timeout || connect) {
if (has_timeout) {
_PyTime_t interval;
if (deadline_initialized) {
/* recompute the timeout */
interval = deadline - _PyTime_GetMonotonicClock();
}
else {
deadline_initialized = 1;
deadline = _PyTime_GetMonotonicClock() + timeout;
interval = timeout;
}
if (interval >= 0)
res = internal_select(s, writing, interval, connect);
else
res = 1;
}
else {
res = internal_select(s, writing, timeout, connect);
}
if (res == -1) {
if (err)
*err = GET_SOCK_ERROR;
if (CHECK_ERRNO(EINTR)) {
/* select() was interrupted by a signal */
if (PyErr_CheckSignals()) {
if (err)
*err = -1;
return -1;
}
/* retry select() */
continue;
}
/* select() failed */
s->errorhandler();
return -1;
}
if (res == 1) {
if (err)
*err = SOCK_TIMEOUT_ERR;
else
PyErr_SetString(socket_timeout, "timed out");
return -1;
}
/* the socket is ready */
}
/* inner loop to retry sock_func() when sock_func() is interrupted
by a signal */
while (1) {
Py_BEGIN_ALLOW_THREADS
res = sock_func(s, data);
Py_END_ALLOW_THREADS
if (res) {
/* sock_func() succeeded */
if (err)
*err = 0;
return 0;
}
if (err)
*err = GET_SOCK_ERROR;
if (!CHECK_ERRNO(EINTR))
break;
/* sock_func() was interrupted by a signal */
if (PyErr_CheckSignals()) {
if (err)
*err = -1;
return -1;
}
/* retry sock_func() */
}
if (s->sock_timeout > 0
&& (CHECK_ERRNO(EWOULDBLOCK) || CHECK_ERRNO(EAGAIN))) {
/* False positive: sock_func() failed with EWOULDBLOCK or EAGAIN.
For example, select() could indicate a socket is ready for
reading, but the data then discarded by the OS because of a
wrong checksum.
Loop on select() to recheck for socket readyness. */
continue;
}
/* sock_func() failed */
if (!err)
s->errorhandler();
/* else: err was already set before */
return -1;
}
}
static int
sock_call(PySocketSockObject *s,
int writing,
int (*func) (PySocketSockObject *s, void *data),
void *data)
{
return sock_call_ex(s, writing, func, data, 0, NULL, s->sock_timeout);
}
/* Initialize a new socket object. */
/* Default timeout for new sockets */
static _PyTime_t defaulttimeout = _PYTIME_FROMSECONDS(-1);
static int
init_sockobject(PySocketSockObject *s,
SOCKET_T fd, int family, int type, int proto)
{
s->sock_fd = fd;
s->sock_family = family;
s->sock_type = type;
s->sock_proto = proto;
s->errorhandler = &set_error;
#ifdef SOCK_NONBLOCK
if (type & SOCK_NONBLOCK)
s->sock_timeout = 0;
else
#endif
{
s->sock_timeout = defaulttimeout;
if (defaulttimeout >= 0) {
if (internal_setblocking(s, 0) == -1) {
return -1;
}
}
}
return 0;
}
/* Create a new socket object.
This just creates the object and initializes it.
If the creation fails, return NULL and set an exception (implicit
in NEWOBJ()). */
static PySocketSockObject *
new_sockobject(SOCKET_T fd, int family, int type, int proto)
{
PySocketSockObject *s;
s = (PySocketSockObject *)
PyType_GenericNew(&sock_type, NULL, NULL);
if (s == NULL)
return NULL;
if (init_sockobject(s, fd, family, type, proto) == -1) {
Py_DECREF(s);
return NULL;
}
return s;
}
/* Lock to allow python interpreter to continue, but only allow one
thread to be in gethostbyname or getaddrinfo */
#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
static PyThread_type_lock netdb_lock;
#endif
/* Convert a string specifying a host name or one of a few symbolic
names to a numeric IP address. This usually calls gethostbyname()
to do the work; the names "" and "<broadcast>" are special.
Return the length (IPv4 should be 4 bytes), or negative if
an error occurred; then an exception is raised. */
static int
setipaddr(const char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af)
{
struct addrinfo hints, *res;
int error;
bzero(addr_ret, sizeof(*addr_ret));
if (name[0] == '\0') {
int siz;
bzero(&hints, sizeof(hints));
hints.ai_family = af;
hints.ai_socktype = SOCK_DGRAM; /*dummy*/
hints.ai_flags = AI_PASSIVE;
Py_BEGIN_ALLOW_THREADS
ACQUIRE_GETADDRINFO_LOCK
error = getaddrinfo(NULL, "0", &hints, &res);
Py_END_ALLOW_THREADS
/* We assume that those thread-unsafe getaddrinfo() versions
*are* safe regarding their return value, ie. that a
subsequent call to getaddrinfo() does not destroy the
outcome of the first call. */
RELEASE_GETADDRINFO_LOCK
if (error) {
set_gaierror(error);
return -1;
}
switch (res->ai_family) {
case AF_INET:
siz = 4;
break;
#ifdef ENABLE_IPV6
case AF_INET6:
siz = 16;
break;
#endif
default:
freeaddrinfo(res);
PyErr_SetString(PyExc_OSError,
"unsupported address family");
return -1;
}
if (res->ai_next) {
freeaddrinfo(res);
PyErr_SetString(PyExc_OSError,
"wildcard resolved to multiple address");
return -1;
}
if (res->ai_addrlen < addr_ret_size)
addr_ret_size = res->ai_addrlen;
memcpy(addr_ret, res->ai_addr, addr_ret_size);
freeaddrinfo(res);
return siz;
}
/* special-case broadcast - inet_addr() below can return INADDR_NONE for
* this */
if (strcmp(name, "255.255.255.255") == 0 ||
strcmp(name, "<broadcast>") == 0) {
struct sockaddr_in *sin;
if (af != AF_INET && af != AF_UNSPEC) {
PyErr_SetString(PyExc_OSError,
"address family mismatched");
return -1;
}
sin = (struct sockaddr_in *)addr_ret;
bzero(sin, sizeof(*sin));
sin->sin_family = AF_INET;
#ifdef HAVE_SOCKADDR_SA_LEN
sin->sin_len = sizeof(*sin);
#endif
sin->sin_addr.s_addr = INADDR_BROADCAST;
return sizeof(sin->sin_addr);
}
/* avoid a name resolution in case of numeric address */
#ifdef HAVE_INET_PTON
/* check for an IPv4 address */
if (af == AF_UNSPEC || af == AF_INET) {
struct sockaddr_in *sin = (struct sockaddr_in *)addr_ret;
bzero(sin, sizeof(*sin));
if (inet_pton(AF_INET, name, &sin->sin_addr) > 0) {
sin->sin_family = AF_INET;
#ifdef HAVE_SOCKADDR_SA_LEN
sin->sin_len = sizeof(*sin);
#endif
return 4;
}
}
#ifdef ENABLE_IPV6
/* check for an IPv6 address - if the address contains a scope ID, we
* fallback to getaddrinfo(), which can handle translation from interface
* name to interface index */
if ((af == AF_UNSPEC || af == AF_INET6) && !strchr(name, '%')) {
struct sockaddr_in6 *sin = (struct sockaddr_in6 *)addr_ret;
bzero(sin, sizeof(*sin));
if (inet_pton(AF_INET6, name, &sin->sin6_addr) > 0) {
sin->sin6_family = AF_INET6;
#ifdef HAVE_SOCKADDR_SA_LEN
sin->sin6_len = sizeof(*sin);
#endif
return 16;
}
}
#endif /* ENABLE_IPV6 */
#else /* HAVE_INET_PTON */
/* check for an IPv4 address */
if (af == AF_INET || af == AF_UNSPEC) {
struct sockaddr_in *sin = (struct sockaddr_in *)addr_ret;
bzero(sin, sizeof(*sin));
if ((sin->sin_addr.s_addr = inet_addr(name)) != INADDR_NONE) {
sin->sin_family = AF_INET;
#ifdef HAVE_SOCKADDR_SA_LEN
sin->sin_len = sizeof(*sin);
#endif
return 4;
}
}
#endif /* HAVE_INET_PTON */
/* perform a name resolution */
bzero(&hints, sizeof(hints));
hints.ai_family = af;
Py_BEGIN_ALLOW_THREADS
ACQUIRE_GETADDRINFO_LOCK
error = getaddrinfo(name, NULL, &hints, &res);
#if defined(__digital__) && defined(__unix__)
if (error == EAI_NONAME && af == AF_UNSPEC) {
/* On Tru64 V5.1, numeric-to-addr conversion fails
if no address family is given. Assume IPv4 for now.*/
hints.ai_family = AF_INET;
error = getaddrinfo(name, NULL, &hints, &res);
}
#endif
Py_END_ALLOW_THREADS
RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
if (error) {
set_gaierror(error);
return -1;
}
if (res->ai_addrlen < addr_ret_size)
addr_ret_size = res->ai_addrlen;
memcpy((char *) addr_ret, res->ai_addr, addr_ret_size);
freeaddrinfo(res);
switch (addr_ret->sa_family) {
case AF_INET:
return 4;
#ifdef ENABLE_IPV6
case AF_INET6:
return 16;
#endif
default:
PyErr_SetString(PyExc_OSError, "unknown address family");
return -1;
}
}
/* Create a string object representing an IP address.
This is always a string of the form 'dd.dd.dd.dd' (with variable
size numbers). */
static PyObject *
makeipaddr(struct sockaddr *addr, int addrlen)
{
char buf[NI_MAXHOST];
int error;
error = getnameinfo(addr, addrlen, buf, sizeof(buf), NULL, 0,
NI_NUMERICHOST);
if (error) {
set_gaierror(error);
return NULL;
}
return PyUnicode_FromString(buf);
}
#ifdef USE_BLUETOOTH
/* Convert a string representation of a Bluetooth address into a numeric
address. Returns the length (6), or raises an exception and returns -1 if
an error occurred. */
static int
setbdaddr(const char *name, bdaddr_t *bdaddr)
{
unsigned int b0, b1, b2, b3, b4, b5;
char ch;
int n;
n = sscanf(name, "%X:%X:%X:%X:%X:%X%c",
&b5, &b4, &b3, &b2, &b1, &b0, &ch);
if (n == 6 && (b0 | b1 | b2 | b3 | b4 | b5) < 256) {
bdaddr->b[0] = b0;
bdaddr->b[1] = b1;
bdaddr->b[2] = b2;
bdaddr->b[3] = b3;
bdaddr->b[4] = b4;
bdaddr->b[5] = b5;
return 6;
} else {
PyErr_SetString(PyExc_OSError, "bad bluetooth address");
return -1;
}
}
/* Create a string representation of the Bluetooth address. This is always a
string of the form 'XX:XX:XX:XX:XX:XX' where XX is a two digit hexadecimal
value (zero padded if necessary). */
static PyObject *
makebdaddr(bdaddr_t *bdaddr)
{
char buf[(6 * 2) + 5 + 1];
sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X",
bdaddr->b[5], bdaddr->b[4], bdaddr->b[3],
bdaddr->b[2], bdaddr->b[1], bdaddr->b[0]);
return PyUnicode_FromString(buf);
}
#endif
/* Create an object representing the given socket address,
suitable for passing it back to bind(), connect() etc.
The family field of the sockaddr structure is inspected
to determine what kind of address it really is. */
/*ARGSUSED*/
static PyObject *
makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)
{
if (addrlen == 0) {
/* No address -- may be recvfrom() from known socket */
Py_INCREF(Py_None);
return Py_None;
}
switch (addr->sa_family) {
case AF_INET:
{
struct sockaddr_in *a;
PyObject *addrobj = makeipaddr(addr, sizeof(*a));
PyObject *ret = NULL;
if (addrobj) {
a = (struct sockaddr_in *)addr;
ret = Py_BuildValue("Oi", addrobj, ntohs(a->sin_port));
Py_DECREF(addrobj);
}
return ret;
}
#if defined(AF_UNIX)
case AF_UNIX:
{
struct sockaddr_un *a = (struct sockaddr_un *) addr;
#ifdef __linux__
size_t linuxaddrlen = addrlen - offsetof(struct sockaddr_un, sun_path);
if (linuxaddrlen > 0 && a->sun_path[0] == 0) { /* Linux abstract namespace */
return PyBytes_FromStringAndSize(a->sun_path, linuxaddrlen);
}
else
#endif /* linux */
{
/* regular NULL-terminated string */
return PyUnicode_DecodeFSDefault(a->sun_path);
}
}
#endif /* AF_UNIX */
#ifdef ENABLE_IPV6
case AF_INET6:
{
struct sockaddr_in6 *a;
PyObject *addrobj = makeipaddr(addr, sizeof(*a));
PyObject *ret = NULL;
if (addrobj) {
a = (struct sockaddr_in6 *)addr;
ret = Py_BuildValue("OiII",
addrobj,
ntohs(a->sin6_port),
ntohl(a->sin6_flowinfo),
a->sin6_scope_id);
Py_DECREF(addrobj);
}
return ret;
}
#endif /* ENABLE_IPV6 */
#ifdef USE_BLUETOOTH
case AF_BLUETOOTH:
switch (proto) {
case BTPROTO_L2CAP:
{
struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr;
PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr));
PyObject *ret = NULL;
if (addrobj) {
ret = Py_BuildValue("Oi",
addrobj,
_BT_L2_MEMB(a, psm));
Py_DECREF(addrobj);
}
return ret;
}
case BTPROTO_RFCOMM:
{
struct sockaddr_rc *a = (struct sockaddr_rc *) addr;
PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr));
PyObject *ret = NULL;
if (addrobj) {
ret = Py_BuildValue("Oi",
addrobj,
_BT_RC_MEMB(a, channel));
Py_DECREF(addrobj);
}
return ret;
}
case BTPROTO_HCI:
{
struct sockaddr_hci *a = (struct sockaddr_hci *) addr;
#if defined(__NetBSD__) || defined(__DragonFly__)
return makebdaddr(&_BT_HCI_MEMB(a, bdaddr));
#else /* __NetBSD__ || __DragonFly__ */
PyObject *ret = NULL;
ret = Py_BuildValue("i", _BT_HCI_MEMB(a, dev));
return ret;
#endif /* !(__NetBSD__ || __DragonFly__) */
}
#if !defined(__FreeBSD__)
case BTPROTO_SCO:
{
struct sockaddr_sco *a = (struct sockaddr_sco *) addr;
return makebdaddr(&_BT_SCO_MEMB(a, bdaddr));
}
#endif /* !__FreeBSD__ */
default:
PyErr_SetString(PyExc_ValueError,
"Unknown Bluetooth protocol");
return NULL;
}
#endif /* USE_BLUETOOTH */
#if defined(HAVE_NETPACKET_PACKET_H) && defined(SIOCGIFNAME)
case AF_PACKET:
{
struct sockaddr_ll *a = (struct sockaddr_ll *)addr;
const char *ifname = "";
struct ifreq ifr;
/* need to look up interface name give index */
if (a->sll_ifindex) {
ifr.ifr_ifindex = a->sll_ifindex;
if (ioctl(sockfd, SIOCGIFNAME, &ifr) == 0)
ifname = ifr.ifr_name;
}
return Py_BuildValue("shbhy#",
ifname,
ntohs(a->sll_protocol),
a->sll_pkttype,
a->sll_hatype,
a->sll_addr,
a->sll_halen);
}
#endif /* HAVE_NETPACKET_PACKET_H && SIOCGIFNAME */
#ifdef HAVE_LINUX_TIPC_H
case AF_TIPC:
{
struct sockaddr_tipc *a = (struct sockaddr_tipc *) addr;
if (a->addrtype == TIPC_ADDR_NAMESEQ) {
return Py_BuildValue("IIIII",
a->addrtype,
a->addr.nameseq.type,
a->addr.nameseq.lower,
a->addr.nameseq.upper,
a->scope);
} else if (a->addrtype == TIPC_ADDR_NAME) {
return Py_BuildValue("IIIII",
a->addrtype,
a->addr.name.name.type,
a->addr.name.name.instance,
a->addr.name.name.instance,
a->scope);
} else if (a->addrtype == TIPC_ADDR_ID) {
return Py_BuildValue("IIIII",
a->addrtype,
a->addr.id.node,
a->addr.id.ref,
0,
a->scope);
} else {
PyErr_SetString(PyExc_ValueError,
"Invalid address type");
return NULL;
}
}
#endif /* HAVE_LINUX_TIPC_H */
#if defined(AF_CAN) && defined(SIOCGIFNAME)
case AF_CAN:
{
struct sockaddr_can *a = (struct sockaddr_can *)addr;
const char *ifname = "";
struct ifreq ifr;
/* need to look up interface name given index */
if (a->can_ifindex) {
ifr.ifr_ifindex = a->can_ifindex;
if (ioctl(sockfd, SIOCGIFNAME, &ifr) == 0)
ifname = ifr.ifr_name;
}
return Py_BuildValue("O&h", PyUnicode_DecodeFSDefault,
ifname,
a->can_family);
}
#endif /* AF_CAN && SIOCGIFNAME */
#ifdef PF_SYSTEM
case PF_SYSTEM:
switch(proto) {
#ifdef SYSPROTO_CONTROL
case SYSPROTO_CONTROL:
{
struct sockaddr_ctl *a = (struct sockaddr_ctl *)addr;
return Py_BuildValue("(II)", a->sc_id, a->sc_unit);
}
#endif /* SYSPROTO_CONTROL */
default:
PyErr_SetString(PyExc_ValueError,
"Invalid address type");
return 0;
}
#endif /* PF_SYSTEM */
#ifdef HAVE_SOCKADDR_ALG
case AF_ALG:
{
struct sockaddr_alg *a = (struct sockaddr_alg *)addr;
return Py_BuildValue("s#s#HH",
a->salg_type,
strnlen((const char*)a->salg_type,
sizeof(a->salg_type)),
a->salg_name,
strnlen((const char*)a->salg_name,
sizeof(a->salg_name)),
a->salg_feat,
a->salg_mask);
}
#endif /* HAVE_SOCKADDR_ALG */
/* More cases here... */
default:
/* If we don't know the address family, don't raise an
exception -- return it as an (int, bytes) tuple. */
return Py_BuildValue("iy#",
addr->sa_family,
addr->sa_data,
sizeof(addr->sa_data));
}
}
/* Helper for getsockaddrarg: bypass IDNA for ASCII-only host names
(in particular, numeric IP addresses). */
struct maybe_idna {
PyObject *obj;
char *buf;
};
static void
idna_cleanup(struct maybe_idna *data)
{
Py_CLEAR(data->obj);
}
static int
idna_converter(PyObject *obj, struct maybe_idna *data)
{
size_t len;
PyObject *obj2;
if (obj == NULL) {
idna_cleanup(data);
return 1;
}
data->obj = NULL;
len = -1;
if (PyBytes_Check(obj)) {
data->buf = PyBytes_AsString(obj);
len = PyBytes_Size(obj);
}
else if (PyByteArray_Check(obj)) {
data->buf = PyByteArray_AsString(obj);
len = PyByteArray_Size(obj);
}
else if (PyUnicode_Check(obj)) {
if (PyUnicode_READY(obj) == -1) {
return 0;
}
if (PyUnicode_IS_COMPACT_ASCII(obj)) {
data->buf = PyUnicode_DATA(obj);
len = PyUnicode_GET_LENGTH(obj);
}
else {
obj2 = PyUnicode_AsEncodedString(obj, "idna", NULL);
if (!obj2) {
PyErr_SetString(PyExc_TypeError, "encoding of hostname failed");
return 0;
}
assert(PyBytes_Check(obj2));
data->obj = obj2;
data->buf = PyBytes_AS_STRING(obj2);
len = PyBytes_GET_SIZE(obj2);
}
}
else {
PyErr_Format(PyExc_TypeError, "str, bytes or bytearray expected, not %s",
obj->ob_type->tp_name);
return 0;
}
if (strlen(data->buf) != len) {
Py_CLEAR(data->obj);
PyErr_SetString(PyExc_TypeError, "host name must not contain null character");
return 0;
}
return Py_CLEANUP_SUPPORTED;
}
/* Parse a socket address argument according to the socket object's
address family. Return 1 if the address was in the proper format,
0 of not. The address is returned through addr_ret, its length
through len_ret. */
static int
getsockaddrarg(PySocketSockObject *s, PyObject *args,
struct sockaddr *addr_ret, int *len_ret)
{
if(0) {}
#if defined(AF_UNIX)
else if (s->sock_family == AF_UNIX)
{
struct sockaddr_un* addr;
Py_buffer path;
int retval = 0;
/* PEP 383. Not using PyUnicode_FSConverter since we need to
allow embedded nulls on Linux. */
if (PyUnicode_Check(args)) {
if ((args = PyUnicode_EncodeFSDefault(args)) == NULL)
return 0;
}
else
Py_INCREF(args);
if (!PyArg_Parse(args, "y*", &path)) {
Py_DECREF(args);
return retval;
}
assert(path.len >= 0);
addr = (struct sockaddr_un*)addr_ret;
#ifdef __linux__
if (path.len > 0 && *(const char *)path.buf == 0) {
/* Linux abstract namespace extension */
if ((size_t)path.len > sizeof addr->sun_path) {
PyErr_SetString(PyExc_OSError,
"AF_UNIX path too long");
goto unix_out;
}
}
else
#endif /* linux */
{
/* regular NULL-terminated string */
if ((size_t)path.len >= sizeof addr->sun_path) {
PyErr_SetString(PyExc_OSError,
"AF_UNIX path too long");
goto unix_out;
}
addr->sun_path[path.len] = 0;
}
addr->sun_family = s->sock_family;
memcpy(addr->sun_path, path.buf, path.len);
*len_ret = path.len + offsetof(struct sockaddr_un, sun_path);
retval = 1;
unix_out:
PyBuffer_Release(&path);
Py_DECREF(args);
return retval;
}
#endif /* AF_UNIX */
else if( s->sock_family == AF_INET)
{
struct sockaddr_in* addr;
struct maybe_idna host = {NULL, NULL};
int port, result;
if (!PyTuple_Check(args)) {
PyErr_Format(
PyExc_TypeError,
"getsockaddrarg: "
"AF_INET address must be tuple, not %.500s",
Py_TYPE(args)->tp_name);
return 0;
}
if (!PyArg_ParseTuple(args, "O&i:getsockaddrarg",
idna_converter, &host, &port))
return 0;
addr=(struct sockaddr_in*)addr_ret;
result = setipaddr(host.buf, (struct sockaddr *)addr,
sizeof(*addr), AF_INET);
idna_cleanup(&host);
if (result < 0)
return 0;
if (port < 0 || port > 0xffff) {
PyErr_SetString(
PyExc_OverflowError,
"getsockaddrarg: port must be 0-65535.");
return 0;
}
addr->sin_family = AF_INET;
addr->sin_port = htons((short)port);
*len_ret = sizeof *addr;
return 1;
}
#ifdef ENABLE_IPV6
else if(s->sock_family == AF_INET6)
{
struct sockaddr_in6* addr;
struct maybe_idna host = {NULL, NULL};
int port, result;
unsigned int flowinfo, scope_id;
flowinfo = scope_id = 0;
if (!PyTuple_Check(args)) {
PyErr_Format(
PyExc_TypeError,
"getsockaddrarg: "
"AF_INET6 address must be tuple, not %.500s",
Py_TYPE(args)->tp_name);
return 0;
}
if (!PyArg_ParseTuple(args, "O&i|II",
idna_converter, &host, &port, &flowinfo,
&scope_id)) {
return 0;
}
addr = (struct sockaddr_in6*)addr_ret;
result = setipaddr(host.buf, (struct sockaddr *)addr,
sizeof(*addr), AF_INET6);
idna_cleanup(&host);
if (result < 0)
return 0;
if (port < 0 || port > 0xffff) {
PyErr_SetString(
PyExc_OverflowError,
"getsockaddrarg: port must be 0-65535.");
return 0;
}
if (flowinfo > 0xfffff) {
PyErr_SetString(
PyExc_OverflowError,
"getsockaddrarg: flowinfo must be 0-1048575.");
return 0;
}
addr->sin6_family = s->sock_family;
addr->sin6_port = htons((short)port);
addr->sin6_flowinfo = htonl(flowinfo);
addr->sin6_scope_id = scope_id;
*len_ret = sizeof *addr;
return 1;
}
#endif /* ENABLE_IPV6 */
#ifdef USE_BLUETOOTH
else if(s->sock_family == AF_BLUETOOTH)
{
switch (s->sock_proto) {
case BTPROTO_L2CAP:
{
struct sockaddr_l2 *addr;
const char *straddr;
addr = (struct sockaddr_l2 *)addr_ret;
bzero(addr, sizeof(struct sockaddr_l2));
_BT_L2_MEMB(addr, family) = AF_BLUETOOTH;
if (!PyArg_ParseTuple(args, "si", &straddr,
&_BT_L2_MEMB(addr, psm))) {
PyErr_SetString(PyExc_OSError, "getsockaddrarg: "
"wrong format");
return 0;
}
if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0)
return 0;
*len_ret = sizeof *addr;
return 1;
}
case BTPROTO_RFCOMM:
{
struct sockaddr_rc *addr;
const char *straddr;
addr = (struct sockaddr_rc *)addr_ret;
_BT_RC_MEMB(addr, family) = AF_BLUETOOTH;
if (!PyArg_ParseTuple(args, "si", &straddr,
&_BT_RC_MEMB(addr, channel))) {
PyErr_SetString(PyExc_OSError, "getsockaddrarg: "
"wrong format");
return 0;
}
if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0)
return 0;
*len_ret = sizeof *addr;
return 1;
}
case BTPROTO_HCI:
{
struct sockaddr_hci *addr = (struct sockaddr_hci *)addr_ret;
#if defined(__NetBSD__) || defined(__DragonFly__)
const char *straddr;
_BT_HCI_MEMB(addr, family) = AF_BLUETOOTH;
if (!PyBytes_Check(args)) {
PyErr_SetString(PyExc_OSError, "getsockaddrarg: "
"wrong format");
return 0;
}
straddr = PyBytes_AS_STRING(args);
if (setbdaddr(straddr, &_BT_HCI_MEMB(addr, bdaddr)) < 0)
return 0;
#else /* __NetBSD__ || __DragonFly__ */
_BT_HCI_MEMB(addr, family) = AF_BLUETOOTH;
if (!PyArg_ParseTuple(args, "i", &_BT_HCI_MEMB(addr, dev))) {
PyErr_SetString(PyExc_OSError, "getsockaddrarg: "
"wrong format");
return 0;
}
#endif /* !(__NetBSD__ || __DragonFly__) */
*len_ret = sizeof *addr;
return 1;
}
#if !defined(__FreeBSD__)
case BTPROTO_SCO:
{
struct sockaddr_sco *addr;
const char *straddr;
addr = (struct sockaddr_sco *)addr_ret;
_BT_SCO_MEMB(addr, family) = AF_BLUETOOTH;
if (!PyBytes_Check(args)) {
PyErr_SetString(PyExc_OSError, "getsockaddrarg: "
"wrong format");
return 0;
}
straddr = PyBytes_AS_STRING(args);
if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0)
return 0;
*len_ret = sizeof *addr;
return 1;
}
#endif /* !__FreeBSD__ */
default:
PyErr_SetString(PyExc_OSError, "getsockaddrarg: unknown Bluetooth protocol");
return 0;
}
}
#endif /* USE_BLUETOOTH */
#if defined(HAVE_NETPACKET_PACKET_H) && defined(SIOCGIFINDEX)
else (s->sock_family == AF_PACKET)
{
struct sockaddr_ll* addr;
struct ifreq ifr;
const char *interfaceName;
int protoNumber;
int hatype = 0;
int pkttype = PACKET_HOST;
Py_buffer haddr = {NULL, NULL};
if (!PyTuple_Check(args)) {
PyErr_Format(
PyExc_TypeError,
"getsockaddrarg: "
"AF_PACKET address must be tuple, not %.500s",
Py_TYPE(args)->tp_name);
return 0;
}
if (!PyArg_ParseTuple(args, "si|iiy*", &interfaceName,
&protoNumber, &pkttype, &hatype,
&haddr))
return 0;
strncpy(ifr.ifr_name, interfaceName, sizeof(ifr.ifr_name));
ifr.ifr_name[(sizeof(ifr.ifr_name))-1] = '\0';
if (ioctl(s->sock_fd, SIOCGIFINDEX, &ifr) < 0) {
s->errorhandler();
PyBuffer_Release(&haddr);
return 0;
}
if (haddr.buf && haddr.len > 8) {
PyErr_SetString(PyExc_ValueError,
"Hardware address must be 8 bytes or less");
PyBuffer_Release(&haddr);
return 0;
}
if (protoNumber < 0 || protoNumber > 0xffff) {
PyErr_SetString(
PyExc_OverflowError,
"getsockaddrarg: proto must be 0-65535.");
PyBuffer_Release(&haddr);
return 0;
}
addr = (struct sockaddr_ll*)addr_ret;
addr->sll_family = AF_PACKET;
addr->sll_protocol = htons((short)protoNumber);
addr->sll_ifindex = ifr.ifr_ifindex;
addr->sll_pkttype = pkttype;
addr->sll_hatype = hatype;
if (haddr.buf) {
memcpy(&addr->sll_addr, haddr.buf, haddr.len);
addr->sll_halen = haddr.len;
}
else
addr->sll_halen = 0;
*len_ret = sizeof *addr;
PyBuffer_Release(&haddr);
return 1;
}
#endif /* HAVE_NETPACKET_PACKET_H && SIOCGIFINDEX */
#ifdef HAVE_LINUX_TIPC_H
else if(s->sock_family == AF_TIPC)
{
unsigned int atype, v1, v2, v3;
unsigned int scope = TIPC_CLUSTER_SCOPE;
struct sockaddr_tipc *addr;
if (!PyTuple_Check(args)) {
PyErr_Format(
PyExc_TypeError,
"getsockaddrarg: "
"AF_TIPC address must be tuple, not %.500s",
Py_TYPE(args)->tp_name);
return 0;
}
if (!PyArg_ParseTuple(args,
"IIII|I;Invalid TIPC address format",
&atype, &v1, &v2, &v3, &scope))
return 0;
addr = (struct sockaddr_tipc *) addr_ret;
bzero(addr, sizeof(struct sockaddr_tipc));
addr->family = AF_TIPC;
addr->scope = scope;
addr->addrtype = atype;
if (atype == TIPC_ADDR_NAMESEQ) {
addr->addr.nameseq.type = v1;
addr->addr.nameseq.lower = v2;
addr->addr.nameseq.upper = v3;
} else if (atype == TIPC_ADDR_NAME) {
addr->addr.name.name.type = v1;
addr->addr.name.name.instance = v2;
} else if (atype == TIPC_ADDR_ID) {
addr->addr.id.node = v1;
addr->addr.id.ref = v2;
} else {
/* Shouldn't happen */
PyErr_SetString(PyExc_TypeError, "Invalid address type");
return 0;
}
*len_ret = sizeof(*addr);
return 1;
}
#endif /* HAVE_LINUX_TIPC_H */
#if defined(AF_CAN) && defined(CAN_RAW) && defined(CAN_BCM) && defined(SIOCGIFINDEX)
else if(s->sock_family == AF_CAN){
switch (s->sock_proto) {
case CAN_RAW:
/* fall-through */
case CAN_BCM:
{
struct sockaddr_can *addr;
PyObject *interfaceName;
struct ifreq ifr;
Py_ssize_t len;
addr = (struct sockaddr_can *)addr_ret;
if (!PyArg_ParseTuple(args, "O&", PyUnicode_FSConverter,
&interfaceName))
return 0;
len = PyBytes_GET_SIZE(interfaceName);
if (len == 0) {
ifr.ifr_ifindex = 0;
} else if ((size_t)len < sizeof(ifr.ifr_name)) {
strncpy(ifr.ifr_name, PyBytes_AS_STRING(interfaceName), sizeof(ifr.ifr_name));
ifr.ifr_name[(sizeof(ifr.ifr_name))-1] = '\0';
if (ioctl(s->sock_fd, SIOCGIFINDEX, &ifr) < 0) {
s->errorhandler();
Py_DECREF(interfaceName);
return 0;
}
} else {
PyErr_SetString(PyExc_OSError,
"AF_CAN interface name too long");
Py_DECREF(interfaceName);
return 0;
}
addr->can_family = AF_CAN;
addr->can_ifindex = ifr.ifr_ifindex;
*len_ret = sizeof(*addr);
Py_DECREF(interfaceName);
return 1;
}
default:
PyErr_SetString(PyExc_OSError,
"getsockaddrarg: unsupported CAN protocol");
return 0;
}
}
#endif /* AF_CAN && CAN_RAW && CAN_BCM && SIOCGIFINDEX */
#ifdef PF_SYSTEM
else if(s->sock_family == PF_SYSTEM)
{
switch (s->sock_proto) {
#ifdef SYSPROTO_CONTROL
case SYSPROTO_CONTROL:
{
struct sockaddr_ctl *addr;
addr = (struct sockaddr_ctl *)addr_ret;
addr->sc_family = AF_SYSTEM;
addr->ss_sysaddr = AF_SYS_CONTROL;
if (PyUnicode_Check(args)) {
struct ctl_info info;
PyObject *ctl_name;
if (!PyArg_Parse(args, "O&",
PyUnicode_FSConverter, &ctl_name)) {
return 0;
}
if (PyBytes_GET_SIZE(ctl_name) > (Py_ssize_t)sizeof(info.ctl_name)) {
PyErr_SetString(PyExc_ValueError,
"provided string is too long");
Py_DECREF(ctl_name);
return 0;
}
strncpy(info.ctl_name, PyBytes_AS_STRING(ctl_name),
sizeof(info.ctl_name));
Py_DECREF(ctl_name);
if (ioctl(s->sock_fd, CTLIOCGINFO, &info)) {
PyErr_SetString(PyExc_OSError,
"cannot find kernel control with provided name");
return 0;
}
addr->sc_id = info.ctl_id;
addr->sc_unit = 0;
} else if (!PyArg_ParseTuple(args, "II",
&(addr->sc_id), &(addr->sc_unit))) {
PyErr_SetString(PyExc_TypeError, "getsockaddrarg: "
"expected str or tuple of two ints");
return 0;
}
*len_ret = sizeof(*addr);
return 1;
}
#endif /* SYSPROTO_CONTROL */
default:
PyErr_SetString(PyExc_OSError,
"getsockaddrarg: unsupported PF_SYSTEM protocol");
return 0;
}
}
#endif /* PF_SYSTEM */
#ifdef HAVE_SOCKADDR_ALG
else if(s->sock_family == AF_ALG)
{
struct sockaddr_alg *sa;
const char *type;
const char *name;
sa = (struct sockaddr_alg *)addr_ret;
bzero(sa, sizeof(*sa));
sa->salg_family = AF_ALG;
if (!PyArg_ParseTuple(args, "ss|HH:getsockaddrarg",
&type, &name, &sa->salg_feat, &sa->salg_mask))
{
return 0;
}
/* sockaddr_alg has fixed-sized char arrays for type, and name
* both must be NULL terminated.
*/
if (strlen(type) >= sizeof(sa->salg_type)) {
PyErr_SetString(PyExc_ValueError, "AF_ALG type too long.");
return 0;
}
strncpy((char *)sa->salg_type, type, sizeof(sa->salg_type));
if (strlen(name) >= sizeof(sa->salg_name)) {
PyErr_SetString(PyExc_ValueError, "AF_ALG name too long.");
return 0;
}
strncpy((char *)sa->salg_name, name, sizeof(sa->salg_name));
*len_ret = sizeof(*sa);
return 1;
}
#endif /* HAVE_SOCKADDR_ALG */
/* More cases here... */
else
{
PyErr_SetString(PyExc_OSError, "getsockaddrarg: bad family");
return 0;
}
}
/* Get the address length according to the socket object's address family.
Return 1 if the family is known, 0 otherwise. The length is returned
through len_ret. */
static int
getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
{
if(0) {}
#if defined(AF_UNIX)
else if(s->sock_family == AF_UNIX)
{
*len_ret = sizeof (struct sockaddr_un);
return 1;
}
#endif /* AF_UNIX */
else if(
s->sock_family == AF_INET)
{
*len_ret = sizeof (struct sockaddr_in);
return 1;
}
#ifdef ENABLE_IPV6
else if(s->sock_family == AF_INET6)
{
*len_ret = sizeof (struct sockaddr_in6);
return 1;
}
#endif /* ENABLE_IPV6 */
#ifdef USE_BLUETOOTH
else if(s->sock_family == AF_BLUETOOTH)
{
switch(s->sock_proto)
{
case BTPROTO_L2CAP:
*len_ret = sizeof (struct sockaddr_l2);
return 1;
case BTPROTO_RFCOMM:
*len_ret = sizeof (struct sockaddr_rc);
return 1;
case BTPROTO_HCI:
*len_ret = sizeof (struct sockaddr_hci);
return 1;
#if !defined(__FreeBSD__)
case BTPROTO_SCO:
*len_ret = sizeof (struct sockaddr_sco);
return 1;
#endif /* !__FreeBSD__ */
default:
PyErr_SetString(PyExc_OSError, "getsockaddrlen: "
"unknown BT protocol");
return 0;
}
}
#endif /* USE_BLUETOOTH */
#ifdef HAVE_NETPACKET_PACKET_H
else(s->sock_family == AF_PACKET)
{
*len_ret = sizeof (struct sockaddr_ll);
return 1;
}
#endif /* HAVE_NETPACKET_PACKET_H */
#ifdef HAVE_LINUX_TIPC_H
else if (s->sock_family == AF_TIPC)
{
*len_ret = sizeof (struct sockaddr_tipc);
return 1;
}
#endif /* HAVE_LINUX_TIPC_H */
#ifdef AF_CAN
else if (s->sock_family == AF_CAN)
{
*len_ret = sizeof (struct sockaddr_can);
return 1;
}
#endif /* AF_CAN */
#ifdef PF_SYSTEM
else if(s->sock_family == PF_SYSTEM)
{
switch(s->sock_proto) {
#ifdef SYSPROTO_CONTROL
case SYSPROTO_CONTROL:
*len_ret = sizeof (struct sockaddr_ctl);
return 1;
#endif /* SYSPROTO_CONTROL */
default:
PyErr_SetString(PyExc_OSError, "getsockaddrlen: "
"unknown PF_SYSTEM protocol");
return 0;
}
}
#endif /* PF_SYSTEM */
#ifdef HAVE_SOCKADDR_ALG
else if(s->sock_family == AF_ALG)
{
*len_ret = sizeof (struct sockaddr_alg);
return 1;
}
#endif /* HAVE_SOCKADDR_ALG */
/* More cases here... */
else
{
PyErr_SetString(PyExc_OSError, "getsockaddrlen: bad family");
return 0;
}
}
/* Support functions for the sendmsg() and recvmsg[_into]() methods.
Currently, these methods are only compiled if the RFC 2292/3542
CMSG_LEN() macro is available. Older systems seem to have used
sizeof(struct cmsghdr) + (length) where CMSG_LEN() is used now, so
it may be possible to define CMSG_LEN() that way if it's not
provided. Some architectures might need extra padding after the
cmsghdr, however, and CMSG_LEN() would have to take account of
this. */
#ifdef CMSG_LEN
/* If length is in range, set *result to CMSG_LEN(length) and return
true; otherwise, return false. */
static int
get_CMSG_LEN(size_t length, size_t *result)
{
size_t tmp;
if (length > (SOCKLEN_T_LIMIT - CMSG_LEN(0)))
return 0;
tmp = CMSG_LEN(length);
if (tmp > SOCKLEN_T_LIMIT || tmp < length)
return 0;
*result = tmp;
return 1;
}
#ifdef CMSG_SPACE
/* If length is in range, set *result to CMSG_SPACE(length) and return
true; otherwise, return false. */
static int
get_CMSG_SPACE(size_t length, size_t *result)
{
size_t tmp;
/* Use CMSG_SPACE(1) here in order to take account of the padding
necessary before *and* after the data. */
if (length > (SOCKLEN_T_LIMIT - CMSG_SPACE(1)))
return 0;
tmp = CMSG_SPACE(length);
if (tmp > SOCKLEN_T_LIMIT || tmp < length)
return 0;
*result = tmp;
return 1;
}
#endif
/* Return true iff msg->msg_controllen is valid, cmsgh is a valid
pointer in msg->msg_control with at least "space" bytes after it,
and its cmsg_len member inside the buffer. */
static int
cmsg_min_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t space)
{
size_t cmsg_offset;
static const size_t cmsg_len_end = (offsetof(struct cmsghdr, cmsg_len) +
sizeof(cmsgh->cmsg_len));
/* Note that POSIX allows msg_controllen to be of signed type. */
if (cmsgh == NULL || msg->msg_control == NULL)
return 0;
/* Note that POSIX allows msg_controllen to be of a signed type. This is
annoying under OS X as it's unsigned there and so it triggers a
tautological comparison warning under Clang when compared against 0.
Since the check is valid on other platforms, silence the warning under
Clang. */
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wtautological-compare"
#endif
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wtype-limits"
#endif
if (msg->msg_controllen < 0)
return 0;
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))
#pragma GCC diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
if (space < cmsg_len_end)
space = cmsg_len_end;
cmsg_offset = (char *)cmsgh - (char *)msg->msg_control;
return (cmsg_offset <= (size_t)-1 - space &&
cmsg_offset + space <= msg->msg_controllen);
}
/* If pointer CMSG_DATA(cmsgh) is in buffer msg->msg_control, set
*space to number of bytes following it in the buffer and return
true; otherwise, return false. Assumes cmsgh, msg->msg_control and
msg->msg_controllen are valid. */
static int
get_cmsg_data_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t *space)
{
size_t data_offset;
char *data_ptr;
if ((data_ptr = (char *)CMSG_DATA(cmsgh)) == NULL)
return 0;
data_offset = data_ptr - (char *)msg->msg_control;
if (data_offset > msg->msg_controllen)
return 0;
*space = msg->msg_controllen - data_offset;
return 1;
}
/* If cmsgh is invalid or not contained in the buffer pointed to by
msg->msg_control, return -1. If cmsgh is valid and its associated
data is entirely contained in the buffer, set *data_len to the
length of the associated data and return 0. If only part of the
associated data is contained in the buffer but cmsgh is otherwise
valid, set *data_len to the length contained in the buffer and
return 1. */
static int
get_cmsg_data_len(struct msghdr *msg, struct cmsghdr *cmsgh, size_t *data_len)
{
size_t space, cmsg_data_len;
if (!cmsg_min_space(msg, cmsgh, CMSG_LEN(0)) ||
cmsgh->cmsg_len < CMSG_LEN(0))
return -1;
cmsg_data_len = cmsgh->cmsg_len - CMSG_LEN(0);
if (!get_cmsg_data_space(msg, cmsgh, &space))
return -1;
if (space >= cmsg_data_len) {
*data_len = cmsg_data_len;
return 0;
}
*data_len = space;
return 1;
}
#endif /* CMSG_LEN */
struct sock_accept {
socklen_t *addrlen;
sock_addr_t *addrbuf;
SOCKET_T result;
};
#if defined(HAVE_ACCEPT4) && defined(SOCK_CLOEXEC)
/* accept4() is available on Linux 2.6.28+ and glibc 2.10 */
static int accept4_works = -1;
#endif
static int
sock_accept_impl(PySocketSockObject *s, void *data)
{
struct sock_accept *ctx = data;
struct sockaddr *addr = SAS2SA(ctx->addrbuf);
socklen_t *paddrlen = ctx->addrlen;
#ifdef HAVE_SOCKADDR_ALG
/* AF_ALG does not support accept() with addr and raises
* ECONNABORTED instead. */
if (s->sock_family == AF_ALG) {
addr = NULL;
paddrlen = NULL;
*ctx->addrlen = 0;
}
#endif
#if defined(HAVE_ACCEPT4) && defined(SOCK_CLOEXEC)
if (accept4_works != 0) {
ctx->result = accept4(s->sock_fd, addr, paddrlen,
SOCK_CLOEXEC);
if (ctx->result == INVALID_SOCKET && accept4_works == -1) {
/* On Linux older than 2.6.28, accept4() fails with ENOSYS */
accept4_works = (errno != ENOSYS);
}
}
if (accept4_works == 0)
ctx->result = accept(s->sock_fd, addr, paddrlen);
#else
ctx->result = accept(s->sock_fd, addr, paddrlen);
#endif
#ifdef MS_WINDOWS
return (ctx->result != INVALID_SOCKET);
#else
return (ctx->result >= 0);
#endif
}
/* s._accept() -> (fd, address) */
static PyObject *
sock_accept(PySocketSockObject *s)
{
sock_addr_t addrbuf;
SOCKET_T newfd;
socklen_t addrlen;
PyObject *sock = NULL;
PyObject *addr = NULL;
PyObject *res = NULL;
struct sock_accept ctx;
if (!getsockaddrlen(s, &addrlen))
return NULL;
bzero(&addrbuf, addrlen);
if (!IS_SELECTABLE(s))
return select_error();
ctx.addrlen = &addrlen;
ctx.addrbuf = &addrbuf;
if (sock_call(s, 0, sock_accept_impl, &ctx) < 0)
return NULL;
newfd = ctx.result;
#ifdef MS_WINDOWS
if (!SetHandleInformation((HANDLE)newfd, HANDLE_FLAG_INHERIT, 0)) {
PyErr_SetFromWindowsErr(0);
SOCKETCLOSE(newfd);
goto finally;
}
#else
#if defined(HAVE_ACCEPT4) && defined(SOCK_CLOEXEC)
if (!accept4_works)
#endif
{
if (_Py_set_inheritable(newfd, 0, NULL) < 0) {
SOCKETCLOSE(newfd);
goto finally;
}
}
#endif
sock = PyLong_FromSocket_t(newfd);
if (sock == NULL) {
SOCKETCLOSE(newfd);
goto finally;
}
addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
addrlen, s->sock_proto);
if (addr == NULL)
goto finally;
res = PyTuple_Pack(2, sock, addr);
finally:
Py_XDECREF(sock);
Py_XDECREF(addr);
return res;
}
PyDoc_STRVAR(accept_doc,
"_accept() -> (integer, address info)\n\
\n\
Wait for an incoming connection. Return a new socket file descriptor\n\
representing the connection, and the address of the client.\n\
For IP sockets, the address info is a pair (hostaddr, port).");
/* s.setblocking(flag) method. Argument:
False -- non-blocking mode; same as settimeout(0)
True -- blocking mode; same as settimeout(None)
*/
static PyObject *
sock_setblocking(PySocketSockObject *s, PyObject *arg)
{
long block;
block = PyLong_AsLong(arg);
if (block == -1 && PyErr_Occurred())
return NULL;
s->sock_timeout = _PyTime_FromSeconds(block ? -1 : 0);
if (internal_setblocking(s, block) == -1) {
return NULL;
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(setblocking_doc,
"setblocking(flag)\n\
\n\
Set the socket to blocking (flag is true) or non-blocking (false).\n\
setblocking(True) is equivalent to settimeout(None);\n\
setblocking(False) is equivalent to settimeout(0.0).");
static int
socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj)
{
#ifdef MS_WINDOWS
struct timeval tv;
#endif
#ifndef HAVE_POLL
_PyTime_t ms;
#endif
int overflow = 0;
if (timeout_obj == Py_None) {
*timeout = _PyTime_FromSeconds(-1);
return 0;
}
if (_PyTime_FromSecondsObject(timeout,
timeout_obj, _PyTime_ROUND_TIMEOUT) < 0)
return -1;
if (*timeout < 0) {
PyErr_SetString(PyExc_ValueError, "Timeout value out of range");
return -1;
}
#ifdef MS_WINDOWS
overflow |= (_PyTime_AsTimeval(*timeout, &tv, _PyTime_ROUND_TIMEOUT) < 0);
#endif
#ifndef HAVE_POLL
ms = _PyTime_AsMilliseconds(*timeout, _PyTime_ROUND_TIMEOUT);
overflow |= (ms > INT_MAX);
#endif
if (overflow) {
PyErr_SetString(PyExc_OverflowError,
"timeout doesn't fit into C timeval");
return -1;
}
return 0;
}
/* s.settimeout(timeout) method. Argument:
None -- no timeout, blocking mode; same as setblocking(True)
0.0 -- non-blocking mode; same as setblocking(False)
> 0 -- timeout mode; operations time out after timeout seconds
< 0 -- illegal; raises an exception
*/
static PyObject *
sock_settimeout(PySocketSockObject *s, PyObject *arg)
{
_PyTime_t timeout;
if (socket_parse_timeout(&timeout, arg) < 0)
return NULL;
s->sock_timeout = timeout;
if (internal_setblocking(s, timeout < 0) == -1) {
return NULL;
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(settimeout_doc,
"settimeout(timeout)\n\
\n\
Set a timeout on socket operations. 'timeout' can be a float,\n\
giving in seconds, or None. Setting a timeout of None disables\n\
the timeout feature and is equivalent to setblocking(1).\n\
Setting a timeout of zero is the same as setblocking(0).");
/* s.gettimeout() method.
Returns the timeout associated with a socket. */
static PyObject *
sock_gettimeout(PySocketSockObject *s)
{
if (s->sock_timeout < 0) {
Py_INCREF(Py_None);
return Py_None;
}
else {
double seconds = _PyTime_AsSecondsDouble(s->sock_timeout);
return PyFloat_FromDouble(seconds);
}
}
PyDoc_STRVAR(gettimeout_doc,
"gettimeout() -> timeout\n\
\n\
Returns the timeout in seconds (float) associated with socket \n\
operations. A timeout of None indicates that timeouts on socket \n\
operations are disabled.");
/* s.setsockopt() method.
With an integer third argument, sets an integer optval with optlen=4.
With None as third argument and an integer fourth argument, set
optval=NULL with unsigned int as optlen.
With a string third argument, sets an option from a buffer;
use optional built-in module 'struct' to encode the string.
*/
static PyObject *
sock_setsockopt(PySocketSockObject *s, PyObject *args)
{
int level;
int optname;
int res;
Py_buffer optval;
int flag;
unsigned int optlen;
int backup_optname;
PyObject *none;
backup_optname = SO_REUSEADDR;
if(IsWindows() && SO_REUSEADDR != 1)
backup_optname = 1;
/* setsockopt(level, opt, flag) */
if (PyArg_ParseTuple(args, "iii:setsockopt",
&level, &optname, &flag)) {
res = setsockopt(s->sock_fd, level, IsWindows() ? backup_optname : optname,
(char*)&flag, sizeof flag);
goto done;
}
PyErr_Clear();
/* setsockopt(level, opt, None, flag) */
if (PyArg_ParseTuple(args, "iiO!I:setsockopt",
&level, &optname, Py_TYPE(Py_None), &none, &optlen)) {
assert(sizeof(socklen_t) >= sizeof(unsigned int));
res = setsockopt(s->sock_fd, level, optname,
NULL, (socklen_t)optlen);
goto done;
}
PyErr_Clear();
/* setsockopt(level, opt, buffer) */
if (!PyArg_ParseTuple(args, "iiy*:setsockopt",
&level, &optname, &optval))
return NULL;
#ifdef MS_WINDOWS
if (optval.len > INT_MAX) {
PyBuffer_Release(&optval);
PyErr_Format(PyExc_OverflowError,
"socket option is larger than %i bytes",
INT_MAX);
return NULL;
}
res = setsockopt(s->sock_fd, level, optname,
optval.buf, (int)optval.len);
#else
res = setsockopt(s->sock_fd, level, optname, optval.buf, optval.len);
#endif
PyBuffer_Release(&optval);
done:
if (res < 0) {
return s->errorhandler();
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(setsockopt_doc,
"setsockopt(level, option, value: int)\n\
setsockopt(level, option, value: buffer)\n\
setsockopt(level, option, None, optlen: int)\n\
\n\
Set a socket option. See the Unix manual for level and option.\n\
The value argument can either be an integer, a string buffer, or \n\
None, optlen.");
/* s.getsockopt() method.
With two arguments, retrieves an integer option.
With a third integer argument, retrieves a string buffer of that size;
use optional built-in module 'struct' to decode the string. */
static PyObject *
sock_getsockopt(PySocketSockObject *s, PyObject *args)
{
int level;
int optname;
int res;
PyObject *buf;
socklen_t buflen = 0;
if (!PyArg_ParseTuple(args, "ii|i:getsockopt",
&level, &optname, &buflen))
return NULL;
if (buflen == 0) {
int flag = 0;
socklen_t flagsize = sizeof flag;
res = getsockopt(s->sock_fd, level, optname,
(void *)&flag, &flagsize);
if (res < 0)
return s->errorhandler();
return PyLong_FromLong(flag);
}
if (buflen <= 0 || buflen > 1024) {
PyErr_SetString(PyExc_OSError,
"getsockopt buflen out of range");
return NULL;
}
buf = PyBytes_FromStringAndSize((char *)NULL, buflen);
if (buf == NULL)
return NULL;
res = getsockopt(s->sock_fd, level, optname,
(void *)PyBytes_AS_STRING(buf), &buflen);
if (res < 0) {
Py_DECREF(buf);
return s->errorhandler();
}
_PyBytes_Resize(&buf, buflen);
return buf;
}
PyDoc_STRVAR(getsockopt_doc,
"getsockopt(level, option[, buffersize]) -> value\n\
\n\
Get a socket option. See the Unix manual for level and option.\n\
If a nonzero buffersize argument is given, the return value is a\n\
string of that length; otherwise it is an integer.");
/* s.bind(sockaddr) method */
static PyObject *
sock_bind(PySocketSockObject *s, PyObject *addro)
{
sock_addr_t addrbuf;
int addrlen;
int res;
if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
return NULL;
Py_BEGIN_ALLOW_THREADS
res = bind(s->sock_fd, SAS2SA(&addrbuf), addrlen);
Py_END_ALLOW_THREADS
if (res < 0)
return s->errorhandler();
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(bind_doc,
"bind(address)\n\
\n\
Bind the socket to a local address. For IP sockets, the address is a\n\
pair (host, port); the host must refer to the local host. For raw packet\n\
sockets the address is a tuple (ifname, proto [,pkttype [,hatype [,addr]]])");
/* s.close() method.
Set the file descriptor to -1 so operations tried subsequently
will surely fail. */
static PyObject *
sock_close(PySocketSockObject *s)
{
SOCKET_T fd;
int res;
fd = s->sock_fd;
if (fd != INVALID_SOCKET) {
s->sock_fd = INVALID_SOCKET;
/* We do not want to retry upon EINTR: see
http://lwn.net/Articles/576478/ and
http://linux.derkeiler.com/Mailing-Lists/Kernel/2005-09/3000.html
for more details. */
Py_BEGIN_ALLOW_THREADS
res = SOCKETCLOSE(fd);
Py_END_ALLOW_THREADS
/* bpo-30319: The peer can already have closed the connection.
Python ignores ECONNRESET on close(). */
if (res < 0 && errno != ECONNRESET) {
return s->errorhandler();
}
}
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(close_doc,
"close()\n\
\n\
Close the socket. It cannot be used after this call.");
static PyObject *
sock_detach(PySocketSockObject *s)
{
SOCKET_T fd = s->sock_fd;
s->sock_fd = INVALID_SOCKET;
return PyLong_FromSocket_t(fd);
}
PyDoc_STRVAR(detach_doc,
"detach()\n\
\n\
Close the socket object without closing the underlying file descriptor.\n\
The object cannot be used after this call, but the file descriptor\n\
can be reused for other purposes. The file descriptor is returned.");
static int
sock_connect_impl(PySocketSockObject *s, void* Py_UNUSED(data))
{
int err;
socklen_t size = sizeof err;
if (getsockopt(s->sock_fd, SOL_SOCKET, SO_ERROR, (void *)&err, &size)) {
/* getsockopt() failed */
return 0;
}
if (err == EISCONN)
return 1;
if (err != 0) {
/* sock_call_ex() uses GET_SOCK_ERROR() to get the error code */
SET_SOCK_ERROR(err);
return 0;
}
return 1;
}
static int
internal_connect(PySocketSockObject *s, struct sockaddr *addr, int addrlen,
int raise)
{
int res, err, wait_connect;
Py_BEGIN_ALLOW_THREADS
res = connect(s->sock_fd, addr, addrlen);
Py_END_ALLOW_THREADS
if (!res) {
/* connect() succeeded, the socket is connected */
return 0;
}
/* connect() failed */
/* save error, PyErr_CheckSignals() can replace it */
err = GET_SOCK_ERROR;
if (CHECK_ERRNO(EINTR)) {
if (PyErr_CheckSignals())
return -1;
/* Issue #23618: when connect() fails with EINTR, the connection is
running asynchronously.
If the socket is blocking or has a timeout, wait until the
connection completes, fails or timed out using select(), and then
get the connection status using getsockopt(SO_ERROR).
If the socket is non-blocking, raise InterruptedError. The caller is
responsible to wait until the connection completes, fails or timed
out (it's the case in asyncio for example). */
wait_connect = (s->sock_timeout != 0 && IS_SELECTABLE(s));
}
else {
wait_connect = (s->sock_timeout > 0 && err == SOCK_INPROGRESS_ERR
&& IS_SELECTABLE(s));
}
if (!wait_connect) {
if (raise) {
/* restore error, maybe replaced by PyErr_CheckSignals() */
SET_SOCK_ERROR(err);
s->errorhandler();
return -1;
}
else
return err;
}
if (raise) {
/* socket.connect() raises an exception on error */
if (sock_call_ex(s, 1, sock_connect_impl, NULL,
1, NULL, s->sock_timeout) < 0)
return -1;
}
else {
/* socket.connect_ex() returns the error code on error */
if (sock_call_ex(s, 1, sock_connect_impl, NULL,
1, &err, s->sock_timeout) < 0)
return err;
}
return 0;
}
/* s.connect(sockaddr) method */
static PyObject *
sock_connect(PySocketSockObject *s, PyObject *addro)
{
sock_addr_t addrbuf;
int addrlen;
int res;
if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
return NULL;
res = internal_connect(s, SAS2SA(&addrbuf), addrlen, 1);
if (res < 0)
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(connect_doc,
"connect(address)\n\
\n\
Connect the socket to a remote address. For IP sockets, the address\n\
is a pair (host, port).");
/* s.connect_ex(sockaddr) method */
static PyObject *
sock_connect_ex(PySocketSockObject *s, PyObject *addro)
{
sock_addr_t addrbuf;
int addrlen;
int res;
if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen))
return NULL;
res = internal_connect(s, SAS2SA(&addrbuf), addrlen, 0);
if (res < 0)
return NULL;
return PyLong_FromLong((long) res);
}
PyDoc_STRVAR(connect_ex_doc,
"connect_ex(address) -> errno\n\
\n\
This is like connect(address), but returns an error code (the errno value)\n\
instead of raising an exception when an error occurs.");
/* s.fileno() method */
static PyObject *
sock_fileno(PySocketSockObject *s)
{
return PyLong_FromSocket_t(s->sock_fd);
}
PyDoc_STRVAR(fileno_doc,
"fileno() -> integer\n\
\n\
Return the integer file descriptor of the socket.");
/* s.getsockname() method */
static PyObject *
sock_getsockname(PySocketSockObject *s)
{
sock_addr_t addrbuf;
int res;
socklen_t addrlen;
if (!getsockaddrlen(s, &addrlen))
return NULL;
bzero(&addrbuf, addrlen);
Py_BEGIN_ALLOW_THREADS
res = getsockname(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
Py_END_ALLOW_THREADS
if (res < 0)
return s->errorhandler();
return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
s->sock_proto);
}
PyDoc_STRVAR(getsockname_doc,
"getsockname() -> address info\n\
\n\
Return the address of the local endpoint. For IP sockets, the address\n\
info is a pair (hostaddr, port).");
#ifdef HAVE_GETPEERNAME /* Cray APP doesn't have this :-( */
/* s.getpeername() method */
static PyObject *
sock_getpeername(PySocketSockObject *s)
{
sock_addr_t addrbuf;
int res;
socklen_t addrlen;
if (!getsockaddrlen(s, &addrlen))
return NULL;
bzero(&addrbuf, addrlen);
Py_BEGIN_ALLOW_THREADS
res = getpeername(s->sock_fd, SAS2SA(&addrbuf), &addrlen);
Py_END_ALLOW_THREADS
if (res < 0)
return s->errorhandler();
return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
s->sock_proto);
}
PyDoc_STRVAR(getpeername_doc,
"getpeername() -> address info\n\
\n\
Return the address of the remote endpoint. For IP sockets, the address\n\
info is a pair (hostaddr, port).");
#endif /* HAVE_GETPEERNAME */
/* s.listen(n) method */
static PyObject *
sock_listen(PySocketSockObject *s, PyObject *args)
{
/* We try to choose a default backlog high enough to avoid connection drops
* for common workloads, yet not too high to limit resource usage. */
int backlog = Py_MIN(SOMAXCONN, 128);
int res;
if (!PyArg_ParseTuple(args, "|i:listen", &backlog))
return NULL;
Py_BEGIN_ALLOW_THREADS
/* To avoid problems on systems that don't allow a negative backlog
* (which doesn't make sense anyway) we force a minimum value of 0. */
if (backlog < 0)
backlog = 0;
res = listen(s->sock_fd, backlog);
Py_END_ALLOW_THREADS
if (res < 0)
return s->errorhandler();
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(listen_doc,
"listen([backlog])\n\
\n\
Enable a server to accept connections. If backlog is specified, it must be\n\
at least 0 (if it is lower, it is set to 0); it specifies the number of\n\
unaccepted connections that the system will allow before refusing new\n\
connections. If not specified, a default reasonable value is chosen.");
struct sock_recv {
char *cbuf;
Py_ssize_t len;
int flags;
Py_ssize_t result;
};
static int
sock_recv_impl(PySocketSockObject *s, void *data)
{
struct sock_recv *ctx = data;
#ifdef MS_WINDOWS
if (ctx->len > INT_MAX)
ctx->len = INT_MAX;
ctx->result = recv(s->sock_fd, ctx->cbuf, (int)ctx->len, ctx->flags);
#else
ctx->result = recv(s->sock_fd, ctx->cbuf, ctx->len, ctx->flags);
#endif
return (ctx->result >= 0);
}
/*
* This is the guts of the recv() and recv_into() methods, which reads into a
* char buffer. If you have any inc/dec ref to do to the objects that contain
* the buffer, do it in the caller. This function returns the number of bytes
* successfully read. If there was an error, it returns -1. Note that it is
* also possible that we return a number of bytes smaller than the request
* bytes.
*/
static Py_ssize_t
sock_recv_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags)
{
struct sock_recv ctx;
if (!IS_SELECTABLE(s)) {
select_error();
return -1;
}
if (len == 0) {
/* If 0 bytes were requested, do nothing. */
return 0;
}
ctx.cbuf = cbuf;
ctx.len = len;
ctx.flags = flags;
if (sock_call(s, 0, sock_recv_impl, &ctx) < 0)
return -1;
return ctx.result;
}
/* s.recv(nbytes [,flags]) method */
static PyObject *
sock_recv(PySocketSockObject *s, PyObject *args)
{
Py_ssize_t recvlen, outlen;
int flags = 0;
PyObject *buf;
if (!PyArg_ParseTuple(args, "n|i:recv", &recvlen, &flags))
return NULL;
if (recvlen < 0) {
PyErr_SetString(PyExc_ValueError,
"negative buffersize in recv");
return NULL;
}
/* Allocate a new string. */
buf = PyBytes_FromStringAndSize((char *) 0, recvlen);
if (buf == NULL)
return NULL;
/* Call the guts */
outlen = sock_recv_guts(s, PyBytes_AS_STRING(buf), recvlen, flags);
if (outlen < 0) {
/* An error occurred, release the string and return an
error. */
Py_DECREF(buf);
return NULL;
}
if (outlen != recvlen) {
/* We did not read as many bytes as we anticipated, resize the
string if possible and be successful. */
_PyBytes_Resize(&buf, outlen);
}
return buf;
}
PyDoc_STRVAR(recv_doc,
"recv(buffersize[, flags]) -> data\n\
\n\
Receive up to buffersize bytes from the socket. For the optional flags\n\
argument, see the Unix manual. When no data is available, block until\n\
at least one byte is available or until the remote end is closed. When\n\
the remote end is closed and all data is read, return the empty string.");
/* s.recv_into(buffer, [nbytes [,flags]]) method */
static PyObject*
sock_recv_into(PySocketSockObject *s, PyObject *args, PyObject *kwds)
{
static char *kwlist[] = {"buffer", "nbytes", "flags", 0};
int flags = 0;
Py_buffer pbuf;
char *buf;
Py_ssize_t buflen, readlen, recvlen = 0;
/* Get the buffer's memory */
if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ni:recv_into", kwlist,
&pbuf, &recvlen, &flags))
return NULL;
buf = pbuf.buf;
buflen = pbuf.len;
if (recvlen < 0) {
PyBuffer_Release(&pbuf);
PyErr_SetString(PyExc_ValueError,
"negative buffersize in recv_into");
return NULL;
}
if (recvlen == 0) {
/* If nbytes was not specified, use the buffer's length */
recvlen = buflen;
}
/* Check if the buffer is large enough */
if (buflen < recvlen) {
PyBuffer_Release(&pbuf);
PyErr_SetString(PyExc_ValueError,
"buffer too small for requested bytes");
return NULL;
}
/* Call the guts */
readlen = sock_recv_guts(s, buf, recvlen, flags);
if (readlen < 0) {
/* Return an error. */
PyBuffer_Release(&pbuf);
return NULL;
}
PyBuffer_Release(&pbuf);
/* Return the number of bytes read. Note that we do not do anything
special here in the case that readlen < recvlen. */
return PyLong_FromSsize_t(readlen);
}
PyDoc_STRVAR(recv_into_doc,
"recv_into(buffer, [nbytes[, flags]]) -> nbytes_read\n\
\n\
A version of recv() that stores its data into a buffer rather than creating \n\
a new string. Receive up to buffersize bytes from the socket. If buffersize \n\
is not specified (or 0), receive up to the size available in the given buffer.\n\
\n\
See recv() for documentation about the flags.");
struct sock_recvfrom {
char* cbuf;
Py_ssize_t len;
int flags;
socklen_t *addrlen;
sock_addr_t *addrbuf;
Py_ssize_t result;
};
static int
sock_recvfrom_impl(PySocketSockObject *s, void *data)
{
struct sock_recvfrom *ctx = data;
bzero(ctx->addrbuf, *ctx->addrlen);
#ifdef MS_WINDOWS
if (ctx->len > INT_MAX)
ctx->len = INT_MAX;
ctx->result = recvfrom(s->sock_fd, ctx->cbuf, (int)ctx->len, ctx->flags,
SAS2SA(ctx->addrbuf), ctx->addrlen);
#else
ctx->result = recvfrom(s->sock_fd, ctx->cbuf, ctx->len, ctx->flags,
SAS2SA(ctx->addrbuf), ctx->addrlen);
#endif
return (ctx->result >= 0);
}
/*
* This is the guts of the recvfrom() and recvfrom_into() methods, which reads
* into a char buffer. If you have any inc/def ref to do to the objects that
* contain the buffer, do it in the caller. This function returns the number
* of bytes successfully read. If there was an error, it returns -1. Note
* that it is also possible that we return a number of bytes smaller than the
* request bytes.
*
* 'addr' is a return value for the address object. Note that you must decref
* it yourself.
*/
static Py_ssize_t
sock_recvfrom_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags,
PyObject** addr)
{
sock_addr_t addrbuf;
socklen_t addrlen;
struct sock_recvfrom ctx;
*addr = NULL;
if (!getsockaddrlen(s, &addrlen))
return -1;
if (!IS_SELECTABLE(s)) {
select_error();
return -1;
}
ctx.cbuf = cbuf;
ctx.len = len;
ctx.flags = flags;
ctx.addrbuf = &addrbuf;
ctx.addrlen = &addrlen;
if (sock_call(s, 0, sock_recvfrom_impl, &ctx) < 0)
return -1;
*addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
s->sock_proto);
if (*addr == NULL)
return -1;
return ctx.result;
}
/* s.recvfrom(nbytes [,flags]) method */
static PyObject *
sock_recvfrom(PySocketSockObject *s, PyObject *args)
{
PyObject *buf = NULL;
PyObject *addr = NULL;
PyObject *ret = NULL;
int flags = 0;
Py_ssize_t recvlen, outlen;
if (!PyArg_ParseTuple(args, "n|i:recvfrom", &recvlen, &flags))
return NULL;
if (recvlen < 0) {
PyErr_SetString(PyExc_ValueError,
"negative buffersize in recvfrom");
return NULL;
}
buf = PyBytes_FromStringAndSize((char *) 0, recvlen);
if (buf == NULL)
return NULL;
outlen = sock_recvfrom_guts(s, PyBytes_AS_STRING(buf),
recvlen, flags, &addr);
if (outlen < 0) {
goto finally;
}
if (outlen != recvlen) {
/* We did not read as many bytes as we anticipated, resize the
string if possible and be successful. */
if (_PyBytes_Resize(&buf, outlen) < 0)
/* Oopsy, not so successful after all. */
goto finally;
}
ret = PyTuple_Pack(2, buf, addr);
finally:
Py_XDECREF(buf);
Py_XDECREF(addr);
return ret;
}
PyDoc_STRVAR(recvfrom_doc,
"recvfrom(buffersize[, flags]) -> (data, address info)\n\
\n\
Like recv(buffersize, flags) but also return the sender's address info.");
/* s.recvfrom_into(buffer[, nbytes [,flags]]) method */
static PyObject *
sock_recvfrom_into(PySocketSockObject *s, PyObject *args, PyObject* kwds)
{
static char *kwlist[] = {"buffer", "nbytes", "flags", 0};
int flags = 0;
Py_buffer pbuf;
char *buf;
Py_ssize_t readlen, buflen, recvlen = 0;
PyObject *addr = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "w*|ni:recvfrom_into",
kwlist, &pbuf,
&recvlen, &flags))
return NULL;
buf = pbuf.buf;
buflen = pbuf.len;
if (recvlen < 0) {
PyBuffer_Release(&pbuf);
PyErr_SetString(PyExc_ValueError,
"negative buffersize in recvfrom_into");
return NULL;
}
if (recvlen == 0) {
/* If nbytes was not specified, use the buffer's length */
recvlen = buflen;
} else if (recvlen > buflen) {
PyBuffer_Release(&pbuf);
PyErr_SetString(PyExc_ValueError,
"nbytes is greater than the length of the buffer");
return NULL;
}
readlen = sock_recvfrom_guts(s, buf, recvlen, flags, &addr);
if (readlen < 0) {
PyBuffer_Release(&pbuf);
/* Return an error */
Py_XDECREF(addr);
return NULL;
}
PyBuffer_Release(&pbuf);
/* Return the number of bytes read and the address. Note that we do
not do anything special here in the case that readlen < recvlen. */
return Py_BuildValue("nN", readlen, addr);
}
PyDoc_STRVAR(recvfrom_into_doc,
"recvfrom_into(buffer[, nbytes[, flags]]) -> (nbytes, address info)\n\
\n\
Like recv_into(buffer[, nbytes[, flags]]) but also return the sender's address info.");
/* The sendmsg() and recvmsg[_into]() methods require a working
CMSG_LEN(). See the comment near get_CMSG_LEN(). */
#ifdef CMSG_LEN
struct sock_recvmsg {
struct msghdr *msg;
int flags;
ssize_t result;
};
static int
sock_recvmsg_impl(PySocketSockObject *s, void *data)
{
struct sock_recvmsg *ctx = data;
ctx->result = recvmsg(s->sock_fd, ctx->msg, ctx->flags);
return (ctx->result >= 0);
}
/*
* Call recvmsg() with the supplied iovec structures, flags, and
* ancillary data buffer size (controllen). Returns the tuple return
* value for recvmsg() or recvmsg_into(), with the first item provided
* by the supplied makeval() function. makeval() will be called with
* the length read and makeval_data as arguments, and must return a
* new reference (which will be decrefed if there is a subsequent
* error). On error, closes any file descriptors received via
* SCM_RIGHTS.
*/
static PyObject *
sock_recvmsg_guts(PySocketSockObject *s, struct iovec *iov, int iovlen,
int flags, Py_ssize_t controllen,
PyObject *(*makeval)(ssize_t, void *), void *makeval_data)
{
sock_addr_t addrbuf;
socklen_t addrbuflen;
struct msghdr msg = {0};
PyObject *cmsg_list = NULL, *retval = NULL;
void *controlbuf = NULL;
struct cmsghdr *cmsgh;
size_t cmsgdatalen = 0;
int cmsg_status;
struct sock_recvmsg ctx;
/* XXX: POSIX says that msg_name and msg_namelen "shall be
ignored" when the socket is connected (Linux fills them in
anyway for AF_UNIX sockets at least). Normally msg_namelen
seems to be set to 0 if there's no address, but try to
initialize msg_name to something that won't be mistaken for a
real address if that doesn't happen. */
if (!getsockaddrlen(s, &addrbuflen))
return NULL;
bzero(&addrbuf, addrbuflen);
SAS2SA(&addrbuf)->sa_family = AF_UNSPEC;
if (controllen < 0 || controllen > SOCKLEN_T_LIMIT) {
PyErr_SetString(PyExc_ValueError,
"invalid ancillary data buffer length");
return NULL;
}
if (controllen > 0 && (controlbuf = PyMem_Malloc(controllen)) == NULL)
return PyErr_NoMemory();
/* Make the system call. */
if (!IS_SELECTABLE(s)) {
select_error();
goto finally;
}
msg.msg_name = SAS2SA(&addrbuf);
msg.msg_namelen = addrbuflen;
msg.msg_iov = iov;
msg.msg_iovlen = iovlen;
msg.msg_control = controlbuf;
msg.msg_controllen = controllen;
ctx.msg = &msg;
ctx.flags = flags;
if (sock_call(s, 0, sock_recvmsg_impl, &ctx) < 0)
goto finally;
/* Make list of (level, type, data) tuples from control messages. */
if ((cmsg_list = PyList_New(0)) == NULL)
goto err_closefds;
/* Check for empty ancillary data as old CMSG_FIRSTHDR()
implementations didn't do so. */
for (cmsgh = ((msg.msg_controllen > 0) ? CMSG_FIRSTHDR(&msg) : NULL);
cmsgh != NULL; cmsgh = CMSG_NXTHDR(&msg, cmsgh)) {
PyObject *bytes, *tuple;
int tmp;
cmsg_status = get_cmsg_data_len(&msg, cmsgh, &cmsgdatalen);
if (cmsg_status != 0) {
if (PyErr_WarnEx(PyExc_RuntimeWarning,
"received malformed or improperly-truncated "
"ancillary data", 1) == -1)
goto err_closefds;
}
if (cmsg_status < 0)
break;
if (cmsgdatalen > PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_OSError, "control message too long");
goto err_closefds;
}
bytes = PyBytes_FromStringAndSize((char *)CMSG_DATA(cmsgh),
cmsgdatalen);
tuple = Py_BuildValue("iiN", (int)cmsgh->cmsg_level,
(int)cmsgh->cmsg_type, bytes);
if (tuple == NULL)
goto err_closefds;
tmp = PyList_Append(cmsg_list, tuple);
Py_DECREF(tuple);
if (tmp != 0)
goto err_closefds;
if (cmsg_status != 0)
break;
}
retval = Py_BuildValue("NOiN",
(*makeval)(ctx.result, makeval_data),
cmsg_list,
(int)msg.msg_flags,
makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
((msg.msg_namelen > addrbuflen) ?
addrbuflen : msg.msg_namelen),
s->sock_proto));
if (retval == NULL)
goto err_closefds;
finally:
Py_XDECREF(cmsg_list);
PyMem_Free(controlbuf);
return retval;
err_closefds:
#ifdef SCM_RIGHTS
/* Close all descriptors coming from SCM_RIGHTS, so they don't leak. */
for (cmsgh = ((msg.msg_controllen > 0) ? CMSG_FIRSTHDR(&msg) : NULL);
cmsgh != NULL; cmsgh = CMSG_NXTHDR(&msg, cmsgh)) {
cmsg_status = get_cmsg_data_len(&msg, cmsgh, &cmsgdatalen);
if (cmsg_status < 0)
break;
if (cmsgh->cmsg_level == SOL_SOCKET &&
cmsgh->cmsg_type == SCM_RIGHTS) {
size_t numfds;
int *fdp;
numfds = cmsgdatalen / sizeof(int);
fdp = (int *)CMSG_DATA(cmsgh);
while (numfds-- > 0)
close(*fdp++);
}
if (cmsg_status != 0)
break;
}
#endif /* SCM_RIGHTS */
goto finally;
}
static PyObject *
makeval_recvmsg(ssize_t received, void *data)
{
PyObject **buf = data;
if (received < PyBytes_GET_SIZE(*buf))
_PyBytes_Resize(buf, received);
Py_XINCREF(*buf);
return *buf;
}
/* s.recvmsg(bufsize[, ancbufsize[, flags]]) method */
static PyObject *
sock_recvmsg(PySocketSockObject *s, PyObject *args)
{
Py_ssize_t bufsize, ancbufsize = 0;
int flags = 0;
struct iovec iov;
PyObject *buf = NULL, *retval = NULL;
if (!PyArg_ParseTuple(args, "n|ni:recvmsg", &bufsize, &ancbufsize, &flags))
return NULL;
if (bufsize < 0) {
PyErr_SetString(PyExc_ValueError, "negative buffer size in recvmsg()");
return NULL;
}
if ((buf = PyBytes_FromStringAndSize(NULL, bufsize)) == NULL)
return NULL;
iov.iov_base = PyBytes_AS_STRING(buf);
iov.iov_len = bufsize;
/* Note that we're passing a pointer to *our pointer* to the bytes
object here (&buf); makeval_recvmsg() may incref the object, or
deallocate it and set our pointer to NULL. */
retval = sock_recvmsg_guts(s, &iov, 1, flags, ancbufsize,
&makeval_recvmsg, &buf);
Py_XDECREF(buf);
return retval;
}
PyDoc_STRVAR(recvmsg_doc,
"recvmsg(bufsize[, ancbufsize[, flags]]) -> (data, ancdata, msg_flags, address)\n\
\n\
Receive normal data (up to bufsize bytes) and ancillary data from the\n\
socket. The ancbufsize argument sets the size in bytes of the\n\
internal buffer used to receive the ancillary data; it defaults to 0,\n\
meaning that no ancillary data will be received. Appropriate buffer\n\
sizes for ancillary data can be calculated using CMSG_SPACE() or\n\
CMSG_LEN(), and items which do not fit into the buffer might be\n\
truncated or discarded. The flags argument defaults to 0 and has the\n\
same meaning as for recv().\n\
\n\
The return value is a 4-tuple: (data, ancdata, msg_flags, address).\n\
The data item is a bytes object holding the non-ancillary data\n\
received. The ancdata item is a list of zero or more tuples\n\
(cmsg_level, cmsg_type, cmsg_data) representing the ancillary data\n\
(control messages) received: cmsg_level and cmsg_type are integers\n\
specifying the protocol level and protocol-specific type respectively,\n\
and cmsg_data is a bytes object holding the associated data. The\n\
msg_flags item is the bitwise OR of various flags indicating\n\
conditions on the received message; see your system documentation for\n\
details. If the receiving socket is unconnected, address is the\n\
address of the sending socket, if available; otherwise, its value is\n\
unspecified.\n\
\n\
If recvmsg() raises an exception after the system call returns, it\n\
will first attempt to close any file descriptors received via the\n\
SCM_RIGHTS mechanism.");
static PyObject *
makeval_recvmsg_into(ssize_t received, void *data)
{
return PyLong_FromSsize_t(received);
}
/* s.recvmsg_into(buffers[, ancbufsize[, flags]]) method */
static PyObject *
sock_recvmsg_into(PySocketSockObject *s, PyObject *args)
{
Py_ssize_t ancbufsize = 0;
int flags = 0;
struct iovec *iovs = NULL;
Py_ssize_t i, nitems, nbufs = 0;
Py_buffer *bufs = NULL;
PyObject *buffers_arg, *fast, *retval = NULL;
if (!PyArg_ParseTuple(args, "O|ni:recvmsg_into",
&buffers_arg, &ancbufsize, &flags))
return NULL;
if ((fast = PySequence_Fast(buffers_arg,
"recvmsg_into() argument 1 must be an "
"iterable")) == NULL)
return NULL;
nitems = PySequence_Fast_GET_SIZE(fast);
if (nitems > INT_MAX) {
PyErr_SetString(PyExc_OSError, "recvmsg_into() argument 1 is too long");
goto finally;
}
/* Fill in an iovec for each item, and save the Py_buffer
structs to release afterwards. */
if (nitems > 0 && ((iovs = PyMem_New(struct iovec, nitems)) == NULL ||
(bufs = PyMem_New(Py_buffer, nitems)) == NULL)) {
PyErr_NoMemory();
goto finally;
}
for (; nbufs < nitems; nbufs++) {
if (!PyArg_Parse(PySequence_Fast_GET_ITEM(fast, nbufs),
"w*;recvmsg_into() argument 1 must be an iterable "
"of single-segment read-write buffers",
&bufs[nbufs]))
goto finally;
iovs[nbufs].iov_base = bufs[nbufs].buf;
iovs[nbufs].iov_len = bufs[nbufs].len;
}
retval = sock_recvmsg_guts(s, iovs, nitems, flags, ancbufsize,
&makeval_recvmsg_into, NULL);
finally:
for (i = 0; i < nbufs; i++)
PyBuffer_Release(&bufs[i]);
PyMem_Free(bufs);
PyMem_Free(iovs);
Py_DECREF(fast);
return retval;
}
PyDoc_STRVAR(recvmsg_into_doc,
"recvmsg_into(buffers[, ancbufsize[, flags]]) -> (nbytes, ancdata, msg_flags, address)\n\
\n\
Receive normal data and ancillary data from the socket, scattering the\n\
non-ancillary data into a series of buffers. The buffers argument\n\
must be an iterable of objects that export writable buffers\n\
(e.g. bytearray objects); these will be filled with successive chunks\n\
of the non-ancillary data until it has all been written or there are\n\
no more buffers. The ancbufsize argument sets the size in bytes of\n\
the internal buffer used to receive the ancillary data; it defaults to\n\
0, meaning that no ancillary data will be received. Appropriate\n\
buffer sizes for ancillary data can be calculated using CMSG_SPACE()\n\
or CMSG_LEN(), and items which do not fit into the buffer might be\n\
truncated or discarded. The flags argument defaults to 0 and has the\n\
same meaning as for recv().\n\
\n\
The return value is a 4-tuple: (nbytes, ancdata, msg_flags, address).\n\
The nbytes item is the total number of bytes of non-ancillary data\n\
written into the buffers. The ancdata item is a list of zero or more\n\
tuples (cmsg_level, cmsg_type, cmsg_data) representing the ancillary\n\
data (control messages) received: cmsg_level and cmsg_type are\n\
integers specifying the protocol level and protocol-specific type\n\
respectively, and cmsg_data is a bytes object holding the associated\n\
data. The msg_flags item is the bitwise OR of various flags\n\
indicating conditions on the received message; see your system\n\
documentation for details. If the receiving socket is unconnected,\n\
address is the address of the sending socket, if available; otherwise,\n\
its value is unspecified.\n\
\n\
If recvmsg_into() raises an exception after the system call returns,\n\
it will first attempt to close any file descriptors received via the\n\
SCM_RIGHTS mechanism.");
#endif /* CMSG_LEN */
struct sock_send {
char *buf;
Py_ssize_t len;
int flags;
Py_ssize_t result;
};
static int
sock_send_impl(PySocketSockObject *s, void *data)
{
struct sock_send *ctx = data;
#ifdef MS_WINDOWS
if (ctx->len > INT_MAX)
ctx->len = INT_MAX;
ctx->result = send(s->sock_fd, ctx->buf, (int)ctx->len, ctx->flags);
#else
ctx->result = send(s->sock_fd, ctx->buf, ctx->len, ctx->flags);
#endif
return (ctx->result >= 0);
}
/* s.send(data [,flags]) method */
static PyObject *
sock_send(PySocketSockObject *s, PyObject *args)
{
int flags = 0;
Py_buffer pbuf;
struct sock_send ctx;
if (!PyArg_ParseTuple(args, "y*|i:send", &pbuf, &flags))
return NULL;
if (!IS_SELECTABLE(s)) {
PyBuffer_Release(&pbuf);
return select_error();
}
ctx.buf = pbuf.buf;
ctx.len = pbuf.len;
ctx.flags = flags;
if (sock_call(s, 1, sock_send_impl, &ctx) < 0) {
PyBuffer_Release(&pbuf);
return NULL;
}
PyBuffer_Release(&pbuf);
return PyLong_FromSsize_t(ctx.result);
}
PyDoc_STRVAR(send_doc,
"send(data[, flags]) -> count\n\
\n\
Send a data string to the socket. For the optional flags\n\
argument, see the Unix manual. Return the number of bytes\n\
sent; this may be less than len(data) if the network is busy.");
/* s.sendall(data [,flags]) method */
static PyObject *
sock_sendall(PySocketSockObject *s, PyObject *args)
{
char *buf;
Py_ssize_t len, n;
int flags = 0;
Py_buffer pbuf;
struct sock_send ctx;
int has_timeout = (s->sock_timeout > 0);
_PyTime_t interval = s->sock_timeout;
_PyTime_t deadline = 0;
int deadline_initialized = 0;
PyObject *res = NULL;
if (!PyArg_ParseTuple(args, "y*|i:sendall", &pbuf, &flags))
return NULL;
buf = pbuf.buf;
len = pbuf.len;
if (!IS_SELECTABLE(s)) {
PyBuffer_Release(&pbuf);
return select_error();
}
do {
if (has_timeout) {
if (deadline_initialized) {
/* recompute the timeout */
interval = deadline - _PyTime_GetMonotonicClock();
}
else {
deadline_initialized = 1;
deadline = _PyTime_GetMonotonicClock() + s->sock_timeout;
}
if (interval <= 0) {
PyErr_SetString(socket_timeout, "timed out");
goto done;
}
}
ctx.buf = buf;
ctx.len = len;
ctx.flags = flags;
if (sock_call_ex(s, 1, sock_send_impl, &ctx, 0, NULL, interval) < 0)
goto done;
n = ctx.result;
assert(n >= 0);
buf += n;
len -= n;
/* We must run our signal handlers before looping again.
send() can return a successful partial write when it is
interrupted, so we can't restrict ourselves to EINTR. */
if (PyErr_CheckSignals())
goto done;
} while (len > 0);
PyBuffer_Release(&pbuf);
Py_INCREF(Py_None);
res = Py_None;
done:
PyBuffer_Release(&pbuf);
return res;
}
PyDoc_STRVAR(sendall_doc,
"sendall(data[, flags])\n\
\n\
Send a data string to the socket. For the optional flags\n\
argument, see the Unix manual. This calls send() repeatedly\n\
until all data is sent. If an error occurs, it's impossible\n\
to tell how much data has been sent.");
struct sock_sendto {
char *buf;
Py_ssize_t len;
int flags;
int addrlen;
sock_addr_t *addrbuf;
Py_ssize_t result;
};
static int
sock_sendto_impl(PySocketSockObject *s, void *data)
{
struct sock_sendto *ctx = data;
#ifdef MS_WINDOWS
if (ctx->len > INT_MAX)
ctx->len = INT_MAX;
ctx->result = sendto(s->sock_fd, ctx->buf, (int)ctx->len, ctx->flags,
SAS2SA(ctx->addrbuf), ctx->addrlen);
#else
ctx->result = sendto(s->sock_fd, ctx->buf, ctx->len, ctx->flags,
SAS2SA(ctx->addrbuf), ctx->addrlen);
#endif
return (ctx->result >= 0);
}
/* s.sendto(data, [flags,] sockaddr) method */
static PyObject *
sock_sendto(PySocketSockObject *s, PyObject *args)
{
Py_buffer pbuf;
PyObject *addro;
Py_ssize_t arglen;
sock_addr_t addrbuf;
int addrlen, flags;
struct sock_sendto ctx;
flags = 0;
arglen = PyTuple_Size(args);
switch (arglen) {
case 2:
if (!PyArg_ParseTuple(args, "y*O:sendto", &pbuf, &addro)) {
return NULL;
}
break;
case 3:
if (!PyArg_ParseTuple(args, "y*iO:sendto",
&pbuf, &flags, &addro)) {
return NULL;
}
break;
default:
PyErr_Format(PyExc_TypeError,
"sendto() takes 2 or 3 arguments (%d given)",
arglen);
return NULL;
}
if (!IS_SELECTABLE(s)) {
PyBuffer_Release(&pbuf);
return select_error();
}
if (!getsockaddrarg(s, addro, SAS2SA(&addrbuf), &addrlen)) {
PyBuffer_Release(&pbuf);
return NULL;
}
ctx.buf = pbuf.buf;
ctx.len = pbuf.len;
ctx.flags = flags;
ctx.addrlen = addrlen;
ctx.addrbuf = &addrbuf;
if (sock_call(s, 1, sock_sendto_impl, &ctx) < 0) {
PyBuffer_Release(&pbuf);
return NULL;
}
PyBuffer_Release(&pbuf);
return PyLong_FromSsize_t(ctx.result);
}
PyDoc_STRVAR(sendto_doc,
"sendto(data[, flags], address) -> count\n\
\n\
Like send(data, flags) but allows specifying the destination address.\n\
For IP sockets, the address is a pair (hostaddr, port).");
/* The sendmsg() and recvmsg[_into]() methods require a working
CMSG_LEN(). See the comment near get_CMSG_LEN(). */
#ifdef CMSG_LEN
struct sock_sendmsg {
struct msghdr *msg;
int flags;
ssize_t result;
};
static int
sock_sendmsg_iovec(PySocketSockObject *s, PyObject *data_arg,
struct msghdr *msg,
Py_buffer **databufsout, Py_ssize_t *ndatabufsout) {
Py_ssize_t ndataparts, ndatabufs = 0;
int result = -1;
struct iovec *iovs = NULL;
PyObject *data_fast = NULL;
Py_buffer *databufs = NULL;
/* Fill in an iovec for each message part, and save the Py_buffer
structs to release afterwards. */
data_fast = PySequence_Fast(data_arg,
"sendmsg() argument 1 must be an "
"iterable");
if (data_fast == NULL) {
goto finally;
}
ndataparts = PySequence_Fast_GET_SIZE(data_fast);
if (ndataparts > INT_MAX) {
PyErr_SetString(PyExc_OSError, "sendmsg() argument 1 is too long");
goto finally;
}
msg->msg_iovlen = ndataparts;
if (ndataparts > 0) {
iovs = PyMem_New(struct iovec, ndataparts);
if (iovs == NULL) {
PyErr_NoMemory();
goto finally;
}
msg->msg_iov = iovs;
databufs = PyMem_New(Py_buffer, ndataparts);
if (databufs == NULL) {
PyErr_NoMemory();
goto finally;
}
}
for (; ndatabufs < ndataparts; ndatabufs++) {
if (!PyArg_Parse(PySequence_Fast_GET_ITEM(data_fast, ndatabufs),
"y*;sendmsg() argument 1 must be an iterable of "
"bytes-like objects",
&databufs[ndatabufs]))
goto finally;
iovs[ndatabufs].iov_base = databufs[ndatabufs].buf;
iovs[ndatabufs].iov_len = databufs[ndatabufs].len;
}
result = 0;
finally:
*databufsout = databufs;
*ndatabufsout = ndatabufs;
Py_XDECREF(data_fast);
return result;
}
static int
sock_sendmsg_impl(PySocketSockObject *s, void *data)
{
struct sock_sendmsg *ctx = data;
ctx->result = sendmsg(s->sock_fd, ctx->msg, ctx->flags);
return (ctx->result >= 0);
}
/* s.sendmsg(buffers[, ancdata[, flags[, address]]]) method */
static PyObject *
sock_sendmsg(PySocketSockObject *s, PyObject *args)
{
Py_ssize_t i, ndatabufs = 0, ncmsgs, ncmsgbufs = 0;
Py_buffer *databufs = NULL;
sock_addr_t addrbuf;
struct msghdr msg;
struct cmsginfo {
int level;
int type;
Py_buffer data;
} *cmsgs = NULL;
void *controlbuf = NULL;
size_t controllen, controllen_last;
int addrlen, flags = 0;
PyObject *data_arg, *cmsg_arg = NULL, *addr_arg = NULL,
*cmsg_fast = NULL, *retval = NULL;
struct sock_sendmsg ctx;
if (!PyArg_ParseTuple(args, "O|OiO:sendmsg",
&data_arg, &cmsg_arg, &flags, &addr_arg)) {
return NULL;
}
bzero(&msg, sizeof(msg));
/* Parse destination address. */
if (addr_arg != NULL && addr_arg != Py_None) {
if (!getsockaddrarg(s, addr_arg, SAS2SA(&addrbuf), &addrlen))
goto finally;
msg.msg_name = &addrbuf;
msg.msg_namelen = addrlen;
}
/* Fill in an iovec for each message part, and save the Py_buffer
structs to release afterwards. */
if (sock_sendmsg_iovec(s, data_arg, &msg, &databufs, &ndatabufs) == -1) {
goto finally;
}
if (cmsg_arg == NULL)
ncmsgs = 0;
else {
if ((cmsg_fast = PySequence_Fast(cmsg_arg,
"sendmsg() argument 2 must be an "
"iterable")) == NULL)
goto finally;
ncmsgs = PySequence_Fast_GET_SIZE(cmsg_fast);
}
#ifndef CMSG_SPACE
if (ncmsgs > 1) {
PyErr_SetString(PyExc_OSError,
"sending multiple control messages is not supported "
"on this system");
goto finally;
}
#endif
/* Save level, type and Py_buffer for each control message,
and calculate total size. */
if (ncmsgs > 0 && (cmsgs = PyMem_New(struct cmsginfo, ncmsgs)) == NULL) {
PyErr_NoMemory();
goto finally;
}
controllen = controllen_last = 0;
while (ncmsgbufs < ncmsgs) {
size_t bufsize, space;
if (!PyArg_Parse(PySequence_Fast_GET_ITEM(cmsg_fast, ncmsgbufs),
"(iiy*):[sendmsg() ancillary data items]",
&cmsgs[ncmsgbufs].level,
&cmsgs[ncmsgbufs].type,
&cmsgs[ncmsgbufs].data))
goto finally;
bufsize = cmsgs[ncmsgbufs++].data.len;
#ifdef CMSG_SPACE
if (!get_CMSG_SPACE(bufsize, &space)) {
#else
if (!get_CMSG_LEN(bufsize, &space)) {
#endif
PyErr_SetString(PyExc_OSError, "ancillary data item too large");
goto finally;
}
controllen += space;
if (controllen > SOCKLEN_T_LIMIT || controllen < controllen_last) {
PyErr_SetString(PyExc_OSError, "too much ancillary data");
goto finally;
}
controllen_last = controllen;
}
/* Construct ancillary data block from control message info. */
if (ncmsgbufs > 0) {
struct cmsghdr *cmsgh = NULL;
controlbuf = PyMem_Malloc(controllen);
if (controlbuf == NULL) {
PyErr_NoMemory();
goto finally;
}
msg.msg_control = controlbuf;
msg.msg_controllen = controllen;
/* Need to zero out the buffer as a workaround for glibc's
CMSG_NXTHDR() implementation. After getting the pointer to
the next header, it checks its (uninitialized) cmsg_len
member to see if the "message" fits in the buffer, and
returns NULL if it doesn't. Zero-filling the buffer
ensures that this doesn't happen. */
bzero(controlbuf, controllen);
for (i = 0; i < ncmsgbufs; i++) {
size_t msg_len, data_len = cmsgs[i].data.len;
int enough_space = 0;
cmsgh = (i == 0) ? CMSG_FIRSTHDR(&msg) : CMSG_NXTHDR(&msg, cmsgh);
if (cmsgh == NULL) {
PyErr_Format(PyExc_RuntimeError,
"unexpected NULL result from %s()",
(i == 0) ? "CMSG_FIRSTHDR" : "CMSG_NXTHDR");
goto finally;
}
if (!get_CMSG_LEN(data_len, &msg_len)) {
PyErr_SetString(PyExc_RuntimeError,
"item size out of range for CMSG_LEN()");
goto finally;
}
if (cmsg_min_space(&msg, cmsgh, msg_len)) {
size_t space;
cmsgh->cmsg_len = msg_len;
if (get_cmsg_data_space(&msg, cmsgh, &space))
enough_space = (space >= data_len);
}
if (!enough_space) {
PyErr_SetString(PyExc_RuntimeError,
"ancillary data does not fit in calculated "
"space");
goto finally;
}
cmsgh->cmsg_level = cmsgs[i].level;
cmsgh->cmsg_type = cmsgs[i].type;
memcpy(CMSG_DATA(cmsgh), cmsgs[i].data.buf, data_len);
}
}
/* Make the system call. */
if (!IS_SELECTABLE(s)) {
select_error();
goto finally;
}
ctx.msg = &msg;
ctx.flags = flags;
if (sock_call(s, 1, sock_sendmsg_impl, &ctx) < 0)
goto finally;
retval = PyLong_FromSsize_t(ctx.result);
finally:
PyMem_Free(controlbuf);
for (i = 0; i < ncmsgbufs; i++)
PyBuffer_Release(&cmsgs[i].data);
PyMem_Free(cmsgs);
Py_XDECREF(cmsg_fast);
PyMem_Free(msg.msg_iov);
for (i = 0; i < ndatabufs; i++) {
PyBuffer_Release(&databufs[i]);
}
PyMem_Free(databufs);
return retval;
}
PyDoc_STRVAR(sendmsg_doc,
"sendmsg(buffers[, ancdata[, flags[, address]]]) -> count\n\
\n\
Send normal and ancillary data to the socket, gathering the\n\
non-ancillary data from a series of buffers and concatenating it into\n\
a single message. The buffers argument specifies the non-ancillary\n\
data as an iterable of bytes-like objects (e.g. bytes objects).\n\
The ancdata argument specifies the ancillary data (control messages)\n\
as an iterable of zero or more tuples (cmsg_level, cmsg_type,\n\
cmsg_data), where cmsg_level and cmsg_type are integers specifying the\n\
protocol level and protocol-specific type respectively, and cmsg_data\n\
is a bytes-like object holding the associated data. The flags\n\
argument defaults to 0 and has the same meaning as for send(). If\n\
address is supplied and not None, it sets a destination address for\n\
the message. The return value is the number of bytes of non-ancillary\n\
data sent.");
#endif /* CMSG_LEN */
#ifdef HAVE_SOCKADDR_ALG
static PyObject*
sock_sendmsg_afalg(PySocketSockObject *self, PyObject *args, PyObject *kwds)
{
PyObject *retval = NULL;
Py_ssize_t i, ndatabufs = 0;
Py_buffer *databufs = NULL;
PyObject *data_arg = NULL;
Py_buffer iv = {NULL, NULL};
PyObject *opobj = NULL;
int op = -1;
PyObject *assoclenobj = NULL;
int assoclen = -1;
unsigned int *uiptr;
int flags = 0;
struct msghdr msg;
struct cmsghdr *header = NULL;
struct af_alg_iv *alg_iv = NULL;
struct sock_sendmsg ctx;
Py_ssize_t controllen;
void *controlbuf = NULL;
static char *keywords[] = {"msg", "op", "iv", "assoclen", "flags", 0};
if (self->sock_family != AF_ALG) {
PyErr_SetString(PyExc_OSError,
"algset is only supported for AF_ALG");
return NULL;
}
if (!PyArg_ParseTupleAndKeywords(args, kwds,
"|O$O!y*O!i:sendmsg_afalg", keywords,
&data_arg,
&PyLong_Type, &opobj, &iv,
&PyLong_Type, &assoclenobj, &flags)) {
return NULL;
}
bzero(&msg, sizeof(msg));
/* op is a required, keyword-only argument >= 0 */
if (opobj != NULL) {
op = _PyLong_AsInt(opobj);
}
if (op < 0) {
/* override exception from _PyLong_AsInt() */
PyErr_SetString(PyExc_TypeError,
"Invalid or missing argument 'op'");
goto finally;
}
/* assoclen is optional but must be >= 0 */
if (assoclenobj != NULL) {
assoclen = _PyLong_AsInt(assoclenobj);
if (assoclen == -1 && PyErr_Occurred()) {
goto finally;
}
if (assoclen < 0) {
PyErr_SetString(PyExc_TypeError,
"assoclen must be positive");
goto finally;
}
}
controllen = CMSG_SPACE(4);
if (iv.buf != NULL) {
controllen += CMSG_SPACE(sizeof(*alg_iv) + iv.len);
}
if (assoclen >= 0) {
controllen += CMSG_SPACE(4);
}
controlbuf = PyMem_Malloc(controllen);
if (controlbuf == NULL) {
PyErr_NoMemory();
goto finally;
}
bzero(controlbuf, controllen);
msg.msg_controllen = controllen;
msg.msg_control = controlbuf;
/* Fill in an iovec for each message part, and save the Py_buffer
structs to release afterwards. */
if (data_arg != NULL) {
if (sock_sendmsg_iovec(self, data_arg, &msg, &databufs, &ndatabufs) == -1) {
goto finally;
}
}
/* set operation to encrypt or decrypt */
header = CMSG_FIRSTHDR(&msg);
if (header == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"unexpected NULL result from CMSG_FIRSTHDR");
goto finally;
}
header->cmsg_level = SOL_ALG;
header->cmsg_type = ALG_SET_OP;
header->cmsg_len = CMSG_LEN(4);
uiptr = (void*)CMSG_DATA(header);
*uiptr = (unsigned int)op;
/* set initialization vector */
if (iv.buf != NULL) {
header = CMSG_NXTHDR(&msg, header);
if (header == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"unexpected NULL result from CMSG_NXTHDR(iv)");
goto finally;
}
header->cmsg_level = SOL_ALG;
header->cmsg_type = ALG_SET_IV;
header->cmsg_len = CMSG_SPACE(sizeof(*alg_iv) + iv.len);
alg_iv = (void*)CMSG_DATA(header);
alg_iv->ivlen = iv.len;
memcpy(alg_iv->iv, iv.buf, iv.len);
}
/* set length of associated data for AEAD */
if (assoclen >= 0) {
header = CMSG_NXTHDR(&msg, header);
if (header == NULL) {
PyErr_SetString(PyExc_RuntimeError,
"unexpected NULL result from CMSG_NXTHDR(assoc)");
goto finally;
}
header->cmsg_level = SOL_ALG;
header->cmsg_type = ALG_SET_AEAD_ASSOCLEN;
header->cmsg_len = CMSG_LEN(4);
uiptr = (void*)CMSG_DATA(header);
*uiptr = (unsigned int)assoclen;
}
ctx.msg = &msg;
ctx.flags = flags;
if (sock_call(self, 1, sock_sendmsg_impl, &ctx) < 0) {
goto finally;
}
retval = PyLong_FromSsize_t(ctx.result);
finally:
PyMem_Free(controlbuf);
if (iv.buf != NULL) {
PyBuffer_Release(&iv);
}
PyMem_Free(msg.msg_iov);
for (i = 0; i < ndatabufs; i++) {
PyBuffer_Release(&databufs[i]);
}
PyMem_Free(databufs);
return retval;
}
PyDoc_STRVAR(sendmsg_afalg_doc,
"sendmsg_afalg([msg], *, op[, iv[, assoclen[, flags=MSG_MORE]]])\n\
\n\
Set operation mode, IV and length of associated data for an AF_ALG\n\
operation socket.");
#endif
/* s.shutdown(how) method */
static PyObject *
sock_shutdown(PySocketSockObject *s, PyObject *arg)
{
int how;
int res;
how = _PyLong_AsInt(arg);
if (how == -1 && PyErr_Occurred())
return NULL;
Py_BEGIN_ALLOW_THREADS
res = shutdown(s->sock_fd, how);
Py_END_ALLOW_THREADS
if (res < 0)
return s->errorhandler();
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(shutdown_doc,
"shutdown(flag)\n\
\n\
Shut down the reading side of the socket (flag == SHUT_RD), the writing side\n\
of the socket (flag == SHUT_WR), or both ends (flag == SHUT_RDWR).");
#if defined(MS_WINDOWS) && defined(SIO_RCVALL)
static PyObject*
sock_ioctl(PySocketSockObject *s, PyObject *arg)
{
unsigned long cmd = SIO_RCVALL;
PyObject *argO;
DWORD recv;
if (!PyArg_ParseTuple(arg, "kO:ioctl", &cmd, &argO))
return NULL;
switch (cmd) {
case SIO_RCVALL: {
unsigned int option = RCVALL_ON;
if (!PyArg_ParseTuple(arg, "kI:ioctl", &cmd, &option))
return NULL;
if (WSAIoctl(s->sock_fd, cmd, &option, sizeof(option),
NULL, 0, &recv, NULL, NULL) == SOCKET_ERROR) {
return set_error();
}
return PyLong_FromUnsignedLong(recv); }
case SIO_KEEPALIVE_VALS: {
struct tcp_keepalive ka;
if (!PyArg_ParseTuple(arg, "k(kkk):ioctl", &cmd,
&ka.onoff, &ka.keepalivetime, &ka.keepaliveinterval))
return NULL;
if (WSAIoctl(s->sock_fd, cmd, &ka, sizeof(ka),
NULL, 0, &recv, NULL, NULL) == SOCKET_ERROR) {
return set_error();
}
return PyLong_FromUnsignedLong(recv); }
#if defined(SIO_LOOPBACK_FAST_PATH)
case SIO_LOOPBACK_FAST_PATH: {
unsigned int option;
if (!PyArg_ParseTuple(arg, "kI:ioctl", &cmd, &option))
return NULL;
if (WSAIoctl(s->sock_fd, cmd, &option, sizeof(option),
NULL, 0, &recv, NULL, NULL) == SOCKET_ERROR) {
return set_error();
}
return PyLong_FromUnsignedLong(recv); }
#endif
default:
PyErr_Format(PyExc_ValueError, "invalid ioctl command %d", cmd);
return NULL;
}
}
PyDoc_STRVAR(sock_ioctl_doc,
"ioctl(cmd, option) -> long\n\
\n\
Control the socket with WSAIoctl syscall. Currently supported 'cmd' values are\n\
SIO_RCVALL: 'option' must be one of the socket.RCVALL_* constants.\n\
SIO_KEEPALIVE_VALS: 'option' is a tuple of (onoff, timeout, interval).\n\
SIO_LOOPBACK_FAST_PATH: 'option' is a boolean value, and is disabled by default");
#endif
#if defined(MS_WINDOWS)
static PyObject*
sock_share(PySocketSockObject *s, PyObject *arg)
{
WSAPROTOCOL_INFO info;
DWORD processId;
int result;
if (!PyArg_ParseTuple(arg, "I", &processId))
return NULL;
Py_BEGIN_ALLOW_THREADS
result = WSADuplicateSocket(s->sock_fd, processId, &info);
Py_END_ALLOW_THREADS
if (result == SOCKET_ERROR)
return set_error();
return PyBytes_FromStringAndSize((const char*)&info, sizeof(info));
}
PyDoc_STRVAR(sock_share_doc,
"share(process_id) -> bytes\n\
\n\
Share the socket with another process. The target process id\n\
must be provided and the resulting bytes object passed to the target\n\
process. There the shared socket can be instantiated by calling\n\
socket.fromshare().");
#endif
/* List of methods for socket objects */
static PyMethodDef sock_methods[] = {
{"_accept", (PyCFunction)sock_accept, METH_NOARGS,
accept_doc},
{"bind", (PyCFunction)sock_bind, METH_O,
bind_doc},
{"close", (PyCFunction)sock_close, METH_NOARGS,
close_doc},
{"connect", (PyCFunction)sock_connect, METH_O,
connect_doc},
{"connect_ex", (PyCFunction)sock_connect_ex, METH_O,
connect_ex_doc},
{"detach", (PyCFunction)sock_detach, METH_NOARGS,
detach_doc},
{"fileno", (PyCFunction)sock_fileno, METH_NOARGS,
fileno_doc},
#ifdef HAVE_GETPEERNAME
{"getpeername", (PyCFunction)sock_getpeername,
METH_NOARGS, getpeername_doc},
#endif
{"getsockname", (PyCFunction)sock_getsockname,
METH_NOARGS, getsockname_doc},
{"getsockopt", (PyCFunction)sock_getsockopt, METH_VARARGS,
getsockopt_doc},
#if defined(MS_WINDOWS) && defined(SIO_RCVALL)
{"ioctl", (PyCFunction)sock_ioctl, METH_VARARGS,
sock_ioctl_doc},
#endif
#if defined(MS_WINDOWS)
{"share", (PyCFunction)sock_share, METH_VARARGS,
sock_share_doc},
#endif
{"listen", (PyCFunction)sock_listen, METH_VARARGS,
listen_doc},
{"recv", (PyCFunction)sock_recv, METH_VARARGS,
recv_doc},
{"recv_into", (PyCFunction)sock_recv_into, METH_VARARGS | METH_KEYWORDS,
recv_into_doc},
{"recvfrom", (PyCFunction)sock_recvfrom, METH_VARARGS,
recvfrom_doc},
{"recvfrom_into", (PyCFunction)sock_recvfrom_into, METH_VARARGS | METH_KEYWORDS,
recvfrom_into_doc},
{"send", (PyCFunction)sock_send, METH_VARARGS,
send_doc},
{"sendall", (PyCFunction)sock_sendall, METH_VARARGS,
sendall_doc},
{"sendto", (PyCFunction)sock_sendto, METH_VARARGS,
sendto_doc},
{"setblocking", (PyCFunction)sock_setblocking, METH_O,
setblocking_doc},
{"settimeout", (PyCFunction)sock_settimeout, METH_O,
settimeout_doc},
{"gettimeout", (PyCFunction)sock_gettimeout, METH_NOARGS,
gettimeout_doc},
{"setsockopt", (PyCFunction)sock_setsockopt, METH_VARARGS,
setsockopt_doc},
{"shutdown", (PyCFunction)sock_shutdown, METH_O,
shutdown_doc},
#ifdef CMSG_LEN
{"recvmsg", (PyCFunction)sock_recvmsg, METH_VARARGS,
recvmsg_doc},
{"recvmsg_into", (PyCFunction)sock_recvmsg_into, METH_VARARGS,
recvmsg_into_doc,},
{"sendmsg", (PyCFunction)sock_sendmsg, METH_VARARGS,
sendmsg_doc},
#endif
#ifdef HAVE_SOCKADDR_ALG
{"sendmsg_afalg", (PyCFunction)sock_sendmsg_afalg, METH_VARARGS | METH_KEYWORDS,
sendmsg_afalg_doc},
#endif
{NULL, NULL} /* sentinel */
};
/* SockObject members */
static PyMemberDef sock_memberlist[] = {
{"family", T_INT, offsetof(PySocketSockObject, sock_family), READONLY, "the socket family"},
{"type", T_INT, offsetof(PySocketSockObject, sock_type), READONLY, "the socket type"},
{"proto", T_INT, offsetof(PySocketSockObject, sock_proto), READONLY, "the socket protocol"},
{0},
};
static PyGetSetDef sock_getsetlist[] = {
{"timeout", (getter)sock_gettimeout, NULL, PyDoc_STR("the socket timeout")},
{NULL} /* sentinel */
};
/* Deallocate a socket object in response to the last Py_DECREF().
First close the file description. */
static void
sock_finalize(PySocketSockObject *s)
{
SOCKET_T fd;
PyObject *error_type, *error_value, *error_traceback;
/* Save the current exception, if any. */
PyErr_Fetch(&error_type, &error_value, &error_traceback);
if (s->sock_fd != INVALID_SOCKET) {
if (PyErr_ResourceWarning((PyObject *)s, 1, "unclosed %R", s)) {
/* Spurious errors can appear at shutdown */
if (PyErr_ExceptionMatches(PyExc_Warning)) {
PyErr_WriteUnraisable((PyObject *)s);
}
}
/* Only close the socket *after* logging the ResourceWarning warning
to allow the logger to call socket methods like
socket.getsockname(). If the socket is closed before, socket
methods fails with the EBADF error. */
fd = s->sock_fd;
s->sock_fd = INVALID_SOCKET;
/* We do not want to retry upon EINTR: see sock_close() */
Py_BEGIN_ALLOW_THREADS
(void) SOCKETCLOSE(fd);
Py_END_ALLOW_THREADS
}
/* Restore the saved exception. */
PyErr_Restore(error_type, error_value, error_traceback);
}
static void
sock_dealloc(PySocketSockObject *s)
{
if (PyObject_CallFinalizerFromDealloc((PyObject *)s) < 0)
return;
Py_TYPE(s)->tp_free((PyObject *)s);
}
static PyObject *
sock_repr(PySocketSockObject *s)
{
long sock_fd;
/* On Windows, this test is needed because SOCKET_T is unsigned */
if (s->sock_fd == INVALID_SOCKET) {
sock_fd = -1;
}
#if SIZEOF_SOCKET_T > SIZEOF_LONG
else if (s->sock_fd > LONG_MAX) {
/* this can occur on Win64, and actually there is a special
ugly printf formatter for decimal pointer length integer
printing, only bother if necessary*/
PyErr_SetString(PyExc_OverflowError,
"no printf formatter to display "
"the socket descriptor in decimal");
return NULL;
}
#endif
else
sock_fd = (long)s->sock_fd;
return PyUnicode_FromFormat(
"<socket object, fd=%ld, family=%d, type=%d, proto=%d>",
sock_fd, s->sock_family,
s->sock_type,
s->sock_proto);
}
/* Create a new, uninitialized socket object. */
static PyObject *
sock_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *new;
new = type->tp_alloc(type, 0);
if (new != NULL) {
((PySocketSockObject *)new)->sock_fd = INVALID_SOCKET;
((PySocketSockObject *)new)->sock_timeout = _PyTime_FromSeconds(-1);
((PySocketSockObject *)new)->errorhandler = &set_error;
}
return new;
}
/* Initialize a new socket object. */
#ifdef SOCK_CLOEXEC
/* socket() and socketpair() fail with EINVAL on Linux kernel older
* than 2.6.27 if SOCK_CLOEXEC flag is set in the socket type. */
static int sock_cloexec_works = -1;
#endif
/*ARGSUSED*/
static int
sock_initobj(PyObject *self, PyObject *args, PyObject *kwds)
{
PySocketSockObject *s = (PySocketSockObject *)self;
PyObject *fdobj = NULL;
SOCKET_T fd = INVALID_SOCKET;
int family = AF_INET, type = SOCK_STREAM, proto = 0;
static char *keywords[] = {"family", "type", "proto", "fileno", 0};
#ifndef MS_WINDOWS
#ifdef SOCK_CLOEXEC
int *atomic_flag_works = &sock_cloexec_works;
#else
int *atomic_flag_works = NULL;
#endif
#endif
if (!PyArg_ParseTupleAndKeywords(args, kwds,
"|iiiO:socket", keywords,
&family, &type, &proto, &fdobj))
return -1;
if (fdobj != NULL && fdobj != Py_None) {
#ifdef MS_WINDOWS
/* recreate a socket that was duplicated */
if (PyBytes_Check(fdobj)) {
WSAPROTOCOL_INFO info;
if (PyBytes_GET_SIZE(fdobj) != sizeof(info)) {
PyErr_Format(PyExc_ValueError,
"socket descriptor string has wrong size, "
"should be %zu bytes.", sizeof(info));
return -1;
}
memcpy(&info, PyBytes_AS_STRING(fdobj), sizeof(info));
Py_BEGIN_ALLOW_THREADS
fd = WSASocket(FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO,
FROM_PROTOCOL_INFO, &info, 0, WSA_FLAG_OVERLAPPED);
Py_END_ALLOW_THREADS
if (fd == INVALID_SOCKET) {
set_error();
return -1;
}
family = info.iAddressFamily;
type = info.iSocketType;
proto = info.iProtocol;
}
else
#endif
{
fd = PyLong_AsSocket_t(fdobj);
if (fd == (SOCKET_T)(-1) && PyErr_Occurred())
return -1;
if (fd == INVALID_SOCKET) {
PyErr_SetString(PyExc_ValueError,
"can't use invalid socket value");
return -1;
}
}
}
else {
#ifdef MS_WINDOWS
/* Windows implementation */
#ifndef WSA_FLAG_NO_HANDLE_INHERIT
#define WSA_FLAG_NO_HANDLE_INHERIT 0x80
#endif
Py_BEGIN_ALLOW_THREADS
if (support_wsa_no_inherit) {
fd = WSASocket(family, type, proto,
NULL, 0,
WSA_FLAG_OVERLAPPED | WSA_FLAG_NO_HANDLE_INHERIT);
if (fd == INVALID_SOCKET) {
/* Windows 7 or Windows 2008 R2 without SP1 or the hotfix */
support_wsa_no_inherit = 0;
fd = socket(family, type, proto);
}
}
else {
fd = socket(family, type, proto);
}
Py_END_ALLOW_THREADS
if (fd == INVALID_SOCKET) {
set_error();
return -1;
}
if (!support_wsa_no_inherit) {
if (!SetHandleInformation((HANDLE)fd, HANDLE_FLAG_INHERIT, 0)) {
closesocket(fd);
PyErr_SetFromWindowsErr(0);
return -1;
}
}
#else
/* UNIX */
Py_BEGIN_ALLOW_THREADS
#ifdef SOCK_CLOEXEC
if (sock_cloexec_works != 0) {
fd = socket(family, type | SOCK_CLOEXEC, proto);
if (sock_cloexec_works == -1) {
if (fd >= 0) {
sock_cloexec_works = 1;
}
else if (errno == EINVAL) {
/* Linux older than 2.6.27 does not support SOCK_CLOEXEC */
sock_cloexec_works = 0;
fd = socket(family, type, proto);
}
}
}
else
#endif
{
fd = socket(family, type, proto);
}
Py_END_ALLOW_THREADS
if (fd == INVALID_SOCKET) {
set_error();
return -1;
}
if (_Py_set_inheritable(fd, 0, atomic_flag_works) < 0) {
SOCKETCLOSE(fd);
return -1;
}
#endif
}
if (init_sockobject(s, fd, family, type, proto) == -1) {
SOCKETCLOSE(fd);
return -1;
}
return 0;
}
/* Type object for socket objects. */
static PyTypeObject sock_type = {
PyVarObject_HEAD_INIT(0, 0) /* Must fill in type value later */
"_socket.socket", /* tp_name */
sizeof(PySocketSockObject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)sock_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)sock_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE
| Py_TPFLAGS_HAVE_FINALIZE, /* tp_flags */
sock_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
sock_methods, /* tp_methods */
sock_memberlist, /* tp_members */
sock_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
sock_initobj, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
sock_new, /* tp_new */
PyObject_Del, /* tp_free */
0, /* tp_is_gc */
0, /* tp_bases */
0, /* tp_mro */
0, /* tp_cache */
0, /* tp_subclasses */
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
(destructor)sock_finalize, /* tp_finalize */
};
/* Python interface to gethostname(). */
/*ARGSUSED*/
static PyObject *
socket_gethostname(PyObject *self, PyObject *unused)
{
#ifdef MS_WINDOWS
/* Don't use winsock's gethostname, as this returns the ANSI
version of the hostname, whereas we need a Unicode string.
Otherwise, gethostname apparently also returns the DNS name. */
wchar_t buf[MAX_COMPUTERNAME_LENGTH + 1];
DWORD size = Py_ARRAY_LENGTH(buf);
wchar_t *name;
PyObject *result;
if (GetComputerNameExW(ComputerNamePhysicalDnsHostname, buf, &size))
return PyUnicode_FromWideChar(buf, size);
if (GetLastError() != ERROR_MORE_DATA)
return PyErr_SetFromWindowsErr(0);
if (size == 0)
return PyUnicode_New(0, 0);
/* MSDN says ERROR_MORE_DATA may occur because DNS allows longer
names */
name = PyMem_New(wchar_t, size);
if (!name) {
PyErr_NoMemory();
return NULL;
}
if (!GetComputerNameExW(ComputerNamePhysicalDnsHostname,
name,
&size))
{
PyMem_Free(name);
return PyErr_SetFromWindowsErr(0);
}
result = PyUnicode_FromWideChar(name, size);
PyMem_Free(name);
return result;
#else
char buf[1024];
int res;
Py_BEGIN_ALLOW_THREADS
res = gethostname(buf, (int) sizeof buf - 1);
Py_END_ALLOW_THREADS
if (res < 0)
return set_error();
buf[sizeof buf - 1] = '\0';
return PyUnicode_DecodeFSDefault(buf);
#endif
}
PyDoc_STRVAR(gethostname_doc,
"gethostname() -> string\n\
\n\
Return the current host name.");
#ifdef HAVE_SETHOSTNAME
PyDoc_STRVAR(sethostname_doc,
"sethostname(name)\n\n\
Sets the hostname to name.");
static PyObject *
socket_sethostname(PyObject *self, PyObject *args)
{
PyObject *hnobj;
Py_buffer buf;
int res, flag = 0;
#ifdef _AIX
/* issue #18259, not declared in any useful header file */
extern int sethostname(const char *, size_t);
#endif
if (!PyArg_ParseTuple(args, "S:sethostname", &hnobj)) {
PyErr_Clear();
if (!PyArg_ParseTuple(args, "O&:sethostname",
PyUnicode_FSConverter, &hnobj))
return NULL;
flag = 1;
}
res = PyObject_GetBuffer(hnobj, &buf, PyBUF_SIMPLE);
if (!res) {
res = sethostname(buf.buf, buf.len);
PyBuffer_Release(&buf);
}
if (flag)
Py_DECREF(hnobj);
if (res)
return set_error();
Py_RETURN_NONE;
}
#endif
/* Python interface to gethostbyname(name). */
/*ARGSUSED*/
static PyObject *
socket_gethostbyname(PyObject *self, PyObject *args)
{
char *name;
sock_addr_t addrbuf;
PyObject *ret = NULL;
if (!PyArg_ParseTuple(args, "et:gethostbyname", "idna", &name))
return NULL;
if (setipaddr(name, SAS2SA(&addrbuf), sizeof(addrbuf), AF_INET) < 0)
goto finally;
ret = makeipaddr(SAS2SA(&addrbuf), sizeof(struct sockaddr_in));
finally:
PyMem_Free(name);
return ret;
}
PyDoc_STRVAR(gethostbyname_doc,
"gethostbyname(host) -> address\n\
\n\
Return the IP address (a string of the form '255.255.255.255') for a host.");
static PyObject*
sock_decode_hostname(const char *name)
{
#ifdef MS_WINDOWS
/* Issue #26227: gethostbyaddr() returns a string encoded
* to the ANSI code page */
return PyUnicode_DecodeFSDefault(name);
#else
/* Decode from UTF-8 */
return PyUnicode_FromString(name);
#endif
}
/* Convenience function common to gethostbyname_ex and gethostbyaddr */
static PyObject *
gethost_common(struct hostent *h, struct sockaddr *addr, size_t alen, int af)
{
char **pch;
PyObject *rtn_tuple = (PyObject *)NULL;
PyObject *name_list = (PyObject *)NULL;
PyObject *addr_list = (PyObject *)NULL;
PyObject *tmp;
PyObject *name;
if (h == NULL) {
/* Let's get real error message to return */
set_herror(h_errno);
return NULL;
}
if (h->h_addrtype != af) {
/* Let's get real error message to return */
errno = EAFNOSUPPORT;
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
switch (af) {
case AF_INET:
if (alen < sizeof(struct sockaddr_in))
return NULL;
break;
#ifdef ENABLE_IPV6
case AF_INET6:
if (alen < sizeof(struct sockaddr_in6))
return NULL;
break;
#endif
}
if ((name_list = PyList_New(0)) == NULL)
goto err;
if ((addr_list = PyList_New(0)) == NULL)
goto err;
/* SF #1511317: h_aliases can be NULL */
if (h->h_aliases) {
for (pch = h->h_aliases; *pch != NULL; pch++) {
int status;
tmp = PyUnicode_FromString(*pch);
if (tmp == NULL)
goto err;
status = PyList_Append(name_list, tmp);
Py_DECREF(tmp);
if (status)
goto err;
}
}
for (pch = h->h_addr_list; *pch != NULL; pch++) {
int status;
switch (af) {
case AF_INET:
{
struct sockaddr_in sin;
bzero(&sin, sizeof(sin));
sin.sin_family = af;
#ifdef HAVE_SOCKADDR_SA_LEN
sin.sin_len = sizeof(sin);
#endif
memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
tmp = makeipaddr((struct sockaddr *)&sin, sizeof(sin));
if (pch == h->h_addr_list && alen >= sizeof(sin))
memcpy((char *) addr, &sin, sizeof(sin));
break;
}
#ifdef ENABLE_IPV6
case AF_INET6:
{
struct sockaddr_in6 sin6;
bzero(&sin6, sizeof(sin6));
sin6.sin6_family = af;
#ifdef HAVE_SOCKADDR_SA_LEN
sin6.sin6_len = sizeof(sin6);
#endif
memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr));
tmp = makeipaddr((struct sockaddr *)&sin6,
sizeof(sin6));
if (pch == h->h_addr_list && alen >= sizeof(sin6))
memcpy((char *) addr, &sin6, sizeof(sin6));
break;
}
#endif
default: /* can't happen */
PyErr_SetString(PyExc_OSError,
"unsupported address family");
return NULL;
}
if (tmp == NULL)
goto err;
status = PyList_Append(addr_list, tmp);
Py_DECREF(tmp);
if (status)
goto err;
}
name = sock_decode_hostname(h->h_name);
if (name == NULL)
goto err;
rtn_tuple = Py_BuildValue("NOO", name, name_list, addr_list);
err:
Py_XDECREF(name_list);
Py_XDECREF(addr_list);
return rtn_tuple;
}
/* Python interface to gethostbyname_ex(name). */
/*ARGSUSED*/
static PyObject *
socket_gethostbyname_ex(PyObject *self, PyObject *args)
{
char *name;
struct hostent *h;
sock_addr_t addr;
struct sockaddr *sa;
PyObject *ret = NULL;
#ifdef HAVE_GETHOSTBYNAME_R
struct hostent hp_allocated;
#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
struct hostent_data data;
#else
char buf[16384];
int buf_len = (sizeof buf) - 1;
int errnop;
#endif
#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
int result;
#endif
#endif /* HAVE_GETHOSTBYNAME_R */
if (!PyArg_ParseTuple(args, "et:gethostbyname_ex", "idna", &name))
return NULL;
if (setipaddr(name, SAS2SA(&addr), sizeof(addr), AF_INET) < 0)
goto finally;
Py_BEGIN_ALLOW_THREADS
#ifdef HAVE_GETHOSTBYNAME_R
#if defined(HAVE_GETHOSTBYNAME_R_6_ARG)
gethostbyname_r(name, &hp_allocated, buf, buf_len,
&h, &errnop);
#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
h = gethostbyname_r(name, &hp_allocated, buf, buf_len, &errnop);
#else /* HAVE_GETHOSTBYNAME_R_3_ARG */
bzero(&data, sizeof(data));
result = gethostbyname_r(name, &hp_allocated, &data);
h = (result != 0) ? NULL : &hp_allocated;
#endif
#else /* not HAVE_GETHOSTBYNAME_R */
#ifdef USE_GETHOSTBYNAME_LOCK
PyThread_acquire_lock(netdb_lock, 1);
#endif
h = gethostbyname(name);
#endif /* HAVE_GETHOSTBYNAME_R */
Py_END_ALLOW_THREADS
/* Some C libraries would require addr.__ss_family instead of
addr.ss_family.
Therefore, we cast the sockaddr_storage into sockaddr to
access sa_family. */
sa = SAS2SA(&addr);
ret = gethost_common(h, SAS2SA(&addr), sizeof(addr),
sa->sa_family);
#ifdef USE_GETHOSTBYNAME_LOCK
PyThread_release_lock(netdb_lock);
#endif
finally:
PyMem_Free(name);
return ret;
}
PyDoc_STRVAR(ghbn_ex_doc,
"gethostbyname_ex(host) -> (name, aliaslist, addresslist)\n\
\n\
Return the true host name, a list of aliases, and a list of IP addresses,\n\
for a host. The host argument is a string giving a host name or IP number.");
/* Python interface to gethostbyaddr(IP). */
/*ARGSUSED*/
static PyObject *
socket_gethostbyaddr(PyObject *self, PyObject *args)
{
sock_addr_t addr;
struct sockaddr *sa = SAS2SA(&addr);
char *ip_num;
struct hostent *h;
PyObject *ret = NULL;
#ifdef HAVE_GETHOSTBYNAME_R
struct hostent hp_allocated;
#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
struct hostent_data data;
#else
/* glibcs up to 2.10 assume that the buf argument to
gethostbyaddr_r is 8-byte aligned, which at least llvm-gcc
does not ensure. The attribute below instructs the compiler
to maintain this alignment. */
char buf[16384] Py_ALIGNED(8);
int buf_len = (sizeof buf) - 1;
int errnop;
#endif
#ifdef HAVE_GETHOSTBYNAME_R_3_ARG
int result;
#endif
#endif /* HAVE_GETHOSTBYNAME_R */
const char *ap;
int al;
int af;
if (!PyArg_ParseTuple(args, "et:gethostbyaddr", "idna", &ip_num))
return NULL;
af = AF_UNSPEC;
if (setipaddr(ip_num, sa, sizeof(addr), af) < 0)
goto finally;
af = sa->sa_family;
ap = NULL;
/* al = 0; */
switch (af) {
case AF_INET:
ap = (char *)&((struct sockaddr_in *)sa)->sin_addr;
al = sizeof(((struct sockaddr_in *)sa)->sin_addr);
break;
#ifdef ENABLE_IPV6
case AF_INET6:
ap = (char *)&((struct sockaddr_in6 *)sa)->sin6_addr;
al = sizeof(((struct sockaddr_in6 *)sa)->sin6_addr);
break;
#endif
default:
PyErr_SetString(PyExc_OSError, "unsupported address family");
goto finally;
}
Py_BEGIN_ALLOW_THREADS
#ifdef HAVE_GETHOSTBYNAME_R
#if defined(HAVE_GETHOSTBYNAME_R_6_ARG)
gethostbyaddr_r(ap, al, af,
&hp_allocated, buf, buf_len,
&h, &errnop);
#elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
h = gethostbyaddr_r(ap, al, af,
&hp_allocated, buf, buf_len, &errnop);
#else /* HAVE_GETHOSTBYNAME_R_3_ARG */
bzero(&data, sizeof(data));
result = gethostbyaddr_r(ap, al, af, &hp_allocated, &data);
h = (result != 0) ? NULL : &hp_allocated;
#endif
#else /* not HAVE_GETHOSTBYNAME_R */
#ifdef USE_GETHOSTBYNAME_LOCK
PyThread_acquire_lock(netdb_lock, 1);
#endif
h = gethostbyaddr(ap, al, af);
#endif /* HAVE_GETHOSTBYNAME_R */
Py_END_ALLOW_THREADS
ret = gethost_common(h, SAS2SA(&addr), sizeof(addr), af);
#ifdef USE_GETHOSTBYNAME_LOCK
PyThread_release_lock(netdb_lock);
#endif
finally:
PyMem_Free(ip_num);
return ret;
}
PyDoc_STRVAR(gethostbyaddr_doc,
"gethostbyaddr(host) -> (name, aliaslist, addresslist)\n\
\n\
Return the true host name, a list of aliases, and a list of IP addresses,\n\
for a host. The host argument is a string giving a host name or IP number.");
/* Python interface to getservbyname(name).
This only returns the port number, since the other info is already
known or not useful (like the list of aliases). */
/*ARGSUSED*/
static PyObject *
socket_getservbyname(PyObject *self, PyObject *args)
{
const char *name, *proto=NULL;
struct servent *sp;
if (!PyArg_ParseTuple(args, "s|s:getservbyname", &name, &proto))
return NULL;
Py_BEGIN_ALLOW_THREADS
sp = getservbyname(name, proto);
Py_END_ALLOW_THREADS
if (sp == NULL) {
PyErr_SetString(PyExc_OSError, "service/proto not found");
return NULL;
}
return PyLong_FromLong((long) ntohs(sp->s_port));
}
PyDoc_STRVAR(getservbyname_doc,
"getservbyname(servicename[, protocolname]) -> integer\n\
\n\
Return a port number from a service name and protocol name.\n\
The optional protocol name, if given, should be 'tcp' or 'udp',\n\
otherwise any protocol will match.");
/* Python interface to getservbyport(port).
This only returns the service name, since the other info is already
known or not useful (like the list of aliases). */
/*ARGSUSED*/
static PyObject *
socket_getservbyport(PyObject *self, PyObject *args)
{
int port;
const char *proto=NULL;
struct servent *sp;
if (!PyArg_ParseTuple(args, "i|s:getservbyport", &port, &proto))
return NULL;
if (port < 0 || port > 0xffff) {
PyErr_SetString(
PyExc_OverflowError,
"getservbyport: port must be 0-65535.");
return NULL;
}
Py_BEGIN_ALLOW_THREADS
sp = getservbyport(htons((short)port), proto);
Py_END_ALLOW_THREADS
if (sp == NULL) {
PyErr_SetString(PyExc_OSError, "port/proto not found");
return NULL;
}
return PyUnicode_FromString(sp->s_name);
}
PyDoc_STRVAR(getservbyport_doc,
"getservbyport(port[, protocolname]) -> string\n\
\n\
Return the service name from a port number and protocol name.\n\
The optional protocol name, if given, should be 'tcp' or 'udp',\n\
otherwise any protocol will match.");
/* Python interface to getprotobyname(name).
This only returns the protocol number, since the other info is
already known or not useful (like the list of aliases). */
/*ARGSUSED*/
static PyObject *
socket_getprotobyname(PyObject *self, PyObject *args)
{
const char *name;
struct protoent *sp;
if (!PyArg_ParseTuple(args, "s:getprotobyname", &name))
return NULL;
Py_BEGIN_ALLOW_THREADS
sp = getprotobyname(name);
Py_END_ALLOW_THREADS
if (sp == NULL) {
PyErr_SetString(PyExc_OSError, "protocol not found");
return NULL;
}
return PyLong_FromLong((long) sp->p_proto);
}
PyDoc_STRVAR(getprotobyname_doc,
"getprotobyname(name) -> integer\n\
\n\
Return the protocol number for the named protocol. (Rarely used.)");
#ifndef NO_DUP
/* dup() function for socket fds */
static PyObject *
socket_dup(PyObject *self, PyObject *fdobj)
{
SOCKET_T fd, newfd;
PyObject *newfdobj;
#ifdef MS_WINDOWS
WSAPROTOCOL_INFO info;
#endif
fd = PyLong_AsSocket_t(fdobj);
if (fd == (SOCKET_T)(-1) && PyErr_Occurred())
return NULL;
#ifdef MS_WINDOWS
if (WSADuplicateSocket(fd, GetCurrentProcessId(), &info))
return set_error();
newfd = WSASocket(FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO,
FROM_PROTOCOL_INFO,
&info, 0, WSA_FLAG_OVERLAPPED);
if (newfd == INVALID_SOCKET)
return set_error();
if (!SetHandleInformation((HANDLE)newfd, HANDLE_FLAG_INHERIT, 0)) {
closesocket(newfd);
PyErr_SetFromWindowsErr(0);
return NULL;
}
#else
/* On UNIX, dup can be used to duplicate the file descriptor of a socket */
newfd = _Py_dup(fd);
if (newfd == INVALID_SOCKET)
return NULL;
#endif
newfdobj = PyLong_FromSocket_t(newfd);
if (newfdobj == NULL)
SOCKETCLOSE(newfd);
return newfdobj;
}
PyDoc_STRVAR(dup_doc,
"dup(integer) -> integer\n\
\n\
Duplicate an integer socket file descriptor. This is like os.dup(), but for\n\
sockets; on some platforms os.dup() won't work for socket file descriptors.");
#endif
#ifdef HAVE_SOCKETPAIR
/* Create a pair of sockets using the socketpair() function.
Arguments as for socket() except the default family is AF_UNIX if
defined on the platform; otherwise, the default is AF_INET. */
/*ARGSUSED*/
static PyObject *
socket_socketpair(PyObject *self, PyObject *args)
{
PySocketSockObject *s0 = NULL, *s1 = NULL;
SOCKET_T sv[2];
int family, type = SOCK_STREAM, proto = 0;
PyObject *res = NULL;
#ifdef SOCK_CLOEXEC
int *atomic_flag_works = &sock_cloexec_works;
#else
int *atomic_flag_works = NULL;
#endif
int ret;
#if defined(AF_UNIX)
family = AF_UNIX;
#else
family = AF_INET;
#endif
if (!PyArg_ParseTuple(args, "|iii:socketpair",
&family, &type, &proto))
return NULL;
/* Create a pair of socket fds */
Py_BEGIN_ALLOW_THREADS
#ifdef SOCK_CLOEXEC
if (sock_cloexec_works != 0) {
ret = socketpair(family, type | SOCK_CLOEXEC, proto, sv);
if (sock_cloexec_works == -1) {
if (ret >= 0) {
sock_cloexec_works = 1;
}
else if (errno == EINVAL) {
/* Linux older than 2.6.27 does not support SOCK_CLOEXEC */
sock_cloexec_works = 0;
ret = socketpair(family, type, proto, sv);
}
}
}
else
#endif
{
ret = socketpair(family, type, proto, sv);
}
Py_END_ALLOW_THREADS
if (ret < 0)
return set_error();
if (_Py_set_inheritable(sv[0], 0, atomic_flag_works) < 0)
goto finally;
if (_Py_set_inheritable(sv[1], 0, atomic_flag_works) < 0)
goto finally;
s0 = new_sockobject(sv[0], family, type, proto);
if (s0 == NULL)
goto finally;
s1 = new_sockobject(sv[1], family, type, proto);
if (s1 == NULL)
goto finally;
res = PyTuple_Pack(2, s0, s1);
finally:
if (res == NULL) {
if (s0 == NULL)
SOCKETCLOSE(sv[0]);
if (s1 == NULL)
SOCKETCLOSE(sv[1]);
}
Py_XDECREF(s0);
Py_XDECREF(s1);
return res;
}
PyDoc_STRVAR(socketpair_doc,
"socketpair([family[, type [, proto]]]) -> (socket object, socket object)\n\
\n\
Create a pair of socket objects from the sockets returned by the platform\n\
socketpair() function.\n\
The arguments are the same as for socket() except the default family is\n\
AF_UNIX if defined on the platform; otherwise, the default is AF_INET.");
#endif /* HAVE_SOCKETPAIR */
static PyObject *
socket_ntohs(PyObject *self, PyObject *args)
{
int x1, x2;
if (!PyArg_ParseTuple(args, "i:ntohs", &x1)) {
return NULL;
}
if (x1 < 0) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative number to unsigned long");
return NULL;
}
x2 = (unsigned int)ntohs((unsigned short)x1);
return PyLong_FromLong(x2);
}
PyDoc_STRVAR(ntohs_doc,
"ntohs(integer) -> integer\n\
\n\
Convert a 16-bit integer from network to host byte order.");
static PyObject *
socket_ntohl(PyObject *self, PyObject *arg)
{
unsigned long x;
if (PyLong_Check(arg)) {
x = PyLong_AsUnsignedLong(arg);
if (x == (unsigned long) -1 && PyErr_Occurred())
return NULL;
#if SIZEOF_LONG > 4
{
unsigned long y;
/* only want the trailing 32 bits */
y = x & 0xFFFFFFFFUL;
if (y ^ x)
return PyErr_Format(PyExc_OverflowError,
"int larger than 32 bits");
x = y;
}
#endif
}
else
return PyErr_Format(PyExc_TypeError,
"expected int, %s found",
Py_TYPE(arg)->tp_name);
return PyLong_FromUnsignedLong(ntohl(x));
}
PyDoc_STRVAR(ntohl_doc,
"ntohl(integer) -> integer\n\
\n\
Convert a 32-bit integer from network to host byte order.");
static PyObject *
socket_htons(PyObject *self, PyObject *args)
{
int x1, x2;
if (!PyArg_ParseTuple(args, "i:htons", &x1)) {
return NULL;
}
if (x1 < 0) {
PyErr_SetString(PyExc_OverflowError,
"can't convert negative number to unsigned long");
return NULL;
}
x2 = (unsigned int)htons((unsigned short)x1);
return PyLong_FromLong(x2);
}
PyDoc_STRVAR(htons_doc,
"htons(integer) -> integer\n\
\n\
Convert a 16-bit integer from host to network byte order.");
static PyObject *
socket_htonl(PyObject *self, PyObject *arg)
{
unsigned long x;
if (PyLong_Check(arg)) {
x = PyLong_AsUnsignedLong(arg);
if (x == (unsigned long) -1 && PyErr_Occurred())
return NULL;
#if SIZEOF_LONG > 4
{
unsigned long y;
/* only want the trailing 32 bits */
y = x & 0xFFFFFFFFUL;
if (y ^ x)
return PyErr_Format(PyExc_OverflowError,
"int larger than 32 bits");
x = y;
}
#endif
}
else
return PyErr_Format(PyExc_TypeError,
"expected int, %s found",
Py_TYPE(arg)->tp_name);
return PyLong_FromUnsignedLong(htonl((unsigned long)x));
}
PyDoc_STRVAR(htonl_doc,
"htonl(integer) -> integer\n\
\n\
Convert a 32-bit integer from host to network byte order.");
/* socket.inet_aton() and socket.inet_ntoa() functions. */
PyDoc_STRVAR(inet_aton_doc,
"inet_aton(string) -> bytes giving packed 32-bit IP representation\n\
\n\
Convert an IP address in string format (123.45.67.89) to the 32-bit packed\n\
binary format used in low-level network functions.");
static PyObject*
socket_inet_aton(PyObject *self, PyObject *args)
{
#ifdef HAVE_INET_ATON
struct in_addr buf;
#endif
#if !defined(HAVE_INET_ATON) || defined(USE_INET_ATON_WEAKLINK)
#if (SIZEOF_INT != 4)
#error "Not sure if in_addr_t exists and int is not 32-bits."
#endif
/* Have to use inet_addr() instead */
unsigned int packed_addr;
#endif
const char *ip_addr;
if (!PyArg_ParseTuple(args, "s:inet_aton", &ip_addr))
return NULL;
#ifdef HAVE_INET_ATON
#ifdef USE_INET_ATON_WEAKLINK
if (inet_aton != NULL) {
#endif
if (inet_aton(ip_addr, &buf))
return PyBytes_FromStringAndSize((char *)(&buf),
sizeof(buf));
PyErr_SetString(PyExc_OSError,
"illegal IP address string passed to inet_aton");
return NULL;
#ifdef USE_INET_ATON_WEAKLINK
} else {
#endif
#endif
#if !defined(HAVE_INET_ATON) || defined(USE_INET_ATON_WEAKLINK)
/* special-case this address as inet_addr might return INADDR_NONE
* for this */
if (strcmp(ip_addr, "255.255.255.255") == 0) {
packed_addr = INADDR_BROADCAST;
} else {
packed_addr = inet_addr(ip_addr);
if (packed_addr == INADDR_NONE) { /* invalid address */
PyErr_SetString(PyExc_OSError,
"illegal IP address string passed to inet_aton");
return NULL;
}
}
return PyBytes_FromStringAndSize((char *) &packed_addr,
sizeof(packed_addr));
#ifdef USE_INET_ATON_WEAKLINK
}
#endif
#endif
}
PyDoc_STRVAR(inet_ntoa_doc,
"inet_ntoa(packed_ip) -> ip_address_string\n\
\n\
Convert an IP address from 32-bit packed binary format to string format");
static PyObject*
socket_inet_ntoa(PyObject *self, PyObject *args)
{
Py_buffer packed_ip;
struct in_addr packed_addr;
if (!PyArg_ParseTuple(args, "y*:inet_ntoa", &packed_ip)) {
return NULL;
}
if (packed_ip.len != sizeof(packed_addr)) {
PyErr_SetString(PyExc_OSError,
"packed IP wrong length for inet_ntoa");
PyBuffer_Release(&packed_ip);
return NULL;
}
memcpy(&packed_addr, packed_ip.buf, packed_ip.len);
PyBuffer_Release(&packed_ip);
return PyUnicode_FromString(inet_ntoa(packed_addr));
}
#if defined(HAVE_INET_PTON) || defined(MS_WINDOWS)
PyDoc_STRVAR(inet_pton_doc,
"inet_pton(af, ip) -> packed IP address string\n\
\n\
Convert an IP address from string format to a packed string suitable\n\
for use with low-level network functions.");
#endif
#ifdef HAVE_INET_PTON
static PyObject *
socket_inet_pton(PyObject *self, PyObject *args)
{
int af;
const char* ip;
int retval;
#ifdef ENABLE_IPV6
char packed[Py_MAX(sizeof(struct in_addr), sizeof(struct in6_addr))];
#else
char packed[sizeof(struct in_addr)];
#endif
if (!PyArg_ParseTuple(args, "is:inet_pton", &af, &ip)) {
return NULL;
}
#if !defined(ENABLE_IPV6) && defined(AF_INET6)
if(af == AF_INET6) {
PyErr_SetString(PyExc_OSError,
"can't use AF_INET6, IPv6 is disabled");
return NULL;
}
#endif
retval = inet_pton(af, ip, packed);
if (retval < 0) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
} else if (retval == 0) {
PyErr_SetString(PyExc_OSError,
"illegal IP address string passed to inet_pton");
return NULL;
} else if (af == AF_INET) {
return PyBytes_FromStringAndSize(packed,
sizeof(struct in_addr));
#ifdef ENABLE_IPV6
} else if (af == AF_INET6) {
return PyBytes_FromStringAndSize(packed,
sizeof(struct in6_addr));
#endif
} else {
PyErr_SetString(PyExc_OSError, "unknown address family");
return NULL;
}
}
#elif defined(MS_WINDOWS)
static PyObject *
socket_inet_pton(PyObject *self, PyObject *args)
{
int af;
char* ip;
struct sockaddr_in6 addr;
INT ret, size;
if (!PyArg_ParseTuple(args, "is:inet_pton", &af, &ip)) {
return NULL;
}
size = sizeof(addr);
ret = WSAStringToAddressA(ip, af, NULL, (LPSOCKADDR)&addr, &size);
if (ret) {
PyErr_SetExcFromWindowsErr(PyExc_OSError, WSAGetLastError());
return NULL;
} else if(af == AF_INET) {
struct sockaddr_in *addr4 = (struct sockaddr_in*)&addr;
return PyBytes_FromStringAndSize((const char *)&(addr4->sin_addr),
sizeof(addr4->sin_addr));
} else if (af == AF_INET6) {
return PyBytes_FromStringAndSize((const char *)&(addr.sin6_addr),
sizeof(addr.sin6_addr));
} else {
PyErr_SetString(PyExc_OSError, "unknown address family");
return NULL;
}
}
#endif
#if defined(HAVE_INET_PTON) || defined(MS_WINDOWS)
PyDoc_STRVAR(inet_ntop_doc,
"inet_ntop(af, packed_ip) -> string formatted IP address\n\
\n\
Convert a packed IP address of the given family to string format.");
#endif
#ifdef HAVE_INET_PTON
static PyObject *
socket_inet_ntop(PyObject *self, PyObject *args)
{
int af;
Py_buffer packed_ip;
const char* retval;
#ifdef ENABLE_IPV6
char ip[Py_MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) + 1];
#else
char ip[INET_ADDRSTRLEN + 1];
#endif
/* Guarantee NUL-termination for PyUnicode_FromString() below */
bzero(&ip[0], sizeof(ip));
if (!PyArg_ParseTuple(args, "iy*:inet_ntop", &af, &packed_ip)) {
return NULL;
}
if (af == AF_INET) {
if (packed_ip.len != sizeof(struct in_addr)) {
PyErr_SetString(PyExc_ValueError,
"invalid length of packed IP address string");
PyBuffer_Release(&packed_ip);
return NULL;
}
#ifdef ENABLE_IPV6
} else if (af == AF_INET6) {
if (packed_ip.len != sizeof(struct in6_addr)) {
PyErr_SetString(PyExc_ValueError,
"invalid length of packed IP address string");
PyBuffer_Release(&packed_ip);
return NULL;
}
#endif
} else {
PyErr_Format(PyExc_ValueError,
"unknown address family %d", af);
PyBuffer_Release(&packed_ip);
return NULL;
}
retval = inet_ntop(af, packed_ip.buf, ip, sizeof(ip));
PyBuffer_Release(&packed_ip);
if (!retval) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
} else {
return PyUnicode_FromString(retval);
}
}
#elif defined(MS_WINDOWS)
static PyObject *
socket_inet_ntop(PyObject *self, PyObject *args)
{
int af;
Py_buffer packed_ip;
struct sockaddr_in6 addr;
DWORD addrlen, ret, retlen;
#ifdef ENABLE_IPV6
char ip[Py_MAX(INET_ADDRSTRLEN, INET6_ADDRSTRLEN) + 1];
#else
char ip[INET_ADDRSTRLEN + 1];
#endif
/* Guarantee NUL-termination for PyUnicode_FromString() below */
bzero(&ip[0], sizeof(ip));
if (!PyArg_ParseTuple(args, "iy*:inet_ntop", &af, &packed_ip)) {
return NULL;
}
if (af == AF_INET) {
struct sockaddr_in * addr4 = (struct sockaddr_in *)&addr;
if (packed_ip.len != sizeof(struct in_addr)) {
PyErr_SetString(PyExc_ValueError,
"invalid length of packed IP address string");
PyBuffer_Release(&packed_ip);
return NULL;
}
bzero(addr4, sizeof(struct sockaddr_in));
addr4->sin_family = AF_INET;
memcpy(&(addr4->sin_addr), packed_ip.buf, sizeof(addr4->sin_addr));
addrlen = sizeof(struct sockaddr_in);
} else if (af == AF_INET6) {
if (packed_ip.len != sizeof(struct in6_addr)) {
PyErr_SetString(PyExc_ValueError,
"invalid length of packed IP address string");
PyBuffer_Release(&packed_ip);
return NULL;
}
bzero(&addr, sizeof(addr));
addr.sin6_family = AF_INET6;
memcpy(&(addr.sin6_addr), packed_ip.buf, sizeof(addr.sin6_addr));
addrlen = sizeof(addr);
} else {
PyErr_Format(PyExc_ValueError,
"unknown address family %d", af);
PyBuffer_Release(&packed_ip);
return NULL;
}
PyBuffer_Release(&packed_ip);
retlen = sizeof(ip);
ret = WSAAddressToStringA((struct sockaddr*)&addr, addrlen, NULL,
ip, &retlen);
if (ret) {
PyErr_SetExcFromWindowsErr(PyExc_OSError, WSAGetLastError());
return NULL;
} else {
return PyUnicode_FromString(ip);
}
}
#endif /* HAVE_INET_PTON */
/* Python interface to getaddrinfo(host, port). */
/*ARGSUSED*/
static PyObject *
socket_getaddrinfo(PyObject *self, PyObject *args, PyObject* kwargs)
{
static char* kwnames[] = {"host", "port", "family", "type", "proto",
"flags", 0};
struct addrinfo hints, *res;
struct addrinfo *res0 = NULL;
PyObject *hobj = NULL;
PyObject *pobj = (PyObject *)NULL;
char pbuf[30];
char *hptr, *pptr;
int family, socktype, protocol, flags;
int error;
PyObject *all = (PyObject *)NULL;
PyObject *idna = NULL;
socktype = protocol = flags = 0;
family = AF_UNSPEC;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "OO|iiii:getaddrinfo",
kwnames, &hobj, &pobj, &family, &socktype,
&protocol, &flags)) {
return NULL;
}
if (hobj == Py_None) {
hptr = NULL;
} else if (PyUnicode_Check(hobj)) {
idna = PyUnicode_AsEncodedString(hobj, "idna", NULL);
if (!idna)
return NULL;
assert(PyBytes_Check(idna));
hptr = PyBytes_AS_STRING(idna);
} else if (PyBytes_Check(hobj)) {
hptr = PyBytes_AsString(hobj);
} else {
PyErr_SetString(PyExc_TypeError,
"getaddrinfo() argument 1 must be string or None");
return NULL;
}
if (PyLong_CheckExact(pobj)) {
long value = PyLong_AsLong(pobj);
if (value == -1 && PyErr_Occurred())
goto err;
PyOS_snprintf(pbuf, sizeof(pbuf), "%ld", value);
pptr = pbuf;
} else if (PyUnicode_Check(pobj)) {
pptr = PyUnicode_AsUTF8(pobj);
if (pptr == NULL)
goto err;
} else if (PyBytes_Check(pobj)) {
pptr = PyBytes_AS_STRING(pobj);
} else if (pobj == Py_None) {
pptr = (char *)NULL;
} else {
PyErr_SetString(PyExc_OSError, "Int or String expected");
goto err;
}
#if defined(__APPLE__) && defined(AI_NUMERICSERV)
if ((flags & AI_NUMERICSERV) && (pptr == NULL || (pptr[0] == '0' && pptr[1] == 0))) {
/* On OSX up to at least OSX 10.8 getaddrinfo crashes
* if AI_NUMERICSERV is set and the servname is NULL or "0".
* This workaround avoids a segfault in libsystem.
*/
pptr = "00";
}
#endif
bzero(&hints, sizeof(hints));
hints.ai_family = family;
hints.ai_socktype = socktype;
hints.ai_protocol = protocol;
hints.ai_flags = flags;
Py_BEGIN_ALLOW_THREADS
ACQUIRE_GETADDRINFO_LOCK
error = getaddrinfo(hptr, pptr, &hints, &res0);
Py_END_ALLOW_THREADS
RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
if (error) {
set_gaierror(error);
goto err;
}
all = PyList_New(0);
if (all == NULL)
goto err;
for (res = res0; res; res = res->ai_next) {
PyObject *single;
PyObject *addr =
makesockaddr(-1, res->ai_addr, res->ai_addrlen, protocol);
if (addr == NULL)
goto err;
single = Py_BuildValue("iiisO", res->ai_family,
res->ai_socktype, res->ai_protocol,
res->ai_canonname ? res->ai_canonname : "",
addr);
Py_DECREF(addr);
if (single == NULL)
goto err;
if (PyList_Append(all, single)) {
Py_DECREF(single);
goto err;
}
Py_DECREF(single);
}
Py_XDECREF(idna);
if (res0)
freeaddrinfo(res0);
return all;
err:
Py_XDECREF(all);
Py_XDECREF(idna);
if (res0)
freeaddrinfo(res0);
return (PyObject *)NULL;
}
PyDoc_STRVAR(getaddrinfo_doc,
"getaddrinfo(host, port [, family, type, proto, flags])\n\
-> list of (family, type, proto, canonname, sockaddr)\n\
\n\
Resolve host and port into addrinfo struct.");
/* Python interface to getnameinfo(sa, flags). */
/*ARGSUSED*/
static PyObject *
socket_getnameinfo(PyObject *self, PyObject *args)
{
PyObject *sa = (PyObject *)NULL;
int flags;
const char *hostp;
int port;
unsigned int flowinfo, scope_id;
char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV];
struct addrinfo hints, *res = NULL;
int error;
PyObject *ret = (PyObject *)NULL;
PyObject *name;
flags = flowinfo = scope_id = 0;
if (!PyArg_ParseTuple(args, "Oi:getnameinfo", &sa, &flags))
return NULL;
if (!PyTuple_Check(sa)) {
PyErr_SetString(PyExc_TypeError,
"getnameinfo() argument 1 must be a tuple");
return NULL;
}
if (!PyArg_ParseTuple(sa, "si|II",
&hostp, &port, &flowinfo, &scope_id))
return NULL;
if (flowinfo > 0xfffff) {
PyErr_SetString(PyExc_OverflowError,
"getsockaddrarg: flowinfo must be 0-1048575.");
return NULL;
}
PyOS_snprintf(pbuf, sizeof(pbuf), "%d", port);
bzero(&hints, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM; /* make numeric port happy */
hints.ai_flags = AI_NUMERICHOST; /* don't do any name resolution */
Py_BEGIN_ALLOW_THREADS
ACQUIRE_GETADDRINFO_LOCK
error = getaddrinfo(hostp, pbuf, &hints, &res);
Py_END_ALLOW_THREADS
RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */
if (error) {
set_gaierror(error);
goto fail;
}
if (res->ai_next) {
PyErr_SetString(PyExc_OSError,
"sockaddr resolved to multiple addresses");
goto fail;
}
switch (res->ai_family) {
case AF_INET:
{
if (PyTuple_GET_SIZE(sa) != 2) {
PyErr_SetString(PyExc_OSError,
"IPv4 sockaddr must be 2 tuple");
goto fail;
}
break;
}
#ifdef ENABLE_IPV6
case AF_INET6:
{
struct sockaddr_in6 *sin6;
sin6 = (struct sockaddr_in6 *)res->ai_addr;
sin6->sin6_flowinfo = htonl(flowinfo);
sin6->sin6_scope_id = scope_id;
break;
}
#endif
}
error = getnameinfo(res->ai_addr, (socklen_t) res->ai_addrlen,
hbuf, sizeof(hbuf), pbuf, sizeof(pbuf), flags);
if (error) {
set_gaierror(error);
goto fail;
}
name = sock_decode_hostname(hbuf);
if (name == NULL)
goto fail;
ret = Py_BuildValue("Ns", name, pbuf);
fail:
if (res)
freeaddrinfo(res);
return ret;
}
PyDoc_STRVAR(getnameinfo_doc,
"getnameinfo(sockaddr, flags) --> (host, port)\n\
\n\
Get host and port for a sockaddr.");
/* Python API to getting and setting the default timeout value. */
static PyObject *
socket_getdefaulttimeout(PyObject *self)
{
if (defaulttimeout < 0) {
Py_INCREF(Py_None);
return Py_None;
}
else {
double seconds = _PyTime_AsSecondsDouble(defaulttimeout);
return PyFloat_FromDouble(seconds);
}
}
PyDoc_STRVAR(getdefaulttimeout_doc,
"getdefaulttimeout() -> timeout\n\
\n\
Returns the default timeout in seconds (float) for new socket objects.\n\
A value of None indicates that new socket objects have no timeout.\n\
When the socket module is first imported, the default is None.");
static PyObject *
socket_setdefaulttimeout(PyObject *self, PyObject *arg)
{
_PyTime_t timeout;
if (socket_parse_timeout(&timeout, arg) < 0)
return NULL;
defaulttimeout = timeout;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(setdefaulttimeout_doc,
"setdefaulttimeout(timeout)\n\
\n\
Set the default timeout in seconds (float) for new socket objects.\n\
A value of None indicates that new socket objects have no timeout.\n\
When the socket module is first imported, the default is None.");
#ifdef HAVE_IF_NAMEINDEX
/* Python API for getting interface indices and names */
static PyObject *
socket_if_nameindex(PyObject *self, PyObject *arg)
{
PyObject *list;
int i;
struct if_nameindex *ni;
ni = if_nameindex();
if (ni == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
list = PyList_New(0);
if (list == NULL) {
if_freenameindex(ni);
return NULL;
}
for (i = 0; ni[i].if_index != 0 && i < INT_MAX; i++) {
PyObject *ni_tuple = Py_BuildValue("IO&",
ni[i].if_index, PyUnicode_DecodeFSDefault, ni[i].if_name);
if (ni_tuple == NULL || PyList_Append(list, ni_tuple) == -1) {
Py_XDECREF(ni_tuple);
Py_DECREF(list);
if_freenameindex(ni);
return NULL;
}
Py_DECREF(ni_tuple);
}
if_freenameindex(ni);
return list;
}
PyDoc_STRVAR(if_nameindex_doc,
"if_nameindex()\n\
\n\
Returns a list of network interface information (index, name) tuples.");
static PyObject *
socket_if_nametoindex(PyObject *self, PyObject *args)
{
PyObject *oname;
unsigned long index;
if (!PyArg_ParseTuple(args, "O&:if_nametoindex",
PyUnicode_FSConverter, &oname))
return NULL;
index = if_nametoindex(PyBytes_AS_STRING(oname));
Py_DECREF(oname);
if (index == 0) {
/* if_nametoindex() doesn't set errno */
PyErr_SetString(PyExc_OSError, "no interface with this name");
return NULL;
}
return PyLong_FromUnsignedLong(index);
}
PyDoc_STRVAR(if_nametoindex_doc,
"if_nametoindex(if_name)\n\
\n\
Returns the interface index corresponding to the interface name if_name.");
static PyObject *
socket_if_indextoname(PyObject *self, PyObject *arg)
{
unsigned long index;
char name[IF_NAMESIZE + 1];
index = PyLong_AsUnsignedLong(arg);
if (index == (unsigned long) -1)
return NULL;
if (if_indextoname(index, name) == NULL) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
return PyUnicode_DecodeFSDefault(name);
}
PyDoc_STRVAR(if_indextoname_doc,
"if_indextoname(if_index)\n\
\n\
Returns the interface name corresponding to the interface index if_index.");
#endif /* HAVE_IF_NAMEINDEX */
#ifdef CMSG_LEN
/* Python interface to CMSG_LEN(length). */
static PyObject *
socket_CMSG_LEN(PyObject *self, PyObject *args)
{
Py_ssize_t length;
size_t result;
if (!PyArg_ParseTuple(args, "n:CMSG_LEN", &length))
return NULL;
if (length < 0 || !get_CMSG_LEN(length, &result)) {
PyErr_Format(PyExc_OverflowError, "CMSG_LEN() argument out of range");
return NULL;
}
return PyLong_FromSize_t(result);
}
PyDoc_STRVAR(CMSG_LEN_doc,
"CMSG_LEN(length) -> control message length\n\
\n\
Return the total length, without trailing padding, of an ancillary\n\
data item with associated data of the given length. This value can\n\
often be used as the buffer size for recvmsg() to receive a single\n\
item of ancillary data, but RFC 3542 requires portable applications to\n\
use CMSG_SPACE() and thus include space for padding, even when the\n\
item will be the last in the buffer. Raises OverflowError if length\n\
is outside the permissible range of values.");
#ifdef CMSG_SPACE
/* Python interface to CMSG_SPACE(length). */
static PyObject *
socket_CMSG_SPACE(PyObject *self, PyObject *args)
{
Py_ssize_t length;
size_t result;
if (!PyArg_ParseTuple(args, "n:CMSG_SPACE", &length))
return NULL;
if (length < 0 || !get_CMSG_SPACE(length, &result)) {
PyErr_SetString(PyExc_OverflowError,
"CMSG_SPACE() argument out of range");
return NULL;
}
return PyLong_FromSize_t(result);
}
PyDoc_STRVAR(CMSG_SPACE_doc,
"CMSG_SPACE(length) -> buffer size\n\
\n\
Return the buffer size needed for recvmsg() to receive an ancillary\n\
data item with associated data of the given length, along with any\n\
trailing padding. The buffer space needed to receive multiple items\n\
is the sum of the CMSG_SPACE() values for their associated data\n\
lengths. Raises OverflowError if length is outside the permissible\n\
range of values.");
#endif /* CMSG_SPACE */
#endif /* CMSG_LEN */
/* List of functions exported by this module. */
static PyMethodDef socket_methods[] = {
{"gethostbyname", socket_gethostbyname,
METH_VARARGS, gethostbyname_doc},
{"gethostbyname_ex", socket_gethostbyname_ex,
METH_VARARGS, ghbn_ex_doc},
{"gethostbyaddr", socket_gethostbyaddr,
METH_VARARGS, gethostbyaddr_doc},
{"gethostname", socket_gethostname,
METH_NOARGS, gethostname_doc},
#ifdef HAVE_SETHOSTNAME
{"sethostname", socket_sethostname,
METH_VARARGS, sethostname_doc},
#endif
{"getservbyname", socket_getservbyname,
METH_VARARGS, getservbyname_doc},
{"getservbyport", socket_getservbyport,
METH_VARARGS, getservbyport_doc},
{"getprotobyname", socket_getprotobyname,
METH_VARARGS, getprotobyname_doc},
#ifndef NO_DUP
{"dup", socket_dup,
METH_O, dup_doc},
#endif
#ifdef HAVE_SOCKETPAIR
{"socketpair", socket_socketpair,
METH_VARARGS, socketpair_doc},
#endif
{"ntohs", socket_ntohs,
METH_VARARGS, ntohs_doc},
{"ntohl", socket_ntohl,
METH_O, ntohl_doc},
{"htons", socket_htons,
METH_VARARGS, htons_doc},
{"htonl", socket_htonl,
METH_O, htonl_doc},
{"inet_aton", socket_inet_aton,
METH_VARARGS, inet_aton_doc},
{"inet_ntoa", socket_inet_ntoa,
METH_VARARGS, inet_ntoa_doc},
#if defined(HAVE_INET_PTON) || defined(MS_WINDOWS)
{"inet_pton", socket_inet_pton,
METH_VARARGS, inet_pton_doc},
{"inet_ntop", socket_inet_ntop,
METH_VARARGS, inet_ntop_doc},
#endif
{"getaddrinfo", (PyCFunction)socket_getaddrinfo,
METH_VARARGS | METH_KEYWORDS, getaddrinfo_doc},
{"getnameinfo", socket_getnameinfo,
METH_VARARGS, getnameinfo_doc},
{"getdefaulttimeout", (PyCFunction)socket_getdefaulttimeout,
METH_NOARGS, getdefaulttimeout_doc},
{"setdefaulttimeout", socket_setdefaulttimeout,
METH_O, setdefaulttimeout_doc},
#ifdef HAVE_IF_NAMEINDEX
{"if_nameindex", socket_if_nameindex,
METH_NOARGS, if_nameindex_doc},
{"if_nametoindex", socket_if_nametoindex,
METH_VARARGS, if_nametoindex_doc},
{"if_indextoname", socket_if_indextoname,
METH_O, if_indextoname_doc},
#endif
#ifdef CMSG_LEN
{"CMSG_LEN", socket_CMSG_LEN,
METH_VARARGS, CMSG_LEN_doc},
#ifdef CMSG_SPACE
{"CMSG_SPACE", socket_CMSG_SPACE,
METH_VARARGS, CMSG_SPACE_doc},
#endif
#endif
{NULL, NULL} /* Sentinel */
};
#ifdef MS_WINDOWS
#define OS_INIT_DEFINED
/* Additional initialization and cleanup for Windows */
static void
os_cleanup(void)
{
WSACleanup();
}
static int
os_init(void)
{
WSADATA WSAData;
int ret;
ret = WSAStartup(0x0101, &WSAData);
switch (ret) {
case 0: /* No error */
Py_AtExit(os_cleanup);
return 1; /* Success */
case WSASYSNOTREADY:
PyErr_SetString(PyExc_ImportError,
"WSAStartup failed: network not ready");
break;
case WSAVERNOTSUPPORTED:
case WSAEINVAL:
PyErr_SetString(
PyExc_ImportError,
"WSAStartup failed: requested version not supported");
break;
default:
PyErr_Format(PyExc_ImportError, "WSAStartup failed: error code %d", ret);
break;
}
return 0; /* Failure */
}
#endif /* MS_WINDOWS */
#ifndef OS_INIT_DEFINED
static int
os_init(void)
{
return 1; /* Success */
}
#endif
/* C API table - always add new things to the end for binary
compatibility. */
static
PySocketModule_APIObject PySocketModuleAPI =
{
&sock_type,
NULL,
NULL
};
/* Initialize the _socket module.
This module is actually called "_socket", and there's a wrapper
"socket.py" which implements some additional functionality.
The import of "_socket" may fail with an ImportError exception if
os-specific initialization fails. On Windows, this does WINSOCK
initialization. When WINSOCK is initialized successfully, a call to
WSACleanup() is scheduled to be made at exit time.
*/
PyDoc_STRVAR(socket_doc,
"Implementation module for socket operations.\n\
\n\
See the socket module for documentation.");
static struct PyModuleDef socketmodule = {
PyModuleDef_HEAD_INIT,
PySocket_MODULE_NAME,
socket_doc,
-1,
socket_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__socket(void)
{
PyObject *m, *has_ipv6;
if (!os_init())
return NULL;
#ifdef MS_WINDOWS
if (support_wsa_no_inherit == -1) {
support_wsa_no_inherit = IsWindows7SP1OrGreater();
}
#endif
Py_TYPE(&sock_type) = &PyType_Type;
m = PyModule_Create(&socketmodule);
if (m == NULL)
return NULL;
Py_INCREF(PyExc_OSError);
PySocketModuleAPI.error = PyExc_OSError;
Py_INCREF(PyExc_OSError);
PyModule_AddObject(m, "error", PyExc_OSError);
socket_herror = PyErr_NewException("socket.herror",
PyExc_OSError, NULL);
if (socket_herror == NULL)
return NULL;
Py_INCREF(socket_herror);
PyModule_AddObject(m, "herror", socket_herror);
socket_gaierror = PyErr_NewException("socket.gaierror", PyExc_OSError,
NULL);
if (socket_gaierror == NULL)
return NULL;
Py_INCREF(socket_gaierror);
PyModule_AddObject(m, "gaierror", socket_gaierror);
socket_timeout = PyErr_NewException("socket.timeout",
PyExc_OSError, NULL);
if (socket_timeout == NULL)
return NULL;
PySocketModuleAPI.timeout_error = socket_timeout;
Py_INCREF(socket_timeout);
PyModule_AddObject(m, "timeout", socket_timeout);
Py_INCREF((PyObject *)&sock_type);
if (PyModule_AddObject(m, "SocketType",
(PyObject *)&sock_type) != 0)
return NULL;
Py_INCREF((PyObject *)&sock_type);
if (PyModule_AddObject(m, "socket",
(PyObject *)&sock_type) != 0)
return NULL;
#ifdef ENABLE_IPV6
has_ipv6 = Py_True;
#else
has_ipv6 = Py_False;
#endif
Py_INCREF(has_ipv6);
PyModule_AddObject(m, "has_ipv6", has_ipv6);
/* Export C API */
if (PyModule_AddObject(m, PySocket_CAPI_NAME,
PyCapsule_New(&PySocketModuleAPI, PySocket_CAPSULE_NAME, NULL)
) != 0)
return NULL;
/* Address families (we only support AF_INET and AF_UNIX) */
PyModule_AddIntMacro(m, AF_UNSPEC);
PyModule_AddIntMacro(m, AF_INET);
PyModule_AddIntMacro(m, AF_UNIX);
PyModule_AddIntMacro(m, AF_NETROM); /* Amateur radio NetROM */
PyModule_AddIntMacro(m, AF_IPX); /* Lolvell IPX */
PyModule_AddIntMacro(m, AF_APPLETALK); /* Appletalk DDP */
if (AF_AX25) PyModule_AddIntMacro(m, AF_AX25); /* Amateur Radio AX.25 */
if (AF_BRIDGE) PyModule_AddIntMacro(m, AF_BRIDGE); /* Multiprotocol bridge */
if (AF_ATMPVC) PyModule_AddIntMacro(m, AF_ATMPVC); /* ATM PVCs */
if (AF_X25) PyModule_AddIntMacro(m, AF_X25); /* Reserved for X.25 project */
if (AF_INET6) PyModule_AddIntMacro(m, AF_INET6); /* IP version 6 */
if (AF_ROSE) PyModule_AddIntMacro(m, AF_ROSE); /* Amateur Radio X.25 PLP */
if (AF_NETBEUI) PyModule_AddIntMacro(m, AF_NETBEUI); /* Reserved for 802.2LLC project */
if (AF_SECURITY) PyModule_AddIntMacro(m, AF_SECURITY); /* Security callback pseudo AF */
if (AF_KEY) PyModule_AddIntMacro(m, AF_KEY); /* PF_KEY key management API */
#ifdef AF_AAL5
PyModule_AddIntMacro(m, AF_AAL5); /* Reserved for Werner's ATM */
#endif
#ifdef HAVE_SOCKADDR_ALG
if (AF_ALG) PyModule_AddIntMacro(m, AF_ALG); /* Linux crypto */
#endif
#ifdef AF_DECnet
/* Reserved for DECnet project */
PyModule_AddIntMacro(m, AF_DECnet);
#endif
if (AF_ROUTE) PyModule_AddIntMacro(m, AF_ROUTE); /* Alias to emulate 4.4BSD */
if (AF_LINK) PyModule_AddIntMacro(m, AF_LINK);
if (AF_ASH) PyModule_AddIntMacro(m, AF_ASH); /* Ash */
if (AF_ECONET) PyModule_AddIntMacro(m, AF_ECONET); /* Acorn Econet */
if (AF_ATMSVC) PyModule_AddIntMacro(m, AF_ATMSVC); /* ATM SVCs */
if (AF_SNA) PyModule_AddIntMacro(m, AF_SNA); /* Linux SNA Project (nutters!) */
if (AF_IRDA) PyModule_AddIntMacro(m, AF_IRDA); /* IRDA sockets */
if (AF_PPPOX) PyModule_AddIntMacro(m, AF_PPPOX); /* PPPoX sockets */
#ifdef F_WANPIPE
/* Wanpipe API Sockets */
PyModule_AddIntMacro(m, AF_WANPIPE);
#endif
#ifdef AF_LLC
/* Linux LLC */
PyModule_AddIntMacro(m, AF_LLC);
#endif
#ifdef USE_BLUETOOTH
PyModule_AddIntMacro(m, AF_BLUETOOTH);
PyModule_AddIntMacro(m, BTPROTO_L2CAP);
PyModule_AddIntMacro(m, BTPROTO_HCI);
PyModule_AddIntMacro(m, SOL_HCI);
#if !defined(__NetBSD__) && !defined(__DragonFly__)
PyModule_AddIntMacro(m, HCI_FILTER);
#endif
#if !defined(__FreeBSD__)
#if !defined(__NetBSD__) && !defined(__DragonFly__)
PyModule_AddIntMacro(m, HCI_TIME_STAMP);
#endif
PyModule_AddIntMacro(m, HCI_DATA_DIR);
PyModule_AddIntMacro(m, BTPROTO_SCO);
#endif
PyModule_AddIntMacro(m, BTPROTO_RFCOMM);
PyModule_AddStringConstant(m, "BDADDR_ANY", "00:00:00:00:00:00");
PyModule_AddStringConstant(m, "BDADDR_LOCAL", "00:00:00:FF:FF:FF");
#endif
if (AF_CAN) PyModule_AddIntMacro(m, AF_CAN); /* Controller Area Network */
if (PF_CAN) PyModule_AddIntMacro(m, PF_CAN);
if (PF_RDS) PyModule_AddIntMacro(m, PF_RDS);
if (AF_PACKET) PyModule_AddIntMacro(m, AF_PACKET);
if (PF_PACKET) PyModule_AddIntMacro(m, PF_PACKET);
/* Kernel event messages */
#ifdef PF_SYSTEM
PyModule_AddIntMacro(m, PF_SYSTEM);
#endif
#ifdef AF_SYSTEM
PyModule_AddIntMacro(m, AF_SYSTEM);
#endif
#ifdef PACKET_HOST
PyModule_AddIntMacro(m, PACKET_HOST);
#endif
#ifdef PACKET_BROADCAST
PyModule_AddIntMacro(m, PACKET_BROADCAST);
#endif
#ifdef PACKET_MULTICAST
PyModule_AddIntMacro(m, PACKET_MULTICAST);
#endif
#ifdef PACKET_OTHERHOST
PyModule_AddIntMacro(m, PACKET_OTHERHOST);
#endif
#ifdef PACKET_OUTGOING
PyModule_AddIntMacro(m, PACKET_OUTGOING);
#endif
#ifdef PACKET_LOOPBACK
PyModule_AddIntMacro(m, PACKET_LOOPBACK);
#endif
#ifdef PACKET_FASTROUTE
PyModule_AddIntMacro(m, PACKET_FASTROUTE);
#endif
#ifdef HAVE_LINUX_TIPC_H
PyModule_AddIntMacro(m, AF_TIPC);
/* for addresses */
PyModule_AddIntMacro(m, TIPC_ADDR_NAMESEQ);
PyModule_AddIntMacro(m, TIPC_ADDR_NAME);
PyModule_AddIntMacro(m, TIPC_ADDR_ID);
PyModule_AddIntMacro(m, TIPC_ZONE_SCOPE);
PyModule_AddIntMacro(m, TIPC_CLUSTER_SCOPE);
PyModule_AddIntMacro(m, TIPC_NODE_SCOPE);
/* for setsockopt() */
PyModule_AddIntMacro(m, SOL_TIPC);
PyModule_AddIntMacro(m, TIPC_IMPORTANCE);
PyModule_AddIntMacro(m, TIPC_SRC_DROPPABLE);
PyModule_AddIntMacro(m, TIPC_DEST_DROPPABLE);
PyModule_AddIntMacro(m, TIPC_CONN_TIMEOUT);
PyModule_AddIntMacro(m, TIPC_LOW_IMPORTANCE);
PyModule_AddIntMacro(m, TIPC_MEDIUM_IMPORTANCE);
PyModule_AddIntMacro(m, TIPC_HIGH_IMPORTANCE);
PyModule_AddIntMacro(m, TIPC_CRITICAL_IMPORTANCE);
/* for subscriptions */
PyModule_AddIntMacro(m, TIPC_SUB_PORTS);
PyModule_AddIntMacro(m, TIPC_SUB_SERVICE);
#ifdef TIPC_SUB_CANCEL
/* doesn't seem to be available everywhere */
PyModule_AddIntMacro(m, TIPC_SUB_CANCEL);
#endif
PyModule_AddIntMacro(m, TIPC_WAIT_FOREVER);
PyModule_AddIntMacro(m, TIPC_PUBLISHED);
PyModule_AddIntMacro(m, TIPC_WITHDRAWN);
PyModule_AddIntMacro(m, TIPC_SUBSCR_TIMEOUT);
PyModule_AddIntMacro(m, TIPC_CFG_SRV);
PyModule_AddIntMacro(m, TIPC_TOP_SRV);
#endif
#ifdef HAVE_SOCKADDR_ALG
/* Socket options */
PyModule_AddIntMacro(m, ALG_SET_KEY);
PyModule_AddIntMacro(m, ALG_SET_IV);
PyModule_AddIntMacro(m, ALG_SET_OP);
PyModule_AddIntMacro(m, ALG_SET_AEAD_ASSOCLEN);
PyModule_AddIntMacro(m, ALG_SET_AEAD_AUTHSIZE);
PyModule_AddIntMacro(m, ALG_SET_PUBKEY);
/* Operations */
PyModule_AddIntMacro(m, ALG_OP_DECRYPT);
PyModule_AddIntMacro(m, ALG_OP_ENCRYPT);
PyModule_AddIntMacro(m, ALG_OP_SIGN);
PyModule_AddIntMacro(m, ALG_OP_VERIFY);
#endif
/* Socket types */
PyModule_AddIntMacro(m, SOCK_STREAM);
PyModule_AddIntMacro(m, SOCK_DGRAM);
PyModule_AddIntMacro(m, SOCK_RAW);
PyModule_AddIntMacro(m, SOCK_SEQPACKET);
PyModule_AddIntMacro(m, SOCK_RDM);
PyModule_AddIntMacro(m, SOCK_CLOEXEC);
PyModule_AddIntMacro(m, SOCK_NONBLOCK);
PyModule_AddIntMacro(m, SO_DEBUG);
PyModule_AddIntMacro(m, SO_ACCEPTCONN);
if (SO_REUSEADDR) PyModule_AddIntMacro(m, SO_REUSEADDR);
if (SO_EXCLUSIVEADDRUSE) PyModule_AddIntMacro(m, SO_EXCLUSIVEADDRUSE);
PyModule_AddIntMacro(m, SO_KEEPALIVE);
PyModule_AddIntMacro(m, SO_DONTROUTE);
PyModule_AddIntMacro(m, SO_BROADCAST);
if (SO_USELOOPBACK) PyModule_AddIntMacro(m, SO_USELOOPBACK);
PyModule_AddIntMacro(m, SO_LINGER);
PyModule_AddIntMacro(m, SO_OOBINLINE);
PyModule_AddIntMacro(m, SO_REUSEPORT);
PyModule_AddIntMacro(m, SO_SNDBUF);
PyModule_AddIntMacro(m, SO_RCVBUF);
PyModule_AddIntMacro(m, SO_SNDLOWAT);
PyModule_AddIntMacro(m, SO_RCVLOWAT);
PyModule_AddIntMacro(m, SO_SNDTIMEO);
PyModule_AddIntMacro(m, SO_RCVTIMEO);
PyModule_AddIntMacro(m, SO_ERROR);
PyModule_AddIntMacro(m, SO_TYPE);
if (SO_SETFIB) PyModule_AddIntMacro(m, SO_SETFIB);
if (SO_PASSCRED) PyModule_AddIntMacro(m, SO_PASSCRED);
if (SO_PEERCRED) PyModule_AddIntMacro(m, SO_PEERCRED);
if (LOCAL_PEERCRED) PyModule_AddIntMacro(m, LOCAL_PEERCRED);
if (SO_PASSSEC) PyModule_AddIntMacro(m, SO_PASSSEC);
if (SO_PEERSEC) PyModule_AddIntMacro(m, SO_PEERSEC);
if (SO_BINDTODEVICE) PyModule_AddIntMacro(m, SO_BINDTODEVICE);
if (SO_PRIORITY) PyModule_AddIntMacro(m, SO_PRIORITY);
if (SO_MARK) PyModule_AddIntMacro(m, SO_MARK);
if (SO_DOMAIN) PyModule_AddIntMacro(m, SO_DOMAIN);
if (SO_PROTOCOL) PyModule_AddIntMacro(m, SO_PROTOCOL);
/* Maximum number of connections for "listen" */
PyModule_AddIntConstant(m, "SOMAXCONN", 0x80);
/* Ancillary message types */
#ifdef SCM_RIGHTS
PyModule_AddIntMacro(m, SCM_RIGHTS);
#endif
#ifdef SCM_CREDENTIALS
PyModule_AddIntMacro(m, SCM_CREDENTIALS);
#endif
#ifdef SCM_CREDS
PyModule_AddIntMacro(m, SCM_CREDS);
#endif
/* Flags for send, recv */
PyModule_AddIntMacro(m, MSG_OOB);
PyModule_AddIntMacro(m, MSG_PEEK);
PyModule_AddIntMacro(m, MSG_DONTROUTE);
PyModule_AddIntMacro(m, MSG_TRUNC);
PyModule_AddIntMacro(m, MSG_CTRUNC);
PyModule_AddIntMacro(m, MSG_WAITALL);
if (MSG_DONTWAIT) PyModule_AddIntMacro(m, MSG_DONTWAIT);
if (MSG_EOR) PyModule_AddIntMacro(m, MSG_EOR);
if (MSG_NOSIGNAL) PyModule_AddIntMacro(m, MSG_NOSIGNAL);
if (MSG_BCAST) PyModule_AddIntMacro(m, MSG_BCAST);
if (MSG_MCAST) PyModule_AddIntMacro(m, MSG_MCAST);
if (MSG_CMSG_CLOEXEC) PyModule_AddIntMacro(m, MSG_CMSG_CLOEXEC);
if (MSG_ERRQUEUE) PyModule_AddIntMacro(m, MSG_ERRQUEUE);
if (MSG_CONFIRM) PyModule_AddIntMacro(m, MSG_CONFIRM);
if (MSG_MORE) PyModule_AddIntMacro(m, MSG_MORE);
if (MSG_NOTIFICATION) PyModule_AddIntMacro(m, MSG_NOTIFICATION);
if (MSG_EOF) PyModule_AddIntMacro(m, MSG_EOF);
if (MSG_FASTOPEN) PyModule_AddIntMacro(m, MSG_FASTOPEN);
#ifdef MSG_BTAG
if (MSG_BTAG) PyModule_AddIntMacro(m, MSG_BTAG);
#endif
#ifdef MSG_ETAG
if (MSG_ETAG) PyModule_AddIntMacro(m, MSG_ETAG);
#endif
/* Protocol level and numbers, usable for [gs]etsockopt */
PyModule_AddIntMacro(m, SOL_SOCKET);
PyModule_AddIntMacro(m, SOL_IP);
PyModule_AddIntMacro(m, SOL_TCP);
PyModule_AddIntMacro(m, SOL_UDP);
#ifdef SOL_RDS
if (SOL_RDS) PyModule_AddIntMacro(m, SOL_RDS);
#endif
#ifdef SOL_IPX
PyModule_AddIntMacro(m, SOL_IPX);
#endif
#ifdef SOL_AX25
PyModule_AddIntMacro(m, SOL_AX25);
#endif
#ifdef SOL_ATALK
PyModule_AddIntMacro(m, SOL_ATALK);
#endif
#ifdef SOL_NETROM
PyModule_AddIntMacro(m, SOL_NETROM);
#endif
#ifdef SOL_ROSE
PyModule_AddIntMacro(m, SOL_ROSE);
#endif
#ifdef SOL_CAN_BASE
PyModule_AddIntMacro(m, SOL_CAN_BASE);
#endif
#ifdef SOL_CAN_RAW
PyModule_AddIntMacro(m, SOL_CAN_RAW);
PyModule_AddIntMacro(m, CAN_RAW);
#endif
#ifdef HAVE_LINUX_CAN_H
PyModule_AddIntMacro(m, CAN_EFF_FLAG);
PyModule_AddIntMacro(m, CAN_RTR_FLAG);
PyModule_AddIntMacro(m, CAN_ERR_FLAG);
PyModule_AddIntMacro(m, CAN_SFF_MASK);
PyModule_AddIntMacro(m, CAN_EFF_MASK);
PyModule_AddIntMacro(m, CAN_ERR_MASK);
#endif
#ifdef HAVE_LINUX_CAN_RAW_H
PyModule_AddIntMacro(m, CAN_RAW_FILTER);
PyModule_AddIntMacro(m, CAN_RAW_ERR_FILTER);
PyModule_AddIntMacro(m, CAN_RAW_LOOPBACK);
PyModule_AddIntMacro(m, CAN_RAW_RECV_OWN_MSGS);
#endif
#ifdef HAVE_LINUX_CAN_RAW_FD_FRAMES
PyModule_AddIntMacro(m, CAN_RAW_FD_FRAMES);
#endif
#ifdef HAVE_LINUX_CAN_BCM_H
PyModule_AddIntMacro(m, CAN_BCM);
PyModule_AddIntConstant(m, "CAN_BCM_TX_SETUP", TX_SETUP);
PyModule_AddIntConstant(m, "CAN_BCM_TX_DELETE", TX_DELETE);
PyModule_AddIntConstant(m, "CAN_BCM_TX_READ", TX_READ);
PyModule_AddIntConstant(m, "CAN_BCM_TX_SEND", TX_SEND);
PyModule_AddIntConstant(m, "CAN_BCM_RX_SETUP", RX_SETUP);
PyModule_AddIntConstant(m, "CAN_BCM_RX_DELETE", RX_DELETE);
PyModule_AddIntConstant(m, "CAN_BCM_RX_READ", RX_READ);
PyModule_AddIntConstant(m, "CAN_BCM_TX_STATUS", TX_STATUS);
PyModule_AddIntConstant(m, "CAN_BCM_TX_EXPIRED", TX_EXPIRED);
PyModule_AddIntConstant(m, "CAN_BCM_RX_STATUS", RX_STATUS);
PyModule_AddIntConstant(m, "CAN_BCM_RX_TIMEOUT", RX_TIMEOUT);
PyModule_AddIntConstant(m, "CAN_BCM_RX_CHANGED", RX_CHANGED);
#endif
#ifdef HAVE_SOCKADDR_ALG
PyModule_AddIntMacro(m, SOL_ALG);
#endif
#ifdef RDS_CANCEL_SENT_TO
PyModule_AddIntMacro(m, RDS_CANCEL_SENT_TO);
#endif
#ifdef RDS_GET_MR
PyModule_AddIntMacro(m, RDS_GET_MR);
#endif
#ifdef RDS_FREE_MR
PyModule_AddIntMacro(m, RDS_FREE_MR);
#endif
#ifdef RDS_RECVERR
PyModule_AddIntMacro(m, RDS_RECVERR);
#endif
#ifdef RDS_CONG_MONITOR
PyModule_AddIntMacro(m, RDS_CONG_MONITOR);
#endif
#ifdef RDS_GET_MR_FOR_DEST
PyModule_AddIntMacro(m, RDS_GET_MR_FOR_DEST);
#endif
PyModule_AddIntMacro(m, IPPROTO_IP);
PyModule_AddIntMacro(m, IPPROTO_HOPOPTS);
PyModule_AddIntMacro(m, IPPROTO_ICMP);
PyModule_AddIntMacro(m, IPPROTO_TCP);
PyModule_AddIntMacro(m, IPPROTO_UDP);
PyModule_AddIntMacro(m, IPPROTO_RAW);
PyModule_AddIntMacro(m, IPPROTO_IGMP);
#ifdef IPPROTO_GGP
if (IPPROTO_GGP) PyModule_AddIntMacro(m, IPPROTO_GGP);
#endif
#ifdef IPPROTO_IPV4
if (IPPROTO_IPV4) PyModule_AddIntMacro(m, IPPROTO_IPV4);
#endif
#ifdef IPPROTO_IPV6
if (IPPROTO_IPV6) PyModule_AddIntMacro(m, IPPROTO_IPV6);
#endif
#ifdef IPPROTO_IPIP
if (IPPROTO_IPIP) PyModule_AddIntMacro(m, IPPROTO_IPIP);
#endif
#ifdef IPPROTO_EGP
if (IPPROTO_EGP) PyModule_AddIntMacro(m, IPPROTO_EGP);
#endif
#ifdef IPPROTO_PUP
if (IPPROTO_PUP) PyModule_AddIntMacro(m, IPPROTO_PUP);
#endif
#ifdef IPPROTO_IDP
if (IPPROTO_IDP) PyModule_AddIntMacro(m, IPPROTO_IDP);
#endif
#ifdef IPPROTO_HELLO
if (IPPROTO_HELLO) PyModule_AddIntMacro(m, IPPROTO_HELLO);
#endif
#ifdef IPPROTO_ND
if (IPPROTO_ND) PyModule_AddIntMacro(m, IPPROTO_ND);
#endif
#ifdef IPPROTO_TP
if (IPPROTO_TP) PyModule_AddIntMacro(m, IPPROTO_TP);
#endif
#ifdef IPPROTO_IPV6
if (IPPROTO_IPV6) PyModule_AddIntMacro(m, IPPROTO_IPV6);
#endif
#ifdef IPPROTO_ROUTING
if (IPPROTO_ROUTING) PyModule_AddIntMacro(m, IPPROTO_ROUTING);
#endif
#ifdef IPPROTO_FRAGMENT
if (IPPROTO_FRAGMENT) PyModule_AddIntMacro(m, IPPROTO_FRAGMENT);
#endif
#ifdef IPPROTO_RSVP
if (IPPROTO_RSVP) PyModule_AddIntMacro(m, IPPROTO_RSVP);
#endif
#ifdef IPPROTO_GRE
if (IPPROTO_GRE) PyModule_AddIntMacro(m, IPPROTO_GRE);
#endif
#ifdef IPPROTO_ESP
if (IPPROTO_ESP) PyModule_AddIntMacro(m, IPPROTO_ESP);
#endif
#ifdef IPPROTO_AH
if (IPPROTO_AH) PyModule_AddIntMacro(m, IPPROTO_AH);
#endif
#ifdef IPPROTO_MOBILE
if (IPPROTO_MOBILE) PyModule_AddIntMacro(m, IPPROTO_MOBILE);
#endif
#ifdef IPPROTO_ICMPV6
if (IPPROTO_ICMPV6) PyModule_AddIntMacro(m, IPPROTO_ICMPV6);
#endif
#ifdef IPPROTO_NONE
if (IPPROTO_NONE) PyModule_AddIntMacro(m, IPPROTO_NONE);
#endif
#ifdef IPPROTO_DSTOPTS
if (IPPROTO_DSTOPTS) PyModule_AddIntMacro(m, IPPROTO_DSTOPTS);
#endif
#ifdef IPPROTO_XTP
if (IPPROTO_XTP) PyModule_AddIntMacro(m, IPPROTO_XTP);
#endif
#ifdef IPPROTO_EON
if (IPPROTO_EON) PyModule_AddIntMacro(m, IPPROTO_EON);
#endif
#ifdef IPPROTO_PIM
if (IPPROTO_PIM) PyModule_AddIntMacro(m, IPPROTO_PIM);
#endif
#ifdef IPPROTO_IPCOMP
if (IPPROTO_IPCOMP) PyModule_AddIntMacro(m, IPPROTO_IPCOMP);
#endif
#ifdef IPPROTO_VRRP
if (IPPROTO_VRRP) PyModule_AddIntMacro(m, IPPROTO_VRRP);
#endif
#ifdef IPPROTO_SCTP
if (IPPROTO_SCTP) PyModule_AddIntMacro(m, IPPROTO_SCTP);
#endif
#ifdef IPPROTO_BIP
if (IPPROTO_BIP) PyModule_AddIntMacro(m, IPPROTO_BIP);
#endif
PyModule_AddIntMacro(m, IPPROTO_MAX);
#ifdef SYSPROTO_CONTROL
if (SYSPROTO_CONTROL) PyModule_AddIntMacro(m, SYSPROTO_CONTROL);
#endif
/* Some port configuration */
PyModule_AddIntMacro(m, IPPORT_RESERVED);
PyModule_AddIntMacro(m, IPPORT_USERRESERVED);
/* Some reserved IP v.4 addresses */
PyModule_AddIntMacro(m, INADDR_ANY);
PyModule_AddIntMacro(m, INADDR_BROADCAST);
PyModule_AddIntMacro(m, INADDR_LOOPBACK);
PyModule_AddIntMacro(m, INADDR_UNSPEC_GROUP);
PyModule_AddIntMacro(m, INADDR_ALLHOSTS_GROUP);
PyModule_AddIntMacro(m, INADDR_MAX_LOCAL_GROUP);
PyModule_AddIntMacro(m, INADDR_NONE);
/* IPv4 [gs]etsockopt options */
PyModule_AddIntMacro(m, IP_OPTIONS);
PyModule_AddIntMacro(m, IP_HDRINCL);
PyModule_AddIntMacro(m, IP_TOS);
PyModule_AddIntMacro(m, IP_TTL);
PyModule_AddIntMacro(m, IP_ADD_MEMBERSHIP);
PyModule_AddIntMacro(m, IP_DROP_MEMBERSHIP);
PyModule_AddIntMacro(m, IP_MULTICAST_IF);
PyModule_AddIntMacro(m, IP_MULTICAST_TTL);
PyModule_AddIntMacro(m, IP_MULTICAST_LOOP);
PyModule_AddIntMacro(m, IP_DEFAULT_MULTICAST_TTL);
PyModule_AddIntMacro(m, IP_DEFAULT_MULTICAST_LOOP);
PyModule_AddIntMacro(m, IP_MAX_MEMBERSHIPS);
if (IP_RECVOPTS) PyModule_AddIntMacro(m, IP_RECVOPTS);
if (IP_RECVRETOPTS) PyModule_AddIntMacro(m, IP_RECVRETOPTS);
if (IP_RECVDSTADDR) PyModule_AddIntMacro(m, IP_RECVDSTADDR);
if (IP_RETOPTS) PyModule_AddIntMacro(m, IP_RETOPTS);
if (IP_TRANSPARENT) PyModule_AddIntMacro(m, IP_TRANSPARENT);
#ifdef ENABLE_IPV6
/* IPv6 [gs]etsockopt options, defined in RFC2553 */
#ifdef IPV6_JOIN_GROUP
if (IPV6_JOIN_GROUP) PyModule_AddIntMacro(m, IPV6_JOIN_GROUP);
#endif
#ifdef IPV6_LEAVE_GROUP
if (IPV6_LEAVE_GROUP) PyModule_AddIntMacro(m, IPV6_LEAVE_GROUP);
#endif
#ifdef IPV6_MULTICAST_HOPS
if (IPV6_MULTICAST_HOPS) PyModule_AddIntMacro(m, IPV6_MULTICAST_HOPS);
#endif
#ifdef IPV6_MULTICAST_IF
if (IPV6_MULTICAST_IF) PyModule_AddIntMacro(m, IPV6_MULTICAST_IF);
#endif
#ifdef IPV6_MULTICAST_LOOP
if (IPV6_MULTICAST_LOOP) PyModule_AddIntMacro(m, IPV6_MULTICAST_LOOP);
#endif
#ifdef IPV6_UNICAST_HOPS
if (IPV6_UNICAST_HOPS) PyModule_AddIntMacro(m, IPV6_UNICAST_HOPS);
#endif
/* Additional IPV6 socket options, defined in RFC 3493 */
#ifdef IPV6_V6ONLY
if (IPV6_V6ONLY) PyModule_AddIntMacro(m, IPV6_V6ONLY);
#endif
/* Advanced IPV6 socket options, from RFC 3542 */
#ifdef IPV6_CHECKSUM
if (IPV6_CHECKSUM) PyModule_AddIntMacro(m, IPV6_CHECKSUM);
#endif
#ifdef IPV6_DONTFRAG
if (IPV6_DONTFRAG) PyModule_AddIntMacro(m, IPV6_DONTFRAG);
#endif
#ifdef IPV6_DSTOPTS
if (IPV6_DSTOPTS) PyModule_AddIntMacro(m, IPV6_DSTOPTS);
#endif
#ifdef IPV6_HOPLIMIT
if (IPV6_HOPLIMIT) PyModule_AddIntMacro(m, IPV6_HOPLIMIT);
#endif
#ifdef IPV6_HOPOPTS
if (IPV6_HOPOPTS) PyModule_AddIntMacro(m, IPV6_HOPOPTS);
#endif
#ifdef IPV6_NEXTHOP
if (IPV6_NEXTHOP) PyModule_AddIntMacro(m, IPV6_NEXTHOP);
#endif
#ifdef IPV6_PATHMTU
if (IPV6_PATHMTU) PyModule_AddIntMacro(m, IPV6_PATHMTU);
#endif
#ifdef IPV6_PKTINFO
if (IPV6_PKTINFO) PyModule_AddIntMacro(m, IPV6_PKTINFO);
#endif
#ifdef IPV6_RECVDSTOPTS
if (IPV6_RECVDSTOPTS) PyModule_AddIntMacro(m, IPV6_RECVDSTOPTS);
#endif
#ifdef IPV6_RECVHOPLIMIT
if (IPV6_RECVHOPLIMIT) PyModule_AddIntMacro(m, IPV6_RECVHOPLIMIT);
#endif
#ifdef IPV6_RECVHOPOPTS
if (IPV6_RECVHOPOPTS) PyModule_AddIntMacro(m, IPV6_RECVHOPOPTS);
#endif
#ifdef IPV6_RECVPKTINFO
if (IPV6_RECVPKTINFO) PyModule_AddIntMacro(m, IPV6_RECVPKTINFO);
#endif
#ifdef IPV6_RECVRTHDR
if (IPV6_RECVRTHDR) PyModule_AddIntMacro(m, IPV6_RECVRTHDR);
#endif
#ifdef IPV6_RECVTCLASS
if (IPV6_RECVTCLASS) PyModule_AddIntMacro(m, IPV6_RECVTCLASS);
#endif
#ifdef IPV6_RTHDR
if (IPV6_RTHDR) PyModule_AddIntMacro(m, IPV6_RTHDR);
#endif
#ifdef IPV6_RTHDRDSTOPTS
if (IPV6_RTHDRDSTOPTS) PyModule_AddIntMacro(m, IPV6_RTHDRDSTOPTS);
#endif
#ifdef IPV6_RTHDR_TYPE_0
if (IPV6_RTHDR_TYPE_0) PyModule_AddIntMacro(m, IPV6_RTHDR_TYPE_0);
#endif
#ifdef IPV6_RECVPATHMTU
if (IPV6_RECVPATHMTU) PyModule_AddIntMacro(m, IPV6_RECVPATHMTU);
#endif
#ifdef IPV6_TCLASS
if (IPV6_TCLASS) PyModule_AddIntMacro(m, IPV6_TCLASS);
#endif
#ifdef IPV6_USE_MIN_MTU
if (IPV6_USE_MIN_MTU) PyModule_AddIntMacro(m, IPV6_USE_MIN_MTU);
#endif
#endif /* lolv6 */
/* TCP options */
if (TCP_NODELAY) PyModule_AddIntMacro(m, TCP_NODELAY);
if (TCP_MAXSEG) PyModule_AddIntMacro(m, TCP_MAXSEG);
if (TCP_CORK) PyModule_AddIntMacro(m, TCP_CORK);
if (TCP_KEEPIDLE) PyModule_AddIntMacro(m, TCP_KEEPIDLE);
if (TCP_KEEPINTVL) PyModule_AddIntMacro(m, TCP_KEEPINTVL);
if (TCP_SYNCNT) PyModule_AddIntMacro(m, TCP_SYNCNT);
if (TCP_LINGER2) PyModule_AddIntMacro(m, TCP_LINGER2);
if (TCP_DEFER_ACCEPT) PyModule_AddIntMacro(m, TCP_DEFER_ACCEPT);
if (TCP_WINDOW_CLAMP) PyModule_AddIntMacro(m, TCP_WINDOW_CLAMP);
if (TCP_INFO) PyModule_AddIntMacro(m, TCP_INFO);
if (TCP_QUICKACK) PyModule_AddIntMacro(m, TCP_QUICKACK);
if (TCP_CONGESTION) PyModule_AddIntMacro(m, TCP_CONGESTION);
if (TCP_USER_TIMEOUT) PyModule_AddIntMacro(m, TCP_USER_TIMEOUT);
if (TCP_SAVE_SYN) PyModule_AddIntMacro(m, TCP_SAVE_SYN);
if (TCP_SAVED_SYN) PyModule_AddIntMacro(m, TCP_SAVED_SYN);
if (TCP_KEEPCNT && (!IsWindows() || IsAtLeastWindows10()))
PyModule_AddIntMacro(m, TCP_KEEPCNT);
if (TCP_FASTOPEN && (!IsWindows() || IsAtLeastWindows10()))
PyModule_AddIntMacro(m, TCP_FASTOPEN);
if (TCP_FASTOPEN_CONNECT)
PyModule_AddIntMacro(m, TCP_FASTOPEN_CONNECT);
#ifdef IPX_TYPE
/* IPX options */
if (IPX_TYPE) PyModule_AddIntMacro(m, IPX_TYPE);
#endif
PyModule_AddIntMacro(m, EAI_ADDRFAMILY);
PyModule_AddIntMacro(m, EAI_AGAIN);
PyModule_AddIntMacro(m, EAI_BADFLAGS);
PyModule_AddIntMacro(m, EAI_FAIL);
PyModule_AddIntMacro(m, EAI_FAMILY);
PyModule_AddIntMacro(m, EAI_MEMORY);
PyModule_AddIntMacro(m, EAI_NODATA);
PyModule_AddIntMacro(m, EAI_NONAME);
PyModule_AddIntMacro(m, EAI_OVERFLOW);
PyModule_AddIntMacro(m, EAI_SERVICE);
PyModule_AddIntMacro(m, EAI_SOCKTYPE);
PyModule_AddIntMacro(m, EAI_SYSTEM);
PyModule_AddIntMacro(m, AI_PASSIVE);
PyModule_AddIntMacro(m, AI_CANONNAME);
PyModule_AddIntMacro(m, AI_NUMERICHOST);
PyModule_AddIntMacro(m, AI_NUMERICSERV);
PyModule_AddIntMacro(m, AI_ALL);
PyModule_AddIntMacro(m, AI_ADDRCONFIG);
PyModule_AddIntMacro(m, AI_V4MAPPED);
PyModule_AddIntMacro(m, NI_MAXHOST);
PyModule_AddIntMacro(m, NI_MAXSERV);
PyModule_AddIntMacro(m, NI_NOFQDN);
PyModule_AddIntMacro(m, NI_NUMERICHOST);
PyModule_AddIntMacro(m, NI_NAMEREQD);
PyModule_AddIntMacro(m, NI_NUMERICSERV);
PyModule_AddIntMacro(m, NI_DGRAM);
/* shutdown() parameters */
PyModule_AddIntMacro(m, SHUT_RD);
PyModule_AddIntMacro(m, SHUT_WR);
PyModule_AddIntMacro(m, SHUT_RDWR);
/* Initialize gethostbyname lock */
#if defined(USE_GETHOSTBYNAME_LOCK) || defined(USE_GETADDRINFO_LOCK)
netdb_lock = PyThread_allocate_lock();
#endif
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__socket = {
"_socket",
PyInit__socket,
};
| 223,076 | 7,207 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_unidata.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_UNICODEDATA_UNIDATA_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_UNICODEDATA_UNIDATA_H_
#include "third_party/python/Modules/unicodedata.h"
COSMOPOLITAN_C_START_
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
#define UNIDATA_VERSION "13.0.0"
#define UNIDATA_NAME_MAXLEN 256
extern const unsigned char _PyUnicode_Lexicon[121990];
#define _PyUnicode_LexiconOffsetBits 17
extern const unsigned int _PyUnicode_LexiconOffset[8727];
#define _PyUnicode_PhrasebookShift 8
#define _PyUnicode_PhrasebookShort 191
extern const unsigned char _PyUnicode_Phrasebook[188803];
extern const unsigned char _PyUnicode_PhrasebookOffset1[4352];
#define _PyUnicode_PhrasebookOffset2Bits 18
extern const unsigned int _PyUnicode_PhrasebookOffset2[25056];
#define _PyUnicode_CodeHashBits 20
extern const unsigned int _PyUnicode_CodeHash[40960];
#define _PyUnicode_CodeMagic 47
#define _PyUnicode_CodeSize 65536
#define _PyUnicode_CodePoly 65581
#define _PyUnicode_AliasesStart 0xf0000
#define _PyUnicode_AliasesEnd 0xf01d4
extern const unsigned int _PyUnicode_NameAliases[468];
#define _PyUnicode_NamedSequencesStart 0xf0200
#define _PyUnicode_NamedSequencesEnd 0xf03ba
extern const _PyUnicode_NamedSequence _PyUnicode_NamedSequences[442];
extern const _PyUnicode_Record _PyUnicode_Records[342];
#define _PyUnicode_RecordsShift 7
extern const unsigned short _PyUnicode_RecordsIndex1[8704];
extern const unsigned short _PyUnicode_RecordsIndex2[34176];
#define UNIDATA_TOTAL_FIRST 377
#define UNIDATA_TOTAL_LAST 63
extern const _PyUnicode_Reindex _PyUnicode_NfcFirst[211];
extern const _PyUnicode_Reindex _PyUnicode_NfcLast[40];
extern const char _PyUnicode_CategoryNames[31][3];
extern const char _PyUnicode_BidirectionalNames[24][4];
extern const char _PyUnicode_EastAsianWidthNames[6][3];
extern const char *const _PyUnicode_DecompPrefix[17];
#define _PyUnicode_DecompShift 7
#define _PyUnicode_DecompBits 18
extern const unsigned int _PyUnicode_Decomp[8032];
extern const unsigned char _PyUnicode_DecompIndex1[8704];
extern const unsigned short _PyUnicode_DecompIndex2[13312];
#define _PyUnicode_CompShift 2
extern const unsigned short _PyUnicode_CompIndex[5938];
#define _PyUnicode_CompDataBits 17
extern const unsigned int _PyUnicode_CompData[1449];
extern const unsigned char _PyUnicode_ChangeIndex_3_2_0[8704];
extern const unsigned char _PyUnicode_ChangeData_3_2_0[31360];
const _PyUnicode_ChangeRecord *_PyUnicode_GetChange_3_2_0(Py_UCS4);
Py_UCS4 _PyUnicode_Normalization_3_2_0(Py_UCS4);
extern const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[503];
#define _PyUnicode_TypeRecordsShift 7
extern const unsigned short _PyUnicode_TypeRecordsIndex1[8704];
extern const unsigned short _PyUnicode_TypeRecordsIndex2[35200];
extern const char16_t _PyUnicode_ExtendedCase[1236];
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_UNICODEDATA_UNIDATA_H_ */
| 2,934 | 60 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_lol3.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pystrhex.h"
#include "third_party/python/Include/yoink.h"
PYTHON_PROVIDE("_sha3");
PYTHON_PROVIDE("_sha3.__doc__");
PYTHON_PROVIDE("_sha3.__loader__");
PYTHON_PROVIDE("_sha3.__name__");
PYTHON_PROVIDE("_sha3.__package__");
PYTHON_PROVIDE("_sha3.__spec__");
PYTHON_PROVIDE("_sha3.implementation");
PYTHON_PROVIDE("_sha3.keccakopt");
PYTHON_PROVIDE("_sha3.sha3_224");
PYTHON_PROVIDE("_sha3.sha3_256");
PYTHON_PROVIDE("_sha3.sha3_384");
PYTHON_PROVIDE("_sha3.sha3_512");
PYTHON_PROVIDE("_sha3.shake_128");
PYTHON_PROVIDE("_sha3.shake_256");
typedef enum { SUCCESS = 0, FAIL = 1, BAD_HASHLEN = 2 } HashReturn;
typedef struct KeccakWidth1600_SpongeInstanceStruct {
unsigned char state[200] forcealign(8);
unsigned int rate;
unsigned int byteIOIndex;
int squeezing;
} KeccakWidth1600_SpongeInstance;
typedef struct {
KeccakWidth1600_SpongeInstance sponge;
unsigned int fixedOutputLength;
unsigned char delimitedSuffix;
} Keccak_HashInstance;
static const uint64_t kKeccakf[24] = {
0x0000000000000001, 0x0000000000008082, 0x800000000000808a,
0x8000000080008000, 0x000000000000808b, 0x0000000080000001,
0x8000000080008081, 0x8000000000008009, 0x000000000000008a,
0x0000000000000088, 0x0000000080008009, 0x000000008000000a,
0x000000008000808b, 0x800000000000008b, 0x8000000000008089,
0x8000000000008003, 0x8000000000008002, 0x8000000000000080,
0x000000000000800a, 0x800000008000000a, 0x8000000080008081,
0x8000000000008080, 0x0000000080000001, 0x8000000080008008,
};
static void _PySHA3_KeccakP1600_Initialize(void *state) {
bzero(state, 200);
((uint64_t *)state)[1] = ~(uint64_t)0;
((uint64_t *)state)[2] = ~(uint64_t)0;
((uint64_t *)state)[8] = ~(uint64_t)0;
((uint64_t *)state)[12] = ~(uint64_t)0;
((uint64_t *)state)[17] = ~(uint64_t)0;
((uint64_t *)state)[20] = ~(uint64_t)0;
}
static void _PySHA3_KeccakP1600_AddBytesInLane(void *state,
unsigned int lanePosition,
const unsigned char *data,
unsigned int offset,
unsigned int length) {
uint64_t lane;
if (length == 0) return;
if (length == 1)
lane = data[0];
else {
lane = 0;
memcpy(&lane, data, length);
}
lane <<= offset * 8;
((uint64_t *)state)[lanePosition] ^= lane;
}
static void _PySHA3_KeccakP1600_AddLanes(void *state, const unsigned char *data,
unsigned int laneCount) {
unsigned int i = 0;
for (; (i + 8) <= laneCount; i += 8) {
((uint64_t *)state)[i + 0] ^= ((uint64_t *)data)[i + 0];
((uint64_t *)state)[i + 1] ^= ((uint64_t *)data)[i + 1];
((uint64_t *)state)[i + 2] ^= ((uint64_t *)data)[i + 2];
((uint64_t *)state)[i + 3] ^= ((uint64_t *)data)[i + 3];
((uint64_t *)state)[i + 4] ^= ((uint64_t *)data)[i + 4];
((uint64_t *)state)[i + 5] ^= ((uint64_t *)data)[i + 5];
((uint64_t *)state)[i + 6] ^= ((uint64_t *)data)[i + 6];
((uint64_t *)state)[i + 7] ^= ((uint64_t *)data)[i + 7];
}
for (; (i + 4) <= laneCount; i += 4) {
((uint64_t *)state)[i + 0] ^= ((uint64_t *)data)[i + 0];
((uint64_t *)state)[i + 1] ^= ((uint64_t *)data)[i + 1];
((uint64_t *)state)[i + 2] ^= ((uint64_t *)data)[i + 2];
((uint64_t *)state)[i + 3] ^= ((uint64_t *)data)[i + 3];
}
for (; (i + 2) <= laneCount; i += 2) {
((uint64_t *)state)[i + 0] ^= ((uint64_t *)data)[i + 0];
((uint64_t *)state)[i + 1] ^= ((uint64_t *)data)[i + 1];
}
if (i < laneCount) {
((uint64_t *)state)[i + 0] ^= ((uint64_t *)data)[i + 0];
}
}
static void _PySHA3_KeccakP1600_AddBytes(void *state, const unsigned char *data,
unsigned int offset,
unsigned int length) {
if ((offset) == 0) {
_PySHA3_KeccakP1600_AddLanes(state, data, (length) / 8);
_PySHA3_KeccakP1600_AddBytesInLane(
state, (length) / 8, (data) + ((length) / 8) * 8, 0, (length) % 8);
} else {
unsigned int _sizeLeft = (length);
unsigned int _lanePosition = (offset) / 8;
unsigned int _offsetInLane = (offset) % 8;
const unsigned char *_curData = (data);
while (_sizeLeft > 0) {
unsigned int _bytesInLane = 8 - _offsetInLane;
if (_bytesInLane > _sizeLeft) _bytesInLane = _sizeLeft;
_PySHA3_KeccakP1600_AddBytesInLane(state, _lanePosition, _curData,
_offsetInLane, _bytesInLane);
_sizeLeft -= _bytesInLane;
_lanePosition++;
_offsetInLane = 0;
_curData += _bytesInLane;
}
}
}
static void _PySHA3_KeccakP1600_OverwriteBytesInLane(void *state,
unsigned int lanePosition,
const unsigned char *data,
unsigned int offset,
unsigned int length) {
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20)) {
unsigned int i;
for (i = 0; i < length; i++)
((unsigned char *)state)[lanePosition * 8 + offset + i] = ~data[i];
} else {
memcpy((unsigned char *)state + lanePosition * 8 + offset, data, length);
}
}
static void _PySHA3_KeccakP1600_OverwriteLanes(void *state,
const unsigned char *data,
unsigned int laneCount) {
unsigned int lanePosition;
for (lanePosition = 0; lanePosition < laneCount; lanePosition++)
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20))
((uint64_t *)state)[lanePosition] =
~((const uint64_t *)data)[lanePosition];
else
((uint64_t *)state)[lanePosition] =
((const uint64_t *)data)[lanePosition];
}
static void _PySHA3_KeccakP1600_OverwriteBytes(void *state,
const unsigned char *data,
unsigned int offset,
unsigned int length) {
{
if ((offset) == 0) {
_PySHA3_KeccakP1600_OverwriteLanes(state, data, (length) / 8);
_PySHA3_KeccakP1600_OverwriteBytesInLane(
state, (length) / 8, (data) + ((length) / 8) * 8, 0, (length) % 8);
} else {
unsigned int _sizeLeft = (length);
unsigned int _lanePosition = (offset) / 8;
unsigned int _offsetInLane = (offset) % 8;
const unsigned char *_curData = (data);
while (_sizeLeft > 0) {
unsigned int _bytesInLane = 8 - _offsetInLane;
if (_bytesInLane > _sizeLeft) _bytesInLane = _sizeLeft;
_PySHA3_KeccakP1600_OverwriteBytesInLane(state, _lanePosition, _curData,
_offsetInLane, _bytesInLane);
_sizeLeft -= _bytesInLane;
_lanePosition++;
_offsetInLane = 0;
_curData += _bytesInLane;
}
}
};
}
static void _PySHA3_KeccakP1600_OverwriteWithZeroes(void *state,
unsigned int byteCount) {
unsigned int lanePosition;
for (lanePosition = 0; lanePosition < byteCount / 8; lanePosition++)
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20))
((uint64_t *)state)[lanePosition] = ~0;
else
((uint64_t *)state)[lanePosition] = 0;
if (byteCount % 8 != 0) {
lanePosition = byteCount / 8;
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20))
memset((unsigned char *)state + lanePosition * 8, 0xFF, byteCount % 8);
else
bzero((unsigned char *)state + lanePosition * 8, byteCount % 8);
}
}
static void _PySHA3_KeccakP1600_Permute_24rounds(void *state) {
uint64_t Ca, Ce, Ci, Co, Cu;
uint64_t Da, De, Di, Do, Du;
uint64_t Aba, Abe, Abi, Abo, Abu;
uint64_t Aga, Age, Agi, Ago, Agu;
uint64_t Aka, Ake, Aki, Ako, Aku;
uint64_t Ama, Ame, Ami, Amo, Amu;
uint64_t Asa, Ase, Asi, Aso, Asu;
uint64_t Bba, Bbe, Bbi, Bbo, Bbu;
uint64_t Bga, Bge, Bgi, Bgo, Bgu;
uint64_t Bka, Bke, Bki, Bko, Bku;
uint64_t Bma, Bme, Bmi, Bmo, Bmu;
uint64_t Bsa, Bse, Bsi, Bso, Bsu;
uint64_t Eba, Ebe, Ebi, Ebo, Ebu;
uint64_t Ega, Ege, Egi, Ego, Egu;
uint64_t Eka, Eke, Eki, Eko, Eku;
uint64_t Ema, Eme, Emi, Emo, Emu;
uint64_t Esa, Ese, Esi, Eso, Esu;
uint64_t *stateAsLanes = (uint64_t *)state;
Aba = stateAsLanes[0];
Abe = stateAsLanes[1];
Abi = stateAsLanes[2];
Abo = stateAsLanes[3];
Abu = stateAsLanes[4];
Aga = stateAsLanes[5];
Age = stateAsLanes[6];
Agi = stateAsLanes[7];
Ago = stateAsLanes[8];
Agu = stateAsLanes[9];
Aka = stateAsLanes[10];
Ake = stateAsLanes[11];
Aki = stateAsLanes[12];
Ako = stateAsLanes[13];
Aku = stateAsLanes[14];
Ama = stateAsLanes[15];
Ame = stateAsLanes[16];
Ami = stateAsLanes[17];
Amo = stateAsLanes[18];
Amu = stateAsLanes[19];
Asa = stateAsLanes[20];
Ase = stateAsLanes[21];
Asi = stateAsLanes[22];
Aso = stateAsLanes[23];
Asu = stateAsLanes[24];
Ca = Aba ^ Aga ^ Aka ^ Ama ^ Asa;
Ce = Abe ^ Age ^ Ake ^ Ame ^ Ase;
Ci = Abi ^ Agi ^ Aki ^ Ami ^ Asi;
Co = Abo ^ Ago ^ Ako ^ Amo ^ Aso;
Cu = Abu ^ Agu ^ Aku ^ Amu ^ Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[0];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[1];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[2];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[3];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[4];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[5];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[6];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[7];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[8];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[9];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[10];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[11];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[12];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[13];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[14];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[15];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[16];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[17];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[18];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[19];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[20];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[21];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[22];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[23];
Abe = Bbe ^ ((~Bbi) | Bbo);
Abi = Bbi ^ (Bbo & Bbu);
Abo = Bbo ^ (Bbu | Bba);
Abu = Bbu ^ (Bba & Bbe);
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Age = Bge ^ (Bgi & Bgo);
Agi = Bgi ^ (Bgo | (~Bgu));
Ago = Bgo ^ (Bgu | Bga);
Agu = Bgu ^ (Bga & Bge);
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ake = Bke ^ (Bki & Bko);
Aki = Bki ^ ((~Bko) & Bku);
Ako = (~Bko) ^ (Bku | Bka);
Aku = Bku ^ (Bka & Bke);
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ame = Bme ^ (Bmi | Bmo);
Ami = Bmi ^ ((~Bmo) | Bmu);
Amo = (~Bmo) ^ (Bmu & Bma);
Amu = Bmu ^ (Bma | Bme);
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ase = (~Bse) ^ (Bsi | Bso);
Asi = Bsi ^ (Bso & Bsu);
Aso = Bso ^ (Bsu | Bsa);
Asu = Bsu ^ (Bsa & Bse);
stateAsLanes[0] = Aba;
stateAsLanes[1] = Abe;
stateAsLanes[2] = Abi;
stateAsLanes[3] = Abo;
stateAsLanes[4] = Abu;
stateAsLanes[5] = Aga;
stateAsLanes[6] = Age;
stateAsLanes[7] = Agi;
stateAsLanes[8] = Ago;
stateAsLanes[9] = Agu;
stateAsLanes[10] = Aka;
stateAsLanes[11] = Ake;
stateAsLanes[12] = Aki;
stateAsLanes[13] = Ako;
stateAsLanes[14] = Aku;
stateAsLanes[15] = Ama;
stateAsLanes[16] = Ame;
stateAsLanes[17] = Ami;
stateAsLanes[18] = Amo;
stateAsLanes[19] = Amu;
stateAsLanes[20] = Asa;
stateAsLanes[21] = Ase;
stateAsLanes[22] = Asi;
stateAsLanes[23] = Aso;
stateAsLanes[24] = Asu;
}
static void _PySHA3_KeccakP1600_Permute_12rounds(void *state) {
uint64_t Aba, Abe, Abi, Abo, Abu;
uint64_t Aga, Age, Agi, Ago, Agu;
uint64_t Aka, Ake, Aki, Ako, Aku;
uint64_t Ama, Ame, Ami, Amo, Amu;
uint64_t Asa, Ase, Asi, Aso, Asu;
uint64_t Bba, Bbe, Bbi, Bbo, Bbu;
uint64_t Bga, Bge, Bgi, Bgo, Bgu;
uint64_t Bka, Bke, Bki, Bko, Bku;
uint64_t Bma, Bme, Bmi, Bmo, Bmu;
uint64_t Bsa, Bse, Bsi, Bso, Bsu;
uint64_t Ca, Ce, Ci, Co, Cu;
uint64_t Da, De, Di, Do, Du;
uint64_t Eba, Ebe, Ebi, Ebo, Ebu;
uint64_t Ega, Ege, Egi, Ego, Egu;
uint64_t Eka, Eke, Eki, Eko, Eku;
uint64_t Ema, Eme, Emi, Emo, Emu;
uint64_t Esa, Ese, Esi, Eso, Esu;
uint64_t *stateAsLanes = (uint64_t *)state;
Aba = stateAsLanes[0];
Abe = stateAsLanes[1];
Abi = stateAsLanes[2];
Abo = stateAsLanes[3];
Abu = stateAsLanes[4];
Aga = stateAsLanes[5];
Age = stateAsLanes[6];
Agi = stateAsLanes[7];
Ago = stateAsLanes[8];
Agu = stateAsLanes[9];
Aka = stateAsLanes[10];
Ake = stateAsLanes[11];
Aki = stateAsLanes[12];
Ako = stateAsLanes[13];
Aku = stateAsLanes[14];
Ama = stateAsLanes[15];
Ame = stateAsLanes[16];
Ami = stateAsLanes[17];
Amo = stateAsLanes[18];
Amu = stateAsLanes[19];
Asa = stateAsLanes[20];
Ase = stateAsLanes[21];
Asi = stateAsLanes[22];
Aso = stateAsLanes[23];
Asu = stateAsLanes[24];
Ca = Aba ^ Aga ^ Aka ^ Ama ^ Asa;
Ce = Abe ^ Age ^ Ake ^ Ame ^ Ase;
Ci = Abi ^ Agi ^ Aki ^ Ami ^ Asi;
Co = Abo ^ Ago ^ Ako ^ Amo ^ Aso;
Cu = Abu ^ Agu ^ Aku ^ Amu ^ Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[12];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[13];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[14];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[15];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[16];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[17];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[18];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[19];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[20];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[21];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[22];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[23];
Abe = Bbe ^ ((~Bbi) | Bbo);
Abi = Bbi ^ (Bbo & Bbu);
Abo = Bbo ^ (Bbu | Bba);
Abu = Bbu ^ (Bba & Bbe);
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Age = Bge ^ (Bgi & Bgo);
Agi = Bgi ^ (Bgo | (~Bgu));
Ago = Bgo ^ (Bgu | Bga);
Agu = Bgu ^ (Bga & Bge);
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ake = Bke ^ (Bki & Bko);
Aki = Bki ^ ((~Bko) & Bku);
Ako = (~Bko) ^ (Bku | Bka);
Aku = Bku ^ (Bka & Bke);
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ame = Bme ^ (Bmi | Bmo);
Ami = Bmi ^ ((~Bmo) | Bmu);
Amo = (~Bmo) ^ (Bmu & Bma);
Amu = Bmu ^ (Bma | Bme);
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ase = (~Bse) ^ (Bsi | Bso);
Asi = Bsi ^ (Bso & Bsu);
Aso = Bso ^ (Bsu | Bsa);
Asu = Bsu ^ (Bsa & Bse);
stateAsLanes[0] = Aba;
stateAsLanes[1] = Abe;
stateAsLanes[2] = Abi;
stateAsLanes[3] = Abo;
stateAsLanes[4] = Abu;
stateAsLanes[5] = Aga;
stateAsLanes[6] = Age;
stateAsLanes[7] = Agi;
stateAsLanes[8] = Ago;
stateAsLanes[9] = Agu;
stateAsLanes[10] = Aka;
stateAsLanes[11] = Ake;
stateAsLanes[12] = Aki;
stateAsLanes[13] = Ako;
stateAsLanes[14] = Aku;
stateAsLanes[15] = Ama;
stateAsLanes[16] = Ame;
stateAsLanes[17] = Ami;
stateAsLanes[18] = Amo;
stateAsLanes[19] = Amu;
stateAsLanes[20] = Asa;
stateAsLanes[21] = Ase;
stateAsLanes[22] = Asi;
stateAsLanes[23] = Aso;
stateAsLanes[24] = Asu;
}
static void _PySHA3_KeccakP1600_ExtractBytesInLane(const void *state,
unsigned int lanePosition,
unsigned char *data,
unsigned int offset,
unsigned int length) {
uint64_t lane = ((uint64_t *)state)[lanePosition];
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20))
lane = ~lane;
{
uint64_t lane1[1];
lane1[0] = lane;
memcpy(data, (uint8_t *)lane1 + offset, length);
}
}
static void _PySHA3_KeccakP1600_ExtractLanes(const void *state,
unsigned char *data,
unsigned int laneCount) {
memcpy(data, state, laneCount * 8);
if (laneCount > 1) {
((uint64_t *)data)[1] = ~((uint64_t *)data)[1];
if (laneCount > 2) {
((uint64_t *)data)[2] = ~((uint64_t *)data)[2];
if (laneCount > 8) {
((uint64_t *)data)[8] = ~((uint64_t *)data)[8];
if (laneCount > 12) {
((uint64_t *)data)[12] = ~((uint64_t *)data)[12];
if (laneCount > 17) {
((uint64_t *)data)[17] = ~((uint64_t *)data)[17];
if (laneCount > 20) {
((uint64_t *)data)[20] = ~((uint64_t *)data)[20];
}
}
}
}
}
}
}
static void _PySHA3_KeccakP1600_ExtractBytes(const void *state,
unsigned char *data,
unsigned int offset,
unsigned int length) {
if ((offset) == 0) {
_PySHA3_KeccakP1600_ExtractLanes(state, data, (length) / 8);
_PySHA3_KeccakP1600_ExtractBytesInLane(
state, (length) / 8, (data) + ((length) / 8) * 8, 0, (length) % 8);
} else {
unsigned int _sizeLeft = (length);
unsigned int _lanePosition = (offset) / 8;
unsigned int _offsetInLane = (offset) % 8;
unsigned char *_curData = (data);
while (_sizeLeft > 0) {
unsigned int _bytesInLane = 8 - _offsetInLane;
if (_bytesInLane > _sizeLeft) _bytesInLane = _sizeLeft;
_PySHA3_KeccakP1600_ExtractBytesInLane(state, _lanePosition, _curData,
_offsetInLane, _bytesInLane);
_sizeLeft -= _bytesInLane;
_lanePosition++;
_offsetInLane = 0;
_curData += _bytesInLane;
}
}
}
static size_t _PySHA3_KeccakF1600_FastLoop_Absorb(void *state,
unsigned int laneCount,
const unsigned char *data,
size_t dataByteLen) {
size_t originalDataByteLen = dataByteLen;
uint64_t Aba, Abe, Abi, Abo, Abu;
uint64_t Aga, Age, Agi, Ago, Agu;
uint64_t Aka, Ake, Aki, Ako, Aku;
uint64_t Ama, Ame, Ami, Amo, Amu;
uint64_t Asa, Ase, Asi, Aso, Asu;
uint64_t Bba, Bbe, Bbi, Bbo, Bbu;
uint64_t Bga, Bge, Bgi, Bgo, Bgu;
uint64_t Bka, Bke, Bki, Bko, Bku;
uint64_t Bma, Bme, Bmi, Bmo, Bmu;
uint64_t Bsa, Bse, Bsi, Bso, Bsu;
uint64_t Ca, Ce, Ci, Co, Cu;
uint64_t Da, De, Di, Do, Du;
uint64_t Eba, Ebe, Ebi, Ebo, Ebu;
uint64_t Ega, Ege, Egi, Ego, Egu;
uint64_t Eka, Eke, Eki, Eko, Eku;
uint64_t Ema, Eme, Emi, Emo, Emu;
uint64_t Esa, Ese, Esi, Eso, Esu;
uint64_t *stateAsLanes = (uint64_t *)state;
uint64_t *inDataAsLanes = (uint64_t *)data;
Aba = stateAsLanes[0];
Abe = stateAsLanes[1];
Abi = stateAsLanes[2];
Abo = stateAsLanes[3];
Abu = stateAsLanes[4];
Aga = stateAsLanes[5];
Age = stateAsLanes[6];
Agi = stateAsLanes[7];
Ago = stateAsLanes[8];
Agu = stateAsLanes[9];
Aka = stateAsLanes[10];
Ake = stateAsLanes[11];
Aki = stateAsLanes[12];
Ako = stateAsLanes[13];
Aku = stateAsLanes[14];
Ama = stateAsLanes[15];
Ame = stateAsLanes[16];
Ami = stateAsLanes[17];
Amo = stateAsLanes[18];
Amu = stateAsLanes[19];
Asa = stateAsLanes[20];
Ase = stateAsLanes[21];
Asi = stateAsLanes[22];
Aso = stateAsLanes[23];
Asu = stateAsLanes[24];
while (dataByteLen >= laneCount * 8) {
if (laneCount == 21) {
Aba ^= inDataAsLanes[0];
Abe ^= inDataAsLanes[1];
Abi ^= inDataAsLanes[2];
Abo ^= inDataAsLanes[3];
Abu ^= inDataAsLanes[4];
Aga ^= inDataAsLanes[5];
Age ^= inDataAsLanes[6];
Agi ^= inDataAsLanes[7];
Ago ^= inDataAsLanes[8];
Agu ^= inDataAsLanes[9];
Aka ^= inDataAsLanes[10];
Ake ^= inDataAsLanes[11];
Aki ^= inDataAsLanes[12];
Ako ^= inDataAsLanes[13];
Aku ^= inDataAsLanes[14];
Ama ^= inDataAsLanes[15];
Ame ^= inDataAsLanes[16];
Ami ^= inDataAsLanes[17];
Amo ^= inDataAsLanes[18];
Amu ^= inDataAsLanes[19];
Asa ^= inDataAsLanes[20];
} else if (laneCount < 16) {
if (laneCount < 8) {
if (laneCount < 4) {
if (laneCount < 2) {
if (laneCount < 1) {
} else {
Aba ^= inDataAsLanes[0];
}
} else {
Aba ^= inDataAsLanes[0];
Abe ^= inDataAsLanes[1];
if (laneCount < 3) {
} else {
Abi ^= inDataAsLanes[2];
}
}
} else {
Aba ^= inDataAsLanes[0];
Abe ^= inDataAsLanes[1];
Abi ^= inDataAsLanes[2];
Abo ^= inDataAsLanes[3];
if (laneCount < 6) {
if (laneCount < 5) {
} else {
Abu ^= inDataAsLanes[4];
}
} else {
Abu ^= inDataAsLanes[4];
Aga ^= inDataAsLanes[5];
if (laneCount < 7) {
} else {
Age ^= inDataAsLanes[6];
}
}
}
} else {
Aba ^= inDataAsLanes[0];
Abe ^= inDataAsLanes[1];
Abi ^= inDataAsLanes[2];
Abo ^= inDataAsLanes[3];
Abu ^= inDataAsLanes[4];
Aga ^= inDataAsLanes[5];
Age ^= inDataAsLanes[6];
Agi ^= inDataAsLanes[7];
if (laneCount < 12) {
if (laneCount < 10) {
if (laneCount < 9) {
} else {
Ago ^= inDataAsLanes[8];
}
} else {
Ago ^= inDataAsLanes[8];
Agu ^= inDataAsLanes[9];
if (laneCount < 11) {
} else {
Aka ^= inDataAsLanes[10];
}
}
} else {
Ago ^= inDataAsLanes[8];
Agu ^= inDataAsLanes[9];
Aka ^= inDataAsLanes[10];
Ake ^= inDataAsLanes[11];
if (laneCount < 14) {
if (laneCount < 13) {
} else {
Aki ^= inDataAsLanes[12];
}
} else {
Aki ^= inDataAsLanes[12];
Ako ^= inDataAsLanes[13];
if (laneCount < 15) {
} else {
Aku ^= inDataAsLanes[14];
}
}
}
}
} else {
Aba ^= inDataAsLanes[0];
Abe ^= inDataAsLanes[1];
Abi ^= inDataAsLanes[2];
Abo ^= inDataAsLanes[3];
Abu ^= inDataAsLanes[4];
Aga ^= inDataAsLanes[5];
Age ^= inDataAsLanes[6];
Agi ^= inDataAsLanes[7];
Ago ^= inDataAsLanes[8];
Agu ^= inDataAsLanes[9];
Aka ^= inDataAsLanes[10];
Ake ^= inDataAsLanes[11];
Aki ^= inDataAsLanes[12];
Ako ^= inDataAsLanes[13];
Aku ^= inDataAsLanes[14];
Ama ^= inDataAsLanes[15];
if (laneCount < 24) {
if (laneCount < 20) {
if (laneCount < 18) {
if (laneCount < 17) {
} else {
Ame ^= inDataAsLanes[16];
}
} else {
Ame ^= inDataAsLanes[16];
Ami ^= inDataAsLanes[17];
if (laneCount < 19) {
} else {
Amo ^= inDataAsLanes[18];
}
}
} else {
Ame ^= inDataAsLanes[16];
Ami ^= inDataAsLanes[17];
Amo ^= inDataAsLanes[18];
Amu ^= inDataAsLanes[19];
if (laneCount < 22) {
if (laneCount < 21) {
} else {
Asa ^= inDataAsLanes[20];
}
} else {
Asa ^= inDataAsLanes[20];
Ase ^= inDataAsLanes[21];
if (laneCount < 23) {
} else {
Asi ^= inDataAsLanes[22];
}
}
}
} else {
Ame ^= inDataAsLanes[16];
Ami ^= inDataAsLanes[17];
Amo ^= inDataAsLanes[18];
Amu ^= inDataAsLanes[19];
Asa ^= inDataAsLanes[20];
Ase ^= inDataAsLanes[21];
Asi ^= inDataAsLanes[22];
Aso ^= inDataAsLanes[23];
if (laneCount < 25) {
} else {
Asu ^= inDataAsLanes[24];
}
}
}
Ca = Aba ^ Aga ^ Aka ^ Ama ^ Asa;
Ce = Abe ^ Age ^ Ake ^ Ame ^ Ase;
Ci = Abi ^ Agi ^ Aki ^ Ami ^ Asi;
Co = Abo ^ Ago ^ Ako ^ Amo ^ Aso;
Cu = Abu ^ Agu ^ Aku ^ Amu ^ Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[0];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[1];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[2];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[3];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[4];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[5];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[6];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[7];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[8];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[9];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[10];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[11];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[12];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[13];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[14];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[15];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[16];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[17];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[18];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[19];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[20];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[21];
Ca = Aba;
Abe = Bbe ^ ((~Bbi) | Bbo);
Ce = Abe;
Abi = Bbi ^ (Bbo & Bbu);
Ci = Abi;
Abo = Bbo ^ (Bbu | Bba);
Co = Abo;
Abu = Bbu ^ (Bba & Bbe);
Cu = Abu;
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Ca ^= Aga;
Age = Bge ^ (Bgi & Bgo);
Ce ^= Age;
Agi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Agi;
Ago = Bgo ^ (Bgu | Bga);
Co ^= Ago;
Agu = Bgu ^ (Bga & Bge);
Cu ^= Agu;
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ca ^= Aka;
Ake = Bke ^ (Bki & Bko);
Ce ^= Ake;
Aki = Bki ^ ((~Bko) & Bku);
Ci ^= Aki;
Ako = (~Bko) ^ (Bku | Bka);
Co ^= Ako;
Aku = Bku ^ (Bka & Bke);
Cu ^= Aku;
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ca ^= Ama;
Ame = Bme ^ (Bmi | Bmo);
Ce ^= Ame;
Ami = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Ami;
Amo = (~Bmo) ^ (Bmu & Bma);
Co ^= Amo;
Amu = Bmu ^ (Bma | Bme);
Cu ^= Amu;
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Asa;
Ase = (~Bse) ^ (Bsi | Bso);
Ce ^= Ase;
Asi = Bsi ^ (Bso & Bsu);
Ci ^= Asi;
Aso = Bso ^ (Bsu | Bsa);
Co ^= Aso;
Asu = Bsu ^ (Bsa & Bse);
Cu ^= Asu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Aba ^= Da;
Bba = Aba;
Age ^= De;
Bbe = ((((uint64_t)Age) << 44) ^ (((uint64_t)Age) >> (64 - 44)));
Aki ^= Di;
Bbi = ((((uint64_t)Aki) << 43) ^ (((uint64_t)Aki) >> (64 - 43)));
Amo ^= Do;
Bbo = ((((uint64_t)Amo) << 21) ^ (((uint64_t)Amo) >> (64 - 21)));
Asu ^= Du;
Bbu = ((((uint64_t)Asu) << 14) ^ (((uint64_t)Asu) >> (64 - 14)));
Eba = Bba ^ (Bbe | Bbi);
Eba ^= kKeccakf[22];
Ca = Eba;
Ebe = Bbe ^ ((~Bbi) | Bbo);
Ce = Ebe;
Ebi = Bbi ^ (Bbo & Bbu);
Ci = Ebi;
Ebo = Bbo ^ (Bbu | Bba);
Co = Ebo;
Ebu = Bbu ^ (Bba & Bbe);
Cu = Ebu;
Abo ^= Do;
Bga = ((((uint64_t)Abo) << 28) ^ (((uint64_t)Abo) >> (64 - 28)));
Agu ^= Du;
Bge = ((((uint64_t)Agu) << 20) ^ (((uint64_t)Agu) >> (64 - 20)));
Aka ^= Da;
Bgi = ((((uint64_t)Aka) << 3) ^ (((uint64_t)Aka) >> (64 - 3)));
Ame ^= De;
Bgo = ((((uint64_t)Ame) << 45) ^ (((uint64_t)Ame) >> (64 - 45)));
Asi ^= Di;
Bgu = ((((uint64_t)Asi) << 61) ^ (((uint64_t)Asi) >> (64 - 61)));
Ega = Bga ^ (Bge | Bgi);
Ca ^= Ega;
Ege = Bge ^ (Bgi & Bgo);
Ce ^= Ege;
Egi = Bgi ^ (Bgo | (~Bgu));
Ci ^= Egi;
Ego = Bgo ^ (Bgu | Bga);
Co ^= Ego;
Egu = Bgu ^ (Bga & Bge);
Cu ^= Egu;
Abe ^= De;
Bka = ((((uint64_t)Abe) << 1) ^ (((uint64_t)Abe) >> (64 - 1)));
Agi ^= Di;
Bke = ((((uint64_t)Agi) << 6) ^ (((uint64_t)Agi) >> (64 - 6)));
Ako ^= Do;
Bki = ((((uint64_t)Ako) << 25) ^ (((uint64_t)Ako) >> (64 - 25)));
Amu ^= Du;
Bko = ((((uint64_t)Amu) << 8) ^ (((uint64_t)Amu) >> (64 - 8)));
Asa ^= Da;
Bku = ((((uint64_t)Asa) << 18) ^ (((uint64_t)Asa) >> (64 - 18)));
Eka = Bka ^ (Bke | Bki);
Ca ^= Eka;
Eke = Bke ^ (Bki & Bko);
Ce ^= Eke;
Eki = Bki ^ ((~Bko) & Bku);
Ci ^= Eki;
Eko = (~Bko) ^ (Bku | Bka);
Co ^= Eko;
Eku = Bku ^ (Bka & Bke);
Cu ^= Eku;
Abu ^= Du;
Bma = ((((uint64_t)Abu) << 27) ^ (((uint64_t)Abu) >> (64 - 27)));
Aga ^= Da;
Bme = ((((uint64_t)Aga) << 36) ^ (((uint64_t)Aga) >> (64 - 36)));
Ake ^= De;
Bmi = ((((uint64_t)Ake) << 10) ^ (((uint64_t)Ake) >> (64 - 10)));
Ami ^= Di;
Bmo = ((((uint64_t)Ami) << 15) ^ (((uint64_t)Ami) >> (64 - 15)));
Aso ^= Do;
Bmu = ((((uint64_t)Aso) << 56) ^ (((uint64_t)Aso) >> (64 - 56)));
Ema = Bma ^ (Bme & Bmi);
Ca ^= Ema;
Eme = Bme ^ (Bmi | Bmo);
Ce ^= Eme;
Emi = Bmi ^ ((~Bmo) | Bmu);
Ci ^= Emi;
Emo = (~Bmo) ^ (Bmu & Bma);
Co ^= Emo;
Emu = Bmu ^ (Bma | Bme);
Cu ^= Emu;
Abi ^= Di;
Bsa = ((((uint64_t)Abi) << 62) ^ (((uint64_t)Abi) >> (64 - 62)));
Ago ^= Do;
Bse = ((((uint64_t)Ago) << 55) ^ (((uint64_t)Ago) >> (64 - 55)));
Aku ^= Du;
Bsi = ((((uint64_t)Aku) << 39) ^ (((uint64_t)Aku) >> (64 - 39)));
Ama ^= Da;
Bso = ((((uint64_t)Ama) << 41) ^ (((uint64_t)Ama) >> (64 - 41)));
Ase ^= De;
Bsu = ((((uint64_t)Ase) << 2) ^ (((uint64_t)Ase) >> (64 - 2)));
Esa = Bsa ^ ((~Bse) & Bsi);
Ca ^= Esa;
Ese = (~Bse) ^ (Bsi | Bso);
Ce ^= Ese;
Esi = Bsi ^ (Bso & Bsu);
Ci ^= Esi;
Eso = Bso ^ (Bsu | Bsa);
Co ^= Eso;
Esu = Bsu ^ (Bsa & Bse);
Cu ^= Esu;
Da = Cu ^ ((((uint64_t)Ce) << 1) ^ (((uint64_t)Ce) >> (64 - 1)));
De = Ca ^ ((((uint64_t)Ci) << 1) ^ (((uint64_t)Ci) >> (64 - 1)));
Di = Ce ^ ((((uint64_t)Co) << 1) ^ (((uint64_t)Co) >> (64 - 1)));
Do = Ci ^ ((((uint64_t)Cu) << 1) ^ (((uint64_t)Cu) >> (64 - 1)));
Du = Co ^ ((((uint64_t)Ca) << 1) ^ (((uint64_t)Ca) >> (64 - 1)));
Eba ^= Da;
Bba = Eba;
Ege ^= De;
Bbe = ((((uint64_t)Ege) << 44) ^ (((uint64_t)Ege) >> (64 - 44)));
Eki ^= Di;
Bbi = ((((uint64_t)Eki) << 43) ^ (((uint64_t)Eki) >> (64 - 43)));
Emo ^= Do;
Bbo = ((((uint64_t)Emo) << 21) ^ (((uint64_t)Emo) >> (64 - 21)));
Esu ^= Du;
Bbu = ((((uint64_t)Esu) << 14) ^ (((uint64_t)Esu) >> (64 - 14)));
Aba = Bba ^ (Bbe | Bbi);
Aba ^= kKeccakf[23];
Abe = Bbe ^ ((~Bbi) | Bbo);
Abi = Bbi ^ (Bbo & Bbu);
Abo = Bbo ^ (Bbu | Bba);
Abu = Bbu ^ (Bba & Bbe);
Ebo ^= Do;
Bga = ((((uint64_t)Ebo) << 28) ^ (((uint64_t)Ebo) >> (64 - 28)));
Egu ^= Du;
Bge = ((((uint64_t)Egu) << 20) ^ (((uint64_t)Egu) >> (64 - 20)));
Eka ^= Da;
Bgi = ((((uint64_t)Eka) << 3) ^ (((uint64_t)Eka) >> (64 - 3)));
Eme ^= De;
Bgo = ((((uint64_t)Eme) << 45) ^ (((uint64_t)Eme) >> (64 - 45)));
Esi ^= Di;
Bgu = ((((uint64_t)Esi) << 61) ^ (((uint64_t)Esi) >> (64 - 61)));
Aga = Bga ^ (Bge | Bgi);
Age = Bge ^ (Bgi & Bgo);
Agi = Bgi ^ (Bgo | (~Bgu));
Ago = Bgo ^ (Bgu | Bga);
Agu = Bgu ^ (Bga & Bge);
Ebe ^= De;
Bka = ((((uint64_t)Ebe) << 1) ^ (((uint64_t)Ebe) >> (64 - 1)));
Egi ^= Di;
Bke = ((((uint64_t)Egi) << 6) ^ (((uint64_t)Egi) >> (64 - 6)));
Eko ^= Do;
Bki = ((((uint64_t)Eko) << 25) ^ (((uint64_t)Eko) >> (64 - 25)));
Emu ^= Du;
Bko = ((((uint64_t)Emu) << 8) ^ (((uint64_t)Emu) >> (64 - 8)));
Esa ^= Da;
Bku = ((((uint64_t)Esa) << 18) ^ (((uint64_t)Esa) >> (64 - 18)));
Aka = Bka ^ (Bke | Bki);
Ake = Bke ^ (Bki & Bko);
Aki = Bki ^ ((~Bko) & Bku);
Ako = (~Bko) ^ (Bku | Bka);
Aku = Bku ^ (Bka & Bke);
Ebu ^= Du;
Bma = ((((uint64_t)Ebu) << 27) ^ (((uint64_t)Ebu) >> (64 - 27)));
Ega ^= Da;
Bme = ((((uint64_t)Ega) << 36) ^ (((uint64_t)Ega) >> (64 - 36)));
Eke ^= De;
Bmi = ((((uint64_t)Eke) << 10) ^ (((uint64_t)Eke) >> (64 - 10)));
Emi ^= Di;
Bmo = ((((uint64_t)Emi) << 15) ^ (((uint64_t)Emi) >> (64 - 15)));
Eso ^= Do;
Bmu = ((((uint64_t)Eso) << 56) ^ (((uint64_t)Eso) >> (64 - 56)));
Ama = Bma ^ (Bme & Bmi);
Ame = Bme ^ (Bmi | Bmo);
Ami = Bmi ^ ((~Bmo) | Bmu);
Amo = (~Bmo) ^ (Bmu & Bma);
Amu = Bmu ^ (Bma | Bme);
Ebi ^= Di;
Bsa = ((((uint64_t)Ebi) << 62) ^ (((uint64_t)Ebi) >> (64 - 62)));
Ego ^= Do;
Bse = ((((uint64_t)Ego) << 55) ^ (((uint64_t)Ego) >> (64 - 55)));
Eku ^= Du;
Bsi = ((((uint64_t)Eku) << 39) ^ (((uint64_t)Eku) >> (64 - 39)));
Ema ^= Da;
Bso = ((((uint64_t)Ema) << 41) ^ (((uint64_t)Ema) >> (64 - 41)));
Ese ^= De;
Bsu = ((((uint64_t)Ese) << 2) ^ (((uint64_t)Ese) >> (64 - 2)));
Asa = Bsa ^ ((~Bse) & Bsi);
Ase = (~Bse) ^ (Bsi | Bso);
Asi = Bsi ^ (Bso & Bsu);
Aso = Bso ^ (Bsu | Bsa);
Asu = Bsu ^ (Bsa & Bse);
inDataAsLanes += laneCount;
dataByteLen -= laneCount * 8;
}
stateAsLanes[0] = Aba;
stateAsLanes[1] = Abe;
stateAsLanes[2] = Abi;
stateAsLanes[3] = Abo;
stateAsLanes[4] = Abu;
stateAsLanes[5] = Aga;
stateAsLanes[6] = Age;
stateAsLanes[7] = Agi;
stateAsLanes[8] = Ago;
stateAsLanes[9] = Agu;
stateAsLanes[10] = Aka;
stateAsLanes[11] = Ake;
stateAsLanes[12] = Aki;
stateAsLanes[13] = Ako;
stateAsLanes[14] = Aku;
stateAsLanes[15] = Ama;
stateAsLanes[16] = Ame;
stateAsLanes[17] = Ami;
stateAsLanes[18] = Amo;
stateAsLanes[19] = Amu;
stateAsLanes[20] = Asa;
stateAsLanes[21] = Ase;
stateAsLanes[22] = Asi;
stateAsLanes[23] = Aso;
stateAsLanes[24] = Asu;
return originalDataByteLen - dataByteLen;
}
static int _PySHA3_KeccakWidth1600_Sponge(
unsigned int rate, unsigned int capacity, const unsigned char *input,
size_t inputByteLen, unsigned char suffix, unsigned char *output,
size_t outputByteLen) {
forcealign(8) unsigned char state[200];
unsigned int partialBlock;
const unsigned char *curInput = input;
unsigned char *curOutput = output;
unsigned int rateInBytes = rate / 8;
if (rate + capacity != 1600) return 1;
if ((rate <= 0) || (rate > 1600) || ((rate % 8) != 0)) return 1;
if (suffix == 0) return 1;
_PySHA3_KeccakP1600_Initialize(state);
if (((rateInBytes % (1600 / 200)) == 0) && (inputByteLen >= rateInBytes)) {
size_t j;
j = _PySHA3_KeccakF1600_FastLoop_Absorb(state, rateInBytes / (1600 / 200),
curInput, inputByteLen);
curInput += j;
inputByteLen -= j;
}
while (inputByteLen >= (size_t)rateInBytes) {
_PySHA3_KeccakP1600_AddBytes(state, curInput, 0, rateInBytes);
_PySHA3_KeccakP1600_Permute_24rounds(state);
curInput += rateInBytes;
inputByteLen -= rateInBytes;
}
partialBlock = (unsigned int)inputByteLen;
_PySHA3_KeccakP1600_AddBytes(state, curInput, 0, partialBlock);
((unsigned char *)(state))[(partialBlock)] ^= (suffix);
if ((suffix >= 0x80) && (partialBlock == (rateInBytes - 1)))
_PySHA3_KeccakP1600_Permute_24rounds(state);
((unsigned char *)(state))[(rateInBytes - 1)] ^= (0x80);
_PySHA3_KeccakP1600_Permute_24rounds(state);
while (outputByteLen > (size_t)rateInBytes) {
_PySHA3_KeccakP1600_ExtractBytes(state, curOutput, 0, rateInBytes);
_PySHA3_KeccakP1600_Permute_24rounds(state);
curOutput += rateInBytes;
outputByteLen -= rateInBytes;
}
partialBlock = (unsigned int)outputByteLen;
_PySHA3_KeccakP1600_ExtractBytes(state, curOutput, 0, partialBlock);
return 0;
}
static int _PySHA3_KeccakWidth1600_SpongeAbsorb(
KeccakWidth1600_SpongeInstance *instance, const unsigned char *data,
size_t dataByteLen) {
size_t i, j;
unsigned int partialBlock;
const unsigned char *curData;
unsigned int rateInBytes = instance->rate / 8;
if (instance->squeezing) return 1;
i = 0;
curData = data;
while (i < dataByteLen) {
if ((instance->byteIOIndex == 0) && (dataByteLen >= (i + rateInBytes))) {
if ((rateInBytes % (1600 / 200)) == 0) {
j = _PySHA3_KeccakF1600_FastLoop_Absorb(instance->state,
rateInBytes / (1600 / 200),
curData, dataByteLen - i);
i += j;
curData += j;
} else {
for (j = dataByteLen - i; j >= rateInBytes; j -= rateInBytes) {
_PySHA3_KeccakP1600_AddBytes(instance->state, curData, 0,
rateInBytes);
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
curData += rateInBytes;
}
i = dataByteLen - j;
}
} else {
partialBlock = (unsigned int)(dataByteLen - i);
if (partialBlock + instance->byteIOIndex > rateInBytes)
partialBlock = rateInBytes - instance->byteIOIndex;
i += partialBlock;
_PySHA3_KeccakP1600_AddBytes(instance->state, curData,
instance->byteIOIndex, partialBlock);
curData += partialBlock;
instance->byteIOIndex += partialBlock;
if (instance->byteIOIndex == rateInBytes) {
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
instance->byteIOIndex = 0;
}
}
}
return 0;
}
static int _PySHA3_KeccakWidth1600_SpongeAbsorbLastFewBits(
KeccakWidth1600_SpongeInstance *instance, unsigned char delimitedData) {
unsigned int rateInBytes = instance->rate / 8;
if (delimitedData == 0) return 1;
if (instance->squeezing) return 1;
((unsigned char *)(instance->state))[(instance->byteIOIndex)] ^=
(delimitedData);
if ((delimitedData >= 0x80) && (instance->byteIOIndex == (rateInBytes - 1)))
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
((unsigned char *)(instance->state))[(rateInBytes - 1)] ^= (0x80);
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
instance->byteIOIndex = 0;
instance->squeezing = 1;
return 0;
}
static int _PySHA3_KeccakWidth1600_SpongeSqueeze(
KeccakWidth1600_SpongeInstance *instance, unsigned char *data,
size_t dataByteLen) {
size_t i, j;
unsigned int partialBlock;
unsigned int rateInBytes = instance->rate / 8;
unsigned char *curData;
if (!instance->squeezing)
_PySHA3_KeccakWidth1600_SpongeAbsorbLastFewBits(instance, 0x01);
i = 0;
curData = data;
while (i < dataByteLen) {
if ((instance->byteIOIndex == rateInBytes) &&
(dataByteLen >= (i + rateInBytes))) {
for (j = dataByteLen - i; j >= rateInBytes; j -= rateInBytes) {
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
_PySHA3_KeccakP1600_ExtractBytes(instance->state, curData, 0,
rateInBytes);
curData += rateInBytes;
}
i = dataByteLen - j;
} else {
if (instance->byteIOIndex == rateInBytes) {
_PySHA3_KeccakP1600_Permute_24rounds(instance->state);
instance->byteIOIndex = 0;
}
partialBlock = (unsigned int)(dataByteLen - i);
if (partialBlock + instance->byteIOIndex > rateInBytes)
partialBlock = rateInBytes - instance->byteIOIndex;
i += partialBlock;
_PySHA3_KeccakP1600_ExtractBytes(instance->state, curData,
instance->byteIOIndex, partialBlock);
curData += partialBlock;
instance->byteIOIndex += partialBlock;
}
}
return 0;
}
static int _PySHA3_KeccakWidth1600_SpongeInitialize(
KeccakWidth1600_SpongeInstance *instance, unsigned int rate,
unsigned int capacity) {
if (rate + capacity != 1600) return 1;
if ((rate <= 0) || (rate > 1600) || ((rate % 8) != 0)) return 1;
_PySHA3_KeccakP1600_Initialize(instance->state);
instance->rate = rate;
instance->byteIOIndex = 0;
instance->squeezing = 0;
return 0;
}
static HashReturn _PySHA3_Keccak_HashInitialize(Keccak_HashInstance *instance,
unsigned int rate,
unsigned int capacity,
unsigned int hashbitlen,
unsigned char delimitedSuffix) {
HashReturn result;
if (delimitedSuffix == 0) return FAIL;
result = (HashReturn)_PySHA3_KeccakWidth1600_SpongeInitialize(
&instance->sponge, rate, capacity);
if (result != SUCCESS) return result;
instance->fixedOutputLength = hashbitlen;
instance->delimitedSuffix = delimitedSuffix;
return SUCCESS;
}
static HashReturn _PySHA3_Keccak_HashUpdate(Keccak_HashInstance *instance,
const unsigned char *data,
size_t databitlen) {
if ((databitlen % 8) == 0)
return (HashReturn)_PySHA3_KeccakWidth1600_SpongeAbsorb(
&instance->sponge, data, databitlen / 8);
else {
HashReturn ret = (HashReturn)_PySHA3_KeccakWidth1600_SpongeAbsorb(
&instance->sponge, data, databitlen / 8);
if (ret == SUCCESS) {
unsigned char lastByte = data[databitlen / 8];
unsigned short delimitedLastBytes =
(unsigned short)((unsigned short)lastByte |
((unsigned short)instance->delimitedSuffix
<< (databitlen % 8)));
if ((delimitedLastBytes & 0xFF00) == 0x0000) {
instance->delimitedSuffix = delimitedLastBytes & 0xFF;
} else {
unsigned char oneByte[1];
oneByte[0] = delimitedLastBytes & 0xFF;
ret = (HashReturn)_PySHA3_KeccakWidth1600_SpongeAbsorb(
&instance->sponge, oneByte, 1);
instance->delimitedSuffix = (delimitedLastBytes >> 8) & 0xFF;
}
}
return ret;
}
}
static HashReturn _PySHA3_Keccak_HashFinal(Keccak_HashInstance *instance,
unsigned char *hashval) {
HashReturn ret = (HashReturn)_PySHA3_KeccakWidth1600_SpongeAbsorbLastFewBits(
&instance->sponge, instance->delimitedSuffix);
if (ret == SUCCESS)
return (HashReturn)_PySHA3_KeccakWidth1600_SpongeSqueeze(
&instance->sponge, hashval, instance->fixedOutputLength / 8);
else
return ret;
}
static HashReturn _PySHA3_Keccak_HashSqueeze(Keccak_HashInstance *instance,
unsigned char *data,
size_t databitlen) {
if ((databitlen % 8) != 0) return FAIL;
return (HashReturn)_PySHA3_KeccakWidth1600_SpongeSqueeze(
&instance->sponge, data, databitlen / 8);
}
static void _PySHA3_KeccakP1600_ExtractAndAddBytesInLane(
const void *state, unsigned int lanePosition, const unsigned char *input,
unsigned char *output, unsigned int offset, unsigned int length) {
uint64_t lane = ((uint64_t *)state)[lanePosition];
if ((lanePosition == 1) || (lanePosition == 2) || (lanePosition == 8) ||
(lanePosition == 12) || (lanePosition == 17) || (lanePosition == 20))
lane = ~lane;
{
unsigned int i;
uint64_t lane1[1];
lane1[0] = lane;
for (i = 0; i < length; i++)
output[i] = input[i] ^ ((uint8_t *)lane1)[offset + i];
}
}
static void _PySHA3_KeccakP1600_ExtractAndAddLanes(const void *state,
const unsigned char *input,
unsigned char *output,
unsigned int laneCount) {
unsigned int i;
for (i = 0; i < laneCount; i++) {
((uint64_t *)output)[i] =
((uint64_t *)input)[i] ^ ((const uint64_t *)state)[i];
}
if (laneCount > 1) {
((uint64_t *)output)[1] = ~((uint64_t *)output)[1];
if (laneCount > 2) {
((uint64_t *)output)[2] = ~((uint64_t *)output)[2];
if (laneCount > 8) {
((uint64_t *)output)[8] = ~((uint64_t *)output)[8];
if (laneCount > 12) {
((uint64_t *)output)[12] = ~((uint64_t *)output)[12];
if (laneCount > 17) {
((uint64_t *)output)[17] = ~((uint64_t *)output)[17];
if (laneCount > 20) {
((uint64_t *)output)[20] = ~((uint64_t *)output)[20];
}
}
}
}
}
}
}
static void _PySHA3_KeccakP1600_ExtractAndAddBytes(const void *state,
const unsigned char *input,
unsigned char *output,
unsigned int offset,
unsigned int length) {
if ((offset) == 0) {
_PySHA3_KeccakP1600_ExtractAndAddLanes(state, input, output, (length) / 8);
_PySHA3_KeccakP1600_ExtractAndAddBytesInLane(
state, (length) / 8, (input) + ((length) / 8) * 8,
(output) + ((length) / 8) * 8, 0, (length) % 8);
} else {
unsigned int _sizeLeft = (length);
unsigned int _lanePosition = (offset) / 8;
unsigned int _offsetInLane = (offset) % 8;
const unsigned char *_curInput = (input);
unsigned char *_curOutput = (output);
while (_sizeLeft > 0) {
unsigned int _bytesInLane = 8 - _offsetInLane;
if (_bytesInLane > _sizeLeft) _bytesInLane = _sizeLeft;
_PySHA3_KeccakP1600_ExtractAndAddBytesInLane(state, _lanePosition,
_curInput, _curOutput,
_offsetInLane, _bytesInLane);
_sizeLeft -= _bytesInLane;
_lanePosition++;
_offsetInLane = 0;
_curInput += _bytesInLane;
_curOutput += _bytesInLane;
}
}
}
typedef struct {
PyObject ob_base;
Keccak_HashInstance hash_state;
} SHA3object;
static PyTypeObject SHA3_224type;
static PyTypeObject SHA3_256type;
static PyTypeObject SHA3_384type;
static PyTypeObject SHA3_512type;
static PyTypeObject SHAKE128type;
static PyTypeObject SHAKE256type;
static char _sha3_sha3_224_copy__doc__[] = "copy($self, /)\n"
"--\n"
"\n"
"Return a copy of the hash object.";
static PyObject *_sha3_sha3_224_copy_impl(SHA3object *);
static PyObject *_sha3_sha3_224_copy(SHA3object *self, PyObject *_unused_ignored
__attribute__((unused))) {
return _sha3_sha3_224_copy_impl(self);
}
static char _sha3_sha3_224_digest__doc__[] =
"digest($self, /)\n"
"--\n"
"\n"
"Return the digest value as a bytes object.";
static PyObject *_sha3_sha3_224_digest_impl(SHA3object *);
static PyObject *_sha3_sha3_224_digest(SHA3object *self,
PyObject *_unused_ignored
__attribute__((unused))) {
return _sha3_sha3_224_digest_impl(self);
}
static char _sha3_sha3_224_hexdigest__doc__[] =
"hexdigest($self, /)\n"
"--\n"
"\n"
"Return the digest value as a string of hexadecimal digits.";
static PyObject *_sha3_sha3_224_hexdigest_impl(SHA3object *);
static PyObject *_sha3_sha3_224_hexdigest(SHA3object *self,
PyObject *_unused_ignored
__attribute__((unused))) {
return _sha3_sha3_224_hexdigest_impl(self);
}
static char _sha3_sha3_224_update__doc__[] =
"update($self, data, /)\n"
"--\n"
"\n"
"Update this hash object\'s state with the provided bytes-like object.";
static char _sha3_shake_128_digest__doc__[] =
"digest($self, length, /)\n"
"--\n"
"\n"
"Return the digest value as a bytes object.";
static char _sha3_shake_128_hexdigest__doc__[] =
"hexdigest($self, length, /)\n"
"--\n"
"\n"
"Return the digest value as a string of hexadecimal digits.";
static SHA3object *newSHA3object(PyTypeObject *type) {
SHA3object *newobj;
newobj = PyObject_New(SHA3object, type);
if (!newobj) return 0;
return newobj;
}
static PyObject *py_sha3_new(PyTypeObject *type, PyObject *args,
PyObject *kwargs) {
SHA3object *self = 0;
Py_buffer buf = {0, 0};
HashReturn res;
PyObject *data = 0;
if (!_PyArg_NoKeywords(type->tp_name, kwargs)) {
return 0;
}
if (!PyArg_UnpackTuple(args, type->tp_name, 0, 1, &data)) {
return 0;
}
self = newSHA3object(type);
if (self == 0) {
goto error;
}
if (type == &SHA3_224type) {
res =
_PySHA3_Keccak_HashInitialize(&self->hash_state, 1152, 448, 224, 0x06);
} else if (type == &SHA3_256type) {
res =
_PySHA3_Keccak_HashInitialize(&self->hash_state, 1088, 512, 256, 0x06);
} else if (type == &SHA3_384type) {
res = _PySHA3_Keccak_HashInitialize(&self->hash_state, 832, 768, 384, 0x06);
} else if (type == &SHA3_512type) {
res =
_PySHA3_Keccak_HashInitialize(&self->hash_state, 576, 1024, 512, 0x06);
} else if (type == &SHAKE128type) {
res = _PySHA3_Keccak_HashInitialize(&self->hash_state, 1344, 256, 0, 0x1F);
} else if (type == &SHAKE256type) {
res = _PySHA3_Keccak_HashInitialize(&self->hash_state, 1088, 512, 0, 0x1F);
} else {
PyErr_BadInternalCall();
goto error;
}
if (data) {
do {
if (((((((PyObject *)((data)))->ob_type))->tp_flags & ((1UL << 28))) !=
0)) {
PyErr_SetString(PyExc_TypeError,
"Unicode-objects must be encoded before hashing");
goto error;
}
if (!((((data))->ob_type->tp_as_buffer != 0) &&
(((data))->ob_type->tp_as_buffer->bf_getbuffer != 0))) {
PyErr_SetString(PyExc_TypeError,
"object supporting the buffer API required");
goto error;
}
if (PyObject_GetBuffer((data), (&buf), 0) == -1) {
goto error;
}
if ((&buf)->ndim > 1) {
PyErr_SetString(PyExc_BufferError, "Buffer must be single dimension");
PyBuffer_Release((&buf));
goto error;
}
} while (0);
res = _PySHA3_Keccak_HashUpdate(&self->hash_state, buf.buf, buf.len * 8);
if (res != SUCCESS) {
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 Update()");
goto error;
}
PyBuffer_Release(&buf);
}
return (PyObject *)self;
error:
if (self) {
do {
PyObject *_py_decref_tmp = (PyObject *)(self);
if (--(_py_decref_tmp)->ob_refcnt != 0)
;
else
((*(((PyObject *)(_py_decref_tmp))->ob_type)->tp_dealloc)(
(PyObject *)(_py_decref_tmp)));
} while (0);
}
if (data && buf.obj) {
PyBuffer_Release(&buf);
}
return 0;
}
static void SHA3_dealloc(SHA3object *self) {
PyObject_Free(self);
}
static PyObject *_sha3_sha3_224_copy_impl(SHA3object *self) {
SHA3object *newobj;
if ((newobj = newSHA3object((((PyObject *)(self))->ob_type))) == 0) {
return 0;
}
memcpy(&(newobj->hash_state), &(self->hash_state),
sizeof(Keccak_HashInstance));
return (PyObject *)newobj;
}
static PyObject *_sha3_sha3_224_digest_impl(SHA3object *self) {
unsigned char digest[64 + (20 * 8)];
Keccak_HashInstance temp;
HashReturn res;
memcpy(&(temp), &(self->hash_state), sizeof(Keccak_HashInstance));
res = _PySHA3_Keccak_HashFinal(&temp, digest);
if (res != SUCCESS) {
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 Final()");
return 0;
}
return PyBytes_FromStringAndSize((const char *)digest,
self->hash_state.fixedOutputLength / 8);
}
static PyObject *_sha3_sha3_224_hexdigest_impl(SHA3object *self) {
unsigned char digest[64 + (20 * 8)];
Keccak_HashInstance temp;
HashReturn res;
memcpy(&(temp), &(self->hash_state), sizeof(Keccak_HashInstance));
res = _PySHA3_Keccak_HashFinal(&temp, digest);
if (res != SUCCESS) {
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 Final()");
return 0;
}
return _Py_strhex((const char *)digest,
self->hash_state.fixedOutputLength / 8);
}
static PyObject *_sha3_sha3_224_update(SHA3object *self, PyObject *data) {
Py_buffer buf;
HashReturn res;
do {
if (((((((PyObject *)((data)))->ob_type))->tp_flags & ((1UL << 28))) !=
0)) {
PyErr_SetString(PyExc_TypeError,
"Unicode-objects must be encoded before hashing");
return 0;
}
if (!((((data))->ob_type->tp_as_buffer != 0) &&
(((data))->ob_type->tp_as_buffer->bf_getbuffer != 0))) {
PyErr_SetString(PyExc_TypeError,
"object supporting the buffer API required");
return 0;
}
if (PyObject_GetBuffer((data), (&buf), 0) == -1) {
return 0;
}
if ((&buf)->ndim > 1) {
PyErr_SetString(PyExc_BufferError, "Buffer must be single dimension");
PyBuffer_Release((&buf));
return 0;
}
} while (0);
res = _PySHA3_Keccak_HashUpdate(&self->hash_state, buf.buf, buf.len * 8);
if (res != SUCCESS) {
PyBuffer_Release(&buf);
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 Update()");
return 0;
}
PyBuffer_Release(&buf);
(((PyObject *)((&_Py_NoneStruct)))->ob_refcnt++);
return (&_Py_NoneStruct);
}
static PyMethodDef SHA3_methods[] = {
{"copy", (PyCFunction)_sha3_sha3_224_copy, 0x0004,
_sha3_sha3_224_copy__doc__},
{"digest", (PyCFunction)_sha3_sha3_224_digest, 0x0004,
_sha3_sha3_224_digest__doc__},
{"hexdigest", (PyCFunction)_sha3_sha3_224_hexdigest, 0x0004,
_sha3_sha3_224_hexdigest__doc__},
{"update", (PyCFunction)_sha3_sha3_224_update, 0x0008,
_sha3_sha3_224_update__doc__},
{0},
};
static PyObject *SHA3_get_block_size(SHA3object *self, void *closure) {
int rate = self->hash_state.sponge.rate;
return PyLong_FromLong(rate / 8);
}
static PyObject *SHA3_get_name(SHA3object *self, void *closure) {
PyTypeObject *type = (((PyObject *)(self))->ob_type);
if (type == &SHA3_224type) {
return PyUnicode_FromString("sha3_224");
} else if (type == &SHA3_256type) {
return PyUnicode_FromString("sha3_256");
} else if (type == &SHA3_384type) {
return PyUnicode_FromString("sha3_384");
} else if (type == &SHA3_512type) {
return PyUnicode_FromString("sha3_512");
} else if (type == &SHAKE128type) {
return PyUnicode_FromString("shake_128");
} else if (type == &SHAKE256type) {
return PyUnicode_FromString("shake_256");
} else {
PyErr_BadInternalCall();
return 0;
}
}
static PyObject *SHA3_get_digest_size(SHA3object *self, void *closure) {
return PyLong_FromLong(self->hash_state.fixedOutputLength / 8);
}
static PyObject *SHA3_get_capacity_bits(SHA3object *self, void *closure) {
int capacity = 1600 - self->hash_state.sponge.rate;
return PyLong_FromLong(capacity);
}
static PyObject *SHA3_get_rate_bits(SHA3object *self, void *closure) {
unsigned int rate = self->hash_state.sponge.rate;
return PyLong_FromLong(rate);
}
static PyObject *SHA3_get_suffix(SHA3object *self, void *closure) {
unsigned char suffix[2];
suffix[0] = self->hash_state.delimitedSuffix;
suffix[1] = 0;
return PyBytes_FromStringAndSize((const char *)suffix, 1);
}
static PyGetSetDef SHA3_getseters[] = {
{"block_size", (getter)SHA3_get_block_size},
{"name", (getter)SHA3_get_name},
{"digest_size", (getter)SHA3_get_digest_size},
{"_capacity_bits", (getter)SHA3_get_capacity_bits},
{"_rate_bits", (getter)SHA3_get_rate_bits},
{"_suffix", (getter)SHA3_get_suffix},
{0},
};
static char sha3_224__doc__[] =
"sha3_224([data]) -> SHA3 object\n\nReturn a new SHA3 hash object with a "
"hashbit length of 28 bytes.";
static char sha3_256__doc__[] =
"sha3_256([data]) -> SHA3 object\n\nReturn a new SHA3 hash object with a "
"hashbit length of 32 bytes.";
static char sha3_384__doc__[] =
"sha3_384([data]) -> SHA3 object\n\nReturn a new SHA3 hash object with a "
"hashbit length of 48 bytes.";
static char sha3_512__doc__[] =
"sha3_512([data]) -> SHA3 object\n\nReturn a new SHA3 hash object with a "
"hashbit length of 64 bytes.";
static PyTypeObject SHA3_224type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.sha3_224",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
sha3_224__doc__,
0,
0,
0,
0,
0,
0,
SHA3_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static PyTypeObject SHA3_256type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.sha3_256",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
sha3_256__doc__,
0,
0,
0,
0,
0,
0,
SHA3_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static PyTypeObject SHA3_384type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.sha3_384",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
sha3_384__doc__,
0,
0,
0,
0,
0,
0,
SHA3_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static PyTypeObject SHA3_512type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.sha3_512",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
sha3_512__doc__,
0,
0,
0,
0,
0,
0,
SHA3_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static PyObject *_SHAKE_digest(SHA3object *self, PyObject *digestlen_obj,
int hex) {
unsigned long digestlen;
unsigned char *digest = 0;
Keccak_HashInstance temp;
int res;
PyObject *result = 0;
digestlen = PyLong_AsUnsignedLong(digestlen_obj);
if (digestlen == (unsigned long)-1 && PyErr_Occurred()) {
return 0;
}
if (digestlen >= (1 << 29)) {
PyErr_SetString(PyExc_ValueError, "length is too large");
return 0;
}
digest = (unsigned char *)PyMem_Malloc(digestlen + (20 * 8));
if (digest == 0) {
return PyErr_NoMemory();
}
memcpy(&(temp), &(self->hash_state), sizeof(Keccak_HashInstance));
res = _PySHA3_Keccak_HashFinal(&temp, 0);
if (res != SUCCESS) {
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 done()");
goto error;
}
res = _PySHA3_Keccak_HashSqueeze(&temp, digest, digestlen * 8);
if (res != SUCCESS) {
PyErr_SetString(PyExc_RuntimeError, "internal error in SHA3 Squeeze()");
return 0;
}
if (hex) {
result = _Py_strhex((const char *)digest, digestlen);
} else {
result = PyBytes_FromStringAndSize((const char *)digest, digestlen);
}
error:
if (digest != 0) {
PyMem_Free(digest);
}
return result;
}
static PyObject *_sha3_shake_128_digest(SHA3object *self, PyObject *length) {
return _SHAKE_digest(self, length, 0);
}
static PyObject *_sha3_shake_128_hexdigest(SHA3object *self, PyObject *length) {
return _SHAKE_digest(self, length, 1);
}
static PyMethodDef SHAKE_methods[] = {
{"copy", (PyCFunction)_sha3_sha3_224_copy, 0x0004,
_sha3_sha3_224_copy__doc__},
{"digest", (PyCFunction)_sha3_shake_128_digest, 0x0008,
_sha3_shake_128_digest__doc__},
{"hexdigest", (PyCFunction)_sha3_shake_128_hexdigest, 0x0008,
_sha3_shake_128_hexdigest__doc__},
{"update", (PyCFunction)_sha3_sha3_224_update, 0x0008,
_sha3_sha3_224_update__doc__},
{0, 0}};
static char shake_128__doc__[] =
"shake_128([data]) -> SHAKE object\n\nReturn a new SHAKE hash object.";
static char shake_256__doc__[] =
"shake_256([data]) -> SHAKE object\n\nReturn a new SHAKE hash object.";
static PyTypeObject SHAKE128type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.shake_128",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
shake_128__doc__,
0,
0,
0,
0,
0,
0,
SHAKE_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static PyTypeObject SHAKE256type = {
PyVarObject_HEAD_INIT(NULL, 0) "_sha3.shake_256",
sizeof(SHA3object),
0,
(destructor)SHA3_dealloc,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
(0 | (1UL << 18) | 0),
shake_256__doc__,
0,
0,
0,
0,
0,
0,
SHAKE_methods,
0,
SHA3_getseters,
0,
0,
0,
0,
0,
0,
0,
py_sha3_new,
};
static struct PyModuleDef _SHA3module = {PyModuleDef_HEAD_INIT, "_sha3", 0, -1};
PyObject *PyInit__sha3(void) {
PyObject *m = 0;
if ((m = PyModule_Create2(&_SHA3module, 1013)) == 0) {
return 0;
}
do {
(((PyObject *)(&SHA3_224type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHA3_224type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHA3_224type))->ob_refcnt++);
if (PyModule_AddObject(m, "sha3_224", (PyObject *)&SHA3_224type) < 0) {
goto error;
}
} while (0);
do {
(((PyObject *)(&SHA3_256type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHA3_256type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHA3_256type))->ob_refcnt++);
if (PyModule_AddObject(m, "sha3_256", (PyObject *)&SHA3_256type) < 0) {
goto error;
}
} while (0);
do {
(((PyObject *)(&SHA3_384type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHA3_384type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHA3_384type))->ob_refcnt++);
if (PyModule_AddObject(m, "sha3_384", (PyObject *)&SHA3_384type) < 0) {
goto error;
}
} while (0);
do {
(((PyObject *)(&SHA3_512type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHA3_512type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHA3_512type))->ob_refcnt++);
if (PyModule_AddObject(m, "sha3_512", (PyObject *)&SHA3_512type) < 0) {
goto error;
}
} while (0);
do {
(((PyObject *)(&SHAKE128type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHAKE128type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHAKE128type))->ob_refcnt++);
if (PyModule_AddObject(m, "shake_128", (PyObject *)&SHAKE128type) < 0) {
goto error;
}
} while (0);
do {
(((PyObject *)(&SHAKE256type))->ob_type) = &PyType_Type;
if (PyType_Ready(&SHAKE256type) < 0) {
goto error;
}
(((PyObject *)((PyObject *)&SHAKE256type))->ob_refcnt++);
if (PyModule_AddObject(m, "shake_256", (PyObject *)&SHAKE256type) < 0) {
goto error;
}
} while (0);
if (PyModule_AddIntConstant(m, "keccakopt", 64) < 0) {
goto error;
}
if (PyModule_AddStringConstant(m, "implementation",
"generic 64-bit optimized implementation ("
"lane complementing, all rounds unrolled"
")") < 0) {
goto error;
}
return m;
error:
do {
PyObject *_py_decref_tmp = (PyObject *)(m);
if (--(_py_decref_tmp)->ob_refcnt != 0)
;
else
((*(((PyObject *)(_py_decref_tmp))->ob_type)->tp_dealloc)(
(PyObject *)(_py_decref_tmp)));
} while (0);
return 0;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__sha3 = {
"_sha3",
PyInit__sha3,
};
| 258,211 | 7,987 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/mmapmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/calls/calls.h"
#include "libc/calls/weirdtypes.h"
#include "libc/mem/mem.h"
#include "libc/runtime/sysconf.h"
#include "libc/sysv/consts/map.h"
#include "libc/sysv/consts/msync.h"
#include "libc/sysv/consts/prot.h"
#include "libc/sysv/consts/s.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/sliceobject.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("mmap");
PYTHON_PROVIDE("mmap.ACCESS_COPY");
PYTHON_PROVIDE("mmap.ACCESS_READ");
PYTHON_PROVIDE("mmap.ACCESS_WRITE");
PYTHON_PROVIDE("mmap.ALLOCATIONGRANULARITY");
PYTHON_PROVIDE("mmap.MAP_ANON");
PYTHON_PROVIDE("mmap.MAP_ANONYMOUS");
PYTHON_PROVIDE("mmap.MAP_DENYWRITE");
PYTHON_PROVIDE("mmap.MAP_EXECUTABLE");
PYTHON_PROVIDE("mmap.MAP_PRIVATE");
PYTHON_PROVIDE("mmap.MAP_SHARED");
PYTHON_PROVIDE("mmap.PAGESIZE");
PYTHON_PROVIDE("mmap.PROT_EXEC");
PYTHON_PROVIDE("mmap.PROT_READ");
PYTHON_PROVIDE("mmap.PROT_WRITE");
PYTHON_PROVIDE("mmap.error");
PYTHON_PROVIDE("mmap.mmap");
/*
/ Author: Sam Rushing <[email protected]>
/ Hacked for Unix by AMK
/ $Id$
/ Modified to support mmap with offset - to map a 'window' of a file
/ Author: Yotam Medini [email protected]
/
/ mmapmodule.cpp -- map a view of a file into memory
/
/ todo: need permission flags, perhaps a 'chsize' analog
/ not all functions check range yet!!!
/
/
/ This version of mmapmodule.c has been changed significantly
/ from the original mmapfile.c on which it was based.
/ The original version of mmapfile is maintained by Sam at
/ ftp://squirl.nightmare.com/pub/python/python-ext.
*/
#define UNIX
#ifdef UNIX
#if defined(HAVE_SYSCONF) && defined(_SC_PAGESIZE)
static int
my_getpagesize(void)
{
return sysconf(_SC_PAGESIZE);
}
#define my_getallocationgranularity my_getpagesize
#else
#define my_getpagesize getpagesize
#endif
#endif /* UNIX */
typedef enum
{
ACCESS_DEFAULT,
ACCESS_READ,
ACCESS_WRITE,
ACCESS_COPY
} access_mode;
typedef struct {
PyObject_HEAD
char * data;
Py_ssize_t size;
Py_ssize_t pos; /* relative to offset */
#ifdef MS_WINDOWS
long long offset;
#else
off_t offset;
#endif
int exports;
#ifdef MS_WINDOWS
HANDLE map_handle;
HANDLE file_handle;
char * tagname;
#endif
#ifdef UNIX
int fd;
#endif
PyObject *weakreflist;
access_mode access;
} mmap_object;
static void
mmap_object_dealloc(mmap_object *m_obj)
{
#ifdef MS_WINDOWS
if (m_obj->data != NULL)
UnmapViewOfFile (m_obj->data);
if (m_obj->map_handle != NULL)
CloseHandle (m_obj->map_handle);
if (m_obj->file_handle != INVALID_HANDLE_VALUE)
CloseHandle (m_obj->file_handle);
if (m_obj->tagname)
PyMem_Free(m_obj->tagname);
#endif /* MS_WINDOWS */
#ifdef UNIX
if (m_obj->fd >= 0)
(void) close(m_obj->fd);
if (m_obj->data!=NULL) {
munmap(m_obj->data, m_obj->size);
}
#endif /* UNIX */
if (m_obj->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) m_obj);
Py_TYPE(m_obj)->tp_free((PyObject*)m_obj);
}
static PyObject *
mmap_close_method(mmap_object *self, PyObject *unused)
{
if (self->exports > 0) {
PyErr_SetString(PyExc_BufferError, "cannot close "\
"exported pointers exist");
return NULL;
}
#ifdef MS_WINDOWS
/* For each resource we maintain, we need to check
the value is valid, and if so, free the resource
and set the member value to an invalid value so
the dealloc does not attempt to resource clearing
again.
TODO - should we check for errors in the close operations???
*/
if (self->data != NULL) {
UnmapViewOfFile(self->data);
self->data = NULL;
}
if (self->map_handle != NULL) {
CloseHandle(self->map_handle);
self->map_handle = NULL;
}
if (self->file_handle != INVALID_HANDLE_VALUE) {
CloseHandle(self->file_handle);
self->file_handle = INVALID_HANDLE_VALUE;
}
#endif /* MS_WINDOWS */
#ifdef UNIX
if (0 <= self->fd)
(void) close(self->fd);
self->fd = -1;
if (self->data != NULL) {
munmap(self->data, self->size);
self->data = NULL;
}
#endif
Py_INCREF(Py_None);
return Py_None;
}
#ifdef MS_WINDOWS
#define CHECK_VALID(err) \
do { \
if (self->map_handle == NULL) { \
PyErr_SetString(PyExc_ValueError, "mmap closed or invalid"); \
return err; \
} \
} while (0)
#endif /* MS_WINDOWS */
#ifdef UNIX
#define CHECK_VALID(err) \
do { \
if (self->data == NULL) { \
PyErr_SetString(PyExc_ValueError, "mmap closed or invalid"); \
return err; \
} \
} while (0)
#endif /* UNIX */
static PyObject *
mmap_read_byte_method(mmap_object *self,
PyObject *unused)
{
CHECK_VALID(NULL);
if (self->pos >= self->size) {
PyErr_SetString(PyExc_ValueError, "read byte out of range");
return NULL;
}
return PyLong_FromLong((unsigned char)self->data[self->pos++]);
}
static PyObject *
mmap_read_line_method(mmap_object *self,
PyObject *unused)
{
Py_ssize_t remaining;
char *start, *eol;
PyObject *result;
CHECK_VALID(NULL);
remaining = (self->pos < self->size) ? self->size - self->pos : 0;
if (!remaining)
return PyBytes_FromString("");
start = self->data + self->pos;
eol = memchr(start, '\n', remaining);
if (!eol)
eol = self->data + self->size;
else
++eol; /* advance past newline */
result = PyBytes_FromStringAndSize(start, (eol - start));
self->pos += (eol - start);
return result;
}
/* Basically the "n" format code with the ability to turn None into -1. */
static int
mmap_convert_ssize_t(PyObject *obj, void *result) {
Py_ssize_t limit;
if (obj == Py_None) {
limit = -1;
}
else if (PyNumber_Check(obj)) {
limit = PyNumber_AsSsize_t(obj, PyExc_OverflowError);
if (limit == -1 && PyErr_Occurred())
return 0;
}
else {
PyErr_Format(PyExc_TypeError,
"integer argument expected, got '%.200s'",
Py_TYPE(obj)->tp_name);
return 0;
}
*((Py_ssize_t *)result) = limit;
return 1;
}
static PyObject *
mmap_read_method(mmap_object *self,
PyObject *args)
{
Py_ssize_t num_bytes = PY_SSIZE_T_MAX, remaining;
PyObject *result;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "|O&:read", mmap_convert_ssize_t, &num_bytes))
return(NULL);
/* silently 'adjust' out-of-range requests */
remaining = (self->pos < self->size) ? self->size - self->pos : 0;
if (num_bytes < 0 || num_bytes > remaining)
num_bytes = remaining;
result = PyBytes_FromStringAndSize(&self->data[self->pos], num_bytes);
self->pos += num_bytes;
return result;
}
static PyObject *
mmap_gfind(mmap_object *self,
PyObject *args,
int reverse)
{
Py_ssize_t start = self->pos;
Py_ssize_t end = self->size;
Py_buffer view;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, reverse ? "y*|nn:rfind" : "y*|nn:find",
&view, &start, &end)) {
return NULL;
} else {
const char *p, *start_p, *end_p;
int sign = reverse ? -1 : 1;
const char *needle = view.buf;
Py_ssize_t len = view.len;
if (start < 0)
start += self->size;
if (start < 0)
start = 0;
else if (start > self->size)
start = self->size;
if (end < 0)
end += self->size;
if (end < 0)
end = 0;
else if (end > self->size)
end = self->size;
start_p = self->data + start;
end_p = self->data + end;
for (p = (reverse ? end_p - len : start_p);
(p >= start_p) && (p + len <= end_p); p += sign) {
Py_ssize_t i;
for (i = 0; i < len && needle[i] == p[i]; ++i)
/* nothing */;
if (i == len) {
PyBuffer_Release(&view);
return PyLong_FromSsize_t(p - self->data);
}
}
PyBuffer_Release(&view);
return PyLong_FromLong(-1);
}
}
static PyObject *
mmap_find_method(mmap_object *self,
PyObject *args)
{
return mmap_gfind(self, args, 0);
}
static PyObject *
mmap_rfind_method(mmap_object *self,
PyObject *args)
{
return mmap_gfind(self, args, 1);
}
static int
is_writable(mmap_object *self)
{
if (self->access != ACCESS_READ)
return 1;
PyErr_Format(PyExc_TypeError, "mmap can't modify a readonly memory map.");
return 0;
}
static int
is_resizeable(mmap_object *self)
{
if (self->exports > 0) {
PyErr_SetString(PyExc_BufferError,
"mmap can't resize with extant buffers exported.");
return 0;
}
if ((self->access == ACCESS_WRITE) || (self->access == ACCESS_DEFAULT))
return 1;
PyErr_Format(PyExc_TypeError,
"mmap can't resize a readonly or copy-on-write memory map.");
return 0;
}
static PyObject *
mmap_write_method(mmap_object *self,
PyObject *args)
{
Py_buffer data;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "y*:write", &data))
return(NULL);
if (!is_writable(self)) {
PyBuffer_Release(&data);
return NULL;
}
if (self->pos > self->size || self->size - self->pos < data.len) {
PyBuffer_Release(&data);
PyErr_SetString(PyExc_ValueError, "data out of range");
return NULL;
}
memcpy(&self->data[self->pos], data.buf, data.len);
self->pos += data.len;
PyBuffer_Release(&data);
return PyLong_FromSsize_t(data.len);
}
static PyObject *
mmap_write_byte_method(mmap_object *self,
PyObject *args)
{
char value;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "b:write_byte", &value))
return(NULL);
if (!is_writable(self))
return NULL;
if (self->pos < self->size) {
self->data[self->pos++] = value;
Py_INCREF(Py_None);
return Py_None;
}
else {
PyErr_SetString(PyExc_ValueError, "write byte out of range");
return NULL;
}
}
static PyObject *
mmap_size_method(mmap_object *self,
PyObject *unused)
{
CHECK_VALID(NULL);
#ifdef MS_WINDOWS
if (self->file_handle != INVALID_HANDLE_VALUE) {
DWORD low,high;
long long size;
low = GetFileSize(self->file_handle, &high);
if (low == INVALID_FILE_SIZE) {
/* It might be that the function appears to have failed,
when indeed its size equals INVALID_FILE_SIZE */
DWORD error = GetLastError();
if (error != NO_ERROR)
return PyErr_SetFromWindowsErr(error);
}
if (!high && low < LONG_MAX)
return PyLong_FromLong((long)low);
size = (((long long)high)<<32) + low;
return PyLong_FromLongLong(size);
} else {
return PyLong_FromSsize_t(self->size);
}
#endif /* MS_WINDOWS */
#ifdef UNIX
{
struct _Py_stat_struct status;
if (_Py_fstat(self->fd, &status) == -1)
return NULL;
#ifdef HAVE_LARGEFILE_SUPPORT
return PyLong_FromLongLong(status.st_size);
#else
return PyLong_FromLong(status.st_size);
#endif
}
#endif /* UNIX */
}
/* This assumes that you want the entire file mapped,
/ and when recreating the map will make the new file
/ have the new size
/
/ Is this really necessary? This could easily be done
/ from python by just closing and re-opening with the
/ new size?
*/
static PyObject *
mmap_resize_method(mmap_object *self,
PyObject *args)
{
Py_ssize_t new_size;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "n:resize", &new_size) ||
!is_resizeable(self)) {
return NULL;
}
if (new_size < 0 || PY_SSIZE_T_MAX - new_size < self->offset) {
PyErr_SetString(PyExc_ValueError, "new size out of range");
return NULL;
}
{
#ifdef MS_WINDOWS
DWORD dwErrCode = 0;
DWORD off_hi, off_lo, newSizeLow, newSizeHigh;
/* First, unmap the file view */
UnmapViewOfFile(self->data);
self->data = NULL;
/* Close the mapping object */
CloseHandle(self->map_handle);
self->map_handle = NULL;
/* Move to the desired EOF position */
newSizeHigh = (DWORD)((self->offset + new_size) >> 32);
newSizeLow = (DWORD)((self->offset + new_size) & 0xFFFFFFFF);
off_hi = (DWORD)(self->offset >> 32);
off_lo = (DWORD)(self->offset & 0xFFFFFFFF);
SetFilePointer(self->file_handle,
newSizeLow, &newSizeHigh, FILE_BEGIN);
/* Change the size of the file */
SetEndOfFile(self->file_handle);
/* Create another mapping object and remap the file view */
self->map_handle = CreateFileMapping(
self->file_handle,
NULL,
PAGE_READWRITE,
0,
0,
self->tagname);
if (self->map_handle != NULL) {
self->data = (char *) MapViewOfFile(self->map_handle,
FILE_MAP_WRITE,
off_hi,
off_lo,
new_size);
if (self->data != NULL) {
self->size = new_size;
Py_INCREF(Py_None);
return Py_None;
} else {
dwErrCode = GetLastError();
CloseHandle(self->map_handle);
self->map_handle = NULL;
}
} else {
dwErrCode = GetLastError();
}
PyErr_SetFromWindowsErr(dwErrCode);
return NULL;
#endif /* MS_WINDOWS */
#ifdef UNIX
#ifndef HAVE_MREMAP
PyErr_SetString(PyExc_SystemError,
"mmap: resizing not available--no mremap()");
return NULL;
#else
void *newmap;
if (self->fd != -1 && ftruncate(self->fd, self->offset + new_size) == -1) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
#ifdef MREMAP_MAYMOVE
newmap = mremap(self->data, self->size, new_size, MREMAP_MAYMOVE);
#else
#if defined(__NetBSD__)
newmap = mremap(self->data, self->size, self->data, new_size, 0);
#else
newmap = mremap(self->data, self->size, new_size, 0);
#endif /* __NetBSD__ */
#endif
if (newmap == (void *)-1)
{
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
self->data = newmap;
self->size = new_size;
Py_INCREF(Py_None);
return Py_None;
#endif /* HAVE_MREMAP */
#endif /* UNIX */
}
}
static PyObject *
mmap_tell_method(mmap_object *self, PyObject *unused)
{
CHECK_VALID(NULL);
return PyLong_FromSize_t(self->pos);
}
static PyObject *
mmap_flush_method(mmap_object *self, PyObject *args)
{
Py_ssize_t offset = 0;
Py_ssize_t size = self->size;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "|nn:flush", &offset, &size))
return NULL;
if (size < 0 || offset < 0 || self->size - offset < size) {
PyErr_SetString(PyExc_ValueError, "flush values out of range");
return NULL;
}
if (self->access == ACCESS_READ || self->access == ACCESS_COPY)
return PyLong_FromLong(0);
#ifdef MS_WINDOWS
return PyLong_FromLong((long) FlushViewOfFile(self->data+offset, size));
#elif defined(UNIX)
/* XXX semantics of return value? */
/* XXX flags for msync? */
if (-1 == msync(self->data + offset, size, MS_SYNC)) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
return PyLong_FromLong(0);
#else
PyErr_SetString(PyExc_ValueError, "flush not supported on this system");
return NULL;
#endif
}
static PyObject *
mmap_seek_method(mmap_object *self, PyObject *args)
{
Py_ssize_t dist;
int how=0;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "n|i:seek", &dist, &how))
return NULL;
else {
Py_ssize_t where;
switch (how) {
case 0: /* relative to start */
where = dist;
break;
case 1: /* relative to current position */
if (PY_SSIZE_T_MAX - self->pos < dist)
goto onoutofrange;
where = self->pos + dist;
break;
case 2: /* relative to end */
if (PY_SSIZE_T_MAX - self->size < dist)
goto onoutofrange;
where = self->size + dist;
break;
default:
PyErr_SetString(PyExc_ValueError, "unknown seek type");
return NULL;
}
if (where > self->size || where < 0)
goto onoutofrange;
self->pos = where;
Py_INCREF(Py_None);
return Py_None;
}
onoutofrange:
PyErr_SetString(PyExc_ValueError, "seek out of range");
return NULL;
}
static PyObject *
mmap_move_method(mmap_object *self, PyObject *args)
{
Py_ssize_t dest, src, cnt;
CHECK_VALID(NULL);
if (!PyArg_ParseTuple(args, "nnn:move", &dest, &src, &cnt) ||
!is_writable(self)) {
return NULL;
} else {
/* bounds check the values */
if (dest < 0 || src < 0 || cnt < 0)
goto bounds;
if (self->size - dest < cnt || self->size - src < cnt)
goto bounds;
memmove(&self->data[dest], &self->data[src], cnt);
Py_INCREF(Py_None);
return Py_None;
bounds:
PyErr_SetString(PyExc_ValueError,
"source, destination, or count out of range");
return NULL;
}
}
static PyObject *
mmap_closed_get(mmap_object *self, void *Py_UNUSED(ignored))
{
#ifdef MS_WINDOWS
return PyBool_FromLong(self->map_handle == NULL ? 1 : 0);
#elif defined(UNIX)
return PyBool_FromLong(self->data == NULL ? 1 : 0);
#endif
}
static PyObject *
mmap__enter__method(mmap_object *self, PyObject *args)
{
CHECK_VALID(NULL);
Py_INCREF(self);
return (PyObject *)self;
}
static PyObject *
mmap__exit__method(PyObject *self, PyObject *args)
{
_Py_IDENTIFIER(close);
return _PyObject_CallMethodId(self, &PyId_close, NULL);
}
#ifdef MS_WINDOWS
static PyObject *
mmap__sizeof__method(mmap_object *self, void *unused)
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(self));
if (self->tagname)
res += strlen(self->tagname) + 1;
return PyLong_FromSsize_t(res);
}
#endif
static struct PyMethodDef mmap_object_methods[] = {
{"close", (PyCFunction) mmap_close_method, METH_NOARGS},
{"find", (PyCFunction) mmap_find_method, METH_VARARGS},
{"rfind", (PyCFunction) mmap_rfind_method, METH_VARARGS},
{"flush", (PyCFunction) mmap_flush_method, METH_VARARGS},
{"move", (PyCFunction) mmap_move_method, METH_VARARGS},
{"read", (PyCFunction) mmap_read_method, METH_VARARGS},
{"read_byte", (PyCFunction) mmap_read_byte_method, METH_NOARGS},
{"readline", (PyCFunction) mmap_read_line_method, METH_NOARGS},
{"resize", (PyCFunction) mmap_resize_method, METH_VARARGS},
{"seek", (PyCFunction) mmap_seek_method, METH_VARARGS},
{"size", (PyCFunction) mmap_size_method, METH_NOARGS},
{"tell", (PyCFunction) mmap_tell_method, METH_NOARGS},
{"write", (PyCFunction) mmap_write_method, METH_VARARGS},
{"write_byte", (PyCFunction) mmap_write_byte_method, METH_VARARGS},
{"__enter__", (PyCFunction) mmap__enter__method, METH_NOARGS},
{"__exit__", (PyCFunction) mmap__exit__method, METH_VARARGS},
#ifdef MS_WINDOWS
{"__sizeof__", (PyCFunction) mmap__sizeof__method, METH_NOARGS},
#endif
{NULL, NULL} /* sentinel */
};
static PyGetSetDef mmap_object_getset[] = {
{"closed", (getter) mmap_closed_get, NULL, NULL},
{NULL}
};
/* Functions for treating an mmap'ed file as a buffer */
static int
mmap_buffer_getbuf(mmap_object *self, Py_buffer *view, int flags)
{
CHECK_VALID(-1);
if (PyBuffer_FillInfo(view, (PyObject*)self, self->data, self->size,
(self->access == ACCESS_READ), flags) < 0)
return -1;
self->exports++;
return 0;
}
static void
mmap_buffer_releasebuf(mmap_object *self, Py_buffer *view)
{
self->exports--;
}
static Py_ssize_t
mmap_length(mmap_object *self)
{
CHECK_VALID(-1);
return self->size;
}
static PyObject *
mmap_item(mmap_object *self, Py_ssize_t i)
{
CHECK_VALID(NULL);
if (i < 0 || i >= self->size) {
PyErr_SetString(PyExc_IndexError, "mmap index out of range");
return NULL;
}
return PyBytes_FromStringAndSize(self->data + i, 1);
}
static PyObject *
mmap_subscript(mmap_object *self, PyObject *item)
{
CHECK_VALID(NULL);
if (PyIndex_Check(item)) {
Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
if (i == -1 && PyErr_Occurred())
return NULL;
if (i < 0)
i += self->size;
if (i < 0 || i >= self->size) {
PyErr_SetString(PyExc_IndexError,
"mmap index out of range");
return NULL;
}
return PyLong_FromLong(Py_CHARMASK(self->data[i]));
}
else if (PySlice_Check(item)) {
Py_ssize_t start, stop, step, slicelen;
if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
return NULL;
}
slicelen = PySlice_AdjustIndices(self->size, &start, &stop, step);
if (slicelen <= 0)
return PyBytes_FromStringAndSize("", 0);
else if (step == 1)
return PyBytes_FromStringAndSize(self->data + start,
slicelen);
else {
char *result_buf = (char *)PyMem_Malloc(slicelen);
Py_ssize_t cur, i;
PyObject *result;
if (result_buf == NULL)
return PyErr_NoMemory();
for (cur = start, i = 0; i < slicelen;
cur += step, i++) {
result_buf[i] = self->data[cur];
}
result = PyBytes_FromStringAndSize(result_buf,
slicelen);
PyMem_Free(result_buf);
return result;
}
}
else {
PyErr_SetString(PyExc_TypeError,
"mmap indices must be integers");
return NULL;
}
}
static int
mmap_ass_item(mmap_object *self, Py_ssize_t i, PyObject *v)
{
const char *buf;
CHECK_VALID(-1);
if (i < 0 || i >= self->size) {
PyErr_SetString(PyExc_IndexError, "mmap index out of range");
return -1;
}
if (v == NULL) {
PyErr_SetString(PyExc_TypeError,
"mmap object doesn't support item deletion");
return -1;
}
if (! (PyBytes_Check(v) && PyBytes_Size(v)==1) ) {
PyErr_SetString(PyExc_IndexError,
"mmap assignment must be length-1 bytes()");
return -1;
}
if (!is_writable(self))
return -1;
buf = PyBytes_AsString(v);
self->data[i] = buf[0];
return 0;
}
static int
mmap_ass_subscript(mmap_object *self, PyObject *item, PyObject *value)
{
CHECK_VALID(-1);
if (!is_writable(self))
return -1;
if (PyIndex_Check(item)) {
Py_ssize_t i = PyNumber_AsSsize_t(item, PyExc_IndexError);
Py_ssize_t v;
if (i == -1 && PyErr_Occurred())
return -1;
if (i < 0)
i += self->size;
if (i < 0 || i >= self->size) {
PyErr_SetString(PyExc_IndexError,
"mmap index out of range");
return -1;
}
if (value == NULL) {
PyErr_SetString(PyExc_TypeError,
"mmap doesn't support item deletion");
return -1;
}
if (!PyIndex_Check(value)) {
PyErr_SetString(PyExc_TypeError,
"mmap item value must be an int");
return -1;
}
v = PyNumber_AsSsize_t(value, PyExc_TypeError);
if (v == -1 && PyErr_Occurred())
return -1;
if (v < 0 || v > 255) {
PyErr_SetString(PyExc_ValueError,
"mmap item value must be "
"in range(0, 256)");
return -1;
}
self->data[i] = (char) v;
return 0;
}
else if (PySlice_Check(item)) {
Py_ssize_t start, stop, step, slicelen;
Py_buffer vbuf;
if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
return -1;
}
slicelen = PySlice_AdjustIndices(self->size, &start, &stop, step);
if (value == NULL) {
PyErr_SetString(PyExc_TypeError,
"mmap object doesn't support slice deletion");
return -1;
}
if (PyObject_GetBuffer(value, &vbuf, PyBUF_SIMPLE) < 0)
return -1;
if (vbuf.len != slicelen) {
PyErr_SetString(PyExc_IndexError,
"mmap slice assignment is wrong size");
PyBuffer_Release(&vbuf);
return -1;
}
if (slicelen == 0) {
}
else if (step == 1) {
memcpy(self->data + start, vbuf.buf, slicelen);
}
else {
Py_ssize_t cur, i;
for (cur = start, i = 0;
i < slicelen;
cur += step, i++)
{
self->data[cur] = ((char *)vbuf.buf)[i];
}
}
PyBuffer_Release(&vbuf);
return 0;
}
else {
PyErr_SetString(PyExc_TypeError,
"mmap indices must be integer");
return -1;
}
}
static PySequenceMethods mmap_as_sequence = {
(lenfunc)mmap_length, /*sq_length*/
0, /*sq_concat*/
0, /*sq_repeat*/
(ssizeargfunc)mmap_item, /*sq_item*/
0, /*sq_slice*/
(ssizeobjargproc)mmap_ass_item, /*sq_ass_item*/
0, /*sq_ass_slice*/
};
static PyMappingMethods mmap_as_mapping = {
(lenfunc)mmap_length,
(binaryfunc)mmap_subscript,
(objobjargproc)mmap_ass_subscript,
};
static PyBufferProcs mmap_as_buffer = {
(getbufferproc)mmap_buffer_getbuf,
(releasebufferproc)mmap_buffer_releasebuf,
};
static PyObject *
new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict);
PyDoc_STRVAR(mmap_doc,
"Windows: mmap(fileno, length[, tagname[, access[, offset]]])\n\
\n\
Maps length bytes from the file specified by the file handle fileno,\n\
and returns a mmap object. If length is larger than the current size\n\
of the file, the file is extended to contain length bytes. If length\n\
is 0, the maximum length of the map is the current size of the file,\n\
except that if the file is empty Windows raises an exception (you cannot\n\
create an empty mapping on Windows).\n\
\n\
Unix: mmap(fileno, length[, flags[, prot[, access[, offset]]]])\n\
\n\
Maps length bytes from the file specified by the file descriptor fileno,\n\
and returns a mmap object. If length is 0, the maximum length of the map\n\
will be the current size of the file when mmap is called.\n\
flags specifies the nature of the mapping. MAP_PRIVATE creates a\n\
private copy-on-write mapping, so changes to the contents of the mmap\n\
object will be private to this process, and MAP_SHARED creates a mapping\n\
that's shared with all other processes mapping the same areas of the file.\n\
The default value is MAP_SHARED.\n\
\n\
To map anonymous memory, pass -1 as the fileno (both versions).");
static PyTypeObject mmap_object_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"mmap.mmap", /* tp_name */
sizeof(mmap_object), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor) mmap_object_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
&mmap_as_sequence, /*tp_as_sequence*/
&mmap_as_mapping, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
PyObject_GenericGetAttr, /*tp_getattro*/
0, /*tp_setattro*/
&mmap_as_buffer, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
mmap_doc, /*tp_doc*/
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
offsetof(mmap_object, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
mmap_object_methods, /* tp_methods */
0, /* tp_members */
mmap_object_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
new_mmap_object, /* tp_new */
PyObject_Del, /* tp_free */
};
#ifdef UNIX
#ifdef HAVE_LARGEFILE_SUPPORT
#define _Py_PARSE_OFF_T "L"
#else
#define _Py_PARSE_OFF_T "l"
#endif
static PyObject *
new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
{
struct _Py_stat_struct status;
int fstat_result = -1;
mmap_object *m_obj;
Py_ssize_t map_size;
off_t offset = 0;
int fd, flags = MAP_SHARED, prot = PROT_WRITE | PROT_READ;
int devzero = -1;
int access = (int)ACCESS_DEFAULT;
static char *keywords[] = {"fileno", "length",
"flags", "prot",
"access", "offset", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "in|iii" _Py_PARSE_OFF_T, keywords,
&fd, &map_size, &flags, &prot,
&access, &offset))
return NULL;
if (map_size < 0) {
PyErr_SetString(PyExc_OverflowError,
"memory mapped length must be positive");
return NULL;
}
if (offset < 0) {
PyErr_SetString(PyExc_OverflowError,
"memory mapped offset must be positive");
return NULL;
}
if ((access != (int)ACCESS_DEFAULT) &&
((flags != MAP_SHARED) || (prot != (PROT_WRITE | PROT_READ))))
return PyErr_Format(PyExc_ValueError,
"mmap can't specify both access and flags, prot.");
switch ((access_mode)access) {
case ACCESS_READ:
flags = MAP_SHARED;
prot = PROT_READ;
break;
case ACCESS_WRITE:
flags = MAP_SHARED;
prot = PROT_READ | PROT_WRITE;
break;
case ACCESS_COPY:
flags = MAP_PRIVATE;
prot = PROT_READ | PROT_WRITE;
break;
case ACCESS_DEFAULT:
/* map prot to access type */
if ((prot & PROT_READ) && (prot & PROT_WRITE)) {
/* ACCESS_DEFAULT */
}
else if (prot & PROT_WRITE) {
access = ACCESS_WRITE;
}
else {
access = ACCESS_READ;
}
break;
default:
return PyErr_Format(PyExc_ValueError,
"mmap invalid access parameter.");
}
#ifdef __APPLE__
/* Issue #11277: fsync(2) is not enough on OS X - a special, OS X specific
fcntl(2) is necessary to force DISKSYNC and get around mmap(2) bug */
if (fd != -1)
(void)fcntl(fd, F_FULLFSYNC);
#endif
if (fd != -1) {
Py_BEGIN_ALLOW_THREADS
fstat_result = _Py_fstat_noraise(fd, &status);
Py_END_ALLOW_THREADS
}
if (fd != -1 && fstat_result == 0 && S_ISREG(status.st_mode)) {
if (map_size == 0) {
if (status.st_size == 0) {
PyErr_SetString(PyExc_ValueError,
"cannot mmap an empty file");
return NULL;
}
if (offset >= status.st_size) {
PyErr_SetString(PyExc_ValueError,
"mmap offset is greater than file size");
return NULL;
}
if (status.st_size - offset > PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_ValueError,
"mmap length is too large");
return NULL;
}
map_size = (Py_ssize_t) (status.st_size - offset);
} else if (offset > status.st_size || status.st_size - offset < map_size) {
PyErr_SetString(PyExc_ValueError,
"mmap length is greater than file size");
return NULL;
}
}
m_obj = (mmap_object *)type->tp_alloc(type, 0);
if (m_obj == NULL) {return NULL;}
m_obj->data = NULL;
m_obj->size = map_size;
m_obj->pos = 0;
m_obj->weakreflist = NULL;
m_obj->exports = 0;
m_obj->offset = offset;
if (fd == -1) {
m_obj->fd = -1;
/* Assume the caller wants to map anonymous memory.
This is the same behaviour as Windows. mmap.mmap(-1, size)
on both Windows and Unix map anonymous memory.
*/
#ifdef MAP_ANONYMOUS
/* BSD way to map anonymous memory */
flags |= MAP_ANONYMOUS;
#else
/* SVR4 method to map anonymous memory is to open /dev/zero */
fd = devzero = _Py_open("/dev/zero", O_RDWR);
if (devzero == -1) {
Py_DECREF(m_obj);
return NULL;
}
#endif
}
else {
m_obj->fd = _Py_dup(fd);
if (m_obj->fd == -1) {
Py_DECREF(m_obj);
return NULL;
}
}
m_obj->data = mmap(NULL, map_size,
prot, flags,
fd, offset);
if (devzero != -1) {
close(devzero);
}
if (m_obj->data == (char *)-1) {
m_obj->data = NULL;
Py_DECREF(m_obj);
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
m_obj->access = (access_mode)access;
return (PyObject *)m_obj;
}
#endif /* UNIX */
#ifdef MS_WINDOWS
/* A note on sizes and offsets: while the actual map size must hold in a
Py_ssize_t, both the total file size and the start offset can be longer
than a Py_ssize_t, so we use long long which is always 64-bit.
*/
static PyObject *
new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict)
{
mmap_object *m_obj;
Py_ssize_t map_size;
long long offset = 0, size;
DWORD off_hi; /* upper 32 bits of offset */
DWORD off_lo; /* lower 32 bits of offset */
DWORD size_hi; /* upper 32 bits of size */
DWORD size_lo; /* lower 32 bits of size */
char *tagname = "";
DWORD dwErr = 0;
int fileno;
HANDLE fh = 0;
int access = (access_mode)ACCESS_DEFAULT;
DWORD flProtect, dwDesiredAccess;
static char *keywords[] = { "fileno", "length",
"tagname",
"access", "offset", NULL };
if (!PyArg_ParseTupleAndKeywords(args, kwdict, "in|ziL", keywords,
&fileno, &map_size,
&tagname, &access, &offset)) {
return NULL;
}
switch((access_mode)access) {
case ACCESS_READ:
flProtect = PAGE_READONLY;
dwDesiredAccess = FILE_MAP_READ;
break;
case ACCESS_DEFAULT: case ACCESS_WRITE:
flProtect = PAGE_READWRITE;
dwDesiredAccess = FILE_MAP_WRITE;
break;
case ACCESS_COPY:
flProtect = PAGE_WRITECOPY;
dwDesiredAccess = FILE_MAP_COPY;
break;
default:
return PyErr_Format(PyExc_ValueError,
"mmap invalid access parameter.");
}
if (map_size < 0) {
PyErr_SetString(PyExc_OverflowError,
"memory mapped length must be positive");
return NULL;
}
if (offset < 0) {
PyErr_SetString(PyExc_OverflowError,
"memory mapped offset must be positive");
return NULL;
}
/* assume -1 and 0 both mean invalid filedescriptor
to 'anonymously' map memory.
XXX: fileno == 0 is a valid fd, but was accepted prior to 2.5.
XXX: Should this code be added?
if (fileno == 0)
PyErr_WarnEx(PyExc_DeprecationWarning,
"don't use 0 for anonymous memory",
1);
*/
if (fileno != -1 && fileno != 0) {
/* Ensure that fileno is within the CRT's valid range */
_Py_BEGIN_SUPPRESS_IPH
fh = (HANDLE)_get_osfhandle(fileno);
_Py_END_SUPPRESS_IPH
if (fh==(HANDLE)-1) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
/* Win9x appears to need us seeked to zero */
lseek(fileno, 0, SEEK_SET);
}
m_obj = (mmap_object *)type->tp_alloc(type, 0);
if (m_obj == NULL)
return NULL;
/* Set every field to an invalid marker, so we can safely
destruct the object in the face of failure */
m_obj->data = NULL;
m_obj->file_handle = INVALID_HANDLE_VALUE;
m_obj->map_handle = NULL;
m_obj->tagname = NULL;
m_obj->offset = offset;
if (fh) {
/* It is necessary to duplicate the handle, so the
Python code can close it on us */
if (!DuplicateHandle(
GetCurrentProcess(), /* source process handle */
fh, /* handle to be duplicated */
GetCurrentProcess(), /* target proc handle */
(LPHANDLE)&m_obj->file_handle, /* result */
0, /* access - ignored due to options value */
FALSE, /* inherited by child processes? */
DUPLICATE_SAME_ACCESS)) { /* options */
dwErr = GetLastError();
Py_DECREF(m_obj);
PyErr_SetFromWindowsErr(dwErr);
return NULL;
}
if (!map_size) {
DWORD low,high;
low = GetFileSize(fh, &high);
/* low might just happen to have the value INVALID_FILE_SIZE;
so we need to check the last error also. */
if (low == INVALID_FILE_SIZE &&
(dwErr = GetLastError()) != NO_ERROR) {
Py_DECREF(m_obj);
return PyErr_SetFromWindowsErr(dwErr);
}
size = (((long long) high) << 32) + low;
if (size == 0) {
PyErr_SetString(PyExc_ValueError,
"cannot mmap an empty file");
Py_DECREF(m_obj);
return NULL;
}
if (offset >= size) {
PyErr_SetString(PyExc_ValueError,
"mmap offset is greater than file size");
Py_DECREF(m_obj);
return NULL;
}
if (size - offset > PY_SSIZE_T_MAX) {
PyErr_SetString(PyExc_ValueError,
"mmap length is too large");
Py_DECREF(m_obj);
return NULL;
}
m_obj->size = (Py_ssize_t) (size - offset);
} else {
m_obj->size = map_size;
size = offset + map_size;
}
}
else {
m_obj->size = map_size;
size = offset + map_size;
}
/* set the initial position */
m_obj->pos = (size_t) 0;
m_obj->weakreflist = NULL;
m_obj->exports = 0;
/* set the tag name */
if (tagname != NULL && *tagname != '\0') {
m_obj->tagname = PyMem_Malloc(strlen(tagname)+1);
if (m_obj->tagname == NULL) {
PyErr_NoMemory();
Py_DECREF(m_obj);
return NULL;
}
strcpy(m_obj->tagname, tagname);
}
else
m_obj->tagname = NULL;
m_obj->access = (access_mode)access;
size_hi = (DWORD)(size >> 32);
size_lo = (DWORD)(size & 0xFFFFFFFF);
off_hi = (DWORD)(offset >> 32);
off_lo = (DWORD)(offset & 0xFFFFFFFF);
/* For files, it would be sufficient to pass 0 as size.
For anonymous maps, we have to pass the size explicitly. */
m_obj->map_handle = CreateFileMapping(m_obj->file_handle,
NULL,
flProtect,
size_hi,
size_lo,
m_obj->tagname);
if (m_obj->map_handle != NULL) {
m_obj->data = (char *) MapViewOfFile(m_obj->map_handle,
dwDesiredAccess,
off_hi,
off_lo,
m_obj->size);
if (m_obj->data != NULL)
return (PyObject *)m_obj;
else {
dwErr = GetLastError();
CloseHandle(m_obj->map_handle);
m_obj->map_handle = NULL;
}
} else
dwErr = GetLastError();
Py_DECREF(m_obj);
PyErr_SetFromWindowsErr(dwErr);
return NULL;
}
#endif /* MS_WINDOWS */
static void
setint(PyObject *d, const char *name, long value)
{
PyObject *o = PyLong_FromLong(value);
if (o && PyDict_SetItemString(d, name, o) == 0) {
Py_DECREF(o);
}
}
static struct PyModuleDef mmapmodule = {
PyModuleDef_HEAD_INIT,
"mmap",
NULL,
-1,
NULL,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_mmap(void)
{
PyObject *dict, *module;
if (PyType_Ready(&mmap_object_type) < 0)
return NULL;
module = PyModule_Create(&mmapmodule);
if (module == NULL)
return NULL;
dict = PyModule_GetDict(module);
if (!dict)
return NULL;
PyDict_SetItemString(dict, "error", PyExc_OSError);
PyDict_SetItemString(dict, "mmap", (PyObject*) &mmap_object_type);
#ifdef PROT_EXEC
setint(dict, "PROT_EXEC", PROT_EXEC);
#endif
#ifdef PROT_READ
setint(dict, "PROT_READ", PROT_READ);
#endif
#ifdef PROT_WRITE
setint(dict, "PROT_WRITE", PROT_WRITE);
#endif
#ifdef MAP_SHARED
setint(dict, "MAP_SHARED", MAP_SHARED);
#endif
#ifdef MAP_PRIVATE
setint(dict, "MAP_PRIVATE", MAP_PRIVATE);
#endif
#ifdef MAP_DENYWRITE
setint(dict, "MAP_DENYWRITE", MAP_DENYWRITE);
#endif
#ifdef MAP_EXECUTABLE
setint(dict, "MAP_EXECUTABLE", MAP_EXECUTABLE);
#endif
#ifdef MAP_ANONYMOUS
setint(dict, "MAP_ANON", MAP_ANONYMOUS);
setint(dict, "MAP_ANONYMOUS", MAP_ANONYMOUS);
#endif
setint(dict, "PAGESIZE", (long)my_getpagesize());
setint(dict, "ALLOCATIONGRANULARITY", (long)my_getallocationgranularity());
setint(dict, "ACCESS_READ", ACCESS_READ);
setint(dict, "ACCESS_WRITE", ACCESS_WRITE);
setint(dict, "ACCESS_COPY", ACCESS_COPY);
return module;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_mmap = {
"mmap",
PyInit_mmap,
};
| 46,690 | 1,501 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_json.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/accu.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymath.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_json");
PYTHON_PROVIDE("_json.encode_basestring");
PYTHON_PROVIDE("_json.encode_basestring_ascii");
PYTHON_PROVIDE("_json.make_encoder");
PYTHON_PROVIDE("_json.make_scanner");
PYTHON_PROVIDE("_json.scanstring");
#ifdef __GNUC__
#define UNUSED __attribute__((__unused__))
#else
#define UNUSED
#endif
#define PyScanner_Check(op) PyObject_TypeCheck(op, &PyScannerType)
#define PyScanner_CheckExact(op) (Py_TYPE(op) == &PyScannerType)
#define PyEncoder_Check(op) PyObject_TypeCheck(op, &PyEncoderType)
#define PyEncoder_CheckExact(op) (Py_TYPE(op) == &PyEncoderType)
static PyTypeObject PyScannerType;
static PyTypeObject PyEncoderType;
typedef struct _PyScannerObject {
PyObject_HEAD
PyObject *strict;
PyObject *object_hook;
PyObject *object_pairs_hook;
PyObject *parse_float;
PyObject *parse_int;
PyObject *parse_constant;
PyObject *memo;
} PyScannerObject;
static PyMemberDef scanner_members[] = {
{"strict", T_OBJECT, offsetof(PyScannerObject, strict), READONLY, "strict"},
{"object_hook", T_OBJECT, offsetof(PyScannerObject, object_hook), READONLY, "object_hook"},
{"object_pairs_hook", T_OBJECT, offsetof(PyScannerObject, object_pairs_hook), READONLY},
{"parse_float", T_OBJECT, offsetof(PyScannerObject, parse_float), READONLY, "parse_float"},
{"parse_int", T_OBJECT, offsetof(PyScannerObject, parse_int), READONLY, "parse_int"},
{"parse_constant", T_OBJECT, offsetof(PyScannerObject, parse_constant), READONLY, "parse_constant"},
{NULL}
};
typedef struct _PyEncoderObject {
PyObject_HEAD
PyObject *markers;
PyObject *defaultfn;
PyObject *encoder;
PyObject *indent;
PyObject *key_separator;
PyObject *item_separator;
PyObject *sort_keys;
PyObject *skipkeys;
PyCFunction fast_encode;
int allow_nan;
} PyEncoderObject;
static PyMemberDef encoder_members[] = {
{"markers", T_OBJECT, offsetof(PyEncoderObject, markers), READONLY, "markers"},
{"default", T_OBJECT, offsetof(PyEncoderObject, defaultfn), READONLY, "default"},
{"encoder", T_OBJECT, offsetof(PyEncoderObject, encoder), READONLY, "encoder"},
{"indent", T_OBJECT, offsetof(PyEncoderObject, indent), READONLY, "indent"},
{"key_separator", T_OBJECT, offsetof(PyEncoderObject, key_separator), READONLY, "key_separator"},
{"item_separator", T_OBJECT, offsetof(PyEncoderObject, item_separator), READONLY, "item_separator"},
{"sort_keys", T_OBJECT, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"},
{"skipkeys", T_OBJECT, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
{NULL}
};
static PyObject *
join_list_unicode(PyObject *lst)
{
/* return u''.join(lst) */
static PyObject *sep = NULL;
if (sep == NULL) {
sep = PyUnicode_FromStringAndSize("", 0);
if (sep == NULL)
return NULL;
}
return PyUnicode_Join(sep, lst);
}
/* Forward decls */
static PyObject *
ascii_escape_unicode(PyObject *pystr);
static PyObject *
py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr);
void init_json(void);
static PyObject *
scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
static PyObject *
_build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
static PyObject *
scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
static void
scanner_dealloc(PyObject *self);
static int
scanner_clear(PyObject *self);
static PyObject *
encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
static void
encoder_dealloc(PyObject *self);
static int
encoder_clear(PyObject *self);
static int
encoder_listencode_list(PyEncoderObject *s, _PyAccu *acc, PyObject *seq, Py_ssize_t indent_level);
static int
encoder_listencode_obj(PyEncoderObject *s, _PyAccu *acc, PyObject *obj, Py_ssize_t indent_level);
static int
encoder_listencode_dict(PyEncoderObject *s, _PyAccu *acc, PyObject *dct, Py_ssize_t indent_level);
static PyObject *
_encoded_const(PyObject *obj);
static void
raise_errmsg(const char *msg, PyObject *s, Py_ssize_t end);
static PyObject *
encoder_encode_string(PyEncoderObject *s, PyObject *obj);
static PyObject *
encoder_encode_float(PyEncoderObject *s, PyObject *obj);
#define S_CHAR(c) (c >= ' ' && c <= '~' && c != '\\' && c != '"')
#define IS_WHITESPACE(c) (((c) == ' ') || ((c) == '\t') || ((c) == '\n') || ((c) == '\r'))
static Py_ssize_t
ascii_escape_unichar(Py_UCS4 c, unsigned char *output, Py_ssize_t chars)
{
/* Escape unicode code point c to ASCII escape sequences
in char *output. output must have at least 12 bytes unused to
accommodate an escaped surrogate pair "\uXXXX\uXXXX" */
output[chars++] = '\\';
switch (c) {
case '\\': output[chars++] = c; break;
case '"': output[chars++] = c; break;
case '\b': output[chars++] = 'b'; break;
case '\f': output[chars++] = 'f'; break;
case '\n': output[chars++] = 'n'; break;
case '\r': output[chars++] = 'r'; break;
case '\t': output[chars++] = 't'; break;
default:
if (c >= 0x10000) {
/* UTF-16 surrogate pair */
Py_UCS4 v = Py_UNICODE_HIGH_SURROGATE(c);
output[chars++] = 'u';
output[chars++] = Py_hexdigits[(v >> 12) & 0xf];
output[chars++] = Py_hexdigits[(v >> 8) & 0xf];
output[chars++] = Py_hexdigits[(v >> 4) & 0xf];
output[chars++] = Py_hexdigits[(v ) & 0xf];
c = Py_UNICODE_LOW_SURROGATE(c);
output[chars++] = '\\';
}
output[chars++] = 'u';
output[chars++] = Py_hexdigits[(c >> 12) & 0xf];
output[chars++] = Py_hexdigits[(c >> 8) & 0xf];
output[chars++] = Py_hexdigits[(c >> 4) & 0xf];
output[chars++] = Py_hexdigits[(c ) & 0xf];
}
return chars;
}
static PyObject *
ascii_escape_unicode(PyObject *pystr)
{
/* Take a PyUnicode pystr and return a new ASCII-only escaped PyUnicode */
Py_ssize_t i;
Py_ssize_t input_chars;
Py_ssize_t output_size;
Py_ssize_t chars;
PyObject *rval;
void *input;
unsigned char *output;
int kind;
if (PyUnicode_READY(pystr) == -1)
return NULL;
input_chars = PyUnicode_GET_LENGTH(pystr);
input = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
/* Compute the output size */
for (i = 0, output_size = 2; i < input_chars; i++) {
Py_UCS4 c = PyUnicode_READ(kind, input, i);
Py_ssize_t d;
if (S_CHAR(c)) {
d = 1;
}
else {
switch(c) {
case '\\': case '"': case '\b': case '\f':
case '\n': case '\r': case '\t':
d = 2; break;
default:
d = c >= 0x10000 ? 12 : 6;
}
}
if (output_size > PY_SSIZE_T_MAX - d) {
PyErr_SetString(PyExc_OverflowError, "string is too long to escape");
return NULL;
}
output_size += d;
}
rval = PyUnicode_New(output_size, 127);
if (rval == NULL) {
return NULL;
}
output = PyUnicode_1BYTE_DATA(rval);
chars = 0;
output[chars++] = '"';
for (i = 0; i < input_chars; i++) {
Py_UCS4 c = PyUnicode_READ(kind, input, i);
if (S_CHAR(c)) {
output[chars++] = c;
}
else {
chars = ascii_escape_unichar(c, output, chars);
}
}
output[chars++] = '"';
#ifdef Py_DEBUG
assert(_PyUnicode_CheckConsistency(rval, 1));
#endif
return rval;
}
static PyObject *
escape_unicode(PyObject *pystr)
{
/* Take a PyUnicode pystr and return a new escaped PyUnicode */
Py_ssize_t i;
Py_ssize_t input_chars;
Py_ssize_t output_size;
Py_ssize_t chars;
PyObject *rval;
void *input;
int kind;
Py_UCS4 maxchar;
if (PyUnicode_READY(pystr) == -1)
return NULL;
maxchar = PyUnicode_MAX_CHAR_VALUE(pystr);
input_chars = PyUnicode_GET_LENGTH(pystr);
input = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
/* Compute the output size */
for (i = 0, output_size = 2; i < input_chars; i++) {
Py_UCS4 c = PyUnicode_READ(kind, input, i);
Py_ssize_t d;
switch (c) {
case '\\': case '"': case '\b': case '\f':
case '\n': case '\r': case '\t':
d = 2;
break;
default:
if (c <= 0x1f)
d = 6;
else
d = 1;
}
if (output_size > PY_SSIZE_T_MAX - d) {
PyErr_SetString(PyExc_OverflowError, "string is too long to escape");
return NULL;
}
output_size += d;
}
rval = PyUnicode_New(output_size, maxchar);
if (rval == NULL)
return NULL;
kind = PyUnicode_KIND(rval);
#define ENCODE_OUTPUT do { \
chars = 0; \
output[chars++] = '"'; \
for (i = 0; i < input_chars; i++) { \
Py_UCS4 c = PyUnicode_READ(kind, input, i); \
switch (c) { \
case '\\': output[chars++] = '\\'; output[chars++] = c; break; \
case '"': output[chars++] = '\\'; output[chars++] = c; break; \
case '\b': output[chars++] = '\\'; output[chars++] = 'b'; break; \
case '\f': output[chars++] = '\\'; output[chars++] = 'f'; break; \
case '\n': output[chars++] = '\\'; output[chars++] = 'n'; break; \
case '\r': output[chars++] = '\\'; output[chars++] = 'r'; break; \
case '\t': output[chars++] = '\\'; output[chars++] = 't'; break; \
default: \
if (c <= 0x1f) { \
output[chars++] = '\\'; \
output[chars++] = 'u'; \
output[chars++] = '0'; \
output[chars++] = '0'; \
output[chars++] = Py_hexdigits[(c >> 4) & 0xf]; \
output[chars++] = Py_hexdigits[(c ) & 0xf]; \
} else { \
output[chars++] = c; \
} \
} \
} \
output[chars++] = '"'; \
} while (0)
if (kind == PyUnicode_1BYTE_KIND) {
Py_UCS1 *output = PyUnicode_1BYTE_DATA(rval);
ENCODE_OUTPUT;
} else if (kind == PyUnicode_2BYTE_KIND) {
Py_UCS2 *output = PyUnicode_2BYTE_DATA(rval);
ENCODE_OUTPUT;
} else {
Py_UCS4 *output = PyUnicode_4BYTE_DATA(rval);
assert(kind == PyUnicode_4BYTE_KIND);
ENCODE_OUTPUT;
}
#undef ENCODE_OUTPUT
#ifdef Py_DEBUG
assert(_PyUnicode_CheckConsistency(rval, 1));
#endif
return rval;
}
static void
raise_errmsg(const char *msg, PyObject *s, Py_ssize_t end)
{
/* Use JSONDecodeError exception to raise a nice looking ValueError subclass */
static PyObject *JSONDecodeError = NULL;
PyObject *exc;
if (JSONDecodeError == NULL) {
PyObject *decoder = PyImport_ImportModule("json.decoder");
if (decoder == NULL)
return;
JSONDecodeError = PyObject_GetAttrString(decoder, "JSONDecodeError");
Py_DECREF(decoder);
if (JSONDecodeError == NULL)
return;
}
exc = PyObject_CallFunction(JSONDecodeError, "(zOn)", msg, s, end);
if (exc) {
PyErr_SetObject(JSONDecodeError, exc);
Py_DECREF(exc);
}
}
static void
raise_stop_iteration(Py_ssize_t idx)
{
PyObject *value = PyLong_FromSsize_t(idx);
if (value != NULL) {
PyErr_SetObject(PyExc_StopIteration, value);
Py_DECREF(value);
}
}
static PyObject *
_build_rval_index_tuple(PyObject *rval, Py_ssize_t idx) {
/* return (rval, idx) tuple, stealing reference to rval */
PyObject *tpl;
PyObject *pyidx;
/*
steal a reference to rval, returns (rval, idx)
*/
if (rval == NULL) {
return NULL;
}
pyidx = PyLong_FromSsize_t(idx);
if (pyidx == NULL) {
Py_DECREF(rval);
return NULL;
}
tpl = PyTuple_New(2);
if (tpl == NULL) {
Py_DECREF(pyidx);
Py_DECREF(rval);
return NULL;
}
PyTuple_SET_ITEM(tpl, 0, rval);
PyTuple_SET_ITEM(tpl, 1, pyidx);
return tpl;
}
#define APPEND_OLD_CHUNK \
if (chunk != NULL) { \
if (chunks == NULL) { \
chunks = PyList_New(0); \
if (chunks == NULL) { \
goto bail; \
} \
} \
if (PyList_Append(chunks, chunk)) { \
Py_CLEAR(chunk); \
goto bail; \
} \
Py_CLEAR(chunk); \
}
static PyObject *
scanstring_unicode(PyObject *pystr, Py_ssize_t end, int strict, Py_ssize_t *next_end_ptr)
{
/* Read the JSON string from PyUnicode pystr.
end is the index of the first character after the quote.
if strict is zero then literal control characters are allowed
*next_end_ptr is a return-by-reference index of the character
after the end quote
Return value is a new PyUnicode
*/
PyObject *rval = NULL;
Py_ssize_t len;
Py_ssize_t begin = end - 1;
Py_ssize_t next /* = begin */;
const void *buf;
int kind;
PyObject *chunks = NULL;
PyObject *chunk = NULL;
if (PyUnicode_READY(pystr) == -1)
return 0;
len = PyUnicode_GET_LENGTH(pystr);
buf = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
if (end < 0 || len < end) {
PyErr_SetString(PyExc_ValueError, "end is out of bounds");
goto bail;
}
while (1) {
/* Find the end of the string or the next escape */
Py_UCS4 c = 0;
for (next = end; next < len; next++) {
c = PyUnicode_READ(kind, buf, next);
if (c == '"' || c == '\\') {
break;
}
else if (strict && c <= 0x1f) {
raise_errmsg("Invalid control character at", pystr, next);
goto bail;
}
}
if (!(c == '"' || c == '\\')) {
raise_errmsg("Unterminated string starting at", pystr, begin);
goto bail;
}
/* Pick up this chunk if it's not zero length */
if (next != end) {
APPEND_OLD_CHUNK
chunk = PyUnicode_FromKindAndData(
kind,
(char*)buf + kind * end,
next - end);
if (chunk == NULL) {
goto bail;
}
}
next++;
if (c == '"') {
end = next;
break;
}
if (next == len) {
raise_errmsg("Unterminated string starting at", pystr, begin);
goto bail;
}
c = PyUnicode_READ(kind, buf, next);
if (c != 'u') {
/* Non-unicode backslash escapes */
end = next + 1;
switch (c) {
case '"': break;
case '\\': break;
case '/': break;
case 'b': c = '\b'; break;
case 'f': c = '\f'; break;
case 'n': c = '\n'; break;
case 'r': c = '\r'; break;
case 't': c = '\t'; break;
default: c = 0;
}
if (c == 0) {
raise_errmsg("Invalid \\escape", pystr, end - 2);
goto bail;
}
}
else {
c = 0;
next++;
end = next + 4;
if (end >= len) {
raise_errmsg("Invalid \\uXXXX escape", pystr, next - 1);
goto bail;
}
/* Decode 4 hex digits */
for (; next < end; next++) {
Py_UCS4 digit = PyUnicode_READ(kind, buf, next);
c <<= 4;
switch (digit) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
c |= (digit - '0'); break;
case 'a': case 'b': case 'c': case 'd': case 'e':
case 'f':
c |= (digit - 'a' + 10); break;
case 'A': case 'B': case 'C': case 'D': case 'E':
case 'F':
c |= (digit - 'A' + 10); break;
default:
raise_errmsg("Invalid \\uXXXX escape", pystr, end - 5);
goto bail;
}
}
/* Surrogate pair */
if (Py_UNICODE_IS_HIGH_SURROGATE(c) && end + 6 < len &&
PyUnicode_READ(kind, buf, next++) == '\\' &&
PyUnicode_READ(kind, buf, next++) == 'u') {
Py_UCS4 c2 = 0;
end += 6;
/* Decode 4 hex digits */
for (; next < end; next++) {
Py_UCS4 digit = PyUnicode_READ(kind, buf, next);
c2 <<= 4;
switch (digit) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
c2 |= (digit - '0'); break;
case 'a': case 'b': case 'c': case 'd': case 'e':
case 'f':
c2 |= (digit - 'a' + 10); break;
case 'A': case 'B': case 'C': case 'D': case 'E':
case 'F':
c2 |= (digit - 'A' + 10); break;
default:
raise_errmsg("Invalid \\uXXXX escape", pystr, end - 5);
goto bail;
}
}
if (Py_UNICODE_IS_LOW_SURROGATE(c2))
c = Py_UNICODE_JOIN_SURROGATES(c, c2);
else
end -= 6;
}
}
APPEND_OLD_CHUNK
chunk = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, &c, 1);
if (chunk == NULL) {
goto bail;
}
}
if (chunks == NULL) {
if (chunk != NULL)
rval = chunk;
else
rval = PyUnicode_FromStringAndSize("", 0);
}
else {
APPEND_OLD_CHUNK
rval = join_list_unicode(chunks);
if (rval == NULL) {
goto bail;
}
Py_CLEAR(chunks);
}
*next_end_ptr = end;
return rval;
bail:
*next_end_ptr = -1;
Py_XDECREF(chunks);
Py_XDECREF(chunk);
return NULL;
}
PyDoc_STRVAR(pydoc_scanstring,
"scanstring(string, end, strict=True) -> (string, end)\n"
"\n"
"Scan the string s for a JSON string. End is the index of the\n"
"character in s after the quote that started the JSON string.\n"
"Unescapes all valid JSON string escape sequences and raises ValueError\n"
"on attempt to decode an invalid string. If strict is False then literal\n"
"control characters are allowed in the string.\n"
"\n"
"Returns a tuple of the decoded string and the index of the character in s\n"
"after the end quote."
);
static PyObject *
py_scanstring(PyObject* self UNUSED, PyObject *args)
{
PyObject *pystr;
PyObject *rval;
Py_ssize_t end;
Py_ssize_t next_end = -1;
int strict = 1;
if (!PyArg_ParseTuple(args, "On|i:scanstring", &pystr, &end, &strict)) {
return NULL;
}
if (PyUnicode_Check(pystr)) {
rval = scanstring_unicode(pystr, end, strict, &next_end);
}
else {
PyErr_Format(PyExc_TypeError,
"first argument must be a string, not %.80s",
Py_TYPE(pystr)->tp_name);
return NULL;
}
return _build_rval_index_tuple(rval, next_end);
}
PyDoc_STRVAR(pydoc_encode_basestring_ascii,
"encode_basestring_ascii(string) -> string\n"
"\n"
"Return an ASCII-only JSON representation of a Python string"
);
static PyObject *
py_encode_basestring_ascii(PyObject* self UNUSED, PyObject *pystr)
{
PyObject *rval;
/* Return an ASCII-only JSON representation of a Python string */
/* METH_O */
if (PyUnicode_Check(pystr)) {
rval = ascii_escape_unicode(pystr);
}
else {
PyErr_Format(PyExc_TypeError,
"first argument must be a string, not %.80s",
Py_TYPE(pystr)->tp_name);
return NULL;
}
return rval;
}
PyDoc_STRVAR(pydoc_encode_basestring,
"encode_basestring(string) -> string\n"
"\n"
"Return a JSON representation of a Python string"
);
static PyObject *
py_encode_basestring(PyObject* self UNUSED, PyObject *pystr)
{
PyObject *rval;
/* Return a JSON representation of a Python string */
/* METH_O */
if (PyUnicode_Check(pystr)) {
rval = escape_unicode(pystr);
}
else {
PyErr_Format(PyExc_TypeError,
"first argument must be a string, not %.80s",
Py_TYPE(pystr)->tp_name);
return NULL;
}
return rval;
}
static void
scanner_dealloc(PyObject *self)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(self);
scanner_clear(self);
Py_TYPE(self)->tp_free(self);
}
static int
scanner_traverse(PyObject *self, visitproc visit, void *arg)
{
PyScannerObject *s;
assert(PyScanner_Check(self));
s = (PyScannerObject *)self;
Py_VISIT(s->strict);
Py_VISIT(s->object_hook);
Py_VISIT(s->object_pairs_hook);
Py_VISIT(s->parse_float);
Py_VISIT(s->parse_int);
Py_VISIT(s->parse_constant);
return 0;
}
static int
scanner_clear(PyObject *self)
{
PyScannerObject *s;
assert(PyScanner_Check(self));
s = (PyScannerObject *)self;
Py_CLEAR(s->strict);
Py_CLEAR(s->object_hook);
Py_CLEAR(s->object_pairs_hook);
Py_CLEAR(s->parse_float);
Py_CLEAR(s->parse_int);
Py_CLEAR(s->parse_constant);
Py_CLEAR(s->memo);
return 0;
}
static PyObject *
_parse_object_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {
/* Read a JSON object from PyUnicode pystr.
idx is the index of the first character after the opening curly brace.
*next_idx_ptr is a return-by-reference index to the first character after
the closing curly brace.
Returns a new PyObject (usually a dict, but object_hook can change that)
*/
void *str;
int kind;
Py_ssize_t end_idx;
PyObject *val = NULL;
PyObject *rval = NULL;
PyObject *key = NULL;
int strict = PyObject_IsTrue(s->strict);
int has_pairs_hook = (s->object_pairs_hook != Py_None);
Py_ssize_t next_idx;
if (strict < 0)
return NULL;
if (PyUnicode_READY(pystr) == -1)
return NULL;
str = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
end_idx = PyUnicode_GET_LENGTH(pystr) - 1;
if (has_pairs_hook)
rval = PyList_New(0);
else
rval = PyDict_New();
if (rval == NULL)
return NULL;
/* skip whitespace after { */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind,str, idx))) idx++;
/* only loop if the object is non-empty */
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != '}') {
while (1) {
PyObject *memokey;
/* read key */
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != '"') {
raise_errmsg("Expecting property name enclosed in double quotes", pystr, idx);
goto bail;
}
key = scanstring_unicode(pystr, idx + 1, strict, &next_idx);
if (key == NULL)
goto bail;
memokey = PyDict_GetItem(s->memo, key);
if (memokey != NULL) {
Py_INCREF(memokey);
Py_DECREF(key);
key = memokey;
}
else {
if (PyDict_SetItem(s->memo, key, key) < 0)
goto bail;
}
idx = next_idx;
/* skip whitespace between key and : delimiter, read :, skip whitespace */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != ':') {
raise_errmsg("Expecting ':' delimiter", pystr, idx);
goto bail;
}
idx++;
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
/* read any JSON term */
val = scan_once_unicode(s, pystr, idx, &next_idx);
if (val == NULL)
goto bail;
if (has_pairs_hook) {
PyObject *item = PyTuple_Pack(2, key, val);
if (item == NULL)
goto bail;
Py_CLEAR(key);
Py_CLEAR(val);
if (PyList_Append(rval, item) == -1) {
Py_DECREF(item);
goto bail;
}
Py_DECREF(item);
}
else {
if (PyDict_SetItem(rval, key, val) < 0)
goto bail;
Py_CLEAR(key);
Py_CLEAR(val);
}
idx = next_idx;
/* skip whitespace before } or , */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
/* bail if the object is closed or we didn't get the , delimiter */
if (idx <= end_idx && PyUnicode_READ(kind, str, idx) == '}')
break;
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != ',') {
raise_errmsg("Expecting ',' delimiter", pystr, idx);
goto bail;
}
idx++;
/* skip whitespace after , delimiter */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
}
}
*next_idx_ptr = idx + 1;
if (has_pairs_hook) {
val = PyObject_CallFunctionObjArgs(s->object_pairs_hook, rval, NULL);
Py_DECREF(rval);
return val;
}
/* if object_hook is not None: rval = object_hook(rval) */
if (s->object_hook != Py_None) {
val = PyObject_CallFunctionObjArgs(s->object_hook, rval, NULL);
Py_DECREF(rval);
return val;
}
return rval;
bail:
Py_XDECREF(key);
Py_XDECREF(val);
Py_XDECREF(rval);
return NULL;
}
static PyObject *
_parse_array_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {
/* Read a JSON array from PyUnicode pystr.
idx is the index of the first character after the opening brace.
*next_idx_ptr is a return-by-reference index to the first character after
the closing brace.
Returns a new PyList
*/
void *str;
int kind;
Py_ssize_t end_idx;
PyObject *val = NULL;
PyObject *rval;
Py_ssize_t next_idx;
if (PyUnicode_READY(pystr) == -1)
return NULL;
rval = PyList_New(0);
if (rval == NULL)
return NULL;
str = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
end_idx = PyUnicode_GET_LENGTH(pystr) - 1;
/* skip whitespace after [ */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
/* only loop if the array is non-empty */
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != ']') {
while (1) {
/* read any JSON term */
val = scan_once_unicode(s, pystr, idx, &next_idx);
if (val == NULL)
goto bail;
if (PyList_Append(rval, val) == -1)
goto bail;
Py_CLEAR(val);
idx = next_idx;
/* skip whitespace between term and , */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
/* bail if the array is closed or we didn't get the , delimiter */
if (idx <= end_idx && PyUnicode_READ(kind, str, idx) == ']')
break;
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != ',') {
raise_errmsg("Expecting ',' delimiter", pystr, idx);
goto bail;
}
idx++;
/* skip whitespace after , */
while (idx <= end_idx && IS_WHITESPACE(PyUnicode_READ(kind, str, idx))) idx++;
}
}
/* verify that idx < end_idx, PyUnicode_READ(kind, str, idx) should be ']' */
if (idx > end_idx || PyUnicode_READ(kind, str, idx) != ']') {
raise_errmsg("Expecting value", pystr, end_idx);
goto bail;
}
*next_idx_ptr = idx + 1;
return rval;
bail:
Py_XDECREF(val);
Py_DECREF(rval);
return NULL;
}
static PyObject *
_parse_constant(PyScannerObject *s, const char *constant, Py_ssize_t idx, Py_ssize_t *next_idx_ptr) {
/* Read a JSON constant.
constant is the constant string that was found
("NaN", "Infinity", "-Infinity").
idx is the index of the first character of the constant
*next_idx_ptr is a return-by-reference index to the first character after
the constant.
Returns the result of parse_constant
*/
PyObject *cstr;
PyObject *rval;
/* constant is "NaN", "Infinity", or "-Infinity" */
cstr = PyUnicode_InternFromString(constant);
if (cstr == NULL)
return NULL;
/* rval = parse_constant(constant) */
rval = PyObject_CallFunctionObjArgs(s->parse_constant, cstr, NULL);
idx += PyUnicode_GET_LENGTH(cstr);
Py_DECREF(cstr);
*next_idx_ptr = idx;
return rval;
}
static PyObject *
_match_number_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t start, Py_ssize_t *next_idx_ptr) {
/* Read a JSON number from PyUnicode pystr.
idx is the index of the first character of the number
*next_idx_ptr is a return-by-reference index to the first character after
the number.
Returns a new PyObject representation of that number:
PyLong, or PyFloat.
May return other types if parse_int or parse_float are set
*/
void *str;
int kind;
Py_ssize_t end_idx;
Py_ssize_t idx = start;
int is_float = 0;
PyObject *rval;
PyObject *numstr = NULL;
PyObject *custom_func;
if (PyUnicode_READY(pystr) == -1)
return NULL;
str = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
end_idx = PyUnicode_GET_LENGTH(pystr) - 1;
/* read a sign if it's there, make sure it's not the end of the string */
if (PyUnicode_READ(kind, str, idx) == '-') {
idx++;
if (idx > end_idx) {
raise_stop_iteration(start);
return NULL;
}
}
/* read as many integer digits as we find as long as it doesn't start with 0 */
if (PyUnicode_READ(kind, str, idx) >= '1' && PyUnicode_READ(kind, str, idx) <= '9') {
idx++;
while (idx <= end_idx && PyUnicode_READ(kind, str, idx) >= '0' && PyUnicode_READ(kind, str, idx) <= '9') idx++;
}
/* if it starts with 0 we only expect one integer digit */
else if (PyUnicode_READ(kind, str, idx) == '0') {
idx++;
}
/* no integer digits, error */
else {
raise_stop_iteration(start);
return NULL;
}
/* if the next char is '.' followed by a digit then read all float digits */
if (idx < end_idx && PyUnicode_READ(kind, str, idx) == '.' && PyUnicode_READ(kind, str, idx + 1) >= '0' && PyUnicode_READ(kind, str, idx + 1) <= '9') {
is_float = 1;
idx += 2;
while (idx <= end_idx && PyUnicode_READ(kind, str, idx) >= '0' && PyUnicode_READ(kind, str, idx) <= '9') idx++;
}
/* if the next char is 'e' or 'E' then maybe read the exponent (or backtrack) */
if (idx < end_idx && (PyUnicode_READ(kind, str, idx) == 'e' || PyUnicode_READ(kind, str, idx) == 'E')) {
Py_ssize_t e_start = idx;
idx++;
/* read an exponent sign if present */
if (idx < end_idx && (PyUnicode_READ(kind, str, idx) == '-' || PyUnicode_READ(kind, str, idx) == '+')) idx++;
/* read all digits */
while (idx <= end_idx && PyUnicode_READ(kind, str, idx) >= '0' && PyUnicode_READ(kind, str, idx) <= '9') idx++;
/* if we got a digit, then parse as float. if not, backtrack */
if (PyUnicode_READ(kind, str, idx - 1) >= '0' && PyUnicode_READ(kind, str, idx - 1) <= '9') {
is_float = 1;
}
else {
idx = e_start;
}
}
if (is_float && s->parse_float != (PyObject *)&PyFloat_Type)
custom_func = s->parse_float;
else if (!is_float && s->parse_int != (PyObject *) &PyLong_Type)
custom_func = s->parse_int;
else
custom_func = NULL;
if (custom_func) {
/* copy the section we determined to be a number */
numstr = PyUnicode_FromKindAndData(kind,
(char*)str + kind * start,
idx - start);
if (numstr == NULL)
return NULL;
rval = PyObject_CallFunctionObjArgs(custom_func, numstr, NULL);
}
else {
Py_ssize_t i, n;
char *buf;
/* Straight conversion to ASCII, to avoid costly conversion of
decimal unicode digits (which cannot appear here) */
n = idx - start;
numstr = PyBytes_FromStringAndSize(NULL, n);
if (numstr == NULL)
return NULL;
buf = PyBytes_AS_STRING(numstr);
for (i = 0; i < n; i++) {
buf[i] = (char) PyUnicode_READ(kind, str, i + start);
}
if (is_float)
rval = PyFloat_FromString(numstr);
else
rval = PyLong_FromString(buf, NULL, 10);
}
Py_DECREF(numstr);
*next_idx_ptr = idx;
return rval;
}
static PyObject *
scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr)
{
/* Read one JSON term (of any kind) from PyUnicode pystr.
idx is the index of the first character of the term
*next_idx_ptr is a return-by-reference index to the first character after
the number.
Returns a new PyObject representation of the term.
*/
PyObject *res;
void *str;
int kind;
Py_ssize_t length;
int strict;
if (PyUnicode_READY(pystr) == -1)
return NULL;
str = PyUnicode_DATA(pystr);
kind = PyUnicode_KIND(pystr);
length = PyUnicode_GET_LENGTH(pystr);
if (idx < 0) {
PyErr_SetString(PyExc_ValueError, "idx cannot be negative");
return NULL;
}
if (idx >= length) {
raise_stop_iteration(idx);
return NULL;
}
switch (PyUnicode_READ(kind, str, idx)) {
case '"':
/* string */
strict = PyObject_IsTrue(s->strict);
if (strict < 0)
return NULL;
return scanstring_unicode(pystr, idx + 1, strict, next_idx_ptr);
case '{':
/* object */
if (Py_EnterRecursiveCall(" while decoding a JSON object "
"from a unicode string"))
return NULL;
res = _parse_object_unicode(s, pystr, idx + 1, next_idx_ptr);
Py_LeaveRecursiveCall();
return res;
case '[':
/* array */
if (Py_EnterRecursiveCall(" while decoding a JSON array "
"from a unicode string"))
return NULL;
res = _parse_array_unicode(s, pystr, idx + 1, next_idx_ptr);
Py_LeaveRecursiveCall();
return res;
case 'n':
/* null */
if ((idx + 3 < length) && PyUnicode_READ(kind, str, idx + 1) == 'u' && PyUnicode_READ(kind, str, idx + 2) == 'l' && PyUnicode_READ(kind, str, idx + 3) == 'l') {
Py_INCREF(Py_None);
*next_idx_ptr = idx + 4;
return Py_None;
}
break;
case 't':
/* true */
if ((idx + 3 < length) && PyUnicode_READ(kind, str, idx + 1) == 'r' && PyUnicode_READ(kind, str, idx + 2) == 'u' && PyUnicode_READ(kind, str, idx + 3) == 'e') {
Py_INCREF(Py_True);
*next_idx_ptr = idx + 4;
return Py_True;
}
break;
case 'f':
/* false */
if ((idx + 4 < length) && PyUnicode_READ(kind, str, idx + 1) == 'a' &&
PyUnicode_READ(kind, str, idx + 2) == 'l' &&
PyUnicode_READ(kind, str, idx + 3) == 's' &&
PyUnicode_READ(kind, str, idx + 4) == 'e') {
Py_INCREF(Py_False);
*next_idx_ptr = idx + 5;
return Py_False;
}
break;
case 'N':
/* NaN */
if ((idx + 2 < length) && PyUnicode_READ(kind, str, idx + 1) == 'a' &&
PyUnicode_READ(kind, str, idx + 2) == 'N') {
return _parse_constant(s, "NaN", idx, next_idx_ptr);
}
break;
case 'I':
/* Infinity */
if ((idx + 7 < length) && PyUnicode_READ(kind, str, idx + 1) == 'n' &&
PyUnicode_READ(kind, str, idx + 2) == 'f' &&
PyUnicode_READ(kind, str, idx + 3) == 'i' &&
PyUnicode_READ(kind, str, idx + 4) == 'n' &&
PyUnicode_READ(kind, str, idx + 5) == 'i' &&
PyUnicode_READ(kind, str, idx + 6) == 't' &&
PyUnicode_READ(kind, str, idx + 7) == 'y') {
return _parse_constant(s, "Infinity", idx, next_idx_ptr);
}
break;
case '-':
/* -Infinity */
if ((idx + 8 < length) && PyUnicode_READ(kind, str, idx + 1) == 'I' &&
PyUnicode_READ(kind, str, idx + 2) == 'n' &&
PyUnicode_READ(kind, str, idx + 3) == 'f' &&
PyUnicode_READ(kind, str, idx + 4) == 'i' &&
PyUnicode_READ(kind, str, idx + 5) == 'n' &&
PyUnicode_READ(kind, str, idx + 6) == 'i' &&
PyUnicode_READ(kind, str, idx + 7) == 't' &&
PyUnicode_READ(kind, str, idx + 8) == 'y') {
return _parse_constant(s, "-Infinity", idx, next_idx_ptr);
}
break;
}
/* Didn't find a string, object, array, or named constant. Look for a number. */
return _match_number_unicode(s, pystr, idx, next_idx_ptr);
}
static PyObject *
scanner_call(PyObject *self, PyObject *args, PyObject *kwds)
{
/* Python callable interface to scan_once_{str,unicode} */
PyObject *pystr;
PyObject *rval;
Py_ssize_t idx;
Py_ssize_t next_idx = -1;
static char *kwlist[] = {"string", "idx", NULL};
PyScannerObject *s;
assert(PyScanner_Check(self));
s = (PyScannerObject *)self;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "On:scan_once", kwlist, &pystr, &idx))
return NULL;
if (PyUnicode_Check(pystr)) {
rval = scan_once_unicode(s, pystr, idx, &next_idx);
}
else {
PyErr_Format(PyExc_TypeError,
"first argument must be a string, not %.80s",
Py_TYPE(pystr)->tp_name);
return NULL;
}
PyDict_Clear(s->memo);
if (rval == NULL)
return NULL;
return _build_rval_index_tuple(rval, next_idx);
}
static PyObject *
scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyScannerObject *s;
PyObject *ctx;
static char *kwlist[] = {"context", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:make_scanner", kwlist, &ctx))
return NULL;
s = (PyScannerObject *)type->tp_alloc(type, 0);
if (s == NULL) {
return NULL;
}
s->memo = PyDict_New();
if (s->memo == NULL)
goto bail;
/* All of these will fail "gracefully" so we don't need to verify them */
s->strict = PyObject_GetAttrString(ctx, "strict");
if (s->strict == NULL)
goto bail;
s->object_hook = PyObject_GetAttrString(ctx, "object_hook");
if (s->object_hook == NULL)
goto bail;
s->object_pairs_hook = PyObject_GetAttrString(ctx, "object_pairs_hook");
if (s->object_pairs_hook == NULL)
goto bail;
s->parse_float = PyObject_GetAttrString(ctx, "parse_float");
if (s->parse_float == NULL)
goto bail;
s->parse_int = PyObject_GetAttrString(ctx, "parse_int");
if (s->parse_int == NULL)
goto bail;
s->parse_constant = PyObject_GetAttrString(ctx, "parse_constant");
if (s->parse_constant == NULL)
goto bail;
return (PyObject *)s;
bail:
Py_DECREF(s);
return NULL;
}
PyDoc_STRVAR(scanner_doc, "JSON scanner object");
static
PyTypeObject PyScannerType = {
PyVarObject_HEAD_INIT(NULL, 0)
"_json.Scanner", /* tp_name */
sizeof(PyScannerObject), /* tp_basicsize */
0, /* tp_itemsize */
scanner_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
scanner_call, /* tp_call */
0, /* tp_str */
0,/* PyObject_GenericGetAttr, */ /* tp_getattro */
0,/* PyObject_GenericSetAttr, */ /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
scanner_doc, /* tp_doc */
scanner_traverse, /* tp_traverse */
scanner_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
scanner_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0,/* PyType_GenericAlloc, */ /* tp_alloc */
scanner_new, /* tp_new */
0,/* PyObject_GC_Del, */ /* tp_free */
};
static PyObject *
encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", NULL};
PyEncoderObject *s;
PyObject *markers, *defaultfn, *encoder, *indent, *key_separator;
PyObject *item_separator, *sort_keys, *skipkeys;
int allow_nan;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOOOUUOOp:make_encoder", kwlist,
&markers, &defaultfn, &encoder, &indent,
&key_separator, &item_separator,
&sort_keys, &skipkeys, &allow_nan))
return NULL;
if (markers != Py_None && !PyDict_Check(markers)) {
PyErr_Format(PyExc_TypeError,
"make_encoder() argument 1 must be dict or None, "
"not %.200s", Py_TYPE(markers)->tp_name);
return NULL;
}
s = (PyEncoderObject *)type->tp_alloc(type, 0);
if (s == NULL)
return NULL;
s->markers = markers;
s->defaultfn = defaultfn;
s->encoder = encoder;
s->indent = indent;
s->key_separator = key_separator;
s->item_separator = item_separator;
s->sort_keys = sort_keys;
s->skipkeys = skipkeys;
s->fast_encode = NULL;
if (PyCFunction_Check(s->encoder)) {
PyCFunction f = PyCFunction_GetFunction(s->encoder);
if (f == (PyCFunction)py_encode_basestring_ascii ||
f == (PyCFunction)py_encode_basestring) {
s->fast_encode = f;
}
}
s->allow_nan = allow_nan;
Py_INCREF(s->markers);
Py_INCREF(s->defaultfn);
Py_INCREF(s->encoder);
Py_INCREF(s->indent);
Py_INCREF(s->key_separator);
Py_INCREF(s->item_separator);
Py_INCREF(s->sort_keys);
Py_INCREF(s->skipkeys);
return (PyObject *)s;
}
static PyObject *
encoder_call(PyObject *self, PyObject *args, PyObject *kwds)
{
/* Python callable interface to encode_listencode_obj */
static char *kwlist[] = {"obj", "_current_indent_level", NULL};
PyObject *obj;
Py_ssize_t indent_level;
PyEncoderObject *s;
_PyAccu acc;
assert(PyEncoder_Check(self));
s = (PyEncoderObject *)self;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "On:_iterencode", kwlist,
&obj, &indent_level))
return NULL;
if (_PyAccu_Init(&acc))
return NULL;
if (encoder_listencode_obj(s, &acc, obj, indent_level)) {
_PyAccu_Destroy(&acc);
return NULL;
}
return _PyAccu_FinishAsList(&acc);
}
static PyObject *
_encoded_const(PyObject *obj)
{
/* Return the JSON string representation of None, True, False */
if (obj == Py_None) {
static PyObject *s_null = NULL;
if (s_null == NULL) {
s_null = PyUnicode_InternFromString("null");
}
Py_XINCREF(s_null);
return s_null;
}
else if (obj == Py_True) {
static PyObject *s_true = NULL;
if (s_true == NULL) {
s_true = PyUnicode_InternFromString("true");
}
Py_XINCREF(s_true);
return s_true;
}
else if (obj == Py_False) {
static PyObject *s_false = NULL;
if (s_false == NULL) {
s_false = PyUnicode_InternFromString("false");
}
Py_XINCREF(s_false);
return s_false;
}
else {
PyErr_SetString(PyExc_ValueError, "not a const");
return NULL;
}
}
static PyObject *
encoder_encode_float(PyEncoderObject *s, PyObject *obj)
{
/* Return the JSON representation of a PyFloat. */
double i = PyFloat_AS_DOUBLE(obj);
if (!Py_IS_FINITE(i)) {
if (!s->allow_nan) {
PyErr_SetString(
PyExc_ValueError,
"Out of range float values are not JSON compliant"
);
return NULL;
}
if (i > 0) {
return PyUnicode_FromString("Infinity");
}
else if (i < 0) {
return PyUnicode_FromString("-Infinity");
}
else {
return PyUnicode_FromString("NaN");
}
}
return PyFloat_Type.tp_repr(obj);
}
static PyObject *
encoder_encode_string(PyEncoderObject *s, PyObject *obj)
{
/* Return the JSON representation of a string */
PyObject *encoded;
if (s->fast_encode) {
return s->fast_encode(NULL, obj);
}
encoded = PyObject_CallFunctionObjArgs(s->encoder, obj, NULL);
if (encoded != NULL && !PyUnicode_Check(encoded)) {
PyErr_Format(PyExc_TypeError,
"encoder() must return a string, not %.80s",
Py_TYPE(encoded)->tp_name);
Py_DECREF(encoded);
return NULL;
}
return encoded;
}
static int
_steal_accumulate(_PyAccu *acc, PyObject *stolen)
{
/* Append stolen and then decrement its reference count */
int rval = _PyAccu_Accumulate(acc, stolen);
Py_DECREF(stolen);
return rval;
}
static int
encoder_listencode_obj(PyEncoderObject *s, _PyAccu *acc,
PyObject *obj, Py_ssize_t indent_level)
{
/* Encode Python object obj to a JSON term */
PyObject *newobj;
int rv;
if (obj == Py_None || obj == Py_True || obj == Py_False) {
PyObject *cstr = _encoded_const(obj);
if (cstr == NULL)
return -1;
return _steal_accumulate(acc, cstr);
}
else if (PyUnicode_Check(obj))
{
PyObject *encoded = encoder_encode_string(s, obj);
if (encoded == NULL)
return -1;
return _steal_accumulate(acc, encoded);
}
else if (PyLong_Check(obj)) {
PyObject *encoded = PyLong_Type.tp_str(obj);
if (encoded == NULL)
return -1;
return _steal_accumulate(acc, encoded);
}
else if (PyFloat_Check(obj)) {
PyObject *encoded = encoder_encode_float(s, obj);
if (encoded == NULL)
return -1;
return _steal_accumulate(acc, encoded);
}
else if (PyList_Check(obj) || PyTuple_Check(obj)) {
if (Py_EnterRecursiveCall(" while encoding a JSON object"))
return -1;
rv = encoder_listencode_list(s, acc, obj, indent_level);
Py_LeaveRecursiveCall();
return rv;
}
else if (PyDict_Check(obj)) {
if (Py_EnterRecursiveCall(" while encoding a JSON object"))
return -1;
rv = encoder_listencode_dict(s, acc, obj, indent_level);
Py_LeaveRecursiveCall();
return rv;
}
else {
PyObject *ident = NULL;
if (s->markers != Py_None) {
int has_key;
ident = PyLong_FromVoidPtr(obj);
if (ident == NULL)
return -1;
has_key = PyDict_Contains(s->markers, ident);
if (has_key) {
if (has_key != -1)
PyErr_SetString(PyExc_ValueError, "Circular reference detected");
Py_DECREF(ident);
return -1;
}
if (PyDict_SetItem(s->markers, ident, obj)) {
Py_DECREF(ident);
return -1;
}
}
newobj = PyObject_CallFunctionObjArgs(s->defaultfn, obj, NULL);
if (newobj == NULL) {
Py_XDECREF(ident);
return -1;
}
if (Py_EnterRecursiveCall(" while encoding a JSON object")) {
Py_DECREF(newobj);
Py_XDECREF(ident);
return -1;
}
rv = encoder_listencode_obj(s, acc, newobj, indent_level);
Py_LeaveRecursiveCall();
Py_DECREF(newobj);
if (rv) {
Py_XDECREF(ident);
return -1;
}
if (ident != NULL) {
if (PyDict_DelItem(s->markers, ident)) {
Py_XDECREF(ident);
return -1;
}
Py_XDECREF(ident);
}
return rv;
}
}
static int
encoder_listencode_dict(PyEncoderObject *s, _PyAccu *acc,
PyObject *dct, Py_ssize_t indent_level)
{
/* Encode Python dict dct a JSON term */
static PyObject *open_dict = NULL;
static PyObject *close_dict = NULL;
static PyObject *empty_dict = NULL;
PyObject *kstr = NULL;
PyObject *ident = NULL;
PyObject *it = NULL;
PyObject *items;
PyObject *item = NULL;
int skipkeys;
int sortkeys;
Py_ssize_t idx;
if (open_dict == NULL || close_dict == NULL || empty_dict == NULL) {
open_dict = PyUnicode_InternFromString("{");
close_dict = PyUnicode_InternFromString("}");
empty_dict = PyUnicode_InternFromString("{}");
if (open_dict == NULL || close_dict == NULL || empty_dict == NULL)
return -1;
}
if (PyDict_Size(dct) == 0) /* Fast path */
return _PyAccu_Accumulate(acc, empty_dict);
if (s->markers != Py_None) {
int has_key;
ident = PyLong_FromVoidPtr(dct);
if (ident == NULL)
goto bail;
has_key = PyDict_Contains(s->markers, ident);
if (has_key) {
if (has_key != -1)
PyErr_SetString(PyExc_ValueError, "Circular reference detected");
goto bail;
}
if (PyDict_SetItem(s->markers, ident, dct)) {
goto bail;
}
}
if (_PyAccu_Accumulate(acc, open_dict))
goto bail;
if (s->indent != Py_None) {
/* TODO: DOES NOT RUN */
indent_level += 1;
/*
newline_indent = '\n' + (' ' * (_indent * _current_indent_level))
separator = _item_separator + newline_indent
buf += newline_indent
*/
}
items = PyMapping_Items(dct);
if (items == NULL)
goto bail;
sortkeys = PyObject_IsTrue(s->sort_keys);
if (sortkeys < 0 || (sortkeys && PyList_Sort(items) < 0)) {
Py_DECREF(items);
goto bail;
}
it = PyObject_GetIter(items);
Py_DECREF(items);
if (it == NULL)
goto bail;
skipkeys = PyObject_IsTrue(s->skipkeys);
if (skipkeys < 0)
goto bail;
idx = 0;
while ((item = PyIter_Next(it)) != NULL) {
PyObject *encoded, *key, *value;
if (!PyTuple_Check(item) || Py_SIZE(item) != 2) {
PyErr_SetString(PyExc_ValueError, "items must return 2-tuples");
goto bail;
}
key = PyTuple_GET_ITEM(item, 0);
if (PyUnicode_Check(key)) {
Py_INCREF(key);
kstr = key;
}
else if (PyFloat_Check(key)) {
kstr = encoder_encode_float(s, key);
if (kstr == NULL)
goto bail;
}
else if (key == Py_True || key == Py_False || key == Py_None) {
/* This must come before the PyLong_Check because
True and False are also 1 and 0.*/
kstr = _encoded_const(key);
if (kstr == NULL)
goto bail;
}
else if (PyLong_Check(key)) {
kstr = PyLong_Type.tp_str(key);
if (kstr == NULL) {
goto bail;
}
}
else if (skipkeys) {
Py_DECREF(item);
continue;
}
else {
/* TODO: include repr of key */
PyErr_SetString(PyExc_TypeError, "keys must be a string");
goto bail;
}
if (idx) {
if (_PyAccu_Accumulate(acc, s->item_separator))
goto bail;
}
encoded = encoder_encode_string(s, kstr);
Py_CLEAR(kstr);
if (encoded == NULL)
goto bail;
if (_PyAccu_Accumulate(acc, encoded)) {
Py_DECREF(encoded);
goto bail;
}
Py_DECREF(encoded);
if (_PyAccu_Accumulate(acc, s->key_separator))
goto bail;
value = PyTuple_GET_ITEM(item, 1);
if (encoder_listencode_obj(s, acc, value, indent_level))
goto bail;
idx += 1;
Py_DECREF(item);
}
if (PyErr_Occurred())
goto bail;
Py_CLEAR(it);
if (ident != NULL) {
if (PyDict_DelItem(s->markers, ident))
goto bail;
Py_CLEAR(ident);
}
/* TODO DOES NOT RUN; dead code
if (s->indent != Py_None) {
indent_level -= 1;
yield '\n' + (' ' * (_indent * _current_indent_level))
}*/
if (_PyAccu_Accumulate(acc, close_dict))
goto bail;
return 0;
bail:
Py_XDECREF(it);
Py_XDECREF(item);
Py_XDECREF(kstr);
Py_XDECREF(ident);
return -1;
}
static int
encoder_listencode_list(PyEncoderObject *s, _PyAccu *acc,
PyObject *seq, Py_ssize_t indent_level)
{
/* Encode Python list seq to a JSON term */
static PyObject *open_array = NULL;
static PyObject *close_array = NULL;
static PyObject *empty_array = NULL;
PyObject *ident = NULL;
PyObject *s_fast = NULL;
Py_ssize_t i;
if (open_array == NULL || close_array == NULL || empty_array == NULL) {
open_array = PyUnicode_InternFromString("[");
close_array = PyUnicode_InternFromString("]");
empty_array = PyUnicode_InternFromString("[]");
if (open_array == NULL || close_array == NULL || empty_array == NULL)
return -1;
}
ident = NULL;
s_fast = PySequence_Fast(seq, "_iterencode_list needs a sequence");
if (s_fast == NULL)
return -1;
if (PySequence_Fast_GET_SIZE(s_fast) == 0) {
Py_DECREF(s_fast);
return _PyAccu_Accumulate(acc, empty_array);
}
if (s->markers != Py_None) {
int has_key;
ident = PyLong_FromVoidPtr(seq);
if (ident == NULL)
goto bail;
has_key = PyDict_Contains(s->markers, ident);
if (has_key) {
if (has_key != -1)
PyErr_SetString(PyExc_ValueError, "Circular reference detected");
goto bail;
}
if (PyDict_SetItem(s->markers, ident, seq)) {
goto bail;
}
}
if (_PyAccu_Accumulate(acc, open_array))
goto bail;
if (s->indent != Py_None) {
/* TODO: DOES NOT RUN */
indent_level += 1;
/*
newline_indent = '\n' + (' ' * (_indent * _current_indent_level))
separator = _item_separator + newline_indent
buf += newline_indent
*/
}
for (i = 0; i < PySequence_Fast_GET_SIZE(s_fast); i++) {
PyObject *obj = PySequence_Fast_GET_ITEM(s_fast, i);
if (i) {
if (_PyAccu_Accumulate(acc, s->item_separator))
goto bail;
}
if (encoder_listencode_obj(s, acc, obj, indent_level))
goto bail;
}
if (ident != NULL) {
if (PyDict_DelItem(s->markers, ident))
goto bail;
Py_CLEAR(ident);
}
/* TODO: DOES NOT RUN
if (s->indent != Py_None) {
indent_level -= 1;
yield '\n' + (' ' * (_indent * _current_indent_level))
}*/
if (_PyAccu_Accumulate(acc, close_array))
goto bail;
Py_DECREF(s_fast);
return 0;
bail:
Py_XDECREF(ident);
Py_DECREF(s_fast);
return -1;
}
static void
encoder_dealloc(PyObject *self)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(self);
encoder_clear(self);
Py_TYPE(self)->tp_free(self);
}
static int
encoder_traverse(PyObject *self, visitproc visit, void *arg)
{
PyEncoderObject *s;
assert(PyEncoder_Check(self));
s = (PyEncoderObject *)self;
Py_VISIT(s->markers);
Py_VISIT(s->defaultfn);
Py_VISIT(s->encoder);
Py_VISIT(s->indent);
Py_VISIT(s->key_separator);
Py_VISIT(s->item_separator);
Py_VISIT(s->sort_keys);
Py_VISIT(s->skipkeys);
return 0;
}
static int
encoder_clear(PyObject *self)
{
/* Deallocate Encoder */
PyEncoderObject *s;
assert(PyEncoder_Check(self));
s = (PyEncoderObject *)self;
Py_CLEAR(s->markers);
Py_CLEAR(s->defaultfn);
Py_CLEAR(s->encoder);
Py_CLEAR(s->indent);
Py_CLEAR(s->key_separator);
Py_CLEAR(s->item_separator);
Py_CLEAR(s->sort_keys);
Py_CLEAR(s->skipkeys);
return 0;
}
PyDoc_STRVAR(encoder_doc, "_iterencode(obj, _current_indent_level) -> iterable");
static
PyTypeObject PyEncoderType = {
PyVarObject_HEAD_INIT(NULL, 0)
"_json.Encoder", /* tp_name */
sizeof(PyEncoderObject), /* tp_basicsize */
0, /* tp_itemsize */
encoder_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
encoder_call, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
encoder_doc, /* tp_doc */
encoder_traverse, /* tp_traverse */
encoder_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
encoder_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
encoder_new, /* tp_new */
0, /* tp_free */
};
static PyMethodDef speedups_methods[] = {
{"encode_basestring_ascii",
(PyCFunction)py_encode_basestring_ascii,
METH_O,
pydoc_encode_basestring_ascii},
{"encode_basestring",
(PyCFunction)py_encode_basestring,
METH_O,
pydoc_encode_basestring},
{"scanstring",
(PyCFunction)py_scanstring,
METH_VARARGS,
pydoc_scanstring},
{NULL, NULL, 0, NULL}
};
PyDoc_STRVAR(module_doc,
"json speedups\n");
static struct PyModuleDef jsonmodule = {
PyModuleDef_HEAD_INIT,
"_json",
module_doc,
-1,
speedups_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__json(void)
{
PyObject *m = PyModule_Create(&jsonmodule);
if (!m)
return NULL;
if (PyType_Ready(&PyScannerType) < 0)
goto fail;
if (PyType_Ready(&PyEncoderType) < 0)
goto fail;
Py_INCREF((PyObject*)&PyScannerType);
if (PyModule_AddObject(m, "make_scanner", (PyObject*)&PyScannerType) < 0) {
Py_DECREF((PyObject*)&PyScannerType);
goto fail;
}
Py_INCREF((PyObject*)&PyEncoderType);
if (PyModule_AddObject(m, "make_encoder", (PyObject*)&PyEncoderType) < 0) {
Py_DECREF((PyObject*)&PyEncoderType);
goto fail;
}
return m;
fail:
Py_DECREF(m);
return NULL;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__json = {
"_json",
PyInit__json,
};
| 63,881 | 1,985 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/zlibmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/zlib/zlib.h"
/* clang-format off */
PYTHON_PROVIDE("zlib");
PYTHON_PROVIDE("zlib.DEFLATED");
PYTHON_PROVIDE("zlib.DEF_BUF_SIZE");
PYTHON_PROVIDE("zlib.DEF_MEM_LEVEL");
PYTHON_PROVIDE("zlib.MAX_WBITS");
PYTHON_PROVIDE("zlib.ZLIB_RUNTIME_VERSION");
PYTHON_PROVIDE("zlib.ZLIB_VERSION");
PYTHON_PROVIDE("zlib.Z_BEST_COMPRESSION");
PYTHON_PROVIDE("zlib.Z_BEST_SPEED");
PYTHON_PROVIDE("zlib.Z_BLOCK");
PYTHON_PROVIDE("zlib.Z_DEFAULT_COMPRESSION");
PYTHON_PROVIDE("zlib.Z_DEFAULT_STRATEGY");
PYTHON_PROVIDE("zlib.Z_FILTERED");
PYTHON_PROVIDE("zlib.Z_FINISH");
PYTHON_PROVIDE("zlib.Z_FIXED");
PYTHON_PROVIDE("zlib.Z_FULL_FLUSH");
PYTHON_PROVIDE("zlib.Z_HUFFMAN_ONLY");
PYTHON_PROVIDE("zlib.Z_NO_COMPRESSION");
PYTHON_PROVIDE("zlib.Z_NO_FLUSH");
PYTHON_PROVIDE("zlib.Z_PARTIAL_FLUSH");
PYTHON_PROVIDE("zlib.Z_RLE");
PYTHON_PROVIDE("zlib.Z_SYNC_FLUSH");
PYTHON_PROVIDE("zlib.Z_TREES");
PYTHON_PROVIDE("zlib.adler32");
PYTHON_PROVIDE("zlib.compress");
PYTHON_PROVIDE("zlib.compressobj");
PYTHON_PROVIDE("zlib.crc32");
PYTHON_PROVIDE("zlib.decompress");
PYTHON_PROVIDE("zlib.decompressobj");
PYTHON_PROVIDE("zlib.error");
/* zlibmodule.c -- gzip-compatible data compression */
/* See http://zlib.net/ */
/* Windows users: read Python's PCbuild\readme.txt */
#ifdef WITH_THREAD
#include "third_party/python/Include/pythread.h"
#define ENTER_ZLIB(obj) \
Py_BEGIN_ALLOW_THREADS; \
PyThread_acquire_lock((obj)->lock, 1); \
Py_END_ALLOW_THREADS;
#define LEAVE_ZLIB(obj) PyThread_release_lock((obj)->lock);
#else
#define ENTER_ZLIB(obj)
#define LEAVE_ZLIB(obj)
#endif
#if defined(ZLIB_VERNUM) && ZLIB_VERNUM >= 0x1221
# define AT_LEAST_ZLIB_1_2_2_1
#endif
/* The following parameters are copied from zutil.h, version 0.95 */
#define DEFLATED 8
#if MAX_MEM_LEVEL >= 8
# define DEF_MEM_LEVEL 8
#else
# define DEF_MEM_LEVEL MAX_MEM_LEVEL
#endif
/* Initial buffer size. */
#define DEF_BUF_SIZE (16*1024)
static PyTypeObject Comptype;
static PyTypeObject Decomptype;
static PyObject *ZlibError;
typedef struct
{
PyObject_HEAD
z_stream zst;
PyObject *unused_data;
PyObject *unconsumed_tail;
char eof;
int is_initialised;
PyObject *zdict;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
} compobject;
static void
zlib_error(z_stream zst, int err, const char *msg)
{
const char *zmsg = Z_NULL;
/* In case of a version mismatch, zst.msg won't be initialized.
Check for this case first, before looking at zst.msg. */
if (err == Z_VERSION_ERROR)
zmsg = "library version mismatch";
if (zmsg == Z_NULL)
zmsg = zst.msg;
if (zmsg == Z_NULL) {
switch (err) {
case Z_BUF_ERROR:
zmsg = "incomplete or truncated stream";
break;
case Z_STREAM_ERROR:
zmsg = "inconsistent stream state";
break;
case Z_DATA_ERROR:
zmsg = "invalid input data";
break;
}
}
if (zmsg == Z_NULL)
PyErr_Format(ZlibError, "Error %d %s", err, msg);
else
PyErr_Format(ZlibError, "Error %d %s: %.200s", err, msg, zmsg);
}
/*[clinic input]
module zlib
class zlib.Compress "compobject *" "&Comptype"
class zlib.Decompress "compobject *" "&Decomptype"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=093935115c3e3158]*/
static compobject *
newcompobject(PyTypeObject *type)
{
compobject *self;
self = PyObject_New(compobject, type);
if (self == NULL)
return NULL;
self->eof = 0;
self->is_initialised = 0;
self->zdict = NULL;
self->unused_data = PyBytes_FromStringAndSize("", 0);
if (self->unused_data == NULL) {
Py_DECREF(self);
return NULL;
}
self->unconsumed_tail = PyBytes_FromStringAndSize("", 0);
if (self->unconsumed_tail == NULL) {
Py_DECREF(self);
return NULL;
}
#ifdef WITH_THREAD
self->lock = PyThread_allocate_lock();
if (self->lock == NULL) {
Py_DECREF(self);
PyErr_SetString(PyExc_MemoryError, "Unable to allocate lock");
return NULL;
}
#endif
return self;
}
static void*
PyZlib_Malloc(voidpf ctx, uInt items, uInt size)
{
if (size != 0 && items > (size_t)PY_SSIZE_T_MAX / size)
return NULL;
/* PyMem_Malloc() cannot be used: the GIL is not held when
inflate() and deflate() are called */
return PyMem_RawMalloc((size_t)items * (size_t)size);
}
static void
PyZlib_Free(voidpf ctx, void *ptr)
{
PyMem_RawFree(ptr);
}
static void
arrange_input_buffer(z_stream *zst, Py_ssize_t *remains)
{
zst->avail_in = Py_MIN((size_t)*remains, UINT_MAX);
*remains -= zst->avail_in;
}
static Py_ssize_t
arrange_output_buffer_with_maximum(z_stream *zst, PyObject **buffer,
Py_ssize_t length,
Py_ssize_t max_length)
{
Py_ssize_t occupied;
if (*buffer == NULL) {
if (!(*buffer = PyBytes_FromStringAndSize(NULL, length)))
return -1;
occupied = 0;
}
else {
occupied = zst->next_out - (Byte *)PyBytes_AS_STRING(*buffer);
if (length == occupied) {
Py_ssize_t new_length;
assert(length <= max_length);
/* can not scale the buffer over max_length */
if (length == max_length)
return -2;
if (length <= (max_length >> 1))
new_length = length << 1;
else
new_length = max_length;
if (_PyBytes_Resize(buffer, new_length) < 0)
return -1;
length = new_length;
}
}
zst->avail_out = Py_MIN((size_t)(length - occupied), UINT_MAX);
zst->next_out = (Byte *)PyBytes_AS_STRING(*buffer) + occupied;
return length;
}
static Py_ssize_t
arrange_output_buffer(z_stream *zst, PyObject **buffer, Py_ssize_t length)
{
Py_ssize_t ret;
ret = arrange_output_buffer_with_maximum(zst, buffer, length,
PY_SSIZE_T_MAX);
if (ret == -2)
PyErr_NoMemory();
return ret;
}
/*[clinic input]
zlib.compress
data: Py_buffer
Binary data to be compressed.
/
level: int(c_default="Z_DEFAULT_COMPRESSION") = Z_DEFAULT_COMPRESSION
Compression level, in 0-9 or -1.
Returns a bytes object containing compressed data.
[clinic start generated code]*/
static PyObject *
zlib_compress_impl(PyObject *module, Py_buffer *data, int level)
/*[clinic end generated code: output=d80906d73f6294c8 input=638d54b6315dbed3]*/
{
PyObject *RetVal = NULL;
Byte *ibuf;
Py_ssize_t ibuflen, obuflen = DEF_BUF_SIZE;
int err, flush;
z_stream zst;
ibuf = data->buf;
ibuflen = data->len;
zst.opaque = NULL;
zst.zalloc = PyZlib_Malloc;
zst.zfree = PyZlib_Free;
zst.next_in = ibuf;
err = deflateInit(&zst, level);
switch (err) {
case Z_OK:
break;
case Z_MEM_ERROR:
PyErr_SetString(PyExc_MemoryError,
"Out of memory while compressing data");
goto error;
case Z_STREAM_ERROR:
PyErr_SetString(ZlibError, "Bad compression level");
goto error;
default:
deflateEnd(&zst);
zlib_error(zst, err, "while compressing data");
goto error;
}
do {
arrange_input_buffer(&zst, &ibuflen);
flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH;
do {
obuflen = arrange_output_buffer(&zst, &RetVal, obuflen);
if (obuflen < 0) {
deflateEnd(&zst);
goto error;
}
Py_BEGIN_ALLOW_THREADS
err = deflate(&zst, flush);
Py_END_ALLOW_THREADS
if (err == Z_STREAM_ERROR) {
deflateEnd(&zst);
zlib_error(zst, err, "while compressing data");
goto error;
}
} while (zst.avail_out == 0);
assert(zst.avail_in == 0);
} while (flush != Z_FINISH);
assert(err == Z_STREAM_END);
err = deflateEnd(&zst);
if (err == Z_OK) {
if (_PyBytes_Resize(&RetVal, zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) < 0)
goto error;
return RetVal;
}
else
zlib_error(zst, err, "while finishing compression");
error:
Py_XDECREF(RetVal);
return NULL;
}
/*[python input]
class ssize_t_converter(CConverter):
type = 'Py_ssize_t'
converter = 'ssize_t_converter'
c_ignored_default = "0"
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=5f34ba1b394cb8e7]*/
static int
ssize_t_converter(PyObject *obj, void *ptr)
{
PyObject *long_obj;
Py_ssize_t val;
long_obj = (PyObject *)_PyLong_FromNbInt(obj);
if (long_obj == NULL) {
return 0;
}
val = PyLong_AsSsize_t(long_obj);
Py_DECREF(long_obj);
if (val == -1 && PyErr_Occurred()) {
return 0;
}
*(Py_ssize_t *)ptr = val;
return 1;
}
/*[clinic input]
zlib.decompress
data: Py_buffer
Compressed data.
/
wbits: int(c_default="MAX_WBITS") = MAX_WBITS
The window buffer size and container format.
bufsize: ssize_t(c_default="DEF_BUF_SIZE") = DEF_BUF_SIZE
The initial output buffer size.
Returns a bytes object containing the uncompressed data.
[clinic start generated code]*/
static PyObject *
zlib_decompress_impl(PyObject *module, Py_buffer *data, int wbits,
Py_ssize_t bufsize)
/*[clinic end generated code: output=77c7e35111dc8c42 input=21960936208e9a5b]*/
{
PyObject *RetVal = NULL;
Byte *ibuf;
Py_ssize_t ibuflen;
int err, flush;
z_stream zst;
if (bufsize < 0) {
PyErr_SetString(PyExc_ValueError, "bufsize must be non-negative");
return NULL;
} else if (bufsize == 0) {
bufsize = 1;
}
ibuf = data->buf;
ibuflen = data->len;
zst.opaque = NULL;
zst.zalloc = PyZlib_Malloc;
zst.zfree = PyZlib_Free;
zst.avail_in = 0;
zst.next_in = ibuf;
err = inflateInit2(&zst, wbits);
switch (err) {
case Z_OK:
break;
case Z_MEM_ERROR:
PyErr_SetString(PyExc_MemoryError,
"Out of memory while decompressing data");
goto error;
default:
inflateEnd(&zst);
zlib_error(zst, err, "while preparing to decompress data");
goto error;
}
do {
arrange_input_buffer(&zst, &ibuflen);
flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH;
do {
bufsize = arrange_output_buffer(&zst, &RetVal, bufsize);
if (bufsize < 0) {
inflateEnd(&zst);
goto error;
}
Py_BEGIN_ALLOW_THREADS
err = inflate(&zst, flush);
Py_END_ALLOW_THREADS
switch (err) {
case Z_OK: /* fall through */
case Z_BUF_ERROR: /* fall through */
case Z_STREAM_END:
break;
case Z_MEM_ERROR:
inflateEnd(&zst);
PyErr_SetString(PyExc_MemoryError,
"Out of memory while decompressing data");
goto error;
default:
inflateEnd(&zst);
zlib_error(zst, err, "while decompressing data");
goto error;
}
} while (zst.avail_out == 0);
} while (err != Z_STREAM_END && ibuflen != 0);
if (err != Z_STREAM_END) {
inflateEnd(&zst);
zlib_error(zst, err, "while decompressing data");
goto error;
}
err = inflateEnd(&zst);
if (err != Z_OK) {
zlib_error(zst, err, "while finishing decompression");
goto error;
}
if (_PyBytes_Resize(&RetVal, zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) < 0)
goto error;
return RetVal;
error:
Py_XDECREF(RetVal);
return NULL;
}
/*[clinic input]
zlib.compressobj
level: int(c_default="Z_DEFAULT_COMPRESSION") = Z_DEFAULT_COMPRESSION
The compression level (an integer in the range 0-9 or -1; default is
currently equivalent to 6). Higher compression levels are slower,
but produce smaller results.
method: int(c_default="DEFLATED") = DEFLATED
The compression algorithm. If given, this must be DEFLATED.
wbits: int(c_default="MAX_WBITS") = MAX_WBITS
+9 to +15: The base-two logarithm of the window size. Include a zlib
container.
-9 to -15: Generate a raw stream.
+25 to +31: Include a gzip container.
memLevel: int(c_default="DEF_MEM_LEVEL") = DEF_MEM_LEVEL
Controls the amount of memory used for internal compression state.
Valid values range from 1 to 9. Higher values result in higher memory
usage, faster compression, and smaller output.
strategy: int(c_default="Z_DEFAULT_STRATEGY") = Z_DEFAULT_STRATEGY
Used to tune the compression algorithm. Possible values are
Z_DEFAULT_STRATEGY, Z_RLE, Z_HUFFMAN_ONLY, Z_FILTERED, and
Z_FIXED.
zdict: Py_buffer = None
The predefined compression dictionary - a sequence of bytes
containing subsequences that are likely to occur in the input data.
Return a compressor object.
[clinic start generated code]*/
static PyObject *
zlib_compressobj_impl(PyObject *module, int level, int method, int wbits,
int memLevel, int strategy, Py_buffer *zdict)
/*[clinic end generated code: output=8b5bed9c8fc3814d input=b5a08c304c3bae52]*/
{
compobject *self = NULL;
int err;
if (zdict->buf != NULL && (size_t)zdict->len > UINT_MAX) {
PyErr_SetString(PyExc_OverflowError,
"zdict length does not fit in an unsigned int");
goto error;
}
self = newcompobject(&Comptype);
if (self == NULL)
goto error;
self->zst.opaque = NULL;
self->zst.zalloc = PyZlib_Malloc;
self->zst.zfree = PyZlib_Free;
self->zst.next_in = NULL;
self->zst.avail_in = 0;
err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy);
switch (err) {
case Z_OK:
self->is_initialised = 1;
if (zdict->buf == NULL) {
goto success;
} else {
err = deflateSetDictionary(&self->zst,
zdict->buf, (unsigned int)zdict->len);
switch (err) {
case Z_OK:
goto success;
case Z_STREAM_ERROR:
PyErr_SetString(PyExc_ValueError, "Invalid dictionary");
goto error;
default:
PyErr_SetString(PyExc_ValueError, "deflateSetDictionary()");
goto error;
}
}
case Z_MEM_ERROR:
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for compression object");
goto error;
case Z_STREAM_ERROR:
PyErr_SetString(PyExc_ValueError, "Invalid initialization option");
goto error;
default:
zlib_error(self->zst, err, "while creating compression object");
goto error;
}
error:
Py_CLEAR(self);
success:
return (PyObject *)self;
}
static int
set_inflate_zdict(compobject *self)
{
Py_buffer zdict_buf;
int err;
if (PyObject_GetBuffer(self->zdict, &zdict_buf, PyBUF_SIMPLE) == -1) {
return -1;
}
if ((size_t)zdict_buf.len > UINT_MAX) {
PyErr_SetString(PyExc_OverflowError,
"zdict length does not fit in an unsigned int");
PyBuffer_Release(&zdict_buf);
return -1;
}
err = inflateSetDictionary(&self->zst,
zdict_buf.buf, (unsigned int)zdict_buf.len);
PyBuffer_Release(&zdict_buf);
if (err != Z_OK) {
zlib_error(self->zst, err, "while setting zdict");
return -1;
}
return 0;
}
/*[clinic input]
zlib.decompressobj
wbits: int(c_default="MAX_WBITS") = MAX_WBITS
The window buffer size and container format.
zdict: object(c_default="NULL") = b''
The predefined compression dictionary. This must be the same
dictionary as used by the compressor that produced the input data.
Return a decompressor object.
[clinic start generated code]*/
static PyObject *
zlib_decompressobj_impl(PyObject *module, int wbits, PyObject *zdict)
/*[clinic end generated code: output=3069b99994f36906 input=d3832b8511fc977b]*/
{
int err;
compobject *self;
if (zdict != NULL && !PyObject_CheckBuffer(zdict)) {
PyErr_SetString(PyExc_TypeError,
"zdict argument must support the buffer protocol");
return NULL;
}
self = newcompobject(&Decomptype);
if (self == NULL)
return NULL;
self->zst.opaque = NULL;
self->zst.zalloc = PyZlib_Malloc;
self->zst.zfree = PyZlib_Free;
self->zst.next_in = NULL;
self->zst.avail_in = 0;
if (zdict != NULL) {
Py_INCREF(zdict);
self->zdict = zdict;
}
err = inflateInit2(&self->zst, wbits);
switch (err) {
case Z_OK:
self->is_initialised = 1;
if (self->zdict != NULL && wbits < 0) {
#ifdef AT_LEAST_ZLIB_1_2_2_1
if (set_inflate_zdict(self) < 0) {
Py_DECREF(self);
return NULL;
}
#else
PyErr_Format(ZlibError,
"zlib version %s does not allow raw inflate with dictionary",
ZLIB_VERSION);
Py_DECREF(self);
return NULL;
#endif
}
return (PyObject *)self;
case Z_STREAM_ERROR:
Py_DECREF(self);
PyErr_SetString(PyExc_ValueError, "Invalid initialization option");
return NULL;
case Z_MEM_ERROR:
Py_DECREF(self);
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for decompression object");
return NULL;
default:
zlib_error(self->zst, err, "while creating decompression object");
Py_DECREF(self);
return NULL;
}
}
static void
Dealloc(compobject *self)
{
#ifdef WITH_THREAD
PyThread_free_lock(self->lock);
#endif
Py_XDECREF(self->unused_data);
Py_XDECREF(self->unconsumed_tail);
Py_XDECREF(self->zdict);
PyObject_Del(self);
}
static void
Comp_dealloc(compobject *self)
{
if (self->is_initialised)
deflateEnd(&self->zst);
Dealloc(self);
}
static void
Decomp_dealloc(compobject *self)
{
if (self->is_initialised)
inflateEnd(&self->zst);
Dealloc(self);
}
/*[clinic input]
zlib.Compress.compress
data: Py_buffer
Binary data to be compressed.
/
Returns a bytes object containing compressed data.
After calling this function, some of the input data may still
be stored in internal buffers for later processing.
Call the flush() method to clear these buffers.
[clinic start generated code]*/
static PyObject *
zlib_Compress_compress_impl(compobject *self, Py_buffer *data)
/*[clinic end generated code: output=5d5cd791cbc6a7f4 input=0d95908d6e64fab8]*/
{
PyObject *RetVal = NULL;
Py_ssize_t ibuflen, obuflen = DEF_BUF_SIZE;
int err;
self->zst.next_in = data->buf;
ibuflen = data->len;
ENTER_ZLIB(self);
do {
arrange_input_buffer(&self->zst, &ibuflen);
do {
obuflen = arrange_output_buffer(&self->zst, &RetVal, obuflen);
if (obuflen < 0)
goto error;
Py_BEGIN_ALLOW_THREADS
err = deflate(&self->zst, Z_NO_FLUSH);
Py_END_ALLOW_THREADS
if (err == Z_STREAM_ERROR) {
zlib_error(self->zst, err, "while compressing data");
goto error;
}
} while (self->zst.avail_out == 0);
assert(self->zst.avail_in == 0);
} while (ibuflen != 0);
if (_PyBytes_Resize(&RetVal, self->zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) == 0)
goto success;
error:
Py_CLEAR(RetVal);
success:
LEAVE_ZLIB(self);
return RetVal;
}
/* Helper for objdecompress() and flush(). Saves any unconsumed input data in
self->unused_data or self->unconsumed_tail, as appropriate. */
static int
save_unconsumed_input(compobject *self, Py_buffer *data, int err)
{
if (err == Z_STREAM_END) {
/* The end of the compressed data has been reached. Store the leftover
input data in self->unused_data. */
if (self->zst.avail_in > 0) {
Py_ssize_t old_size = PyBytes_GET_SIZE(self->unused_data);
Py_ssize_t new_size, left_size;
PyObject *new_data;
left_size = (Byte *)data->buf + data->len - self->zst.next_in;
if (left_size > (PY_SSIZE_T_MAX - old_size)) {
PyErr_NoMemory();
return -1;
}
new_size = old_size + left_size;
new_data = PyBytes_FromStringAndSize(NULL, new_size);
if (new_data == NULL)
return -1;
memcpy(PyBytes_AS_STRING(new_data),
PyBytes_AS_STRING(self->unused_data), old_size);
memcpy(PyBytes_AS_STRING(new_data) + old_size,
self->zst.next_in, left_size);
Py_SETREF(self->unused_data, new_data);
self->zst.avail_in = 0;
}
}
if (self->zst.avail_in > 0 || PyBytes_GET_SIZE(self->unconsumed_tail)) {
/* This code handles two distinct cases:
1. Output limit was reached. Save leftover input in unconsumed_tail.
2. All input data was consumed. Clear unconsumed_tail. */
Py_ssize_t left_size = (Byte *)data->buf + data->len - self->zst.next_in;
PyObject *new_data = PyBytes_FromStringAndSize(
(char *)self->zst.next_in, left_size);
if (new_data == NULL)
return -1;
Py_SETREF(self->unconsumed_tail, new_data);
}
return 0;
}
/*[clinic input]
zlib.Decompress.decompress
data: Py_buffer
The binary data to decompress.
/
max_length: ssize_t = 0
The maximum allowable length of the decompressed data.
Unconsumed input data will be stored in
the unconsumed_tail attribute.
Return a bytes object containing the decompressed version of the data.
After calling this function, some of the input data may still be stored in
internal buffers for later processing.
Call the flush() method to clear these buffers.
[clinic start generated code]*/
static PyObject *
zlib_Decompress_decompress_impl(compobject *self, Py_buffer *data,
Py_ssize_t max_length)
/*[clinic end generated code: output=6e5173c74e710352 input=b85a212a012b770a]*/
{
int err = Z_OK;
Py_ssize_t ibuflen, obuflen = DEF_BUF_SIZE, hard_limit;
PyObject *RetVal = NULL;
if (max_length < 0) {
PyErr_SetString(PyExc_ValueError, "max_length must be non-negative");
return NULL;
} else if (max_length == 0)
hard_limit = PY_SSIZE_T_MAX;
else
hard_limit = max_length;
self->zst.next_in = data->buf;
ibuflen = data->len;
/* limit amount of data allocated to max_length */
if (max_length && obuflen > max_length)
obuflen = max_length;
ENTER_ZLIB(self);
do {
arrange_input_buffer(&self->zst, &ibuflen);
do {
obuflen = arrange_output_buffer_with_maximum(&self->zst, &RetVal,
obuflen, hard_limit);
if (obuflen == -2) {
if (max_length > 0) {
goto save;
}
PyErr_NoMemory();
}
if (obuflen < 0) {
goto abort;
}
Py_BEGIN_ALLOW_THREADS
err = inflate(&self->zst, Z_SYNC_FLUSH);
Py_END_ALLOW_THREADS
switch (err) {
case Z_OK: /* fall through */
case Z_BUF_ERROR: /* fall through */
case Z_STREAM_END:
break;
default:
if (err == Z_NEED_DICT && self->zdict != NULL) {
if (set_inflate_zdict(self) < 0)
goto abort;
else
break;
}
goto save;
}
} while (self->zst.avail_out == 0 || err == Z_NEED_DICT);
} while (err != Z_STREAM_END && ibuflen != 0);
save:
if (save_unconsumed_input(self, data, err) < 0)
goto abort;
if (err == Z_STREAM_END) {
/* This is the logical place to call inflateEnd, but the old behaviour
of only calling it on flush() is preserved. */
self->eof = 1;
} else if (err != Z_OK && err != Z_BUF_ERROR) {
/* We will only get Z_BUF_ERROR if the output buffer was full
but there wasn't more output when we tried again, so it is
not an error condition.
*/
zlib_error(self->zst, err, "while decompressing data");
goto abort;
}
if (_PyBytes_Resize(&RetVal, self->zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) == 0)
goto success;
abort:
Py_CLEAR(RetVal);
success:
LEAVE_ZLIB(self);
return RetVal;
}
/*[clinic input]
zlib.Compress.flush
mode: int(c_default="Z_FINISH") = zlib.Z_FINISH
One of the constants Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH.
If mode == Z_FINISH, the compressor object can no longer be
used after calling the flush() method. Otherwise, more data
can still be compressed.
/
Return a bytes object containing any remaining compressed data.
[clinic start generated code]*/
static PyObject *
zlib_Compress_flush_impl(compobject *self, int mode)
/*[clinic end generated code: output=a203f4cefc9de727 input=73ed066794bd15bc]*/
{
int err;
Py_ssize_t length = DEF_BUF_SIZE;
PyObject *RetVal = NULL;
/* Flushing with Z_NO_FLUSH is a no-op, so there's no point in
doing any work at all; just return an empty string. */
if (mode == Z_NO_FLUSH) {
return PyBytes_FromStringAndSize(NULL, 0);
}
ENTER_ZLIB(self);
self->zst.avail_in = 0;
do {
length = arrange_output_buffer(&self->zst, &RetVal, length);
if (length < 0) {
Py_CLEAR(RetVal);
goto error;
}
Py_BEGIN_ALLOW_THREADS
err = deflate(&self->zst, mode);
Py_END_ALLOW_THREADS
if (err == Z_STREAM_ERROR) {
zlib_error(self->zst, err, "while flushing");
Py_CLEAR(RetVal);
goto error;
}
} while (self->zst.avail_out == 0);
assert(self->zst.avail_in == 0);
/* If mode is Z_FINISH, we also have to call deflateEnd() to free
various data structures. Note we should only get Z_STREAM_END when
mode is Z_FINISH, but checking both for safety*/
if (err == Z_STREAM_END && mode == Z_FINISH) {
err = deflateEnd(&self->zst);
if (err != Z_OK) {
zlib_error(self->zst, err, "while finishing compression");
Py_CLEAR(RetVal);
goto error;
}
else
self->is_initialised = 0;
/* We will only get Z_BUF_ERROR if the output buffer was full
but there wasn't more output when we tried again, so it is
not an error condition.
*/
} else if (err != Z_OK && err != Z_BUF_ERROR) {
zlib_error(self->zst, err, "while flushing");
Py_CLEAR(RetVal);
goto error;
}
if (_PyBytes_Resize(&RetVal, self->zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) < 0)
Py_CLEAR(RetVal);
error:
LEAVE_ZLIB(self);
return RetVal;
}
#ifdef HAVE_ZLIB_COPY
/*[clinic input]
zlib.Compress.copy
Return a copy of the compression object.
[clinic start generated code]*/
static PyObject *
zlib_Compress_copy_impl(compobject *self)
/*[clinic end generated code: output=5144aa153c21e805 input=c656351f94b82718]*/
{
compobject *retval = NULL;
int err;
retval = newcompobject(&Comptype);
if (!retval) return NULL;
/* Copy the zstream state
* We use ENTER_ZLIB / LEAVE_ZLIB to make this thread-safe
*/
ENTER_ZLIB(self);
err = deflateCopy(&retval->zst, &self->zst);
switch (err) {
case Z_OK:
break;
case Z_STREAM_ERROR:
PyErr_SetString(PyExc_ValueError, "Inconsistent stream state");
goto error;
case Z_MEM_ERROR:
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for compression object");
goto error;
default:
zlib_error(self->zst, err, "while copying compression object");
goto error;
}
Py_INCREF(self->unused_data);
Py_XSETREF(retval->unused_data, self->unused_data);
Py_INCREF(self->unconsumed_tail);
Py_XSETREF(retval->unconsumed_tail, self->unconsumed_tail);
Py_XINCREF(self->zdict);
Py_XSETREF(retval->zdict, self->zdict);
retval->eof = self->eof;
/* Mark it as being initialized */
retval->is_initialised = 1;
LEAVE_ZLIB(self);
return (PyObject *)retval;
error:
LEAVE_ZLIB(self);
Py_XDECREF(retval);
return NULL;
}
/*[clinic input]
zlib.Decompress.copy
Return a copy of the decompression object.
[clinic start generated code]*/
static PyObject *
zlib_Decompress_copy_impl(compobject *self)
/*[clinic end generated code: output=02a883a2a510c8cc input=ba6c3e96712a596b]*/
{
compobject *retval = NULL;
int err;
retval = newcompobject(&Decomptype);
if (!retval) return NULL;
/* Copy the zstream state
* We use ENTER_ZLIB / LEAVE_ZLIB to make this thread-safe
*/
ENTER_ZLIB(self);
err = inflateCopy(&retval->zst, &self->zst);
switch (err) {
case Z_OK:
break;
case Z_STREAM_ERROR:
PyErr_SetString(PyExc_ValueError, "Inconsistent stream state");
goto error;
case Z_MEM_ERROR:
PyErr_SetString(PyExc_MemoryError,
"Can't allocate memory for decompression object");
goto error;
default:
zlib_error(self->zst, err, "while copying decompression object");
goto error;
}
Py_INCREF(self->unused_data);
Py_XSETREF(retval->unused_data, self->unused_data);
Py_INCREF(self->unconsumed_tail);
Py_XSETREF(retval->unconsumed_tail, self->unconsumed_tail);
Py_XINCREF(self->zdict);
Py_XSETREF(retval->zdict, self->zdict);
retval->eof = self->eof;
/* Mark it as being initialized */
retval->is_initialised = 1;
LEAVE_ZLIB(self);
return (PyObject *)retval;
error:
LEAVE_ZLIB(self);
Py_XDECREF(retval);
return NULL;
}
#endif
/*[clinic input]
zlib.Decompress.flush
length: ssize_t(c_default="DEF_BUF_SIZE") = zlib.DEF_BUF_SIZE
the initial size of the output buffer.
/
Return a bytes object containing any remaining decompressed data.
[clinic start generated code]*/
static PyObject *
zlib_Decompress_flush_impl(compobject *self, Py_ssize_t length)
/*[clinic end generated code: output=68c75ea127cbe654 input=aa4ec37f3aef4da0]*/
{
int err, flush;
Py_buffer data;
PyObject *RetVal = NULL;
Py_ssize_t ibuflen;
if (length <= 0) {
PyErr_SetString(PyExc_ValueError, "length must be greater than zero");
return NULL;
}
if (PyObject_GetBuffer(self->unconsumed_tail, &data, PyBUF_SIMPLE) == -1)
return NULL;
ENTER_ZLIB(self);
self->zst.next_in = data.buf;
ibuflen = data.len;
do {
arrange_input_buffer(&self->zst, &ibuflen);
flush = ibuflen == 0 ? Z_FINISH : Z_NO_FLUSH;
do {
length = arrange_output_buffer(&self->zst, &RetVal, length);
if (length < 0)
goto abort;
Py_BEGIN_ALLOW_THREADS
err = inflate(&self->zst, flush);
Py_END_ALLOW_THREADS
switch (err) {
case Z_OK: /* fall through */
case Z_BUF_ERROR: /* fall through */
case Z_STREAM_END:
break;
default:
if (err == Z_NEED_DICT && self->zdict != NULL) {
if (set_inflate_zdict(self) < 0)
goto abort;
else
break;
}
goto save;
}
} while (self->zst.avail_out == 0 || err == Z_NEED_DICT);
} while (err != Z_STREAM_END && ibuflen != 0);
save:
if (save_unconsumed_input(self, &data, err) < 0)
goto abort;
/* If at end of stream, clean up any memory allocated by zlib. */
if (err == Z_STREAM_END) {
self->eof = 1;
self->is_initialised = 0;
err = inflateEnd(&self->zst);
if (err != Z_OK) {
zlib_error(self->zst, err, "while finishing decompression");
goto abort;
}
}
if (_PyBytes_Resize(&RetVal, self->zst.next_out -
(Byte *)PyBytes_AS_STRING(RetVal)) == 0)
goto success;
abort:
Py_CLEAR(RetVal);
success:
PyBuffer_Release(&data);
LEAVE_ZLIB(self);
return RetVal;
}
#include "third_party/python/Modules/clinic/zlibmodule.inc"
static PyMethodDef comp_methods[] =
{
ZLIB_COMPRESS_COMPRESS_METHODDEF
ZLIB_COMPRESS_FLUSH_METHODDEF
ZLIB_COMPRESS_COPY_METHODDEF
{NULL, NULL}
};
static PyMethodDef Decomp_methods[] =
{
ZLIB_DECOMPRESS_DECOMPRESS_METHODDEF
ZLIB_DECOMPRESS_FLUSH_METHODDEF
ZLIB_DECOMPRESS_COPY_METHODDEF
{NULL, NULL}
};
#define COMP_OFF(x) offsetof(compobject, x)
static PyMemberDef Decomp_members[] = {
{"unused_data", T_OBJECT, COMP_OFF(unused_data), READONLY},
{"unconsumed_tail", T_OBJECT, COMP_OFF(unconsumed_tail), READONLY},
{"eof", T_BOOL, COMP_OFF(eof), READONLY},
{NULL},
};
/*[clinic input]
zlib.adler32
data: Py_buffer
value: unsigned_int(bitwise=True) = 1
Starting value of the checksum.
/
Compute an Adler-32 checksum of data.
The returned checksum is an integer.
[clinic start generated code]*/
static PyObject *
zlib_adler32_impl(PyObject *module, Py_buffer *data, unsigned int value)
/*[clinic end generated code: output=422106f5ca8c92c0 input=6ff4557872160e88]*/
{
/* Releasing the GIL for very small buffers is inefficient
and may lower performance */
if (data->len > 1024*5) {
unsigned char *buf = data->buf;
Py_ssize_t len = data->len;
Py_BEGIN_ALLOW_THREADS
/* Avoid truncation of length for very large buffers. adler32() takes
length as an unsigned int, which may be narrower than Py_ssize_t. */
while ((size_t)len > UINT_MAX) {
value = adler32(value, buf, UINT_MAX);
buf += (size_t) UINT_MAX;
len -= (size_t) UINT_MAX;
}
value = adler32(value, buf, (unsigned int)len);
Py_END_ALLOW_THREADS
} else {
value = adler32(value, data->buf, (unsigned int)data->len);
}
return PyLong_FromUnsignedLong(value & 0xffffffffU);
}
/*[clinic input]
zlib.crc32
data: Py_buffer
value: unsigned_int(bitwise=True) = 0
Starting value of the checksum.
/
Compute a CRC-32 checksum of data.
The returned checksum is an integer.
[clinic start generated code]*/
static PyObject *
zlib_crc32_impl(PyObject *module, Py_buffer *data, unsigned int value)
/*[clinic end generated code: output=63499fa20af7ea25 input=26c3ed430fa00b4c]*/
{
int signed_val;
/* Releasing the GIL for very small buffers is inefficient
and may lower performance */
if (data->len > 1024*5) {
unsigned char *buf = data->buf;
Py_ssize_t len = data->len;
Py_BEGIN_ALLOW_THREADS
/* Avoid truncation of length for very large buffers. crc32() takes
length as an unsigned int, which may be narrower than Py_ssize_t. */
while ((size_t)len > UINT_MAX) {
value = crc32(value, buf, UINT_MAX);
buf += (size_t) UINT_MAX;
len -= (size_t) UINT_MAX;
}
signed_val = crc32(value, buf, (unsigned int)len);
Py_END_ALLOW_THREADS
} else {
signed_val = crc32(value, data->buf, (unsigned int)data->len);
}
return PyLong_FromUnsignedLong(signed_val & 0xffffffffU);
}
static PyMethodDef zlib_methods[] =
{
ZLIB_ADLER32_METHODDEF
ZLIB_COMPRESS_METHODDEF
ZLIB_COMPRESSOBJ_METHODDEF
ZLIB_CRC32_METHODDEF
ZLIB_DECOMPRESS_METHODDEF
ZLIB_DECOMPRESSOBJ_METHODDEF
{NULL, NULL}
};
static PyTypeObject Comptype = {
PyVarObject_HEAD_INIT(0, 0)
"zlib.Compress",
sizeof(compobject),
0,
(destructor)Comp_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
comp_methods, /*tp_methods*/
};
static PyTypeObject Decomptype = {
PyVarObject_HEAD_INIT(0, 0)
"zlib.Decompress",
sizeof(compobject),
0,
(destructor)Decomp_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
Decomp_methods, /*tp_methods*/
Decomp_members, /*tp_members*/
};
PyDoc_STRVAR(zlib_module_documentation,
"The functions in this module allow compression and decompression using the\n"
"zlib library, which is based on GNU zip.\n"
"\n"
"adler32(string[, start]) -- Compute an Adler-32 checksum.\n"
"compress(data[, level]) -- Compress data, with compression level 0-9 or -1.\n"
"compressobj([level[, ...]]) -- Return a compressor object.\n"
"crc32(string[, start]) -- Compute a CRC-32 checksum.\n"
"decompress(string,[wbits],[bufsize]) -- Decompresses a compressed string.\n"
"decompressobj([wbits[, zdict]]]) -- Return a decompressor object.\n"
"\n"
"'wbits' is window buffer size and container format.\n"
"Compressor objects support compress() and flush() methods; decompressor\n"
"objects support decompress() and flush().");
static struct PyModuleDef zlibmodule = {
PyModuleDef_HEAD_INIT,
"zlib",
zlib_module_documentation,
-1,
zlib_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_zlib(void)
{
PyObject *m, *ver;
if (PyType_Ready(&Comptype) < 0)
return NULL;
if (PyType_Ready(&Decomptype) < 0)
return NULL;
m = PyModule_Create(&zlibmodule);
if (m == NULL)
return NULL;
ZlibError = PyErr_NewException("zlib.error", NULL, NULL);
if (ZlibError != NULL) {
Py_INCREF(ZlibError);
PyModule_AddObject(m, "error", ZlibError);
}
PyModule_AddIntMacro(m, MAX_WBITS);
PyModule_AddIntMacro(m, DEFLATED);
PyModule_AddIntMacro(m, DEF_MEM_LEVEL);
PyModule_AddIntMacro(m, DEF_BUF_SIZE);
// compression levels
PyModule_AddIntMacro(m, Z_NO_COMPRESSION);
PyModule_AddIntMacro(m, Z_BEST_SPEED);
PyModule_AddIntMacro(m, Z_BEST_COMPRESSION);
PyModule_AddIntMacro(m, Z_DEFAULT_COMPRESSION);
// compression strategies
PyModule_AddIntMacro(m, Z_FILTERED);
PyModule_AddIntMacro(m, Z_HUFFMAN_ONLY);
PyModule_AddIntMacro(m, Z_RLE);
PyModule_AddIntMacro(m, Z_FIXED);
PyModule_AddIntMacro(m, Z_DEFAULT_STRATEGY);
// allowed flush values
PyModule_AddIntMacro(m, Z_NO_FLUSH);
PyModule_AddIntMacro(m, Z_PARTIAL_FLUSH);
PyModule_AddIntMacro(m, Z_SYNC_FLUSH);
PyModule_AddIntMacro(m, Z_FULL_FLUSH);
PyModule_AddIntMacro(m, Z_FINISH);
#ifdef Z_BLOCK // 1.2.0.5 for inflate, 1.2.3.4 for deflate
PyModule_AddIntMacro(m, Z_BLOCK);
#endif
#ifdef Z_TREES // 1.2.3.4, only for inflate
PyModule_AddIntMacro(m, Z_TREES);
#endif
ver = PyUnicode_FromString(ZLIB_VERSION);
if (ver != NULL)
PyModule_AddObject(m, "ZLIB_VERSION", ver);
ver = PyUnicode_FromString(zlibVersion());
if (ver != NULL)
PyModule_AddObject(m, "ZLIB_RUNTIME_VERSION", ver);
PyModule_AddStringConstant(m, "__version__", "1.0");
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_zlib = {
"zlib",
PyInit_zlib,
};
| 43,850 | 1,460 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/README | Source files for standard library extension modules,
and former extension modules that are now builtin modules.
| 112 | 3 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/main.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/calls/calls.h"
#include "libc/dce.h"
#include "libc/errno.h"
#include "libc/stdio/stdio.h"
#include "libc/sysv/consts/s.h"
#include "libc/str/locale.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/osdefs.h"
#include "third_party/python/Include/patchlevel.h"
#include "third_party/python/Include/pgenheaders.h"
#include "third_party/python/Include/pydebug.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pythonrun.h"
#include "third_party/python/Include/sysmodule.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
STATIC_YOINK("PyInit__codecs"); // for pylifecycle.o
STATIC_YOINK("PyInit__collections"); // for pylifecycle.o
STATIC_YOINK("PyInit__functools"); // for pylifecycle.o
STATIC_YOINK("PyInit__locale"); // for pylifecycle.o
STATIC_YOINK("PyInit__operator"); // for pylifecycle.o
STATIC_YOINK("PyInit__signal"); // for pylifecycle.o
STATIC_YOINK("PyInit__sre"); // for pylifecycle.o
STATIC_YOINK("PyInit__stat"); // for pylifecycle.o
STATIC_YOINK("PyInit_errno"); // for pylifecycle.o
STATIC_YOINK("PyInit_itertools"); // for pylifecycle.o
PYTHON_YOINK("site"); // for pylifecycle.o
PYTHON_YOINK("struct"); // for memoryobject.o
PYTHON_YOINK("io");
PYTHON_YOINK("encodings.aliases");
PYTHON_YOINK("encodings.latin_1");
PYTHON_YOINK("encodings.utf_8");
PYTHON_YOINK("site");
PYTHON_YOINK("_sysconfigdata_m_cosmo_x86_64_cosmo");
PYTHON_YOINK("_bootlocale");
PYTHON_YOINK("_warnings");
PYTHON_YOINK("_locale");
PYTHON_YOINK("locale");
PYTHON_YOINK("runpy");
/* Python interpreter main program */
#if defined(MS_WINDOWS)
#define PYTHONHOMEHELP "<prefix>\\python{major}{minor}"
#else
#define PYTHONHOMEHELP "<prefix>/lib/pythonX.X"
#endif
#include "third_party/python/Include/pygetopt.h"
#define COPYRIGHT \
"Type \"help\", \"copyright\", \"credits\" or \"license\" " \
"for more information."
/* For Py_GetArgcArgv(); set by main() */
static wchar_t **orig_argv;
static int orig_argc;
/* command line options */
#define BASE_OPTS L"bBc:dEhiIJm:OqRsStuvVW:xX:?"
#define PROGRAM_OPTS BASE_OPTS
/* Short usage message (with %s for argv0) */
static const char usage_line[] =
"usage: %ls [option] ... [-c cmd | -m mod | file | -] [arg] ...\n";
/* Long usage message, split into parts < 512 bytes */
static const char usage_1[] = "\
Options and arguments (and corresponding environment variables):\n\
-b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\
and comparing bytes/bytearray with str. (-bb: issue errors)\n\
-B : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x\n\
-c cmd : program passed in as string (terminates option list)\n\
-d : debug output from parser; also PYTHONDEBUG=x\n\
-E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\
-h : print this help message and exit (also --help)\n\
";
static const char usage_2[] = "\
-i : inspect interactively after running script; forces a prompt even\n\
if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
-I : isolate Python from the user's environment (implies -E and -s)\n\
-m mod : run library module as a script (terminates option list)\n\
-O : remove assert and __debug__-dependent statements; add .opt-1 before\n\
.pyc extension; also PYTHONOPTIMIZE=x\n\
-OO : do -O changes and also discard docstrings; add .opt-2 before\n\
.pyc extension\n\
-q : don't print version and copyright messages on interactive startup\n\
-s : don't add user site directory to sys.path; also PYTHONNOUSERSITE\n\
-S : don't imply 'import site' on initialization\n\
";
static const char usage_3[] = "\
-u : force the binary I/O layers of stdout and stderr to be unbuffered;\n\
stdin is always buffered; text I/O layer will be line-buffered;\n\
also PYTHONUNBUFFERED=x\n\
-v : verbose (trace import statements); also PYTHONVERBOSE=x\n\
can be supplied multiple times to increase verbosity\n\
-V : print the Python version number and exit (also --version)\n\
when given twice, print more information about the build\n\
-W arg : warning control; arg is action:message:category:module:lineno\n\
also PYTHONWARNINGS=arg\n\
-x : skip first line of source, allowing use of non-Unix forms of #!cmd\n\
-X opt : set implementation-specific option\n\
";
static const char usage_4[] = "\
file : program read from script file\n\
- : program read from stdin (default; interactive mode if a tty)\n\
arg ...: arguments passed to program in sys.argv[1:]\n\n\
Other environment variables:\n\
PYTHONSTARTUP: file executed on interactive startup (no default)\n\
PYTHONPATH : '%lc'-separated list of directories prefixed to the\n\
default module search path. The result is sys.path.\n\
";
static const char usage_5[] =
"PYTHONHOME : alternate <prefix> directory (or <prefix>%lc<exec_prefix>).\n"
" The default module search path uses %s.\n"
"PYTHONCASEOK : ignore case in 'import' statements (Windows).\n"
"PYTHONIOENCODING: Encoding[:errors] used for stdin/stdout/stderr.\n"
"PYTHONFAULTHANDLER: dump the Python traceback on fatal errors.\n";
static const char usage_6[] =
"PYTHONHASHSEED: if this variable is set to 'random', a random value is used\n"
" to seed the hashes of str, bytes and datetime objects. It can also be\n"
" set to an integer in the range [0,4294967295] to get hash values with a\n"
" predictable seed.\n"
"PYTHONMALLOC: set the Python memory allocators and/or install debug hooks\n"
" on Python memory allocators. Use PYTHONMALLOC=debug to install debug\n"
" hooks.\n";
static int
usage(int exitcode, const wchar_t* program)
{
FILE *f = exitcode ? stderr : stdout;
fprintf(f, usage_line, program);
if (exitcode)
fprintf(f, "Try `python -h' for more information.\n");
else {
fputs(usage_1, f);
fputs(usage_2, f);
fputs(usage_3, f);
fprintf(f, usage_4, (wint_t)DELIM);
fprintf(f, usage_5, (wint_t)DELIM, PYTHONHOMEHELP);
fputs(usage_6, f);
}
return exitcode;
}
static void RunStartupFile(PyCompilerFlags *cf)
{
char *startup = Py_GETENV("PYTHONSTARTUP");
if (startup != NULL && startup[0] != '\0') {
FILE *fp = _Py_fopen(startup, "r");
if (fp != NULL) {
(void) PyRun_SimpleFileExFlags(fp, startup, 0, cf);
PyErr_Clear();
fclose(fp);
} else {
int save_errno;
save_errno = errno;
PySys_WriteStderr("Could not open PYTHONSTARTUP\n");
errno = save_errno;
PyErr_SetFromErrnoWithFilename(PyExc_IOError,
startup);
PyErr_Print();
PyErr_Clear();
}
}
}
static void RunInteractiveHook(void)
{
PyObject *sys, *hook, *result;
sys = PyImport_ImportModule("sys");
if (sys == NULL)
goto error;
hook = PyObject_GetAttrString(sys, "__interactivehook__");
Py_DECREF(sys);
if (hook == NULL)
PyErr_Clear();
else {
result = PyObject_CallObject(hook, NULL);
Py_DECREF(hook);
if (result == NULL)
goto error;
else
Py_DECREF(result);
}
return;
error:
PySys_WriteStderr("Failed calling sys.__interactivehook__\n");
PyErr_Print();
PyErr_Clear();
}
static int RunModule(wchar_t *modname, int set_argv0)
{
PyObject *module, *runpy, *runmodule, *runargs, *result;
runpy = PyImport_ImportModule("runpy");
if (runpy == NULL) {
fprintf(stderr, "Could not import runpy module\n");
PyErr_Print();
return -1;
}
runmodule = PyObject_GetAttrString(runpy, "_run_module_as_main");
if (runmodule == NULL) {
fprintf(stderr, "Could not access runpy._run_module_as_main\n");
PyErr_Print();
Py_DECREF(runpy);
return -1;
}
module = PyUnicode_FromWideChar(modname, wcslen(modname));
if (module == NULL) {
fprintf(stderr, "Could not convert module name to unicode\n");
PyErr_Print();
Py_DECREF(runpy);
Py_DECREF(runmodule);
return -1;
}
runargs = Py_BuildValue("(Oi)", module, set_argv0);
if (runargs == NULL) {
fprintf(stderr,
"Could not create arguments for runpy._run_module_as_main\n");
PyErr_Print();
Py_DECREF(runpy);
Py_DECREF(runmodule);
Py_DECREF(module);
return -1;
}
result = PyObject_Call(runmodule, runargs, NULL);
if (result == NULL) {
PyErr_Print();
}
Py_DECREF(runpy);
Py_DECREF(runmodule);
Py_DECREF(module);
Py_DECREF(runargs);
if (result == NULL) {
return -1;
}
Py_DECREF(result);
return 0;
}
static PyObject *
AsImportPathEntry(wchar_t *filename)
{
PyObject *sys_path0 = NULL, *importer;
sys_path0 = PyUnicode_FromWideChar(filename, wcslen(filename));
if (sys_path0 == NULL)
goto error;
importer = PyImport_GetImporter(sys_path0);
if (importer == NULL)
goto error;
if (importer == Py_None) {
Py_DECREF(sys_path0);
Py_DECREF(importer);
return NULL;
}
Py_DECREF(importer);
return sys_path0;
error:
Py_XDECREF(sys_path0);
PySys_WriteStderr("Failed checking if argv[0] is an import path entry\n");
PyErr_Print();
PyErr_Clear();
return NULL;
}
static int
RunMainFromImporter(PyObject *sys_path0)
{
PyObject *sys_path;
int sts;
/* Assume sys_path0 has already been checked by AsImportPathEntry,
* so put it in sys.path[0] and import __main__ */
sys_path = PySys_GetObject("path");
if (sys_path == NULL) {
PyErr_SetString(PyExc_RuntimeError, "unable to get sys.path");
goto error;
}
sts = PyList_Insert(sys_path, 0, sys_path0);
if (sts) {
sys_path0 = NULL;
goto error;
}
sts = RunModule(L"__main__", 0);
return sts != 0;
error:
Py_XDECREF(sys_path0);
PyErr_Print();
return 1;
}
static int
run_command(wchar_t *command, PyCompilerFlags *cf)
{
PyObject *unicode, *bytes;
int ret;
unicode = PyUnicode_FromWideChar(command, -1);
if (unicode == NULL)
goto error;
bytes = PyUnicode_AsUTF8String(unicode);
Py_DECREF(unicode);
if (bytes == NULL)
goto error;
ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), cf);
Py_DECREF(bytes);
return ret != 0;
error:
PySys_WriteStderr("Unable to decode the command from the command line:\n");
PyErr_Print();
return 1;
}
static int
run_file(FILE *fp, const wchar_t *filename, PyCompilerFlags *p_cf)
{
PyObject *unicode, *bytes = NULL;
char *filename_str;
int run;
/* call pending calls like signal handlers (SIGINT) */
if (Py_MakePendingCalls() == -1) {
PyErr_Print();
return 1;
}
if (filename) {
unicode = PyUnicode_FromWideChar(filename, wcslen(filename));
if (unicode != NULL) {
bytes = PyUnicode_EncodeFSDefault(unicode);
Py_DECREF(unicode);
}
if (bytes != NULL)
filename_str = PyBytes_AsString(bytes);
else {
PyErr_Clear();
filename_str = "<encoding error>";
}
}
else
filename_str = "<stdin>";
run = PyRun_AnyFileExFlags(fp, filename_str, filename != NULL, p_cf);
Py_XDECREF(bytes);
return run != 0;
}
/* Main program */
int
Py_Main(int argc, wchar_t **argv)
{
int c;
int sts;
wchar_t *command = NULL;
wchar_t *filename = NULL;
wchar_t *module = NULL;
FILE *fp = stdin;
char *p;
#ifdef MS_WINDOWS
wchar_t *wp;
#endif
int skipfirstline = 0;
int stdin_is_interactive = 0;
int help = 0;
int version = 0;
int saw_unbuffered_flag = 0;
char *opt;
PyCompilerFlags cf;
PyObject *main_importer_path = NULL;
PyObject *warning_option = NULL;
PyObject *warning_options = NULL;
cf.cf_flags = 0;
orig_argc = argc; /* For Py_GetArgcArgv() */
orig_argv = argv;
/* Hash randomization needed early for all string operations
(including -W and -X options). */
_PyOS_opterr = 0; /* prevent printing the error in 1st pass */
while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
if (c == 'm' || c == 'c') {
/* -c / -m is the last option: following arguments are
not interpreter options. */
break;
}
if (c == 'E') {
Py_IgnoreEnvironmentFlag++;
break;
}
}
#if IsModeDbg()
opt = Py_GETENV("PYTHONMALLOC");
if (_PyMem_SetupAllocators(opt) < 0) {
fprintf(stderr,
"Error in PYTHONMALLOC: unknown allocator \"%s\"!\n", opt);
exit(1);
}
#endif
_PyRandom_Init();
PySys_ResetWarnOptions();
_PyOS_ResetGetOpt();
while ((c = _PyOS_GetOpt(argc, argv, PROGRAM_OPTS)) != EOF) {
if (c == 'c') {
size_t len;
/* -c is the last option; following arguments
that look like options are left for the
command to interpret. */
len = wcslen(_PyOS_optarg) + 1 + 1;
command = (wchar_t *)PyMem_RawMalloc(sizeof(wchar_t) * len);
if (command == NULL)
Py_FatalError(
"not enough memory to copy -c argument");
wcscpy(command, _PyOS_optarg);
command[len - 2] = '\n';
command[len - 1] = 0;
break;
}
if (c == 'm') {
/* -m is the last option; following arguments
that look like options are left for the
module to interpret. */
module = _PyOS_optarg;
break;
}
switch (c) {
case 'b':
Py_BytesWarningFlag++;
break;
case 'd':
Py_DebugFlag++;
break;
case 'i':
Py_InspectFlag++;
Py_InteractiveFlag++;
break;
case 'I':
Py_IsolatedFlag++;
Py_NoUserSiteDirectory++;
Py_IgnoreEnvironmentFlag++;
break;
/* case 'J': reserved for Jython */
case 'O':
Py_OptimizeFlag++;
break;
case 'B':
Py_DontWriteBytecodeFlag++;
break;
case 's':
Py_NoUserSiteDirectory++;
break;
case 'S':
Py_NoSiteFlag++;
break;
case 'E':
/* Already handled above */
break;
case 't':
/* ignored for backwards compatibility */
break;
case 'u':
Py_UnbufferedStdioFlag = 1;
saw_unbuffered_flag = 1;
break;
case 'v':
Py_VerboseFlag++;
break;
case 'x':
skipfirstline = 1;
break;
case 'h':
case '?':
help++;
break;
case 'V':
version++;
break;
case 'W':
if (warning_options == NULL)
warning_options = PyList_New(0);
if (warning_options == NULL)
Py_FatalError("failure in handling of -W argument");
warning_option = PyUnicode_FromWideChar(_PyOS_optarg, -1);
if (warning_option == NULL)
Py_FatalError("failure in handling of -W argument");
if (PyList_Append(warning_options, warning_option) == -1)
Py_FatalError("failure in handling of -W argument");
Py_DECREF(warning_option);
break;
case 'X':
PySys_AddXOption(_PyOS_optarg);
break;
case 'q':
Py_QuietFlag++;
break;
case 'R':
/* Ignored */
break;
/* This space reserved for other options */
default:
return usage(2, argv[0]);
/*NOTREACHED*/
}
}
if (help)
return usage(0, argv[0]);
if (version) {
printf("Python %s\n", version >= 2 ? Py_GetVersion() : PY_VERSION);
return 0;
}
if (!Py_InspectFlag &&
(p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
Py_InspectFlag = 1;
if (!saw_unbuffered_flag &&
(p = Py_GETENV("PYTHONUNBUFFERED")) && *p != '\0')
Py_UnbufferedStdioFlag = 1;
if (!Py_NoUserSiteDirectory &&
(p = Py_GETENV("PYTHONNOUSERSITE")) && *p != '\0')
Py_NoUserSiteDirectory = 1;
#ifdef MS_WINDOWS
if (!Py_IgnoreEnvironmentFlag && (wp = _wgetenv(L"PYTHONWARNINGS")) &&
*wp != L'\0') {
wchar_t *buf, *warning, *context = NULL;
buf = (wchar_t *)PyMem_RawMalloc((wcslen(wp) + 1) * sizeof(wchar_t));
if (buf == NULL)
Py_FatalError(
"not enough memory to copy PYTHONWARNINGS");
wcscpy(buf, wp);
for (warning = wcstok_s(buf, L",", &context);
warning != NULL;
warning = wcstok_s(NULL, L",", &context)) {
PySys_AddWarnOption(warning);
}
PyMem_RawFree(buf);
}
#else
if ((p = Py_GETENV("PYTHONWARNINGS")) && *p != '\0') {
char *buf, *oldloc;
PyObject *unicode;
/* settle for strtok here as there's no one standard
C89 wcstok */
buf = (char *)PyMem_RawMalloc(strlen(p) + 1);
if (buf == NULL)
Py_FatalError(
"not enough memory to copy PYTHONWARNINGS");
strcpy(buf, p);
oldloc = _PyMem_RawStrdup(setlocale(LC_ALL, NULL));
setlocale(LC_ALL, "");
for (p = strtok(buf, ","); p != NULL; p = strtok(NULL, ",")) {
#if defined(__APPLE__) || defined(__COSMOPOLITAN__)
/* Use utf-8 on Mac OS X */
unicode = PyUnicode_FromString(p);
#else
unicode = PyUnicode_DecodeLocale(p, "surrogateescape");
#endif
if (unicode == NULL) {
/* ignore errors */
PyErr_Clear();
continue;
}
PySys_AddWarnOptionUnicode(unicode);
Py_DECREF(unicode);
}
setlocale(LC_ALL, oldloc);
PyMem_RawFree(oldloc);
PyMem_RawFree(buf);
}
#endif
if (warning_options != NULL) {
Py_ssize_t i;
for (i = 0; i < PyList_GET_SIZE(warning_options); i++) {
PySys_AddWarnOptionUnicode(PyList_GET_ITEM(warning_options, i));
}
}
if (command == NULL && module == NULL && _PyOS_optind < argc &&
wcscmp(argv[_PyOS_optind], L"-") != 0)
{
filename = argv[_PyOS_optind];
}
stdin_is_interactive = Py_FdIsInteractive(stdin, (char *)0);
#if defined(MS_WINDOWS) || defined(__CYGWIN__)
/* don't translate newlines (\r\n <=> \n) */
_setmode(fileno(stdin), O_BINARY);
_setmode(fileno(stdout), O_BINARY);
_setmode(fileno(stderr), O_BINARY);
#endif
if (Py_UnbufferedStdioFlag) {
#ifdef HAVE_SETVBUF
setvbuf(stdin, (char *)NULL, _IONBF, BUFSIZ);
setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
setvbuf(stderr, (char *)NULL, _IONBF, BUFSIZ);
#else /* !HAVE_SETVBUF */
setbuf(stdin, (char *)NULL);
setbuf(stdout, (char *)NULL);
setbuf(stderr, (char *)NULL);
#endif /* !HAVE_SETVBUF */
}
else if (Py_InteractiveFlag) {
#ifdef MS_WINDOWS
/* Doesn't have to have line-buffered -- use unbuffered */
/* Any set[v]buf(stdin, ...) screws up Tkinter :-( */
setvbuf(stdout, (char *)NULL, _IONBF, BUFSIZ);
#else /* !MS_WINDOWS */
#ifdef HAVE_SETVBUF
setvbuf(stdin, (char *)NULL, _IOLBF, BUFSIZ);
setvbuf(stdout, (char *)NULL, _IOLBF, BUFSIZ);
#endif /* HAVE_SETVBUF */
#endif /* !MS_WINDOWS */
/* Leave stderr alone - it should be unbuffered anyway. */
}
if (!IsXnu()) {
Py_SetProgramName(argv[0]);
} else {
/* On MacOS X, when the Python interpreter is embedded in an
application bundle, it gets executed by a bootstrapping script
that does os.execve() with an argv[0] that's different from the
actual Python executable. This is needed to keep the Finder happy,
or rather, to work around Apple's overly strict requirements of
the process name. However, we still need a usable sys.executable,
so the actual executable path is passed in an environment variable.
See Lib/plat-mac/bundlebuiler.py for details about the bootstrap
script. */
if ((p = Py_GETENV("PYTHONEXECUTABLE")) && *p != '\0') {
wchar_t* buffer;
size_t len = strlen(p) + 1;
buffer = PyMem_RawMalloc(len * sizeof(wchar_t));
if (buffer == NULL) {
Py_FatalError(
"not enough memory to copy PYTHONEXECUTABLE");
}
mbstowcs(buffer, p, len);
Py_SetProgramName(buffer);
/* buffer is now handed off - do not free */
} else {
#ifdef WITH_NEXT_FRAMEWORK
char* pyvenv_launcher = getenv("__PYVENV_LAUNCHER__");
if (pyvenv_launcher && *pyvenv_launcher) {
/* Used by Mac/Tools/pythonw.c to forward
* the argv0 of the stub executable
*/
wchar_t* wbuf = Py_DecodeLocale(pyvenv_launcher, NULL);
if (wbuf == NULL) {
Py_FatalError("Cannot decode __PYVENV_LAUNCHER__");
}
Py_SetProgramName(wbuf);
/* Don't free wbuf, the argument to Py_SetProgramName
* must remain valid until Py_FinalizeEx is called.
*/
} else {
Py_SetProgramName(argv[0]);
}
#else /* WITH_NEXT_FRAMEWORK */
Py_SetProgramName(argv[0]);
#endif /* WITH_NEXT_FRAMEWORK */
}
}
Py_Initialize();
Py_XDECREF(warning_options);
if (!Py_QuietFlag && (Py_VerboseFlag ||
(command == NULL && filename == NULL &&
module == NULL && stdin_is_interactive))) {
fprintf(stderr, "Python %s on %s\n",
Py_GetVersion(), Py_GetPlatform());
if (!Py_NoSiteFlag)
fprintf(stderr, "%s\n", COPYRIGHT);
}
if (command != NULL) {
/* Backup _PyOS_optind and force sys.argv[0] = '-c' */
_PyOS_optind--;
argv[_PyOS_optind] = L"-c";
}
if (module != NULL) {
/* Backup _PyOS_optind and force sys.argv[0] = '-m'*/
_PyOS_optind--;
argv[_PyOS_optind] = L"-m";
}
if (filename != NULL) {
main_importer_path = AsImportPathEntry(filename);
}
if (main_importer_path != NULL) {
/* Let RunMainFromImporter adjust sys.path[0] later */
PySys_SetArgvEx(argc-_PyOS_optind, argv+_PyOS_optind, 0);
} else {
/* Use config settings to decide whether or not to update sys.path[0] */
PySys_SetArgv(argc-_PyOS_optind, argv+_PyOS_optind);
}
if ((Py_InspectFlag || (command == NULL && filename == NULL && module == NULL)) &&
isatty(fileno(stdin)) &&
!Py_IsolatedFlag) {
PyObject *v;
v = PyImport_ImportModule("readline");
if (v == NULL)
PyErr_Clear();
else
Py_DECREF(v);
}
if (command) {
sts = run_command(command, &cf);
PyMem_RawFree(command);
} else if (module) {
sts = (RunModule(module, 1) != 0);
}
else {
if (filename == NULL && stdin_is_interactive) {
Py_InspectFlag = 0; /* do exit on SystemExit */
RunStartupFile(&cf);
RunInteractiveHook();
}
/* XXX */
sts = -1; /* keep track of whether we've already run __main__ */
if (main_importer_path != NULL) {
sts = RunMainFromImporter(main_importer_path);
}
if (sts==-1 && filename != NULL) {
fp = _Py_wfopen(filename, L"r");
if (fp == NULL) {
char *cfilename_buffer;
const char *cfilename;
int err = errno;
cfilename_buffer = Py_EncodeLocale(filename, NULL);
if (cfilename_buffer != NULL)
cfilename = cfilename_buffer;
else
cfilename = "<unprintable file name>";
fprintf(stderr, "%ls: can't open file '%s': [Errno %d] %s\n",
argv[0], cfilename, err, strerror(err));
if (cfilename_buffer)
PyMem_Free(cfilename_buffer);
return 2;
}
else if (skipfirstline) {
int ch;
/* Push back first newline so line numbers
remain the same */
while ((ch = getc(fp)) != EOF) {
if (ch == '\n') {
(void)ungetc(ch, fp);
break;
}
}
}
{
struct _Py_stat_struct sb;
if (_Py_fstat_noraise(fileno(fp), &sb) == 0 &&
S_ISDIR(sb.st_mode)) {
fprintf(stderr,
"%ls: '%ls' is a directory, cannot continue\n",
argv[0], filename);
fclose(fp);
return 1;
}
}
}
if (sts == -1)
sts = run_file(fp, filename, &cf);
}
/* Check this environment variable at the end, to give programs the
* opportunity to set it from Python.
*/
if (!Py_InspectFlag &&
(p = Py_GETENV("PYTHONINSPECT")) && *p != '\0')
{
Py_InspectFlag = 1;
}
if (Py_InspectFlag && stdin_is_interactive &&
(filename != NULL || command != NULL || module != NULL)) {
Py_InspectFlag = 0;
RunInteractiveHook();
/* XXX */
sts = PyRun_AnyFileFlags(stdin, "<stdin>", &cf) != 0;
}
if (Py_FinalizeEx() < 0) {
/* Value unlikely to be confused with a non-error exit status or
other special meaning */
sts = 120;
}
#ifdef __INSURE__
/* Insure++ is a memory analysis tool that aids in discovering
* memory leaks and other memory problems. On Python exit, the
* interned string dictionaries are flagged as being in use at exit
* (which it is). Under normal circumstances, this is fine because
* the memory will be automatically reclaimed by the system. Under
* memory debugging, it's a huge source of useless noise, so we
* trade off slower shutdown for less distraction in the memory
* reports. -baw
*/
_Py_ReleaseInternedUnicodeStrings();
#endif /* __INSURE__ */
return sts;
}
/* this is gonna seem *real weird*, but if you put some other code between
Py_Main() and Py_GetArgcArgv() you will need to adjust the test in the
while statement in Misc/gdbinit:ppystack */
/* Make the *original* argc/argv available to other modules.
This is rare, but it is needed by the secureware extension. */
void
Py_GetArgcArgv(int *argc, wchar_t ***argv)
{
*argc = orig_argc;
*argv = orig_argv;
}
| 28,758 | 898 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_struct.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/assert.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytearrayobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyctype.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_struct");
PYTHON_PROVIDE("_struct.Struct");
PYTHON_PROVIDE("_struct.__doc__");
PYTHON_PROVIDE("_struct.__loader__");
PYTHON_PROVIDE("_struct.__name__");
PYTHON_PROVIDE("_struct.__package__");
PYTHON_PROVIDE("_struct.__spec__");
PYTHON_PROVIDE("_struct._clearcache");
PYTHON_PROVIDE("_struct.calcsize");
PYTHON_PROVIDE("_struct.error");
PYTHON_PROVIDE("_struct.iter_unpack");
PYTHON_PROVIDE("_struct.pack");
PYTHON_PROVIDE("_struct.pack_into");
PYTHON_PROVIDE("_struct.unpack");
PYTHON_PROVIDE("_struct.unpack_from");
/* struct module -- pack values into and (out of) bytes objects */
/* New version supporting byte order, alignment and size options,
character strings, and unsigned numbers */
/*[clinic input]
class Struct "PyStructObject *" "&PyStructType"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=9b032058a83ed7c3]*/
static PyTypeObject PyStructType;
/* The translation function for each format character is table driven */
typedef struct _formatdef {
char format;
Py_ssize_t size;
Py_ssize_t alignment;
PyObject* (*unpack)(const char *,
const struct _formatdef *);
int (*pack)(char *, PyObject *,
const struct _formatdef *);
} formatdef;
typedef struct _formatcode {
const struct _formatdef *fmtdef;
Py_ssize_t offset;
Py_ssize_t size;
Py_ssize_t repeat;
} formatcode;
/* Struct object interface */
typedef struct {
PyObject_HEAD
Py_ssize_t s_size;
Py_ssize_t s_len;
formatcode *s_codes;
PyObject *s_format;
PyObject *weakreflist; /* List of weak references */
} PyStructObject;
#define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStructType)
#define PyStruct_CheckExact(op) (Py_TYPE(op) == &PyStructType)
/* Exception */
static PyObject *StructError;
/* Define various structs to figure out the alignments of types */
typedef struct { char c; short x; } st_short;
typedef struct { char c; int x; } st_int;
typedef struct { char c; long x; } st_long;
typedef struct { char c; float x; } st_float;
typedef struct { char c; double x; } st_double;
typedef struct { char c; void *x; } st_void_p;
typedef struct { char c; size_t x; } st_size_t;
typedef struct { char c; _Bool x; } st_bool;
#define SHORT_ALIGN (sizeof(st_short) - sizeof(short))
#define INT_ALIGN (sizeof(st_int) - sizeof(int))
#define LONG_ALIGN (sizeof(st_long) - sizeof(long))
#define FLOAT_ALIGN (sizeof(st_float) - sizeof(float))
#define DOUBLE_ALIGN (sizeof(st_double) - sizeof(double))
#define VOID_P_ALIGN (sizeof(st_void_p) - sizeof(void *))
#define SIZE_T_ALIGN (sizeof(st_size_t) - sizeof(size_t))
#define BOOL_ALIGN (sizeof(st_bool) - sizeof(_Bool))
/* We can't support q and Q in native mode unless the compiler does;
in std mode, they're 8 bytes on all platforms. */
typedef struct { char c; long long x; } s_long_long;
#define LONG_LONG_ALIGN (sizeof(s_long_long) - sizeof(long long))
#ifdef __powerc
#pragma options align=reset
#endif
#include "third_party/python/Modules/clinic/_struct.inc"
/* Helper for integer format codes: converts an arbitrary Python object to a
PyLongObject if possible, otherwise fails. Caller should decref. */
static PyObject *
get_pylong(PyObject *v)
{
assert(v != NULL);
if (!PyLong_Check(v)) {
/* Not an integer; try to use __index__ to convert. */
if (PyIndex_Check(v)) {
v = PyNumber_Index(v);
if (v == NULL)
return NULL;
}
else {
PyErr_SetString(StructError,
"required argument is not an integer");
return NULL;
}
}
else
Py_INCREF(v);
assert(PyLong_Check(v));
return v;
}
/* Helper routine to get a C long and raise the appropriate error if it isn't
one */
static int
get_long(PyObject *v, long *p)
{
long x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsLong(v);
Py_DECREF(v);
if (x == (long)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
/* Same, but handling unsigned long */
static int
get_ulong(PyObject *v, unsigned long *p)
{
unsigned long x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsUnsignedLong(v);
Py_DECREF(v);
if (x == (unsigned long)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
/* Same, but handling native long long. */
static int
get_longlong(PyObject *v, long long *p)
{
long long x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsLongLong(v);
Py_DECREF(v);
if (x == (long long)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
/* Same, but handling native unsigned long long. */
static int
get_ulonglong(PyObject *v, unsigned long long *p)
{
unsigned long long x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsUnsignedLongLong(v);
Py_DECREF(v);
if (x == (unsigned long long)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
/* Same, but handling Py_ssize_t */
static int
get_ssize_t(PyObject *v, Py_ssize_t *p)
{
Py_ssize_t x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsSsize_t(v);
Py_DECREF(v);
if (x == (Py_ssize_t)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
/* Same, but handling size_t */
static int
get_size_t(PyObject *v, size_t *p)
{
size_t x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsSize_t(v);
Py_DECREF(v);
if (x == (size_t)-1 && PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"argument out of range");
return -1;
}
*p = x;
return 0;
}
#define RANGE_ERROR(x, f, flag, mask) return _range_error(f, flag)
/* Floating point helpers */
static PyObject *
unpack_halffloat(const char *p, /* start of 2-byte string */
int le) /* true for little-endian, false for big-endian */
{
double x;
x = _PyFloat_Unpack2((unsigned char *)p, le);
if (x == -1.0 && PyErr_Occurred()) {
return NULL;
}
return PyFloat_FromDouble(x);
}
static int
pack_halffloat(char *p, /* start of 2-byte string */
PyObject *v, /* value to pack */
int le) /* true for little-endian, false for big-endian */
{
double x = PyFloat_AsDouble(v);
if (x == -1.0 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
return _PyFloat_Pack2(x, (unsigned char *)p, le);
}
static PyObject *
unpack_float(const char *p, /* start of 4-byte string */
int le) /* true for little-endian, false for big-endian */
{
double x;
x = _PyFloat_Unpack4((unsigned char *)p, le);
if (x == -1.0 && PyErr_Occurred())
return NULL;
return PyFloat_FromDouble(x);
}
static PyObject *
unpack_double(const char *p, /* start of 8-byte string */
int le) /* true for little-endian, false for big-endian */
{
double x;
x = _PyFloat_Unpack8((unsigned char *)p, le);
if (x == -1.0 && PyErr_Occurred())
return NULL;
return PyFloat_FromDouble(x);
}
/* Helper to format the range error exceptions */
static int
_range_error(const formatdef *f, int is_unsigned)
{
/* ulargest is the largest unsigned value with f->size bytes.
* Note that the simpler:
* ((size_t)1 << (f->size * 8)) - 1
* doesn't work when f->size == sizeof(size_t) because C doesn't
* define what happens when a left shift count is >= the number of
* bits in the integer being shifted; e.g., on some boxes it doesn't
* shift at all when they're equal.
*/
const size_t ulargest = (size_t)-1 >> ((SIZEOF_SIZE_T - f->size)*8);
assert(f->size >= 1 && f->size <= SIZEOF_SIZE_T);
if (is_unsigned)
PyErr_Format(StructError,
"'%c' format requires 0 <= number <= %zu",
f->format,
ulargest);
else {
const Py_ssize_t largest = (Py_ssize_t)(ulargest >> 1);
PyErr_Format(StructError,
"'%c' format requires %zd <= number <= %zd",
f->format,
~ largest,
largest);
}
return -1;
}
/* A large number of small routines follow, with names of the form
[bln][up]_TYPE
[bln] distiguishes among big-endian, little-endian and native.
[pu] distiguishes between pack (to struct) and unpack (from struct).
TYPE is one of char, byte, ubyte, etc.
*/
/* Native mode routines. ****************************************************/
/* NOTE:
In all n[up]_<type> routines handling types larger than 1 byte, there is
*no* guarantee that the p pointer is properly aligned for each type,
therefore memcpy is called. An intermediate variable is used to
compensate for big-endian architectures.
Normally both the intermediate variable and the memcpy call will be
skipped by C optimisation in little-endian architectures (gcc >= 2.91
does this). */
static PyObject *
nu_char(const char *p, const formatdef *f)
{
return PyBytes_FromStringAndSize(p, 1);
}
static PyObject *
nu_byte(const char *p, const formatdef *f)
{
return PyLong_FromLong((long) *(signed char *)p);
}
static PyObject *
nu_ubyte(const char *p, const formatdef *f)
{
return PyLong_FromLong((long) *(unsigned char *)p);
}
static PyObject *
nu_short(const char *p, const formatdef *f)
{
short x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromLong((long)x);
}
static PyObject *
nu_ushort(const char *p, const formatdef *f)
{
unsigned short x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromLong((long)x);
}
static PyObject *
nu_int(const char *p, const formatdef *f)
{
int x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromLong((long)x);
}
static PyObject *
nu_uint(const char *p, const formatdef *f)
{
unsigned int x;
memcpy((char *)&x, p, sizeof x);
#if (SIZEOF_LONG > SIZEOF_INT)
return PyLong_FromLong((long)x);
#else
if (x <= ((unsigned int)LONG_MAX))
return PyLong_FromLong((long)x);
return PyLong_FromUnsignedLong((unsigned long)x);
#endif
}
static PyObject *
nu_long(const char *p, const formatdef *f)
{
long x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromLong(x);
}
static PyObject *
nu_ulong(const char *p, const formatdef *f)
{
unsigned long x;
memcpy((char *)&x, p, sizeof x);
if (x <= LONG_MAX)
return PyLong_FromLong((long)x);
return PyLong_FromUnsignedLong(x);
}
static PyObject *
nu_ssize_t(const char *p, const formatdef *f)
{
Py_ssize_t x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromSsize_t(x);
}
static PyObject *
nu_size_t(const char *p, const formatdef *f)
{
size_t x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromSize_t(x);
}
/* Native mode doesn't support q or Q unless the platform C supports
long long (or, on Windows, __int64). */
static PyObject *
nu_longlong(const char *p, const formatdef *f)
{
long long x;
memcpy((char *)&x, p, sizeof x);
if (x >= LONG_MIN && x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, long long, long));
return PyLong_FromLongLong(x);
}
static PyObject *
nu_ulonglong(const char *p, const formatdef *f)
{
unsigned long long x;
memcpy((char *)&x, p, sizeof x);
if (x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, unsigned long long, long));
return PyLong_FromUnsignedLongLong(x);
}
static PyObject *
nu_bool(const char *p, const formatdef *f)
{
_Bool x;
memcpy((char *)&x, p, sizeof x);
return PyBool_FromLong(x != 0);
}
static PyObject *
nu_halffloat(const char *p, const formatdef *f)
{
#if PY_LITTLE_ENDIAN
return unpack_halffloat(p, 1);
#else
return unpack_halffloat(p, 0);
#endif
}
static PyObject *
nu_float(const char *p, const formatdef *f)
{
float x;
memcpy((char *)&x, p, sizeof x);
return PyFloat_FromDouble((double)x);
}
static PyObject *
nu_double(const char *p, const formatdef *f)
{
double x;
memcpy((char *)&x, p, sizeof x);
return PyFloat_FromDouble(x);
}
static PyObject *
nu_void_p(const char *p, const formatdef *f)
{
void *x;
memcpy((char *)&x, p, sizeof x);
return PyLong_FromVoidPtr(x);
}
static int
np_byte(char *p, PyObject *v, const formatdef *f)
{
long x;
if (get_long(v, &x) < 0)
return -1;
if (x < -128 || x > 127){
PyErr_SetString(StructError,
"byte format requires -128 <= number <= 127");
return -1;
}
*p = (char)x;
return 0;
}
static int
np_ubyte(char *p, PyObject *v, const formatdef *f)
{
long x;
if (get_long(v, &x) < 0)
return -1;
if (x < 0 || x > 255){
PyErr_SetString(StructError,
"ubyte format requires 0 <= number <= 255");
return -1;
}
*p = (char)x;
return 0;
}
static int
np_char(char *p, PyObject *v, const formatdef *f)
{
if (!PyBytes_Check(v) || PyBytes_Size(v) != 1) {
PyErr_SetString(StructError,
"char format requires a bytes object of length 1");
return -1;
}
*p = *PyBytes_AsString(v);
return 0;
}
static int
np_short(char *p, PyObject *v, const formatdef *f)
{
long x;
short y;
if (get_long(v, &x) < 0)
return -1;
if (x < SHRT_MIN || x > SHRT_MAX){
PyErr_SetString(StructError,
"short format requires " Py_STRINGIFY(SHRT_MIN)
" <= number <= " Py_STRINGIFY(SHRT_MAX));
return -1;
}
y = (short)x;
memcpy(p, (char *)&y, sizeof y);
return 0;
}
static int
np_ushort(char *p, PyObject *v, const formatdef *f)
{
long x;
unsigned short y;
if (get_long(v, &x) < 0)
return -1;
if (x < 0 || x > USHRT_MAX){
PyErr_SetString(StructError,
"ushort format requires 0 <= number <= "
Py_STRINGIFY(USHRT_MAX));
return -1;
}
y = (unsigned short)x;
memcpy(p, (char *)&y, sizeof y);
return 0;
}
static int
np_int(char *p, PyObject *v, const formatdef *f)
{
long x;
int y;
if (get_long(v, &x) < 0)
return -1;
#if (SIZEOF_LONG > SIZEOF_INT)
if ((x < ((long)INT_MIN)) || (x > ((long)INT_MAX)))
RANGE_ERROR(x, f, 0, -1);
#endif
y = (int)x;
memcpy(p, (char *)&y, sizeof y);
return 0;
}
static int
np_uint(char *p, PyObject *v, const formatdef *f)
{
unsigned long x;
unsigned int y;
if (get_ulong(v, &x) < 0)
return -1;
y = (unsigned int)x;
#if (SIZEOF_LONG > SIZEOF_INT)
if (x > ((unsigned long)UINT_MAX))
RANGE_ERROR(y, f, 1, -1);
#endif
memcpy(p, (char *)&y, sizeof y);
return 0;
}
static int
np_long(char *p, PyObject *v, const formatdef *f)
{
long x;
if (get_long(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_ulong(char *p, PyObject *v, const formatdef *f)
{
unsigned long x;
if (get_ulong(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_ssize_t(char *p, PyObject *v, const formatdef *f)
{
Py_ssize_t x;
if (get_ssize_t(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_size_t(char *p, PyObject *v, const formatdef *f)
{
size_t x;
if (get_size_t(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_longlong(char *p, PyObject *v, const formatdef *f)
{
long long x;
if (get_longlong(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_ulonglong(char *p, PyObject *v, const formatdef *f)
{
unsigned long long x;
if (get_ulonglong(v, &x) < 0)
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_bool(char *p, PyObject *v, const formatdef *f)
{
int y;
_Bool x;
y = PyObject_IsTrue(v);
if (y < 0)
return -1;
x = y;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_halffloat(char *p, PyObject *v, const formatdef *f)
{
#if PY_LITTLE_ENDIAN
return pack_halffloat(p, v, 1);
#else
return pack_halffloat(p, v, 0);
#endif
}
static int
np_float(char *p, PyObject *v, const formatdef *f)
{
float x = (float)PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static int
np_double(char *p, PyObject *v, const formatdef *f)
{
double x = PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
memcpy(p, (char *)&x, sizeof(double));
return 0;
}
static int
np_void_p(char *p, PyObject *v, const formatdef *f)
{
void *x;
v = get_pylong(v);
if (v == NULL)
return -1;
assert(PyLong_Check(v));
x = PyLong_AsVoidPtr(v);
Py_DECREF(v);
if (x == NULL && PyErr_Occurred())
return -1;
memcpy(p, (char *)&x, sizeof x);
return 0;
}
static const formatdef native_table[] = {
{'x', sizeof(char), 0, NULL},
{'b', sizeof(char), 0, nu_byte, np_byte},
{'B', sizeof(char), 0, nu_ubyte, np_ubyte},
{'c', sizeof(char), 0, nu_char, np_char},
{'s', sizeof(char), 0, NULL},
{'p', sizeof(char), 0, NULL},
{'h', sizeof(short), SHORT_ALIGN, nu_short, np_short},
{'H', sizeof(short), SHORT_ALIGN, nu_ushort, np_ushort},
{'i', sizeof(int), INT_ALIGN, nu_int, np_int},
{'I', sizeof(int), INT_ALIGN, nu_uint, np_uint},
{'l', sizeof(long), LONG_ALIGN, nu_long, np_long},
{'L', sizeof(long), LONG_ALIGN, nu_ulong, np_ulong},
{'n', sizeof(size_t), SIZE_T_ALIGN, nu_ssize_t, np_ssize_t},
{'N', sizeof(size_t), SIZE_T_ALIGN, nu_size_t, np_size_t},
{'q', sizeof(long long), LONG_LONG_ALIGN, nu_longlong, np_longlong},
{'Q', sizeof(long long), LONG_LONG_ALIGN, nu_ulonglong,np_ulonglong},
{'?', sizeof(_Bool), BOOL_ALIGN, nu_bool, np_bool},
{'e', sizeof(short), SHORT_ALIGN, nu_halffloat, np_halffloat},
{'f', sizeof(float), FLOAT_ALIGN, nu_float, np_float},
{'d', sizeof(double), DOUBLE_ALIGN, nu_double, np_double},
{'P', sizeof(void *), VOID_P_ALIGN, nu_void_p, np_void_p},
{0}
};
/* Big-endian routines. *****************************************************/
static PyObject *
bu_int(const char *p, const formatdef *f)
{
long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | *bytes++;
} while (--i > 0);
/* Extend the sign bit. */
if (SIZEOF_LONG > f->size)
x |= -(x & (1L << ((8 * f->size) - 1)));
return PyLong_FromLong(x);
}
static PyObject *
bu_uint(const char *p, const formatdef *f)
{
unsigned long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | *bytes++;
} while (--i > 0);
if (x <= LONG_MAX)
return PyLong_FromLong((long)x);
return PyLong_FromUnsignedLong(x);
}
static PyObject *
bu_longlong(const char *p, const formatdef *f)
{
long long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | *bytes++;
} while (--i > 0);
/* Extend the sign bit. */
if (SIZEOF_LONG_LONG > f->size)
x |= -(x & ((long long)1 << ((8 * f->size) - 1)));
if (x >= LONG_MIN && x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, long long, long));
return PyLong_FromLongLong(x);
}
static PyObject *
bu_ulonglong(const char *p, const formatdef *f)
{
unsigned long long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | *bytes++;
} while (--i > 0);
if (x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, unsigned long long, long));
return PyLong_FromUnsignedLongLong(x);
}
static PyObject *
bu_halffloat(const char *p, const formatdef *f)
{
return unpack_halffloat(p, 0);
}
static PyObject *
bu_float(const char *p, const formatdef *f)
{
return unpack_float(p, 0);
}
static PyObject *
bu_double(const char *p, const formatdef *f)
{
return unpack_double(p, 0);
}
static PyObject *
bu_bool(const char *p, const formatdef *f)
{
char x;
memcpy((char *)&x, p, sizeof x);
return PyBool_FromLong(x != 0);
}
static int
bp_int(char *p, PyObject *v, const formatdef *f)
{
long x;
Py_ssize_t i;
if (get_long(v, &x) < 0)
return -1;
i = f->size;
if (i != SIZEOF_LONG) {
if ((i == 2) && (x < -32768 || x > 32767))
RANGE_ERROR(x, f, 0, 0xffffL);
#if (SIZEOF_LONG != 4)
else if ((i == 4) && (x < -2147483648L || x > 2147483647L))
RANGE_ERROR(x, f, 0, 0xffffffffL);
#endif
}
do {
p[--i] = (char)x;
x >>= 8;
} while (i > 0);
return 0;
}
static int
bp_uint(char *p, PyObject *v, const formatdef *f)
{
unsigned long x;
Py_ssize_t i;
if (get_ulong(v, &x) < 0)
return -1;
i = f->size;
if (i != SIZEOF_LONG) {
unsigned long maxint = 1;
maxint <<= (unsigned long)(i * 8);
if (x >= maxint)
RANGE_ERROR(x, f, 1, maxint - 1);
}
do {
p[--i] = (char)x;
x >>= 8;
} while (i > 0);
return 0;
}
static int
bp_longlong(char *p, PyObject *v, const formatdef *f)
{
int res;
v = get_pylong(v);
if (v == NULL)
return -1;
res = _PyLong_AsByteArray((PyLongObject *)v,
(unsigned char *)p,
8,
0, /* little_endian */
1 /* signed */);
Py_DECREF(v);
return res;
}
static int
bp_ulonglong(char *p, PyObject *v, const formatdef *f)
{
int res;
v = get_pylong(v);
if (v == NULL)
return -1;
res = _PyLong_AsByteArray((PyLongObject *)v,
(unsigned char *)p,
8,
0, /* little_endian */
0 /* signed */);
Py_DECREF(v);
return res;
}
static int
bp_halffloat(char *p, PyObject *v, const formatdef *f)
{
return pack_halffloat(p, v, 0);
}
static int
bp_float(char *p, PyObject *v, const formatdef *f)
{
double x = PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
return _PyFloat_Pack4(x, (unsigned char *)p, 0);
}
static int
bp_double(char *p, PyObject *v, const formatdef *f)
{
double x = PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
return _PyFloat_Pack8(x, (unsigned char *)p, 0);
}
static int
bp_bool(char *p, PyObject *v, const formatdef *f)
{
int y;
y = PyObject_IsTrue(v);
if (y < 0)
return -1;
*p = (char)y;
return 0;
}
static formatdef bigendian_table[] = {
{'x', 1, 0, NULL},
{'b', 1, 0, nu_byte, np_byte},
{'B', 1, 0, nu_ubyte, np_ubyte},
{'c', 1, 0, nu_char, np_char},
{'s', 1, 0, NULL},
{'p', 1, 0, NULL},
{'h', 2, 0, bu_int, bp_int},
{'H', 2, 0, bu_uint, bp_uint},
{'i', 4, 0, bu_int, bp_int},
{'I', 4, 0, bu_uint, bp_uint},
{'l', 4, 0, bu_int, bp_int},
{'L', 4, 0, bu_uint, bp_uint},
{'q', 8, 0, bu_longlong, bp_longlong},
{'Q', 8, 0, bu_ulonglong, bp_ulonglong},
{'?', 1, 0, bu_bool, bp_bool},
{'e', 2, 0, bu_halffloat, bp_halffloat},
{'f', 4, 0, bu_float, bp_float},
{'d', 8, 0, bu_double, bp_double},
{0}
};
/* Little-endian routines. *****************************************************/
static PyObject *
lu_int(const char *p, const formatdef *f)
{
long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | bytes[--i];
} while (i > 0);
/* Extend the sign bit. */
if (SIZEOF_LONG > f->size)
x |= -(x & (1L << ((8 * f->size) - 1)));
return PyLong_FromLong(x);
}
static PyObject *
lu_uint(const char *p, const formatdef *f)
{
unsigned long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | bytes[--i];
} while (i > 0);
if (x <= LONG_MAX)
return PyLong_FromLong((long)x);
return PyLong_FromUnsignedLong((long)x);
}
static PyObject *
lu_longlong(const char *p, const formatdef *f)
{
long long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | bytes[--i];
} while (i > 0);
/* Extend the sign bit. */
if (SIZEOF_LONG_LONG > f->size)
x |= -(x & ((long long)1 << ((8 * f->size) - 1)));
if (x >= LONG_MIN && x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, long long, long));
return PyLong_FromLongLong(x);
}
static PyObject *
lu_ulonglong(const char *p, const formatdef *f)
{
unsigned long long x = 0;
Py_ssize_t i = f->size;
const unsigned char *bytes = (const unsigned char *)p;
do {
x = (x<<8) | bytes[--i];
} while (i > 0);
if (x <= LONG_MAX)
return PyLong_FromLong(Py_SAFE_DOWNCAST(x, unsigned long long, long));
return PyLong_FromUnsignedLongLong(x);
}
static PyObject *
lu_halffloat(const char *p, const formatdef *f)
{
return unpack_halffloat(p, 1);
}
static PyObject *
lu_float(const char *p, const formatdef *f)
{
return unpack_float(p, 1);
}
static PyObject *
lu_double(const char *p, const formatdef *f)
{
return unpack_double(p, 1);
}
static int
lp_int(char *p, PyObject *v, const formatdef *f)
{
long x;
Py_ssize_t i;
if (get_long(v, &x) < 0)
return -1;
i = f->size;
if (i != SIZEOF_LONG) {
if ((i == 2) && (x < -32768 || x > 32767))
RANGE_ERROR(x, f, 0, 0xffffL);
#if (SIZEOF_LONG != 4)
else if ((i == 4) && (x < -2147483648L || x > 2147483647L))
RANGE_ERROR(x, f, 0, 0xffffffffL);
#endif
}
do {
*p++ = (char)x;
x >>= 8;
} while (--i > 0);
return 0;
}
static int
lp_uint(char *p, PyObject *v, const formatdef *f)
{
unsigned long x;
Py_ssize_t i;
if (get_ulong(v, &x) < 0)
return -1;
i = f->size;
if (i != SIZEOF_LONG) {
unsigned long maxint = 1;
maxint <<= (unsigned long)(i * 8);
if (x >= maxint)
RANGE_ERROR(x, f, 1, maxint - 1);
}
do {
*p++ = (char)x;
x >>= 8;
} while (--i > 0);
return 0;
}
static int
lp_longlong(char *p, PyObject *v, const formatdef *f)
{
int res;
v = get_pylong(v);
if (v == NULL)
return -1;
res = _PyLong_AsByteArray((PyLongObject*)v,
(unsigned char *)p,
8,
1, /* little_endian */
1 /* signed */);
Py_DECREF(v);
return res;
}
static int
lp_ulonglong(char *p, PyObject *v, const formatdef *f)
{
int res;
v = get_pylong(v);
if (v == NULL)
return -1;
res = _PyLong_AsByteArray((PyLongObject*)v,
(unsigned char *)p,
8,
1, /* little_endian */
0 /* signed */);
Py_DECREF(v);
return res;
}
static int
lp_halffloat(char *p, PyObject *v, const formatdef *f)
{
return pack_halffloat(p, v, 1);
}
static int
lp_float(char *p, PyObject *v, const formatdef *f)
{
double x = PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
return _PyFloat_Pack4(x, (unsigned char *)p, 1);
}
static int
lp_double(char *p, PyObject *v, const formatdef *f)
{
double x = PyFloat_AsDouble(v);
if (x == -1 && PyErr_Occurred()) {
PyErr_SetString(StructError,
"required argument is not a float");
return -1;
}
return _PyFloat_Pack8(x, (unsigned char *)p, 1);
}
static formatdef lilendian_table[] = {
{'x', 1, 0, NULL},
{'b', 1, 0, nu_byte, np_byte},
{'B', 1, 0, nu_ubyte, np_ubyte},
{'c', 1, 0, nu_char, np_char},
{'s', 1, 0, NULL},
{'p', 1, 0, NULL},
{'h', 2, 0, lu_int, lp_int},
{'H', 2, 0, lu_uint, lp_uint},
{'i', 4, 0, lu_int, lp_int},
{'I', 4, 0, lu_uint, lp_uint},
{'l', 4, 0, lu_int, lp_int},
{'L', 4, 0, lu_uint, lp_uint},
{'q', 8, 0, lu_longlong, lp_longlong},
{'Q', 8, 0, lu_ulonglong, lp_ulonglong},
{'?', 1, 0, bu_bool, bp_bool}, /* Std rep not endian dep,
but potentially different from native rep -- reuse bx_bool funcs. */
{'e', 2, 0, lu_halffloat, lp_halffloat},
{'f', 4, 0, lu_float, lp_float},
{'d', 8, 0, lu_double, lp_double},
{0}
};
static const formatdef *
whichtable(const char **pfmt)
{
const char *fmt = (*pfmt)++; /* May be backed out of later */
switch (*fmt) {
case '<':
return lilendian_table;
case '>':
case '!': /* Network byte order is big-endian */
return bigendian_table;
case '=': { /* Host byte order -- different from native in alignment! */
#if PY_LITTLE_ENDIAN
return lilendian_table;
#else
return bigendian_table;
#endif
}
default:
--*pfmt; /* Back out of pointer increment */
/* Fall through */
case '@':
return native_table;
}
}
/* Get the table entry for a format code */
static const formatdef *
getentry(int c, const formatdef *f)
{
for (; f->format != '\0'; f++) {
if (f->format == c) {
return f;
}
}
PyErr_SetString(StructError, "bad char in struct format");
return NULL;
}
/* Align a size according to a format code. Return -1 on overflow. */
static Py_ssize_t
align(Py_ssize_t size, char c, const formatdef *e)
{
Py_ssize_t extra;
if (e->format == c) {
if (e->alignment && size > 0) {
extra = (e->alignment - 1) - (size - 1) % (e->alignment);
if (extra > PY_SSIZE_T_MAX - size)
return -1;
size += extra;
}
}
return size;
}
/*
* Struct object implementation.
*/
/* calculate the size of a format string */
static int
prepare_s(PyStructObject *self)
{
const formatdef *f;
const formatdef *e;
formatcode *codes;
const char *s;
const char *fmt;
char c;
Py_ssize_t size, len, num, itemsize;
size_t ncodes;
fmt = PyBytes_AS_STRING(self->s_format);
f = whichtable(&fmt);
s = fmt;
size = 0;
len = 0;
ncodes = 0;
while ((c = *s++) != '\0') {
if (Py_ISSPACE(Py_CHARMASK(c)))
continue;
if ('0' <= c && c <= '9') {
num = c - '0';
while ('0' <= (c = *s++) && c <= '9') {
/* overflow-safe version of
if (num*10 + (c - '0') > PY_SSIZE_T_MAX) { ... } */
if (num >= PY_SSIZE_T_MAX / 10 && (
num > PY_SSIZE_T_MAX / 10 ||
(c - '0') > PY_SSIZE_T_MAX % 10))
goto overflow;
num = num*10 + (c - '0');
}
if (c == '\0') {
PyErr_SetString(StructError,
"repeat count given without format specifier");
return -1;
}
}
else
num = 1;
e = getentry(c, f);
if (e == NULL)
return -1;
switch (c) {
case 's': /* fall through */
case 'p': len++; ncodes++; break;
case 'x': break;
default: len += num; if (num) ncodes++; break;
}
itemsize = e->size;
size = align(size, c, e);
if (size == -1)
goto overflow;
/* if (size + num * itemsize > PY_SSIZE_T_MAX) { ... } */
if (num > (PY_SSIZE_T_MAX - size) / itemsize)
goto overflow;
size += num * itemsize;
}
/* check for overflow */
if ((ncodes + 1) > ((size_t)PY_SSIZE_T_MAX / sizeof(formatcode))) {
PyErr_NoMemory();
return -1;
}
self->s_size = size;
self->s_len = len;
codes = PyMem_MALLOC((ncodes + 1) * sizeof(formatcode));
if (codes == NULL) {
PyErr_NoMemory();
return -1;
}
/* Free any s_codes value left over from a previous initialization. */
if (self->s_codes != NULL)
PyMem_FREE(self->s_codes);
self->s_codes = codes;
s = fmt;
size = 0;
while ((c = *s++) != '\0') {
if (Py_ISSPACE(Py_CHARMASK(c)))
continue;
if ('0' <= c && c <= '9') {
num = c - '0';
while ('0' <= (c = *s++) && c <= '9')
num = num*10 + (c - '0');
if (c == '\0')
break;
}
else
num = 1;
e = getentry(c, f);
size = align(size, c, e);
if (c == 's' || c == 'p') {
codes->offset = size;
codes->size = num;
codes->fmtdef = e;
codes->repeat = 1;
codes++;
size += num;
} else if (c == 'x') {
size += num;
} else if (num) {
codes->offset = size;
codes->size = e->size;
codes->fmtdef = e;
codes->repeat = num;
codes++;
size += e->size * num;
}
}
codes->fmtdef = NULL;
codes->offset = size;
codes->size = 0;
codes->repeat = 0;
return 0;
overflow:
PyErr_SetString(StructError,
"total struct size too long");
return -1;
}
static PyObject *
s_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *self;
assert(type != NULL && type->tp_alloc != NULL);
self = type->tp_alloc(type, 0);
if (self != NULL) {
PyStructObject *s = (PyStructObject*)self;
Py_INCREF(Py_None);
s->s_format = Py_None;
s->s_codes = NULL;
s->s_size = -1;
s->s_len = -1;
}
return self;
}
/*[clinic input]
Struct.__init__
format: object
Create a compiled struct object.
Return a new Struct object which writes and reads binary data according to
the format string.
See help(struct) for more on format strings.
[clinic start generated code]*/
static int
Struct___init___impl(PyStructObject *self, PyObject *format)
/*[clinic end generated code: output=b8e80862444e92d0 input=192a4575a3dde802]*/
{
int ret = 0;
if (PyUnicode_Check(format)) {
format = PyUnicode_AsASCIIString(format);
if (format == NULL)
return -1;
}
/* XXX support buffer interface, too */
else {
Py_INCREF(format);
}
if (!PyBytes_Check(format)) {
Py_DECREF(format);
PyErr_Format(PyExc_TypeError,
"Struct() argument 1 must be a bytes object, not %.200s",
Py_TYPE(format)->tp_name);
return -1;
}
Py_XSETREF(self->s_format, format);
ret = prepare_s(self);
return ret;
}
static void
s_dealloc(PyStructObject *s)
{
if (s->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *)s);
if (s->s_codes != NULL) {
PyMem_FREE(s->s_codes);
}
Py_XDECREF(s->s_format);
Py_TYPE(s)->tp_free((PyObject *)s);
}
static PyObject *
s_unpack_internal(PyStructObject *soself, const char *startfrom) {
formatcode *code;
Py_ssize_t i = 0;
PyObject *result = PyTuple_New(soself->s_len);
if (result == NULL)
return NULL;
for (code = soself->s_codes; code->fmtdef != NULL; code++) {
const formatdef *e = code->fmtdef;
const char *res = startfrom + code->offset;
Py_ssize_t j = code->repeat;
while (j--) {
PyObject *v;
if (e->format == 's') {
v = PyBytes_FromStringAndSize(res, code->size);
} else if (e->format == 'p') {
Py_ssize_t n = *(unsigned char*)res;
if (n >= code->size)
n = code->size - 1;
v = PyBytes_FromStringAndSize(res + 1, n);
} else {
v = e->unpack(res, e);
}
if (v == NULL)
goto fail;
PyTuple_SET_ITEM(result, i++, v);
res += code->size;
}
}
return result;
fail:
Py_DECREF(result);
return NULL;
}
/*[clinic input]
Struct.unpack
buffer: Py_buffer
/
Return a tuple containing unpacked values.
Unpack according to the format string Struct.format. The buffer's size
in bytes must be Struct.size.
See help(struct) for more on format strings.
[clinic start generated code]*/
static PyObject *
Struct_unpack_impl(PyStructObject *self, Py_buffer *buffer)
/*[clinic end generated code: output=873a24faf02e848a input=3113f8e7038b2f6c]*/
{
assert(self->s_codes != NULL);
if (buffer->len != self->s_size) {
PyErr_Format(StructError,
"unpack requires a bytes object of length %zd",
self->s_size);
return NULL;
}
return s_unpack_internal(self, buffer->buf);
}
/*[clinic input]
Struct.unpack_from
buffer: Py_buffer
offset: Py_ssize_t = 0
Return a tuple containing unpacked values.
Values are unpacked according to the format string Struct.format.
The buffer's size in bytes, minus offset, must be at least Struct.size.
See help(struct) for more on format strings.
[clinic start generated code]*/
static PyObject *
Struct_unpack_from_impl(PyStructObject *self, Py_buffer *buffer,
Py_ssize_t offset)
/*[clinic end generated code: output=57fac875e0977316 input=97ade52422f8962f]*/
{
assert(self->s_codes != NULL);
if (offset < 0)
offset += buffer->len;
if (offset < 0 || buffer->len - offset < self->s_size) {
PyErr_Format(StructError,
"unpack_from requires a buffer of at least %zd bytes",
self->s_size);
return NULL;
}
return s_unpack_internal(self, (char*)buffer->buf + offset);
}
/* Unpack iterator type */
typedef struct {
PyObject_HEAD
PyStructObject *so;
Py_buffer buf;
Py_ssize_t index;
} unpackiterobject;
static void
unpackiter_dealloc(unpackiterobject *self)
{
Py_XDECREF(self->so);
PyBuffer_Release(&self->buf);
PyObject_GC_Del(self);
}
static int
unpackiter_traverse(unpackiterobject *self, visitproc visit, void *arg)
{
Py_VISIT(self->so);
Py_VISIT(self->buf.obj);
return 0;
}
static PyObject *
unpackiter_len(unpackiterobject *self)
{
Py_ssize_t len;
if (self->so == NULL)
len = 0;
else
len = (self->buf.len - self->index) / self->so->s_size;
return PyLong_FromSsize_t(len);
}
static PyMethodDef unpackiter_methods[] = {
{"__length_hint__", (PyCFunction) unpackiter_len, METH_NOARGS, NULL},
{NULL, NULL} /* sentinel */
};
static PyObject *
unpackiter_iternext(unpackiterobject *self)
{
PyObject *result;
if (self->so == NULL)
return NULL;
if (self->index >= self->buf.len) {
/* Iterator exhausted */
Py_CLEAR(self->so);
PyBuffer_Release(&self->buf);
return NULL;
}
assert(self->index + self->so->s_size <= self->buf.len);
result = s_unpack_internal(self->so,
(char*) self->buf.buf + self->index);
self->index += self->so->s_size;
return result;
}
static PyTypeObject unpackiter_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"unpack_iterator", /* tp_name */
sizeof(unpackiterobject), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)unpackiter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc)unpackiter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)unpackiter_iternext, /* tp_iternext */
unpackiter_methods /* tp_methods */
};
/*[clinic input]
Struct.iter_unpack
buffer: object
/
Return an iterator yielding tuples.
Tuples are unpacked from the given bytes source, like a repeated
invocation of unpack_from().
Requires that the bytes length be a multiple of the struct size.
[clinic start generated code]*/
static PyObject *
Struct_iter_unpack(PyStructObject *self, PyObject *buffer)
/*[clinic end generated code: output=172d83d0cd15dbab input=6d65b3f3107dbc99]*/
{
unpackiterobject *iter;
assert(self->s_codes != NULL);
if (self->s_size == 0) {
PyErr_Format(StructError,
"cannot iteratively unpack with a struct of length 0");
return NULL;
}
iter = (unpackiterobject *) PyType_GenericAlloc(&unpackiter_type, 0);
if (iter == NULL)
return NULL;
if (PyObject_GetBuffer(buffer, &iter->buf, PyBUF_SIMPLE) < 0) {
Py_DECREF(iter);
return NULL;
}
if (iter->buf.len % self->s_size != 0) {
PyErr_Format(StructError,
"iterative unpacking requires a bytes length "
"multiple of %zd",
self->s_size);
Py_DECREF(iter);
return NULL;
}
Py_INCREF(self);
iter->so = self;
iter->index = 0;
return (PyObject *)iter;
}
/*
* Guts of the pack function.
*
* Takes a struct object, a tuple of arguments, and offset in that tuple of
* argument for where to start processing the arguments for packing, and a
* character buffer for writing the packed string. The caller must insure
* that the buffer may contain the required length for packing the arguments.
* 0 is returned on success, 1 is returned if there is an error.
*
*/
static int
s_pack_internal(PyStructObject *soself, PyObject **args, int offset, char* buf)
{
formatcode *code;
/* XXX(nnorwitz): why does i need to be a local? can we use
the offset parameter or do we need the wider width? */
Py_ssize_t i;
memset(buf, '\0', soself->s_size);
i = offset;
for (code = soself->s_codes; code->fmtdef != NULL; code++) {
const formatdef *e = code->fmtdef;
char *res = buf + code->offset;
Py_ssize_t j = code->repeat;
while (j--) {
PyObject *v = args[i++];
if (e->format == 's') {
Py_ssize_t n;
int isstring;
void *p;
isstring = PyBytes_Check(v);
if (!isstring && !PyByteArray_Check(v)) {
PyErr_SetString(StructError,
"argument for 's' must be a bytes object");
return -1;
}
if (isstring) {
n = PyBytes_GET_SIZE(v);
p = PyBytes_AS_STRING(v);
}
else {
n = PyByteArray_GET_SIZE(v);
p = PyByteArray_AS_STRING(v);
}
if (n > code->size)
n = code->size;
if (n > 0)
memcpy(res, p, n);
} else if (e->format == 'p') {
Py_ssize_t n;
int isstring;
void *p;
isstring = PyBytes_Check(v);
if (!isstring && !PyByteArray_Check(v)) {
PyErr_SetString(StructError,
"argument for 'p' must be a bytes object");
return -1;
}
if (isstring) {
n = PyBytes_GET_SIZE(v);
p = PyBytes_AS_STRING(v);
}
else {
n = PyByteArray_GET_SIZE(v);
p = PyByteArray_AS_STRING(v);
}
if (n > (code->size - 1))
n = code->size - 1;
if (n > 0)
memcpy(res + 1, p, n);
if (n > 255)
n = 255;
*res = Py_SAFE_DOWNCAST(n, Py_ssize_t, unsigned char);
} else {
if (e->pack(res, v, e) < 0) {
if (PyLong_Check(v) && PyErr_ExceptionMatches(PyExc_OverflowError))
PyErr_SetString(StructError,
"int too large to convert");
return -1;
}
}
res += code->size;
}
}
/* Success */
return 0;
}
PyDoc_STRVAR(s_pack__doc__,
"S.pack(v1, v2, ...) -> bytes\n\
\n\
Return a bytes object containing values v1, v2, ... packed according\n\
to the format string S.format. See help(struct) for more on format\n\
strings.");
static PyObject *
s_pack(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyStructObject *soself;
PyObject *result;
/* Validate arguments. */
soself = (PyStructObject *)self;
assert(PyStruct_Check(self));
assert(soself->s_codes != NULL);
if (nargs != soself->s_len)
{
PyErr_Format(StructError,
"pack expected %zd items for packing (got %zd)", soself->s_len, nargs);
return NULL;
}
/* Allocate a new string */
result = PyBytes_FromStringAndSize((char *)NULL, soself->s_size);
if (result == NULL)
return NULL;
/* Call the guts */
if ( s_pack_internal(soself, args, 0, PyBytes_AS_STRING(result)) != 0 ) {
Py_DECREF(result);
return NULL;
}
return result;
}
PyDoc_STRVAR(s_pack_into__doc__,
"S.pack_into(buffer, offset, v1, v2, ...)\n\
\n\
Pack the values v1, v2, ... according to the format string S.format\n\
and write the packed bytes into the writable buffer buf starting at\n\
offset. Note that the offset is a required argument. See\n\
help(struct) for more on format strings.");
static PyObject *
s_pack_into(PyObject *self, PyObject **args, Py_ssize_t nargs)
{
PyStructObject *soself;
Py_buffer buffer;
Py_ssize_t offset;
/* Validate arguments. +1 is for the first arg as buffer. */
soself = (PyStructObject *)self;
assert(PyStruct_Check(self));
assert(soself->s_codes != NULL);
if (nargs != (soself->s_len + 2))
{
if (nargs == 0) {
PyErr_Format(StructError,
"pack_into expected buffer argument");
}
else if (nargs == 1) {
PyErr_Format(StructError,
"pack_into expected offset argument");
}
else {
PyErr_Format(StructError,
"pack_into expected %zd items for packing (got %zd)",
soself->s_len, (nargs - 2));
}
return NULL;
}
/* Extract a writable memory buffer from the first argument */
if (!PyArg_Parse(args[0], "w*", &buffer))
return NULL;
assert(buffer.len >= 0);
/* Extract the offset from the first argument */
offset = PyNumber_AsSsize_t(args[1], PyExc_IndexError);
if (offset == -1 && PyErr_Occurred()) {
PyBuffer_Release(&buffer);
return NULL;
}
/* Support negative offsets. */
if (offset < 0)
offset += buffer.len;
/* Check boundaries */
if (offset < 0 || (buffer.len - offset) < soself->s_size) {
PyErr_Format(StructError,
"pack_into requires a buffer of at least %zd bytes",
soself->s_size);
PyBuffer_Release(&buffer);
return NULL;
}
/* Call the guts */
if (s_pack_internal(soself, args, 2, (char*)buffer.buf + offset) != 0) {
PyBuffer_Release(&buffer);
return NULL;
}
PyBuffer_Release(&buffer);
Py_RETURN_NONE;
}
static PyObject *
s_get_format(PyStructObject *self, void *unused)
{
Py_INCREF(self->s_format);
return self->s_format;
}
static PyObject *
s_get_size(PyStructObject *self, void *unused)
{
return PyLong_FromSsize_t(self->s_size);
}
PyDoc_STRVAR(s_sizeof__doc__,
"S.__sizeof__() -> size of S in memory, in bytes");
static PyObject *
s_sizeof(PyStructObject *self, void *unused)
{
Py_ssize_t size;
formatcode *code;
size = _PyObject_SIZE(Py_TYPE(self)) + sizeof(formatcode);
for (code = self->s_codes; code->fmtdef != NULL; code++)
size += sizeof(formatcode);
return PyLong_FromSsize_t(size);
}
/* List of functions */
static struct PyMethodDef s_methods[] = {
STRUCT_ITER_UNPACK_METHODDEF
{"pack", (PyCFunction)s_pack, METH_FASTCALL, s_pack__doc__},
{"pack_into", (PyCFunction)s_pack_into, METH_FASTCALL, s_pack_into__doc__},
STRUCT_UNPACK_METHODDEF
STRUCT_UNPACK_FROM_METHODDEF
{"__sizeof__", (PyCFunction)s_sizeof, METH_NOARGS, s_sizeof__doc__},
{NULL, NULL} /* sentinel */
};
#define OFF(x) offsetof(PyStructObject, x)
static PyGetSetDef s_getsetlist[] = {
{"format", (getter)s_get_format, (setter)NULL, "struct format string", NULL},
{"size", (getter)s_get_size, (setter)NULL, "struct size in bytes", NULL},
{NULL} /* sentinel */
};
static
PyTypeObject PyStructType = {
PyVarObject_HEAD_INIT(NULL, 0)
"Struct",
sizeof(PyStructObject),
0,
(destructor)s_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
Struct___init____doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
offsetof(PyStructObject, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
s_methods, /* tp_methods */
NULL, /* tp_members */
s_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
Struct___init__, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
s_new, /* tp_new */
PyObject_Del, /* tp_free */
};
/* ---- Standalone functions ---- */
#define MAXCACHE 100
static PyObject *cache = NULL;
static PyStructObject *
cache_struct(PyObject *fmt)
{
PyObject * s_object;
if (cache == NULL) {
cache = PyDict_New();
if (cache == NULL)
return NULL;
}
s_object = PyDict_GetItem(cache, fmt);
if (s_object != NULL) {
Py_INCREF(s_object);
return (PyStructObject *)s_object;
}
s_object = PyObject_CallFunctionObjArgs((PyObject *)(&PyStructType), fmt, NULL);
if (s_object != NULL) {
if (PyDict_GET_SIZE(cache) >= MAXCACHE)
PyDict_Clear(cache);
/* Attempt to cache the result */
if (PyDict_SetItem(cache, fmt, s_object) == -1)
PyErr_Clear();
}
return (PyStructObject *)s_object;
}
/*[clinic input]
_clearcache
Clear the internal cache.
[clinic start generated code]*/
static PyObject *
_clearcache_impl(PyObject *module)
/*[clinic end generated code: output=ce4fb8a7bf7cb523 input=463eaae04bab3211]*/
{
Py_CLEAR(cache);
Py_RETURN_NONE;
}
/*[clinic input]
calcsize
format: object
/
Return size in bytes of the struct described by the format string.
[clinic start generated code]*/
static PyObject *
calcsize(PyObject *module, PyObject *format)
/*[clinic end generated code: output=90fbcf191fe9470a input=55488303a06777fa]*/
{
Py_ssize_t n;
PyStructObject *s_object = cache_struct(format);
if (s_object == NULL)
return NULL;
n = s_object->s_size;
Py_DECREF(s_object);
return PyLong_FromSsize_t(n);
}
PyDoc_STRVAR(pack_doc,
"pack(format, v1, v2, ...) -> bytes\n\
\n\
Return a bytes object containing the values v1, v2, ... packed according\n\
to the format string. See help(struct) for more on format strings.");
static PyObject *
pack(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyStructObject *s_object;
PyObject *format, *result;
if (nargs == 0) {
PyErr_SetString(PyExc_TypeError, "missing format argument");
return NULL;
}
format = args[0];
s_object = cache_struct(format);
if (s_object == NULL) {
return NULL;
}
result = s_pack((PyObject *)s_object, args + 1, nargs - 1);
Py_DECREF(s_object);
return result;
}
PyDoc_STRVAR(pack_into_doc,
"pack_into(format, buffer, offset, v1, v2, ...)\n\
\n\
Pack the values v1, v2, ... according to the format string and write\n\
the packed bytes into the writable buffer buf starting at offset. Note\n\
that the offset is a required argument. See help(struct) for more\n\
on format strings.");
static PyObject *
pack_into(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
{
PyStructObject *s_object;
PyObject *format, *result;
if (nargs == 0) {
PyErr_SetString(PyExc_TypeError, "missing format argument");
return NULL;
}
format = args[0];
s_object = cache_struct(format);
if (s_object == NULL) {
return NULL;
}
result = s_pack_into((PyObject *)s_object, args + 1, nargs - 1);
Py_DECREF(s_object);
return result;
}
/*[clinic input]
unpack
format: object
inputstr: object
/
Return a tuple containing values unpacked according to the format string.
The buffer's size in bytes must be calcsize(format).
See help(struct) for more on format strings.
[clinic start generated code]*/
static PyObject *
unpack_impl(PyObject *module, PyObject *format, PyObject *inputstr)
/*[clinic end generated code: output=06951d66eae6d63b input=4b81d54988890f5e]*/
{
PyStructObject *s_object;
PyObject *result;
s_object = cache_struct(format);
if (s_object == NULL)
return NULL;
result = Struct_unpack(s_object, inputstr);
Py_DECREF(s_object);
return result;
}
/*[clinic input]
unpack_from
format: object
/
buffer: Py_buffer
offset: Py_ssize_t = 0
Return a tuple containing values unpacked according to the format string.
The buffer's size, minus offset, must be at least calcsize(format).
See help(struct) for more on format strings.
[clinic start generated code]*/
static PyObject *
unpack_from_impl(PyObject *module, PyObject *format, Py_buffer *buffer,
Py_ssize_t offset)
/*[clinic end generated code: output=2492f0c3a0b82577 input=9ead76c6ac7164f7]*/
{
PyStructObject *s_object;
PyObject *result;
s_object = cache_struct(format);
if (s_object == NULL) {
return NULL;
}
result = Struct_unpack_from_impl(s_object, buffer, offset);
Py_DECREF(s_object);
return result;
}
/*[clinic input]
iter_unpack
format: object
buffer: object
/
Return an iterator yielding tuples unpacked from the given bytes.
The bytes are unpacked according to the format string, like
a repeated invocation of unpack_from().
Requires that the bytes length be a multiple of the format struct size.
[clinic start generated code]*/
static PyObject *
iter_unpack_impl(PyObject *module, PyObject *format, PyObject *buffer)
/*[clinic end generated code: output=b1291e97a6d4cf3c input=8674dfd2f0dae416]*/
{
PyStructObject *s_object;
PyObject *result;
s_object = cache_struct(format);
if (s_object == NULL)
return NULL;
result = Struct_iter_unpack(s_object, buffer);
Py_DECREF(s_object);
return result;
}
static struct PyMethodDef module_functions[] = {
_CLEARCACHE_METHODDEF
CALCSIZE_METHODDEF
ITER_UNPACK_METHODDEF
{"pack", (PyCFunction)pack, METH_FASTCALL, pack_doc},
{"pack_into", (PyCFunction)pack_into, METH_FASTCALL, pack_into_doc},
UNPACK_METHODDEF
UNPACK_FROM_METHODDEF
{NULL, NULL} /* sentinel */
};
/* Module initialization */
PyDoc_STRVAR(module_doc,
"Functions to convert between Python values and C structs.\n\
Python bytes objects are used to hold the data representing the C struct\n\
and also as format strings (explained below) to describe the layout of data\n\
in the C struct.\n\
\n\
The optional first format char indicates byte order, size and alignment:\n\
@: native order, size & alignment (default)\n\
=: native order, std. size & alignment\n\
<: little-endian, std. size & alignment\n\
>: big-endian, std. size & alignment\n\
!: same as >\n\
\n\
The remaining chars indicate types of args and must match exactly;\n\
these can be preceded by a decimal repeat count:\n\
x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;\n\
?: _Bool (requires C99; if not available, char is used instead)\n\
h:short; H:unsigned short; i:int; I:unsigned int;\n\
l:long; L:unsigned long; f:float; d:double; e:half-float.\n\
Special cases (preceding decimal count indicates length):\n\
s:string (array of char); p: pascal string (with count byte).\n\
Special cases (only available in native format):\n\
n:ssize_t; N:size_t;\n\
P:an integer type that is wide enough to hold a pointer.\n\
Special case (not in native mode unless 'long long' in platform C):\n\
q:long long; Q:unsigned long long\n\
Whitespace between formats is ignored.\n\
\n\
The variable struct.error is an exception raised on errors.\n");
static struct PyModuleDef _structmodule = {
PyModuleDef_HEAD_INIT,
"_struct",
module_doc,
-1,
module_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__struct(void)
{
PyObject *m;
m = PyModule_Create(&_structmodule);
if (m == NULL)
return NULL;
Py_TYPE(&PyStructType) = &PyType_Type;
if (PyType_Ready(&PyStructType) < 0)
return NULL;
if (PyType_Ready(&unpackiter_type) < 0)
return NULL;
/* Check endian and swap in faster functions */
{
const formatdef *native = native_table;
formatdef *other, *ptr;
#if PY_LITTLE_ENDIAN
other = lilendian_table;
#else
other = bigendian_table;
#endif
/* Scan through the native table, find a matching
entry in the endian table and swap in the
native implementations whenever possible
(64-bit platforms may not have "standard" sizes) */
while (native->format != '\0' && other->format != '\0') {
ptr = other;
while (ptr->format != '\0') {
if (ptr->format == native->format) {
/* Match faster when formats are
listed in the same order */
if (ptr == other)
other++;
/* Only use the trick if the
size matches */
if (ptr->size != native->size)
break;
/* Skip float and double, could be
"unknown" float format */
if (ptr->format == 'd' || ptr->format == 'f')
break;
ptr->pack = native->pack;
ptr->unpack = native->unpack;
break;
}
ptr++;
}
native++;
}
}
/* Add some symbolic constants to the module */
if (StructError == NULL) {
StructError = PyErr_NewException("struct.error", NULL, NULL);
if (StructError == NULL)
return NULL;
}
Py_INCREF(StructError);
PyModule_AddObject(m, "error", StructError);
Py_INCREF((PyObject*)&PyStructType);
PyModule_AddObject(m, "Struct", (PyObject*)&PyStructType);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__struct = {
"_struct",
PyInit__struct,
};
| 67,529 | 2,418 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_isnormalized.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/**
* Returns 1 if the input is certainly normalized, 0 if it might not be.
*/
int
_PyUnicode_IsNormalized(PyObject *self, PyObject *input, int nfc, int k)
{
int kind;
void *data;
Py_ssize_t i, len;
unsigned char prev_combining = 0, quickcheck_mask;
/* An older version of the database is requested, quickchecks must be
disabled. */
if (self && UCD_Check(self))
return 0;
/* The two quickcheck bits at this shift mean 0=Yes, 1=Maybe, 2=No,
as described in http://unicode.org/reports/tr15/#Annex8. */
quickcheck_mask = 3 << ((nfc ? 4 : 0) + (k ? 2 : 0));
i = 0;
kind = PyUnicode_KIND(input);
data = PyUnicode_DATA(input);
len = PyUnicode_GET_LENGTH(input);
while (i < len) {
Py_UCS4 ch = PyUnicode_READ(kind, data, i++);
const _PyUnicode_Record *record = _PyUnicode_GetRecord(ch);
unsigned char combining = record->combining;
unsigned char quickcheck = record->normalization_quick_check;
if (quickcheck & quickcheck_mask)
return 0; /* this string might need normalization */
if (combining && prev_combining > combining)
return 0; /* non-canonical sort order, not normalized */
prev_combining = combining;
}
return 1; /* certainly normalized */
}
| 2,202 | 44 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_sre.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/iterobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyctype.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyhash.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/warnings.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/sre.h"
#include "third_party/python/Modules/sre_constants.h"
/* clang-format off */
PYTHON_PROVIDE("_sre");
PYTHON_PROVIDE("_sre.CODESIZE");
PYTHON_PROVIDE("_sre.MAGIC");
PYTHON_PROVIDE("_sre.MAXGROUPS");
PYTHON_PROVIDE("_sre.MAXREPEAT");
PYTHON_PROVIDE("_sre.__doc__");
PYTHON_PROVIDE("_sre.__loader__");
PYTHON_PROVIDE("_sre.__name__");
PYTHON_PROVIDE("_sre.__package__");
PYTHON_PROVIDE("_sre.__spec__");
PYTHON_PROVIDE("_sre.compile");
PYTHON_PROVIDE("_sre.getcodesize");
PYTHON_PROVIDE("_sre.getlower");
asm(".ident\t\"\\n\\n\
SRE 2.2.2 (Python license)\\n\
Copyright 1997-2002 Secret Labs AB\"");
asm(".include \"libc/disclaimer.inc\"");
/* clang-format off */
/*
* Secret Labs' Regular Expression Engine
*
* regular expression matching engine
*
* partial history:
* 1999-10-24 fl created (based on existing template matcher code)
* 2000-03-06 fl first alpha, sort of
* 2000-08-01 fl fixes for 1.6b1
* 2000-08-07 fl use PyOS_CheckStack() if available
* 2000-09-20 fl added expand method
* 2001-03-20 fl lots of fixes for 2.1b2
* 2001-04-15 fl export copyright as Python attribute, not global
* 2001-04-28 fl added __copy__ methods (work in progress)
* 2001-05-14 fl fixes for 1.5.2 compatibility
* 2001-07-01 fl added BIGCHARSET support (from Martin von Loewis)
* 2001-10-18 fl fixed group reset issue (from Matthew Mueller)
* 2001-10-20 fl added split primitive; reenable unicode for 1.6/2.0/2.1
* 2001-10-21 fl added sub/subn primitive
* 2001-10-24 fl added finditer primitive (for 2.2 only)
* 2001-12-07 fl fixed memory leak in sub/subn (Guido van Rossum)
* 2002-11-09 fl fixed empty sub/subn return type
* 2003-04-18 mvl fully support 4-byte codes
* 2003-10-17 gn implemented non recursive scheme
* 2013-02-04 mrab added fullmatch primitive
*
* Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
*
* This version of the SRE library can be redistributed under CNRI's
* Python 1.6 license. For any other use, please contact Secret Labs
* AB ([email protected]).
*
* Portions of this engine have been developed in cooperation with
* CNRI. Hewlett-Packard provided funding for 1.6 integration and
* other compatibility work.
*/
#define SRE_CODE_BITS (8 * sizeof(SRE_CODE))
/* name of this module, minus the leading underscore */
#if !defined(SRE_MODULE)
#define SRE_MODULE "sre"
#endif
#define SRE_PY_MODULE "re"
/* defining this one enables tracing */
#undef VERBOSE
/* -------------------------------------------------------------------- */
/* optional features */
/* enables copy/deepcopy handling (work in progress) */
#undef USE_BUILTIN_COPY
/* -------------------------------------------------------------------- */
#if defined(USE_INLINE)
#define LOCAL(type) static inline type
#else
#define LOCAL(type) static type
#endif
/* error codes */
#define SRE_ERROR_ILLEGAL -1 /* illegal opcode */
#define SRE_ERROR_STATE -2 /* illegal state */
#define SRE_ERROR_RECURSION_LIMIT -3 /* runaway recursion */
#define SRE_ERROR_MEMORY -9 /* out of memory */
#define SRE_ERROR_INTERRUPTED -10 /* signal handler raised exception */
#if defined(VERBOSE)
#define TRACE(v) printf v
#else
#define TRACE(v)
#endif
/* -------------------------------------------------------------------- */
/* search engine state */
#define SRE_IS_DIGIT(ch)\
((ch) < 128 && Py_ISDIGIT(ch))
#define SRE_IS_SPACE(ch)\
((ch) < 128 && Py_ISSPACE(ch))
#define SRE_IS_LINEBREAK(ch)\
((ch) == '\n')
#define SRE_IS_ALNUM(ch)\
((ch) < 128 && Py_ISALNUM(ch))
#define SRE_IS_WORD(ch)\
((ch) < 128 && (Py_ISALNUM(ch) || (ch) == '_'))
static unsigned int sre_lower(unsigned int ch)
{
return ((ch) < 128 ? Py_TOLOWER(ch) : ch);
}
static unsigned int sre_upper(unsigned int ch)
{
return ((ch) < 128 ? Py_TOUPPER(ch) : ch);
}
/* locale-specific character predicates */
/* !(c & ~N) == (c < N+1) for any unsigned c, this avoids
* warnings when c's type supports only numbers < N+1 */
#define SRE_LOC_IS_ALNUM(ch) (!((ch) & ~255) ? Py_ISALNUM((ch)) : 0)
#define SRE_LOC_IS_WORD(ch) (SRE_LOC_IS_ALNUM((ch)) || (ch) == '_')
static inline unsigned int sre_lower_locale(unsigned int ch)
{
#ifdef __COSMOPOLITAN__
return sre_lower(ch);
#else
return ((ch) < 256 ? (unsigned int)tolower((ch)) : ch);
#endif
}
static inline unsigned int sre_upper_locale(unsigned int ch)
{
#ifdef __COSMOPOLITAN__
return sre_upper(ch);
#else
return ((ch) < 256 ? (unsigned int)toupper((ch)) : ch);
#endif
}
/* unicode-specific character predicates */
#define SRE_UNI_IS_DIGIT(ch) Py_UNICODE_ISDECIMAL(ch)
#define SRE_UNI_IS_SPACE(ch) Py_UNICODE_ISSPACE(ch)
#define SRE_UNI_IS_LINEBREAK(ch) Py_UNICODE_ISLINEBREAK(ch)
#define SRE_UNI_IS_ALNUM(ch) Py_UNICODE_ISALNUM(ch)
#define SRE_UNI_IS_WORD(ch) (SRE_UNI_IS_ALNUM(ch) || (ch) == '_')
static unsigned int sre_lower_unicode(unsigned int ch)
{
return (unsigned int) Py_UNICODE_TOLOWER(ch);
}
static unsigned int sre_upper_unicode(unsigned int ch)
{
return (unsigned int) Py_UNICODE_TOUPPER(ch);
}
LOCAL(int)
sre_category(SRE_CODE category, unsigned int ch)
{
switch (category) {
case SRE_CATEGORY_DIGIT:
return SRE_IS_DIGIT(ch);
case SRE_CATEGORY_NOT_DIGIT:
return !SRE_IS_DIGIT(ch);
case SRE_CATEGORY_SPACE:
return SRE_IS_SPACE(ch);
case SRE_CATEGORY_NOT_SPACE:
return !SRE_IS_SPACE(ch);
case SRE_CATEGORY_WORD:
return SRE_IS_WORD(ch);
case SRE_CATEGORY_NOT_WORD:
return !SRE_IS_WORD(ch);
case SRE_CATEGORY_LINEBREAK:
return SRE_IS_LINEBREAK(ch);
case SRE_CATEGORY_NOT_LINEBREAK:
return !SRE_IS_LINEBREAK(ch);
case SRE_CATEGORY_LOC_WORD:
return SRE_LOC_IS_WORD(ch);
case SRE_CATEGORY_LOC_NOT_WORD:
return !SRE_LOC_IS_WORD(ch);
case SRE_CATEGORY_UNI_DIGIT:
return SRE_UNI_IS_DIGIT(ch);
case SRE_CATEGORY_UNI_NOT_DIGIT:
return !SRE_UNI_IS_DIGIT(ch);
case SRE_CATEGORY_UNI_SPACE:
return SRE_UNI_IS_SPACE(ch);
case SRE_CATEGORY_UNI_NOT_SPACE:
return !SRE_UNI_IS_SPACE(ch);
case SRE_CATEGORY_UNI_WORD:
return SRE_UNI_IS_WORD(ch);
case SRE_CATEGORY_UNI_NOT_WORD:
return !SRE_UNI_IS_WORD(ch);
case SRE_CATEGORY_UNI_LINEBREAK:
return SRE_UNI_IS_LINEBREAK(ch);
case SRE_CATEGORY_UNI_NOT_LINEBREAK:
return !SRE_UNI_IS_LINEBREAK(ch);
}
return 0;
}
static void
data_stack_dealloc(SRE_STATE* state)
{
if (state->data_stack) {
PyMem_FREE(state->data_stack);
state->data_stack = NULL;
}
state->data_stack_size = state->data_stack_base = 0;
}
static int
data_stack_grow(SRE_STATE* state, Py_ssize_t size)
{
Py_ssize_t minsize, cursize;
minsize = state->data_stack_base+size;
cursize = state->data_stack_size;
if (cursize < minsize) {
void* stack;
cursize = minsize+minsize/4+1024;
TRACE(("allocate/grow stack %" PY_FORMAT_SIZE_T "d\n", cursize));
stack = PyMem_REALLOC(state->data_stack, cursize);
if (!stack) {
data_stack_dealloc(state);
return SRE_ERROR_MEMORY;
}
state->data_stack = (char *)stack;
state->data_stack_size = cursize;
}
return 0;
}
/* generate 8-bit version */
#define SRE_CHAR Py_UCS1
#define SIZEOF_SRE_CHAR 1
#define SRE(F) sre_ucs1_##F
#include "third_party/python/Modules/sre_lib.inc"
/* generate 16-bit unicode version */
#define SRE_CHAR Py_UCS2
#define SIZEOF_SRE_CHAR 2
#define SRE(F) sre_ucs2_##F
#include "third_party/python/Modules/sre_lib.inc"
/* generate 32-bit unicode version */
#define SRE_CHAR Py_UCS4
#define SIZEOF_SRE_CHAR 4
#define SRE(F) sre_ucs4_##F
#include "third_party/python/Modules/sre_lib.inc"
/* -------------------------------------------------------------------- */
/* factories and destructors */
/* see sre.h for object declarations */
static PyObject*pattern_new_match(PatternObject*, SRE_STATE*, Py_ssize_t);
static PyObject *pattern_scanner(PatternObject *, PyObject *, Py_ssize_t, Py_ssize_t);
/*[clinic input]
module _sre
class _sre.SRE_Pattern "PatternObject *" "&Pattern_Type"
class _sre.SRE_Match "MatchObject *" "&Match_Type"
class _sre.SRE_Scanner "ScannerObject *" "&Scanner_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=b0230ec19a0deac8]*/
static PyTypeObject Pattern_Type;
static PyTypeObject Match_Type;
static PyTypeObject Scanner_Type;
/*[clinic input]
_sre.getcodesize -> int
[clinic start generated code]*/
static int
_sre_getcodesize_impl(PyObject *module)
/*[clinic end generated code: output=e0db7ce34a6dd7b1 input=bd6f6ecf4916bb2b]*/
{
return sizeof(SRE_CODE);
}
/*[clinic input]
_sre.getlower -> int
character: int
flags: int
/
[clinic start generated code]*/
static int
_sre_getlower_impl(PyObject *module, int character, int flags)
/*[clinic end generated code: output=47eebc4c1214feb5 input=087d2f1c44bbca6f]*/
{
if (flags & SRE_FLAG_LOCALE)
return sre_lower_locale(character);
if (flags & SRE_FLAG_UNICODE)
return sre_lower_unicode(character);
return sre_lower(character);
}
LOCAL(void)
state_reset(SRE_STATE* state)
{
/* FIXME: dynamic! */
/*bzero(state->mark, sizeof(*state->mark) * SRE_MARK_SIZE);*/
state->lastmark = -1;
state->lastindex = -1;
state->repeat = NULL;
data_stack_dealloc(state);
}
static void*
getstring(PyObject* string, Py_ssize_t* p_length,
int* p_isbytes, int* p_charsize,
Py_buffer *view)
{
/* given a python object, return a data pointer, a length (in
characters), and a character size. return NULL if the object
is not a string (or not compatible) */
/* Unicode objects do not support the buffer API. So, get the data
directly instead. */
if (PyUnicode_Check(string)) {
if (PyUnicode_READY(string) == -1)
return NULL;
*p_length = PyUnicode_GET_LENGTH(string);
*p_charsize = PyUnicode_KIND(string);
*p_isbytes = 0;
return PyUnicode_DATA(string);
}
/* get pointer to byte string buffer */
if (PyObject_GetBuffer(string, view, PyBUF_SIMPLE) != 0) {
PyErr_SetString(PyExc_TypeError, "expected string or bytes-like object");
return NULL;
}
*p_length = view->len;
*p_charsize = 1;
*p_isbytes = 1;
if (view->buf == NULL) {
PyErr_SetString(PyExc_ValueError, "Buffer is NULL");
PyBuffer_Release(view);
view->buf = NULL;
return NULL;
}
return view->buf;
}
LOCAL(PyObject*)
state_init(SRE_STATE* state, PatternObject* pattern, PyObject* string,
Py_ssize_t start, Py_ssize_t end)
{
/* prepare state object */
Py_ssize_t length;
int isbytes, charsize;
void* ptr;
bzero(state, sizeof(SRE_STATE));
state->mark = PyMem_New(void *, pattern->groups * 2);
if (!state->mark) {
PyErr_NoMemory();
goto err;
}
state->lastmark = -1;
state->lastindex = -1;
state->buffer.buf = NULL;
ptr = getstring(string, &length, &isbytes, &charsize, &state->buffer);
if (!ptr)
goto err;
if (isbytes && pattern->isbytes == 0) {
PyErr_SetString(PyExc_TypeError,
"cannot use a string pattern on a bytes-like object");
goto err;
}
if (!isbytes && pattern->isbytes > 0) {
PyErr_SetString(PyExc_TypeError,
"cannot use a bytes pattern on a string-like object");
goto err;
}
/* adjust boundaries */
if (start < 0)
start = 0;
else if (start > length)
start = length;
if (end < 0)
end = 0;
else if (end > length)
end = length;
state->isbytes = isbytes;
state->charsize = charsize;
state->beginning = ptr;
state->start = (void*) ((char*) ptr + start * state->charsize);
state->end = (void*) ((char*) ptr + end * state->charsize);
Py_INCREF(string);
state->string = string;
state->pos = start;
state->endpos = end;
if (pattern->flags & SRE_FLAG_LOCALE) {
state->lower = sre_lower_locale;
state->upper = sre_upper_locale;
}
else if (pattern->flags & SRE_FLAG_UNICODE) {
state->lower = sre_lower_unicode;
state->upper = sre_upper_unicode;
}
else {
state->lower = sre_lower;
state->upper = sre_upper;
}
return string;
err:
PyMem_Del(state->mark);
state->mark = NULL;
if (state->buffer.buf)
PyBuffer_Release(&state->buffer);
return NULL;
}
LOCAL(void)
state_fini(SRE_STATE* state)
{
if (state->buffer.buf)
PyBuffer_Release(&state->buffer);
Py_XDECREF(state->string);
data_stack_dealloc(state);
PyMem_Del(state->mark);
state->mark = NULL;
}
/* calculate offset from start of string */
#define STATE_OFFSET(state, member)\
(((char*)(member) - (char*)(state)->beginning) / (state)->charsize)
LOCAL(PyObject*)
getslice(int isbytes, const void *ptr,
PyObject* string, Py_ssize_t start, Py_ssize_t end)
{
if (isbytes) {
if (PyBytes_CheckExact(string) &&
start == 0 && end == PyBytes_GET_SIZE(string)) {
Py_INCREF(string);
return string;
}
return PyBytes_FromStringAndSize(
(const char *)ptr + start, end - start);
}
else {
return PyUnicode_Substring(string, start, end);
}
}
LOCAL(PyObject*)
state_getslice(SRE_STATE* state, Py_ssize_t index, PyObject* string, int empty)
{
Py_ssize_t i, j;
index = (index - 1) * 2;
if (string == Py_None || index >= state->lastmark || !state->mark[index] || !state->mark[index+1]) {
if (empty)
/* want empty string */
i = j = 0;
else {
Py_INCREF(Py_None);
return Py_None;
}
} else {
i = STATE_OFFSET(state, state->mark[index]);
j = STATE_OFFSET(state, state->mark[index+1]);
}
return getslice(state->isbytes, state->beginning, string, i, j);
}
static void
pattern_error(Py_ssize_t status)
{
switch (status) {
case SRE_ERROR_RECURSION_LIMIT:
/* This error code seems to be unused. */
PyErr_SetString(
PyExc_RecursionError,
"maximum recursion limit exceeded"
);
break;
case SRE_ERROR_MEMORY:
PyErr_NoMemory();
break;
case SRE_ERROR_INTERRUPTED:
/* An exception has already been raised, so let it fly */
break;
default:
/* other error codes indicate compiler/engine bugs */
PyErr_SetString(
PyExc_RuntimeError,
"internal error in regular expression engine"
);
}
}
static void
pattern_dealloc(PatternObject* self)
{
if (self->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) self);
Py_XDECREF(self->pattern);
Py_XDECREF(self->groupindex);
Py_XDECREF(self->indexgroup);
PyObject_DEL(self);
}
LOCAL(Py_ssize_t)
sre_match(SRE_STATE* state, SRE_CODE* pattern, int match_all)
{
if (state->charsize == 1)
return sre_ucs1_match(state, pattern, match_all);
if (state->charsize == 2)
return sre_ucs2_match(state, pattern, match_all);
assert(state->charsize == 4);
return sre_ucs4_match(state, pattern, match_all);
}
LOCAL(Py_ssize_t)
sre_search(SRE_STATE* state, SRE_CODE* pattern)
{
if (state->charsize == 1)
return sre_ucs1_search(state, pattern);
if (state->charsize == 2)
return sre_ucs2_search(state, pattern);
assert(state->charsize == 4);
return sre_ucs4_search(state, pattern);
}
static PyObject *
fix_string_param(PyObject *string, PyObject *string2, const char *oldname)
{
if (string2 != NULL) {
if (string != NULL) {
PyErr_Format(PyExc_TypeError,
"Argument given by name ('%s') and position (1)",
oldname);
return NULL;
}
if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1,
"The '%s' keyword parameter name is deprecated. "
"Use 'string' instead.", oldname) < 0)
return NULL;
return string2;
}
if (string == NULL) {
PyErr_SetString(PyExc_TypeError,
"Required argument 'string' (pos 1) not found");
return NULL;
}
return string;
}
/*[clinic input]
_sre.SRE_Pattern.match
string: object = NULL
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
*
pattern: object = NULL
Matches zero or more characters at the beginning of the string.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_match_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern)
/*[clinic end generated code: output=74b4b1da3bb2d84e input=3d079aa99979b81d]*/
{
SRE_STATE state;
Py_ssize_t status;
PyObject *match;
string = fix_string_param(string, pattern, "pattern");
if (!string)
return NULL;
if (!state_init(&state, (PatternObject *)self, string, pos, endpos))
return NULL;
state.ptr = state.start;
TRACE(("|%p|%p|MATCH\n", PatternObject_GetCode(self), state.ptr));
status = sre_match(&state, PatternObject_GetCode(self), 0);
TRACE(("|%p|%p|END\n", PatternObject_GetCode(self), state.ptr));
if (PyErr_Occurred()) {
state_fini(&state);
return NULL;
}
match = pattern_new_match(self, &state, status);
state_fini(&state);
return match;
}
/*[clinic input]
_sre.SRE_Pattern.fullmatch
string: object = NULL
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
*
pattern: object = NULL
Matches against all of the string
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_fullmatch_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern)
/*[clinic end generated code: output=1c98bc5da744ea94 input=d4228606cc12580f]*/
{
SRE_STATE state;
Py_ssize_t status;
PyObject *match;
string = fix_string_param(string, pattern, "pattern");
if (!string)
return NULL;
if (!state_init(&state, self, string, pos, endpos))
return NULL;
state.ptr = state.start;
TRACE(("|%p|%p|FULLMATCH\n", PatternObject_GetCode(self), state.ptr));
status = sre_match(&state, PatternObject_GetCode(self), 1);
TRACE(("|%p|%p|END\n", PatternObject_GetCode(self), state.ptr));
if (PyErr_Occurred()) {
state_fini(&state);
return NULL;
}
match = pattern_new_match(self, &state, status);
state_fini(&state);
return match;
}
/*[clinic input]
_sre.SRE_Pattern.search
string: object = NULL
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
*
pattern: object = NULL
Scan through string looking for a match, and return a corresponding match object instance.
Return None if no position in the string matches.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_search_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *pattern)
/*[clinic end generated code: output=3839394a18e5ea4f input=dab42720f4be3a4b]*/
{
SRE_STATE state;
Py_ssize_t status;
PyObject *match;
string = fix_string_param(string, pattern, "pattern");
if (!string)
return NULL;
if (!state_init(&state, self, string, pos, endpos))
return NULL;
TRACE(("|%p|%p|SEARCH\n", PatternObject_GetCode(self), state.ptr));
status = sre_search(&state, PatternObject_GetCode(self));
TRACE(("|%p|%p|END\n", PatternObject_GetCode(self), state.ptr));
if (PyErr_Occurred()) {
state_fini(&state);
return NULL;
}
match = pattern_new_match(self, &state, status);
state_fini(&state);
return match;
}
static PyObject*
call(const char* module, const char* function, PyObject* args)
{
PyObject* name;
PyObject* mod;
PyObject* func;
PyObject* result;
if (!args)
return NULL;
name = PyUnicode_FromString(module);
if (!name)
return NULL;
mod = PyImport_Import(name);
Py_DECREF(name);
if (!mod)
return NULL;
func = PyObject_GetAttrString(mod, function);
Py_DECREF(mod);
if (!func)
return NULL;
result = PyObject_CallObject(func, args);
Py_DECREF(func);
Py_DECREF(args);
return result;
}
#ifdef USE_BUILTIN_COPY
static int
deepcopy(PyObject** object, PyObject* memo)
{
PyObject* copy;
copy = call(
"copy", "deepcopy",
PyTuple_Pack(2, *object, memo)
);
if (!copy)
return 0;
Py_SETREF(*object, copy);
return 1; /* success */
}
#endif
/*[clinic input]
_sre.SRE_Pattern.findall
string: object = NULL
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
*
source: object = NULL
Return a list of all non-overlapping matches of pattern in string.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_findall_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos,
PyObject *source)
/*[clinic end generated code: output=51295498b300639d input=df688355c056b9de]*/
{
SRE_STATE state;
PyObject* list;
Py_ssize_t status;
Py_ssize_t i, b, e;
string = fix_string_param(string, source, "source");
if (!string)
return NULL;
if (!state_init(&state, self, string, pos, endpos))
return NULL;
list = PyList_New(0);
if (!list) {
state_fini(&state);
return NULL;
}
while (state.start <= state.end) {
PyObject* item;
state_reset(&state);
state.ptr = state.start;
status = sre_search(&state, PatternObject_GetCode(self));
if (PyErr_Occurred())
goto error;
if (status <= 0) {
if (status == 0)
break;
pattern_error(status);
goto error;
}
/* don't bother to build a match object */
switch (self->groups) {
case 0:
b = STATE_OFFSET(&state, state.start);
e = STATE_OFFSET(&state, state.ptr);
item = getslice(state.isbytes, state.beginning,
string, b, e);
if (!item)
goto error;
break;
case 1:
item = state_getslice(&state, 1, string, 1);
if (!item)
goto error;
break;
default:
item = PyTuple_New(self->groups);
if (!item)
goto error;
for (i = 0; i < self->groups; i++) {
PyObject* o = state_getslice(&state, i+1, string, 1);
if (!o) {
Py_DECREF(item);
goto error;
}
PyTuple_SET_ITEM(item, i, o);
}
break;
}
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
if (state.ptr == state.start)
state.start = (void*) ((char*) state.ptr + state.charsize);
else
state.start = state.ptr;
}
state_fini(&state);
return list;
error:
Py_DECREF(list);
state_fini(&state);
return NULL;
}
/*[clinic input]
_sre.SRE_Pattern.finditer
string: object
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
Return an iterator over all non-overlapping matches for the RE pattern in string.
For each match, the iterator returns a match object.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_finditer_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos)
/*[clinic end generated code: output=0bbb1a0aeb38bb14 input=612aab69e9fe08e4]*/
{
PyObject* scanner;
PyObject* search;
PyObject* iterator;
scanner = pattern_scanner(self, string, pos, endpos);
if (!scanner)
return NULL;
search = PyObject_GetAttrString(scanner, "search");
Py_DECREF(scanner);
if (!search)
return NULL;
iterator = PyCallIter_New(search, Py_None);
Py_DECREF(search);
return iterator;
}
/*[clinic input]
_sre.SRE_Pattern.scanner
string: object
pos: Py_ssize_t = 0
endpos: Py_ssize_t(c_default="PY_SSIZE_T_MAX") = sys.maxsize
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_scanner_impl(PatternObject *self, PyObject *string,
Py_ssize_t pos, Py_ssize_t endpos)
/*[clinic end generated code: output=54ea548aed33890b input=3aacdbde77a3a637]*/
{
return pattern_scanner(self, string, pos, endpos);
}
/*[clinic input]
_sre.SRE_Pattern.split
string: object = NULL
maxsplit: Py_ssize_t = 0
*
source: object = NULL
Split string by the occurrences of pattern.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_split_impl(PatternObject *self, PyObject *string,
Py_ssize_t maxsplit, PyObject *source)
/*[clinic end generated code: output=20bac2ff55b9f84c input=41e0b2e35e599d7b]*/
{
SRE_STATE state;
PyObject* list;
PyObject* item;
Py_ssize_t status;
Py_ssize_t n;
Py_ssize_t i;
void* last;
string = fix_string_param(string, source, "source");
if (!string)
return NULL;
assert(self->codesize != 0);
if (self->code[0] != SRE_OP_INFO || self->code[3] == 0) {
if (self->code[0] == SRE_OP_INFO && self->code[4] == 0) {
PyErr_SetString(PyExc_ValueError,
"split() requires a non-empty pattern match.");
return NULL;
}
if (PyErr_WarnEx(PyExc_FutureWarning,
"split() requires a non-empty pattern match.",
1) < 0)
return NULL;
}
if (!state_init(&state, self, string, 0, PY_SSIZE_T_MAX))
return NULL;
list = PyList_New(0);
if (!list) {
state_fini(&state);
return NULL;
}
n = 0;
last = state.start;
while (!maxsplit || n < maxsplit) {
state_reset(&state);
state.ptr = state.start;
status = sre_search(&state, PatternObject_GetCode(self));
if (PyErr_Occurred())
goto error;
if (status <= 0) {
if (status == 0)
break;
pattern_error(status);
goto error;
}
if (state.start == state.ptr) {
if (last == state.end || state.ptr == state.end)
break;
/* skip one character */
state.start = (void*) ((char*) state.ptr + state.charsize);
continue;
}
/* get segment before this match */
item = getslice(state.isbytes, state.beginning,
string, STATE_OFFSET(&state, last),
STATE_OFFSET(&state, state.start)
);
if (!item)
goto error;
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
/* add groups (if any) */
for (i = 0; i < self->groups; i++) {
item = state_getslice(&state, i+1, string, 0);
if (!item)
goto error;
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
}
n = n + 1;
last = state.start = state.ptr;
}
/* get segment following last match (even if empty) */
item = getslice(state.isbytes, state.beginning,
string, STATE_OFFSET(&state, last), state.endpos
);
if (!item)
goto error;
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
state_fini(&state);
return list;
error:
Py_DECREF(list);
state_fini(&state);
return NULL;
}
static PyObject*
pattern_subx(PatternObject* self, PyObject* ptemplate, PyObject* string,
Py_ssize_t count, Py_ssize_t subn)
{
SRE_STATE state;
PyObject* list;
PyObject* joiner;
PyObject* item;
PyObject* filter;
PyObject* match;
void* ptr;
Py_ssize_t status;
Py_ssize_t n;
Py_ssize_t i, b, e;
int isbytes, charsize;
int filter_is_callable;
Py_buffer view;
if (PyCallable_Check(ptemplate)) {
/* sub/subn takes either a function or a template */
filter = ptemplate;
Py_INCREF(filter);
filter_is_callable = 1;
} else {
/* if not callable, check if it's a literal string */
int literal;
view.buf = NULL;
ptr = getstring(ptemplate, &n, &isbytes, &charsize, &view);
b = charsize;
if (ptr) {
if (charsize == 1)
literal = memchr(ptr, '\\', n) == NULL;
else
literal = PyUnicode_FindChar(ptemplate, '\\', 0, n, 1) == -1;
} else {
PyErr_Clear();
literal = 0;
}
if (view.buf)
PyBuffer_Release(&view);
if (literal) {
filter = ptemplate;
Py_INCREF(filter);
filter_is_callable = 0;
} else {
/* not a literal; hand it over to the template compiler */
filter = call(
SRE_PY_MODULE, "_subx",
PyTuple_Pack(2, self, ptemplate)
);
if (!filter)
return NULL;
filter_is_callable = PyCallable_Check(filter);
}
}
if (!state_init(&state, self, string, 0, PY_SSIZE_T_MAX)) {
Py_DECREF(filter);
return NULL;
}
list = PyList_New(0);
if (!list) {
Py_DECREF(filter);
state_fini(&state);
return NULL;
}
n = i = 0;
while (!count || n < count) {
state_reset(&state);
state.ptr = state.start;
status = sre_search(&state, PatternObject_GetCode(self));
if (PyErr_Occurred())
goto error;
if (status <= 0) {
if (status == 0)
break;
pattern_error(status);
goto error;
}
b = STATE_OFFSET(&state, state.start);
e = STATE_OFFSET(&state, state.ptr);
if (i < b) {
/* get segment before this match */
item = getslice(state.isbytes, state.beginning,
string, i, b);
if (!item)
goto error;
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
} else if (i == b && i == e && n > 0)
/* ignore empty match on latest position */
goto next;
if (filter_is_callable) {
/* pass match object through filter */
match = pattern_new_match(self, &state, 1);
if (!match)
goto error;
item = _PyObject_CallArg1(filter, match);
Py_DECREF(match);
if (!item)
goto error;
} else {
/* filter is literal string */
item = filter;
Py_INCREF(item);
}
/* add to list */
if (item != Py_None) {
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
}
i = e;
n = n + 1;
next:
/* move on */
if (state.ptr == state.end)
break;
if (state.ptr == state.start)
state.start = (void*) ((char*) state.ptr + state.charsize);
else
state.start = state.ptr;
}
/* get segment following last match */
if (i < state.endpos) {
item = getslice(state.isbytes, state.beginning,
string, i, state.endpos);
if (!item)
goto error;
status = PyList_Append(list, item);
Py_DECREF(item);
if (status < 0)
goto error;
}
state_fini(&state);
Py_DECREF(filter);
/* convert list to single string (also removes list) */
joiner = getslice(state.isbytes, state.beginning, string, 0, 0);
if (!joiner) {
Py_DECREF(list);
return NULL;
}
if (PyList_GET_SIZE(list) == 0) {
Py_DECREF(list);
item = joiner;
}
else {
if (state.isbytes)
item = _PyBytes_Join(joiner, list);
else
item = PyUnicode_Join(joiner, list);
Py_DECREF(joiner);
Py_DECREF(list);
if (!item)
return NULL;
}
if (subn)
return Py_BuildValue("Nn", item, n);
return item;
error:
Py_DECREF(list);
state_fini(&state);
Py_DECREF(filter);
return NULL;
}
/*[clinic input]
_sre.SRE_Pattern.sub
repl: object
string: object
count: Py_ssize_t = 0
Return the string obtained by replacing the leftmost non-overlapping occurrences of pattern in string by the replacement repl.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_sub_impl(PatternObject *self, PyObject *repl,
PyObject *string, Py_ssize_t count)
/*[clinic end generated code: output=1dbf2ec3479cba00 input=c53d70be0b3caf86]*/
{
return pattern_subx(self, repl, string, count, 0);
}
/*[clinic input]
_sre.SRE_Pattern.subn
repl: object
string: object
count: Py_ssize_t = 0
Return the tuple (new_string, number_of_subs_made) found by replacing the leftmost non-overlapping occurrences of pattern with the replacement repl.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern_subn_impl(PatternObject *self, PyObject *repl,
PyObject *string, Py_ssize_t count)
/*[clinic end generated code: output=0d9522cd529e9728 input=e7342d7ce6083577]*/
{
return pattern_subx(self, repl, string, count, 1);
}
/*[clinic input]
_sre.SRE_Pattern.__copy__
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern___copy___impl(PatternObject *self)
/*[clinic end generated code: output=85dedc2db1bd8694 input=a730a59d863bc9f5]*/
{
#ifdef USE_BUILTIN_COPY
PatternObject* copy;
int offset;
copy = PyObject_NEW_VAR(PatternObject, &Pattern_Type, self->codesize);
if (!copy)
return NULL;
offset = offsetof(PatternObject, groups);
Py_XINCREF(self->groupindex);
Py_XINCREF(self->indexgroup);
Py_XINCREF(self->pattern);
memcpy((char*) copy + offset, (char*) self + offset,
sizeof(PatternObject) + self->codesize * sizeof(SRE_CODE) - offset);
copy->weakreflist = NULL;
return (PyObject*) copy;
#else
PyErr_SetString(PyExc_TypeError, "cannot copy this pattern object");
return NULL;
#endif
}
/*[clinic input]
_sre.SRE_Pattern.__deepcopy__
memo: object
[clinic start generated code]*/
static PyObject *
_sre_SRE_Pattern___deepcopy___impl(PatternObject *self, PyObject *memo)
/*[clinic end generated code: output=75efe69bd12c5d7d input=3959719482c07f70]*/
{
#ifdef USE_BUILTIN_COPY
PatternObject* copy;
copy = (PatternObject*) pattern_copy(self);
if (!copy)
return NULL;
if (!deepcopy(©->groupindex, memo) ||
!deepcopy(©->indexgroup, memo) ||
!deepcopy(©->pattern, memo)) {
Py_DECREF(copy);
return NULL;
}
#else
PyErr_SetString(PyExc_TypeError, "cannot deepcopy this pattern object");
return NULL;
#endif
}
static PyObject *
pattern_repr(PatternObject *obj)
{
static const struct {
const char *name;
int value;
} flag_names[] = {
{"re.TEMPLATE", SRE_FLAG_TEMPLATE},
{"re.IGNORECASE", SRE_FLAG_IGNORECASE},
{"re.LOCALE", SRE_FLAG_LOCALE},
{"re.MULTILINE", SRE_FLAG_MULTILINE},
{"re.DOTALL", SRE_FLAG_DOTALL},
{"re.UNICODE", SRE_FLAG_UNICODE},
{"re.VERBOSE", SRE_FLAG_VERBOSE},
{"re.DEBUG", SRE_FLAG_DEBUG},
{"re.ASCII", SRE_FLAG_ASCII},
};
PyObject *result = NULL;
PyObject *flag_items;
size_t i;
int flags = obj->flags;
/* Omit re.UNICODE for valid string patterns. */
if (obj->isbytes == 0 &&
(flags & (SRE_FLAG_LOCALE|SRE_FLAG_UNICODE|SRE_FLAG_ASCII)) ==
SRE_FLAG_UNICODE)
flags &= ~SRE_FLAG_UNICODE;
flag_items = PyList_New(0);
if (!flag_items)
return NULL;
for (i = 0; i < Py_ARRAY_LENGTH(flag_names); i++) {
if (flags & flag_names[i].value) {
PyObject *item = PyUnicode_FromString(flag_names[i].name);
if (!item)
goto done;
if (PyList_Append(flag_items, item) < 0) {
Py_DECREF(item);
goto done;
}
Py_DECREF(item);
flags &= ~flag_names[i].value;
}
}
if (flags) {
PyObject *item = PyUnicode_FromFormat("0x%x", flags);
if (!item)
goto done;
if (PyList_Append(flag_items, item) < 0) {
Py_DECREF(item);
goto done;
}
Py_DECREF(item);
}
if (PyList_Size(flag_items) > 0) {
PyObject *flags_result;
PyObject *sep = PyUnicode_FromString("|");
if (!sep)
goto done;
flags_result = PyUnicode_Join(sep, flag_items);
Py_DECREF(sep);
if (!flags_result)
goto done;
result = PyUnicode_FromFormat("re.compile(%.200R, %S)",
obj->pattern, flags_result);
Py_DECREF(flags_result);
}
else {
result = PyUnicode_FromFormat("re.compile(%.200R)", obj->pattern);
}
done:
Py_DECREF(flag_items);
return result;
}
PyDoc_STRVAR(pattern_doc, "Compiled regular expression objects");
/* PatternObject's 'groupindex' method. */
static PyObject *
pattern_groupindex(PatternObject *self, void *Py_UNUSED(ignored))
{
return PyDictProxy_New(self->groupindex);
}
static int _validate(PatternObject *self); /* Forward */
/*[clinic input]
_sre.compile
pattern: object
flags: int
code: object(subclass_of='&PyList_Type')
groups: Py_ssize_t
groupindex: object
indexgroup: object
[clinic start generated code]*/
static PyObject *
_sre_compile_impl(PyObject *module, PyObject *pattern, int flags,
PyObject *code, Py_ssize_t groups, PyObject *groupindex,
PyObject *indexgroup)
/*[clinic end generated code: output=ef9c2b3693776404 input=7d059ec8ae1edb85]*/
{
/* "compile" pattern descriptor to pattern object */
PatternObject* self;
Py_ssize_t i, n;
n = PyList_GET_SIZE(code);
/* coverity[ampersand_in_size] */
self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n);
if (!self)
return NULL;
self->weakreflist = NULL;
self->pattern = NULL;
self->groupindex = NULL;
self->indexgroup = NULL;
self->codesize = n;
for (i = 0; i < n; i++) {
PyObject *o = PyList_GET_ITEM(code, i);
unsigned long value = PyLong_AsUnsignedLong(o);
self->code[i] = (SRE_CODE) value;
if ((unsigned long) self->code[i] != value) {
PyErr_SetString(PyExc_OverflowError,
"regular expression code size limit exceeded");
break;
}
}
if (PyErr_Occurred()) {
Py_DECREF(self);
return NULL;
}
if (pattern == Py_None) {
self->isbytes = -1;
}
else {
Py_ssize_t p_length;
int charsize;
Py_buffer view;
view.buf = NULL;
if (!getstring(pattern, &p_length, &self->isbytes,
&charsize, &view)) {
Py_DECREF(self);
return NULL;
}
if (view.buf)
PyBuffer_Release(&view);
}
Py_INCREF(pattern);
self->pattern = pattern;
self->flags = flags;
self->groups = groups;
Py_INCREF(groupindex);
self->groupindex = groupindex;
Py_INCREF(indexgroup);
self->indexgroup = indexgroup;
if (!_validate(self)) {
Py_DECREF(self);
return NULL;
}
return (PyObject*) self;
}
/* -------------------------------------------------------------------- */
/* Code validation */
/* To learn more about this code, have a look at the _compile() function in
Lib/sre_compile.py. The validation functions below checks the code array
for conformance with the code patterns generated there.
The nice thing about the generated code is that it is position-independent:
all jumps are relative jumps forward. Also, jumps don't cross each other:
the target of a later jump is always earlier than the target of an earlier
jump. IOW, this is okay:
J---------J-------T--------T
\ \_____/ /
\______________________/
but this is not:
J---------J-------T--------T
\_________\_____/ /
\____________/
It also helps that SRE_CODE is always an unsigned type.
*/
/* Defining this one enables tracing of the validator */
#undef VVERBOSE
/* Trace macro for the validator */
#if defined(VVERBOSE)
#define VTRACE(v) printf v
#else
#define VTRACE(v) do {} while(0) /* do nothing */
#endif
/* Report failure */
#define FAIL do { VTRACE(("FAIL: %d\n", __LINE__)); return 0; } while (0)
/* Extract opcode, argument, or skip count from code array */
#define GET_OP \
do { \
VTRACE(("%p: ", code)); \
if (code >= end) FAIL; \
op = *code++; \
VTRACE(("%lu (op)\n", (unsigned long)op)); \
} while (0)
#define GET_ARG \
do { \
VTRACE(("%p= ", code)); \
if (code >= end) FAIL; \
arg = *code++; \
VTRACE(("%lu (arg)\n", (unsigned long)arg)); \
} while (0)
#define GET_SKIP_ADJ(adj) \
do { \
VTRACE(("%p= ", code)); \
if (code >= end) FAIL; \
skip = *code; \
VTRACE(("%lu (skip to %p)\n", \
(unsigned long)skip, code+skip)); \
if (skip-adj > (uintptr_t)(end - code)) \
FAIL; \
code++; \
} while (0)
#define GET_SKIP GET_SKIP_ADJ(0)
static int
_validate_charset(SRE_CODE *code, SRE_CODE *end)
{
/* Some variables are manipulated by the macros above */
SRE_CODE op;
SRE_CODE arg;
SRE_CODE offset;
int i;
while (code < end) {
GET_OP;
switch (op) {
case SRE_OP_NEGATE:
break;
case SRE_OP_LITERAL:
GET_ARG;
break;
case SRE_OP_RANGE:
case SRE_OP_RANGE_IGNORE:
GET_ARG;
GET_ARG;
break;
case SRE_OP_CHARSET:
offset = 256/SRE_CODE_BITS; /* 256-bit bitmap */
if (offset > (uintptr_t)(end - code))
FAIL;
code += offset;
break;
case SRE_OP_BIGCHARSET:
GET_ARG; /* Number of blocks */
offset = 256/sizeof(SRE_CODE); /* 256-byte table */
if (offset > (uintptr_t)(end - code))
FAIL;
/* Make sure that each byte points to a valid block */
for (i = 0; i < 256; i++) {
if (((unsigned char *)code)[i] >= arg)
FAIL;
}
code += offset;
offset = arg * (256/SRE_CODE_BITS); /* 256-bit bitmap times arg */
if (offset > (uintptr_t)(end - code))
FAIL;
code += offset;
break;
case SRE_OP_CATEGORY:
GET_ARG;
switch (arg) {
case SRE_CATEGORY_DIGIT:
case SRE_CATEGORY_NOT_DIGIT:
case SRE_CATEGORY_SPACE:
case SRE_CATEGORY_NOT_SPACE:
case SRE_CATEGORY_WORD:
case SRE_CATEGORY_NOT_WORD:
case SRE_CATEGORY_LINEBREAK:
case SRE_CATEGORY_NOT_LINEBREAK:
case SRE_CATEGORY_LOC_WORD:
case SRE_CATEGORY_LOC_NOT_WORD:
case SRE_CATEGORY_UNI_DIGIT:
case SRE_CATEGORY_UNI_NOT_DIGIT:
case SRE_CATEGORY_UNI_SPACE:
case SRE_CATEGORY_UNI_NOT_SPACE:
case SRE_CATEGORY_UNI_WORD:
case SRE_CATEGORY_UNI_NOT_WORD:
case SRE_CATEGORY_UNI_LINEBREAK:
case SRE_CATEGORY_UNI_NOT_LINEBREAK:
break;
default:
FAIL;
}
break;
default:
FAIL;
}
}
return 1;
}
static int
_validate_inner(SRE_CODE *code, SRE_CODE *end, Py_ssize_t groups)
{
/* Some variables are manipulated by the macros above */
SRE_CODE op;
SRE_CODE arg;
SRE_CODE skip;
VTRACE(("code=%p, end=%p\n", code, end));
if (code > end)
FAIL;
while (code < end) {
GET_OP;
switch (op) {
case SRE_OP_MARK:
/* We don't check whether marks are properly nested; the
sre_match() code is robust even if they don't, and the worst
you can get is nonsensical match results. */
GET_ARG;
if (arg > 2 * (size_t)groups + 1) {
VTRACE(("arg=%d, groups=%d\n", (int)arg, (int)groups));
FAIL;
}
break;
case SRE_OP_LITERAL:
case SRE_OP_NOT_LITERAL:
case SRE_OP_LITERAL_IGNORE:
case SRE_OP_NOT_LITERAL_IGNORE:
GET_ARG;
/* The arg is just a character, nothing to check */
break;
case SRE_OP_SUCCESS:
case SRE_OP_FAILURE:
/* Nothing to check; these normally end the matching process */
break;
case SRE_OP_AT:
GET_ARG;
switch (arg) {
case SRE_AT_BEGINNING:
case SRE_AT_BEGINNING_STRING:
case SRE_AT_BEGINNING_LINE:
case SRE_AT_END:
case SRE_AT_END_LINE:
case SRE_AT_END_STRING:
case SRE_AT_BOUNDARY:
case SRE_AT_NON_BOUNDARY:
case SRE_AT_LOC_BOUNDARY:
case SRE_AT_LOC_NON_BOUNDARY:
case SRE_AT_UNI_BOUNDARY:
case SRE_AT_UNI_NON_BOUNDARY:
break;
default:
FAIL;
}
break;
case SRE_OP_ANY:
case SRE_OP_ANY_ALL:
/* These have no operands */
break;
case SRE_OP_IN:
case SRE_OP_IN_IGNORE:
GET_SKIP;
/* Stop 1 before the end; we check the FAILURE below */
if (!_validate_charset(code, code+skip-2))
FAIL;
if (code[skip-2] != SRE_OP_FAILURE)
FAIL;
code += skip-1;
break;
case SRE_OP_INFO:
{
/* A minimal info field is
<INFO> <1=skip> <2=flags> <3=min> <4=max>;
If SRE_INFO_PREFIX or SRE_INFO_CHARSET is in the flags,
more follows. */
SRE_CODE flags, i;
SRE_CODE *newcode;
GET_SKIP;
newcode = code+skip-1;
GET_ARG; flags = arg;
GET_ARG;
GET_ARG;
/* Check that only valid flags are present */
if ((flags & ~(SRE_INFO_PREFIX |
SRE_INFO_LITERAL |
SRE_INFO_CHARSET)) != 0)
FAIL;
/* PREFIX and CHARSET are mutually exclusive */
if ((flags & SRE_INFO_PREFIX) &&
(flags & SRE_INFO_CHARSET))
FAIL;
/* LITERAL implies PREFIX */
if ((flags & SRE_INFO_LITERAL) &&
!(flags & SRE_INFO_PREFIX))
FAIL;
/* Validate the prefix */
if (flags & SRE_INFO_PREFIX) {
SRE_CODE prefix_len;
GET_ARG; prefix_len = arg;
GET_ARG;
/* Here comes the prefix string */
if (prefix_len > (uintptr_t)(newcode - code))
FAIL;
code += prefix_len;
/* And here comes the overlap table */
if (prefix_len > (uintptr_t)(newcode - code))
FAIL;
/* Each overlap value should be < prefix_len */
for (i = 0; i < prefix_len; i++) {
if (code[i] >= prefix_len)
FAIL;
}
code += prefix_len;
}
/* Validate the charset */
if (flags & SRE_INFO_CHARSET) {
if (!_validate_charset(code, newcode-1))
FAIL;
if (newcode[-1] != SRE_OP_FAILURE)
FAIL;
code = newcode;
}
else if (code != newcode) {
VTRACE(("code=%p, newcode=%p\n", code, newcode));
FAIL;
}
}
break;
case SRE_OP_BRANCH:
{
SRE_CODE *target = NULL;
for (;;) {
GET_SKIP;
if (skip == 0)
break;
/* Stop 2 before the end; we check the JUMP below */
if (!_validate_inner(code, code+skip-3, groups))
FAIL;
code += skip-3;
/* Check that it ends with a JUMP, and that each JUMP
has the same target */
GET_OP;
if (op != SRE_OP_JUMP)
FAIL;
GET_SKIP;
if (target == NULL)
target = code+skip-1;
else if (code+skip-1 != target)
FAIL;
}
}
break;
case SRE_OP_REPEAT_ONE:
case SRE_OP_MIN_REPEAT_ONE:
{
SRE_CODE min, max;
GET_SKIP;
GET_ARG; min = arg;
GET_ARG; max = arg;
if (min > max)
FAIL;
if (max > SRE_MAXREPEAT)
FAIL;
if (!_validate_inner(code, code+skip-4, groups))
FAIL;
code += skip-4;
GET_OP;
if (op != SRE_OP_SUCCESS)
FAIL;
}
break;
case SRE_OP_REPEAT:
{
SRE_CODE min, max;
GET_SKIP;
GET_ARG; min = arg;
GET_ARG; max = arg;
if (min > max)
FAIL;
if (max > SRE_MAXREPEAT)
FAIL;
if (!_validate_inner(code, code+skip-3, groups))
FAIL;
code += skip-3;
GET_OP;
if (op != SRE_OP_MAX_UNTIL && op != SRE_OP_MIN_UNTIL)
FAIL;
}
break;
case SRE_OP_GROUPREF:
case SRE_OP_GROUPREF_IGNORE:
GET_ARG;
if (arg >= (size_t)groups)
FAIL;
break;
case SRE_OP_GROUPREF_EXISTS:
/* The regex syntax for this is: '(?(group)then|else)', where
'group' is either an integer group number or a group name,
'then' and 'else' are sub-regexes, and 'else' is optional. */
GET_ARG;
if (arg >= (size_t)groups)
FAIL;
GET_SKIP_ADJ(1);
code--; /* The skip is relative to the first arg! */
/* There are two possibilities here: if there is both a 'then'
part and an 'else' part, the generated code looks like:
GROUPREF_EXISTS
<group>
<skipyes>
...then part...
JUMP
<skipno>
(<skipyes> jumps here)
...else part...
(<skipno> jumps here)
If there is only a 'then' part, it looks like:
GROUPREF_EXISTS
<group>
<skip>
...then part...
(<skip> jumps here)
There is no direct way to decide which it is, and we don't want
to allow arbitrary jumps anywhere in the code; so we just look
for a JUMP opcode preceding our skip target.
*/
if (skip >= 3 && skip-3 < (uintptr_t)(end - code) &&
code[skip-3] == SRE_OP_JUMP)
{
VTRACE(("both then and else parts present\n"));
if (!_validate_inner(code+1, code+skip-3, groups))
FAIL;
code += skip-2; /* Position after JUMP, at <skipno> */
GET_SKIP;
if (!_validate_inner(code, code+skip-1, groups))
FAIL;
code += skip-1;
}
else {
VTRACE(("only a then part present\n"));
if (!_validate_inner(code+1, code+skip-1, groups))
FAIL;
code += skip-1;
}
break;
case SRE_OP_ASSERT:
case SRE_OP_ASSERT_NOT:
GET_SKIP;
GET_ARG; /* 0 for lookahead, width for lookbehind */
code--; /* Back up over arg to simplify math below */
if (arg & 0x80000000)
FAIL; /* Width too large */
/* Stop 1 before the end; we check the SUCCESS below */
if (!_validate_inner(code+1, code+skip-2, groups))
FAIL;
code += skip-2;
GET_OP;
if (op != SRE_OP_SUCCESS)
FAIL;
break;
default:
FAIL;
}
}
VTRACE(("okay\n"));
return 1;
}
static int
_validate_outer(SRE_CODE *code, SRE_CODE *end, Py_ssize_t groups)
{
if (groups < 0 || (size_t)groups > SRE_MAXGROUPS ||
code >= end || end[-1] != SRE_OP_SUCCESS)
FAIL;
return _validate_inner(code, end-1, groups);
}
static int
_validate(PatternObject *self)
{
if (!_validate_outer(self->code, self->code+self->codesize, self->groups))
{
PyErr_SetString(PyExc_RuntimeError, "invalid SRE code");
return 0;
}
else
VTRACE(("Success!\n"));
return 1;
}
/* -------------------------------------------------------------------- */
/* match methods */
static void
match_dealloc(MatchObject* self)
{
Py_XDECREF(self->regs);
Py_XDECREF(self->string);
Py_DECREF(self->pattern);
PyObject_DEL(self);
}
static PyObject*
match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def)
{
Py_ssize_t length;
int isbytes, charsize;
Py_buffer view;
PyObject *result;
void* ptr;
Py_ssize_t i, j;
if (index < 0 || index >= self->groups) {
/* raise IndexError if we were given a bad group number */
PyErr_SetString(
PyExc_IndexError,
"no such group"
);
return NULL;
}
index *= 2;
if (self->string == Py_None || self->mark[index] < 0) {
/* return default value if the string or group is undefined */
Py_INCREF(def);
return def;
}
ptr = getstring(self->string, &length, &isbytes, &charsize, &view);
if (ptr == NULL)
return NULL;
i = self->mark[index];
j = self->mark[index+1];
i = Py_MIN(i, length);
j = Py_MIN(j, length);
result = getslice(isbytes, ptr, self->string, i, j);
if (isbytes && view.buf != NULL)
PyBuffer_Release(&view);
return result;
}
static Py_ssize_t
match_getindex(MatchObject* self, PyObject* index)
{
Py_ssize_t i;
if (index == NULL)
/* Default value */
return 0;
if (PyIndex_Check(index)) {
return PyNumber_AsSsize_t(index, NULL);
}
i = -1;
if (self->pattern->groupindex) {
index = PyObject_GetItem(self->pattern->groupindex, index);
if (index) {
if (PyLong_Check(index))
i = PyLong_AsSsize_t(index);
Py_DECREF(index);
} else
PyErr_Clear();
}
return i;
}
static PyObject*
match_getslice(MatchObject* self, PyObject* index, PyObject* def)
{
return match_getslice_by_index(self, match_getindex(self, index), def);
}
/*[clinic input]
_sre.SRE_Match.expand
template: object
Return the string obtained by doing backslash substitution on the string template, as done by the sub() method.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match_expand_impl(MatchObject *self, PyObject *template)
/*[clinic end generated code: output=931b58ccc323c3a1 input=4bfdb22c2f8b146a]*/
{
/* delegate to Python code */
return call(
SRE_PY_MODULE, "_expand",
PyTuple_Pack(3, self->pattern, self, template)
);
}
static PyObject*
match_group(MatchObject* self, PyObject* args)
{
PyObject* result;
Py_ssize_t i, size;
size = PyTuple_GET_SIZE(args);
switch (size) {
case 0:
result = match_getslice(self, Py_False, Py_None);
break;
case 1:
result = match_getslice(self, PyTuple_GET_ITEM(args, 0), Py_None);
break;
default:
/* fetch multiple items */
result = PyTuple_New(size);
if (!result)
return NULL;
for (i = 0; i < size; i++) {
PyObject* item = match_getslice(
self, PyTuple_GET_ITEM(args, i), Py_None
);
if (!item) {
Py_DECREF(result);
return NULL;
}
PyTuple_SET_ITEM(result, i, item);
}
break;
}
return result;
}
static PyObject*
match_getitem(MatchObject* self, PyObject* name)
{
return match_getslice(self, name, Py_None);
}
/*[clinic input]
_sre.SRE_Match.groups
default: object = None
Is used for groups that did not participate in the match.
Return a tuple containing all the subgroups of the match, from 1.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match_groups_impl(MatchObject *self, PyObject *default_value)
/*[clinic end generated code: output=daf8e2641537238a input=bb069ef55dabca91]*/
{
PyObject* result;
Py_ssize_t index;
result = PyTuple_New(self->groups-1);
if (!result)
return NULL;
for (index = 1; index < self->groups; index++) {
PyObject* item;
item = match_getslice_by_index(self, index, default_value);
if (!item) {
Py_DECREF(result);
return NULL;
}
PyTuple_SET_ITEM(result, index-1, item);
}
return result;
}
/*[clinic input]
_sre.SRE_Match.groupdict
default: object = None
Is used for groups that did not participate in the match.
Return a dictionary containing all the named subgroups of the match, keyed by the subgroup name.
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match_groupdict_impl(MatchObject *self, PyObject *default_value)
/*[clinic end generated code: output=29917c9073e41757 input=0ded7960b23780aa]*/
{
PyObject* result;
PyObject* keys;
Py_ssize_t index;
result = PyDict_New();
if (!result || !self->pattern->groupindex)
return result;
keys = PyMapping_Keys(self->pattern->groupindex);
if (!keys)
goto failed;
for (index = 0; index < PyList_GET_SIZE(keys); index++) {
int status;
PyObject* key;
PyObject* value;
key = PyList_GET_ITEM(keys, index);
if (!key)
goto failed;
value = match_getslice(self, key, default_value);
if (!value)
goto failed;
status = PyDict_SetItem(result, key, value);
Py_DECREF(value);
if (status < 0)
goto failed;
}
Py_DECREF(keys);
return result;
failed:
Py_XDECREF(keys);
Py_DECREF(result);
return NULL;
}
/*[clinic input]
_sre.SRE_Match.start -> Py_ssize_t
group: object(c_default="NULL") = 0
/
Return index of the start of the substring matched by group.
[clinic start generated code]*/
static Py_ssize_t
_sre_SRE_Match_start_impl(MatchObject *self, PyObject *group)
/*[clinic end generated code: output=3f6e7f9df2fb5201 input=ced8e4ed4b33ee6c]*/
{
Py_ssize_t index = match_getindex(self, group);
if (index < 0 || index >= self->groups) {
PyErr_SetString(
PyExc_IndexError,
"no such group"
);
return -1;
}
/* mark is -1 if group is undefined */
return self->mark[index*2];
}
/*[clinic input]
_sre.SRE_Match.end -> Py_ssize_t
group: object(c_default="NULL") = 0
/
Return index of the end of the substring matched by group.
[clinic start generated code]*/
static Py_ssize_t
_sre_SRE_Match_end_impl(MatchObject *self, PyObject *group)
/*[clinic end generated code: output=f4240b09911f7692 input=1b799560c7f3d7e6]*/
{
Py_ssize_t index = match_getindex(self, group);
if (index < 0 || index >= self->groups) {
PyErr_SetString(
PyExc_IndexError,
"no such group"
);
return -1;
}
/* mark is -1 if group is undefined */
return self->mark[index*2+1];
}
LOCAL(PyObject*)
_pair(Py_ssize_t i1, Py_ssize_t i2)
{
PyObject* pair;
PyObject* item;
pair = PyTuple_New(2);
if (!pair)
return NULL;
item = PyLong_FromSsize_t(i1);
if (!item)
goto error;
PyTuple_SET_ITEM(pair, 0, item);
item = PyLong_FromSsize_t(i2);
if (!item)
goto error;
PyTuple_SET_ITEM(pair, 1, item);
return pair;
error:
Py_DECREF(pair);
return NULL;
}
/*[clinic input]
_sre.SRE_Match.span
group: object(c_default="NULL") = 0
/
For MatchObject m, return the 2-tuple (m.start(group), m.end(group)).
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match_span_impl(MatchObject *self, PyObject *group)
/*[clinic end generated code: output=f02ae40594d14fe6 input=49092b6008d176d3]*/
{
Py_ssize_t index = match_getindex(self, group);
if (index < 0 || index >= self->groups) {
PyErr_SetString(
PyExc_IndexError,
"no such group"
);
return NULL;
}
/* marks are -1 if group is undefined */
return _pair(self->mark[index*2], self->mark[index*2+1]);
}
static PyObject*
match_regs(MatchObject* self)
{
PyObject* regs;
PyObject* item;
Py_ssize_t index;
regs = PyTuple_New(self->groups);
if (!regs)
return NULL;
for (index = 0; index < self->groups; index++) {
item = _pair(self->mark[index*2], self->mark[index*2+1]);
if (!item) {
Py_DECREF(regs);
return NULL;
}
PyTuple_SET_ITEM(regs, index, item);
}
Py_INCREF(regs);
self->regs = regs;
return regs;
}
/*[clinic input]
_sre.SRE_Match.__copy__
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match___copy___impl(MatchObject *self)
/*[clinic end generated code: output=a779c5fc8b5b4eb4 input=3bb4d30b6baddb5b]*/
{
#ifdef USE_BUILTIN_COPY
MatchObject* copy;
Py_ssize_t slots, offset;
slots = 2 * (self->pattern->groups+1);
copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots);
if (!copy)
return NULL;
/* this value a constant, but any compiler should be able to
figure that out all by itself */
offset = offsetof(MatchObject, string);
Py_XINCREF(self->pattern);
Py_XINCREF(self->string);
Py_XINCREF(self->regs);
memcpy((char*) copy + offset, (char*) self + offset,
sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset);
return (PyObject*) copy;
#else
PyErr_SetString(PyExc_TypeError, "cannot copy this match object");
return NULL;
#endif
}
/*[clinic input]
_sre.SRE_Match.__deepcopy__
memo: object
[clinic start generated code]*/
static PyObject *
_sre_SRE_Match___deepcopy___impl(MatchObject *self, PyObject *memo)
/*[clinic end generated code: output=2b657578eb03f4a3 input=b65b72489eac64cc]*/
{
#ifdef USE_BUILTIN_COPY
MatchObject* copy;
copy = (MatchObject*) match_copy(self);
if (!copy)
return NULL;
if (!deepcopy((PyObject**) ©->pattern, memo) ||
!deepcopy(©->string, memo) ||
!deepcopy(©->regs, memo)) {
Py_DECREF(copy);
return NULL;
}
#else
PyErr_SetString(PyExc_TypeError, "cannot deepcopy this match object");
return NULL;
#endif
}
PyDoc_STRVAR(match_doc,
"The result of re.match() and re.search().\n\
Match objects always have a boolean value of True.");
PyDoc_STRVAR(match_group_doc,
"group([group1, ...]) -> str or tuple.\n\
Return subgroup(s) of the match by indices or names.\n\
For 0 returns the entire match.");
static PyObject *
match_lastindex_get(MatchObject *self, void *Py_UNUSED(ignored))
{
if (self->lastindex >= 0)
return PyLong_FromSsize_t(self->lastindex);
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
match_lastgroup_get(MatchObject *self, void *Py_UNUSED(ignored))
{
if (self->pattern->indexgroup && self->lastindex >= 0) {
PyObject* result = PySequence_GetItem(
self->pattern->indexgroup, self->lastindex
);
if (result)
return result;
PyErr_Clear();
}
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
match_regs_get(MatchObject *self, void *Py_UNUSED(ignored))
{
if (self->regs) {
Py_INCREF(self->regs);
return self->regs;
} else
return match_regs(self);
}
static PyObject *
match_repr(MatchObject *self)
{
PyObject *result;
PyObject *group0 = match_getslice_by_index(self, 0, Py_None);
if (group0 == NULL)
return NULL;
result = PyUnicode_FromFormat(
"<%s object; span=(%d, %d), match=%.50R>",
Py_TYPE(self)->tp_name,
self->mark[0], self->mark[1], group0);
Py_DECREF(group0);
return result;
}
static PyObject*
pattern_new_match(PatternObject* pattern, SRE_STATE* state, Py_ssize_t status)
{
/* create match object (from state object) */
MatchObject* match;
Py_ssize_t i, j;
char* base;
int n;
if (status > 0) {
/* create match object (with room for extra group marks) */
/* coverity[ampersand_in_size] */
match = PyObject_NEW_VAR(MatchObject, &Match_Type,
2*(pattern->groups+1));
if (!match)
return NULL;
Py_INCREF(pattern);
match->pattern = pattern;
Py_INCREF(state->string);
match->string = state->string;
match->regs = NULL;
match->groups = pattern->groups+1;
/* fill in group slices */
base = (char*) state->beginning;
n = state->charsize;
match->mark[0] = ((char*) state->start - base) / n;
match->mark[1] = ((char*) state->ptr - base) / n;
for (i = j = 0; i < pattern->groups; i++, j+=2)
if (j+1 <= state->lastmark && state->mark[j] && state->mark[j+1]) {
match->mark[j+2] = ((char*) state->mark[j] - base) / n;
match->mark[j+3] = ((char*) state->mark[j+1] - base) / n;
} else
match->mark[j+2] = match->mark[j+3] = -1; /* undefined */
match->pos = state->pos;
match->endpos = state->endpos;
match->lastindex = state->lastindex;
return (PyObject*) match;
} else if (status == 0) {
/* no match */
Py_INCREF(Py_None);
return Py_None;
}
/* internal error */
pattern_error(status);
return NULL;
}
/* -------------------------------------------------------------------- */
/* scanner methods (experimental) */
static void
scanner_dealloc(ScannerObject* self)
{
state_fini(&self->state);
Py_XDECREF(self->pattern);
PyObject_DEL(self);
}
/*[clinic input]
_sre.SRE_Scanner.match
[clinic start generated code]*/
static PyObject *
_sre_SRE_Scanner_match_impl(ScannerObject *self)
/*[clinic end generated code: output=936b30c63d4b81eb input=881a0154f8c13d9a]*/
{
SRE_STATE* state = &self->state;
PyObject* match;
Py_ssize_t status;
if (state->start == NULL)
Py_RETURN_NONE;
state_reset(state);
state->ptr = state->start;
status = sre_match(state, PatternObject_GetCode(self->pattern), 0);
if (PyErr_Occurred())
return NULL;
match = pattern_new_match((PatternObject*) self->pattern,
state, status);
if (status == 0)
state->start = NULL;
else if (state->ptr != state->start)
state->start = state->ptr;
else if (state->ptr != state->end)
state->start = (void*) ((char*) state->ptr + state->charsize);
else
state->start = NULL;
return match;
}
/*[clinic input]
_sre.SRE_Scanner.search
[clinic start generated code]*/
static PyObject *
_sre_SRE_Scanner_search_impl(ScannerObject *self)
/*[clinic end generated code: output=7dc211986088f025 input=161223ee92ef9270]*/
{
SRE_STATE* state = &self->state;
PyObject* match;
Py_ssize_t status;
if (state->start == NULL)
Py_RETURN_NONE;
state_reset(state);
state->ptr = state->start;
status = sre_search(state, PatternObject_GetCode(self->pattern));
if (PyErr_Occurred())
return NULL;
match = pattern_new_match((PatternObject*) self->pattern,
state, status);
if (status == 0)
state->start = NULL;
else if (state->ptr != state->start)
state->start = state->ptr;
else if (state->ptr != state->end)
state->start = (void*) ((char*) state->ptr + state->charsize);
else
state->start = NULL;
return match;
}
static PyObject *
pattern_scanner(PatternObject *self, PyObject *string, Py_ssize_t pos, Py_ssize_t endpos)
{
ScannerObject* scanner;
/* create scanner object */
scanner = PyObject_NEW(ScannerObject, &Scanner_Type);
if (!scanner)
return NULL;
scanner->pattern = NULL;
/* create search state object */
if (!state_init(&scanner->state, self, string, pos, endpos)) {
Py_DECREF(scanner);
return NULL;
}
Py_INCREF(self);
scanner->pattern = (PyObject*) self;
return (PyObject*) scanner;
}
static Py_hash_t
pattern_hash(PatternObject *self)
{
Py_hash_t hash, hash2;
hash = PyObject_Hash(self->pattern);
if (hash == -1) {
return -1;
}
hash2 = _Py_HashBytes(self->code, sizeof(self->code[0]) * self->codesize);
hash ^= hash2;
hash ^= self->flags;
hash ^= self->isbytes;
hash ^= self->codesize;
if (hash == -1) {
hash = -2;
}
return hash;
}
static PyObject*
pattern_richcompare(PyObject *lefto, PyObject *righto, int op)
{
PatternObject *left, *right;
int cmp;
if (op != Py_EQ && op != Py_NE) {
Py_RETURN_NOTIMPLEMENTED;
}
if (Py_TYPE(lefto) != &Pattern_Type || Py_TYPE(righto) != &Pattern_Type) {
Py_RETURN_NOTIMPLEMENTED;
}
if (lefto == righto) {
/* a pattern is equal to itself */
return PyBool_FromLong(op == Py_EQ);
}
left = (PatternObject *)lefto;
right = (PatternObject *)righto;
cmp = (left->flags == right->flags
&& left->isbytes == right->isbytes
&& left->codesize == right->codesize);
if (cmp) {
/* Compare the code and the pattern because the same pattern can
produce different codes depending on the locale used to compile the
pattern when the re.LOCALE flag is used. Don't compare groups,
indexgroup nor groupindex: they are derivated from the pattern. */
cmp = !bcmp(left->code, right->code,
sizeof(left->code[0]) * left->codesize);
}
if (cmp) {
cmp = PyObject_RichCompareBool(left->pattern, right->pattern,
Py_EQ);
if (cmp < 0) {
return NULL;
}
}
if (op == Py_NE) {
cmp = !cmp;
}
return PyBool_FromLong(cmp);
}
#include "third_party/python/Modules/clinic/_sre.inc"
static PyMethodDef pattern_methods[] = {
_SRE_SRE_PATTERN_MATCH_METHODDEF
_SRE_SRE_PATTERN_FULLMATCH_METHODDEF
_SRE_SRE_PATTERN_SEARCH_METHODDEF
_SRE_SRE_PATTERN_SUB_METHODDEF
_SRE_SRE_PATTERN_SUBN_METHODDEF
_SRE_SRE_PATTERN_FINDALL_METHODDEF
_SRE_SRE_PATTERN_SPLIT_METHODDEF
_SRE_SRE_PATTERN_FINDITER_METHODDEF
_SRE_SRE_PATTERN_SCANNER_METHODDEF
_SRE_SRE_PATTERN___COPY___METHODDEF
_SRE_SRE_PATTERN___DEEPCOPY___METHODDEF
{NULL, NULL}
};
static PyGetSetDef pattern_getset[] = {
{"groupindex", (getter)pattern_groupindex, (setter)NULL,
"A dictionary mapping group names to group numbers."},
{NULL} /* Sentinel */
};
#define PAT_OFF(x) offsetof(PatternObject, x)
static PyMemberDef pattern_members[] = {
{"pattern", T_OBJECT, PAT_OFF(pattern), READONLY},
{"flags", T_INT, PAT_OFF(flags), READONLY},
{"groups", T_PYSSIZET, PAT_OFF(groups), READONLY},
{NULL} /* Sentinel */
};
static PyTypeObject Pattern_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_" SRE_MODULE ".SRE_Pattern",
sizeof(PatternObject), sizeof(SRE_CODE),
(destructor)pattern_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)pattern_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)pattern_hash, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
pattern_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
pattern_richcompare, /* tp_richcompare */
offsetof(PatternObject, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
pattern_methods, /* tp_methods */
pattern_members, /* tp_members */
pattern_getset, /* tp_getset */
};
/* Match objects do not support length or assignment, but do support
__getitem__. */
static PyMappingMethods match_as_mapping = {
NULL,
(binaryfunc)match_getitem,
NULL
};
static PyMethodDef match_methods[] = {
{"group", (PyCFunction) match_group, METH_VARARGS, match_group_doc},
_SRE_SRE_MATCH_START_METHODDEF
_SRE_SRE_MATCH_END_METHODDEF
_SRE_SRE_MATCH_SPAN_METHODDEF
_SRE_SRE_MATCH_GROUPS_METHODDEF
_SRE_SRE_MATCH_GROUPDICT_METHODDEF
_SRE_SRE_MATCH_EXPAND_METHODDEF
_SRE_SRE_MATCH___COPY___METHODDEF
_SRE_SRE_MATCH___DEEPCOPY___METHODDEF
{NULL, NULL}
};
static PyGetSetDef match_getset[] = {
{"lastindex", (getter)match_lastindex_get, (setter)NULL},
{"lastgroup", (getter)match_lastgroup_get, (setter)NULL},
{"regs", (getter)match_regs_get, (setter)NULL},
{NULL}
};
#define MATCH_OFF(x) offsetof(MatchObject, x)
static PyMemberDef match_members[] = {
{"string", T_OBJECT, MATCH_OFF(string), READONLY},
{"re", T_OBJECT, MATCH_OFF(pattern), READONLY},
{"pos", T_PYSSIZET, MATCH_OFF(pos), READONLY},
{"endpos", T_PYSSIZET, MATCH_OFF(endpos), READONLY},
{NULL}
};
/* FIXME: implement setattr("string", None) as a special case (to
detach the associated string, if any */
static PyTypeObject Match_Type = {
PyVarObject_HEAD_INIT(NULL,0)
"_" SRE_MODULE ".SRE_Match",
sizeof(MatchObject), sizeof(Py_ssize_t),
(destructor)match_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)match_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
&match_as_mapping, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
match_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
match_methods, /* tp_methods */
match_members, /* tp_members */
match_getset, /* tp_getset */
};
static PyMethodDef scanner_methods[] = {
_SRE_SRE_SCANNER_MATCH_METHODDEF
_SRE_SRE_SCANNER_SEARCH_METHODDEF
{NULL, NULL}
};
#define SCAN_OFF(x) offsetof(ScannerObject, x)
static PyMemberDef scanner_members[] = {
{"pattern", T_OBJECT, SCAN_OFF(pattern), READONLY},
{NULL} /* Sentinel */
};
static PyTypeObject Scanner_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_" SRE_MODULE ".SRE_Scanner",
sizeof(ScannerObject), 0,
(destructor)scanner_dealloc,/* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
scanner_methods, /* tp_methods */
scanner_members, /* tp_members */
0, /* tp_getset */
};
static PyMethodDef _functions[] = {
_SRE_COMPILE_METHODDEF
_SRE_GETCODESIZE_METHODDEF
_SRE_GETLOWER_METHODDEF
{NULL, NULL}
};
static struct PyModuleDef sremodule = {
PyModuleDef_HEAD_INIT,
"_" SRE_MODULE,
NULL,
-1,
_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__sre(void)
{
PyObject* m;
PyObject* d;
PyObject* x;
/* Patch object types */
if (PyType_Ready(&Pattern_Type) || PyType_Ready(&Match_Type) ||
PyType_Ready(&Scanner_Type))
return NULL;
m = PyModule_Create(&sremodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
x = PyLong_FromLong(SRE_MAGIC);
if (x) {
PyDict_SetItemString(d, "MAGIC", x);
Py_DECREF(x);
}
x = PyLong_FromLong(sizeof(SRE_CODE));
if (x) {
PyDict_SetItemString(d, "CODESIZE", x);
Py_DECREF(x);
}
x = PyLong_FromUnsignedLong(SRE_MAXREPEAT);
if (x) {
PyDict_SetItemString(d, "MAXREPEAT", x);
Py_DECREF(x);
}
x = PyLong_FromUnsignedLong(SRE_MAXGROUPS);
if (x) {
PyDict_SetItemString(d, "MAXGROUPS", x);
Py_DECREF(x);
}
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__sre = {
"_sre",
PyInit__sre,
};
| 83,819 | 3,004 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/gcmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/classobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/frameobject.h"
#include "third_party/python/Include/genobject.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pgenheaders.h"
#include "third_party/python/Include/pydtrace.h"
#include "third_party/python/Include/pytime.h"
#include "third_party/python/Include/setobject.h"
#include "third_party/python/Include/sysmodule.h"
#include "third_party/python/Include/warnings.h"
#include "third_party/python/Include/weakrefobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("gc");
PYTHON_PROVIDE("gc.DEBUG_COLLECTABLE");
PYTHON_PROVIDE("gc.DEBUG_LEAK");
PYTHON_PROVIDE("gc.DEBUG_SAVEALL");
PYTHON_PROVIDE("gc.DEBUG_STATS");
PYTHON_PROVIDE("gc.DEBUG_UNCOLLECTABLE");
PYTHON_PROVIDE("gc.callbacks");
PYTHON_PROVIDE("gc.collect");
PYTHON_PROVIDE("gc.disable");
PYTHON_PROVIDE("gc.enable");
PYTHON_PROVIDE("gc.garbage");
PYTHON_PROVIDE("gc.get_count");
PYTHON_PROVIDE("gc.get_debug");
PYTHON_PROVIDE("gc.get_objects");
PYTHON_PROVIDE("gc.get_referents");
PYTHON_PROVIDE("gc.get_referrers");
PYTHON_PROVIDE("gc.get_stats");
PYTHON_PROVIDE("gc.get_threshold");
PYTHON_PROVIDE("gc.is_tracked");
PYTHON_PROVIDE("gc.isenabled");
PYTHON_PROVIDE("gc.set_debug");
PYTHON_PROVIDE("gc.set_threshold");
/*
Reference Cycle Garbage Collection
==================================
Neil Schemenauer <[email protected]>
Based on a post on the python-dev list. Ideas from Guido van Rossum,
Eric Tiedemann, and various others.
http://www.arctrix.com/nas/python/gc/
The following mailing list threads provide a historical perspective on
the design of this module. Note that a fair amount of refinement has
occurred since those discussions.
http://mail.python.org/pipermail/python-dev/2000-March/002385.html
http://mail.python.org/pipermail/python-dev/2000-March/002434.html
http://mail.python.org/pipermail/python-dev/2000-March/002497.html
For a highlevel view of the collection process, read the collect
function.
*/
#ifdef unreachable
#define __unreachable unreachable
#undef unreachable
#endif
/* Get an object's GC head */
#define AS_GC(o) ((PyGC_Head *)(o)-1)
/* Get the object given the GC head */
#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
/*** Global GC state ***/
struct gc_generation {
PyGC_Head head;
int threshold; /* collection threshold */
int count; /* count of allocations or collections of younger
generations */
};
#define NUM_GENERATIONS 3
#define GEN_HEAD(n) (&generations[n].head)
/* linked lists of container objects */
static struct gc_generation generations[NUM_GENERATIONS] = {
/* PyGC_Head, threshold, count */
{{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
{{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
{{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
};
PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
static int enabled = 1; /* automatic collection enabled? */
/* true if we are currently running the collector */
static int collecting = 0;
/* list of uncollectable objects */
static PyObject *garbage = NULL;
/* Python string to use if unhandled exception occurs */
static PyObject *gc_str = NULL;
/* a list of callbacks to be invoked when collection is performed */
static PyObject *callbacks = NULL;
/* This is the number of objects that survived the last full collection. It
approximates the number of long lived objects tracked by the GC.
(by "full collection", we mean a collection of the oldest generation).
*/
static Py_ssize_t long_lived_total = 0;
/* This is the number of objects that survived all "non-full" collections,
and are awaiting to undergo a full collection for the first time.
*/
static Py_ssize_t long_lived_pending = 0;
/*
NOTE: about the counting of long-lived objects.
To limit the cost of garbage collection, there are two strategies;
- make each collection faster, e.g. by scanning fewer objects
- do less collections
This heuristic is about the latter strategy.
In addition to the various configurable thresholds, we only trigger a
full collection if the ratio
long_lived_pending / long_lived_total
is above a given value (hardwired to 25%).
The reason is that, while "non-full" collections (i.e., collections of
the young and middle generations) will always examine roughly the same
number of objects -- determined by the aforementioned thresholds --,
the cost of a full collection is proportional to the total number of
long-lived objects, which is virtually unbounded.
Indeed, it has been remarked that doing a full collection every
<constant number> of object creations entails a dramatic performance
degradation in workloads which consist in creating and storing lots of
long-lived objects (e.g. building a large list of GC-tracked objects would
show quadratic performance, instead of linear as expected: see issue #4074).
Using the above ratio, instead, yields amortized linear performance in
the total number of objects (the effect of which can be summarized
thusly: "each full garbage collection is more and more costly as the
number of objects grows, but we do fewer and fewer of them").
This heuristic was suggested by Martin von Löwis on python-dev in
June 2008. His original analysis and proposal can be found at:
http://mail.python.org/pipermail/python-dev/2008-June/080579.html
*/
/*
NOTE: about untracking of mutable objects.
Certain types of container cannot participate in a reference cycle, and
so do not need to be tracked by the garbage collector. Untracking these
objects reduces the cost of garbage collections. However, determining
which objects may be untracked is not free, and the costs must be
weighed against the benefits for garbage collection.
There are two possible strategies for when to untrack a container:
i) When the container is created.
ii) When the container is examined by the garbage collector.
Tuples containing only immutable objects (integers, strings etc, and
recursively, tuples of immutable objects) do not need to be tracked.
The interpreter creates a large number of tuples, many of which will
not survive until garbage collection. It is therefore not worthwhile
to untrack eligible tuples at creation time.
Instead, all tuples except the empty tuple are tracked when created.
During garbage collection it is determined whether any surviving tuples
can be untracked. A tuple can be untracked if all of its contents are
already not tracked. Tuples are examined for untracking in all garbage
collection cycles. It may take more than one cycle to untrack a tuple.
Dictionaries containing only immutable objects also do not need to be
tracked. Dictionaries are untracked when created. If a tracked item is
inserted into a dictionary (either as a key or value), the dictionary
becomes tracked. During a full garbage collection (all generations),
the collector will untrack any dictionaries whose contents are not
tracked.
The module provides the python function is_tracked(obj), which returns
the CURRENT tracking status of the object. Subsequent garbage
collections may change the tracking status of the object.
Untracking of certain containers was introduced in issue #4688, and
the algorithm was refined in response to issue #14775.
*/
/* set for debugging information */
#define DEBUG_STATS (1<<0) /* print collection statistics */
#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
#define DEBUG_LEAK DEBUG_COLLECTABLE | \
DEBUG_UNCOLLECTABLE | \
DEBUG_SAVEALL
static int debug;
/* Running stats per generation */
struct gc_generation_stats {
/* total number of collections */
Py_ssize_t collections;
/* total number of collected objects */
Py_ssize_t collected;
/* total number of uncollectable objects (put into gc.garbage) */
Py_ssize_t uncollectable;
};
static struct gc_generation_stats generation_stats[NUM_GENERATIONS];
/*--------------------------------------------------------------------------
gc_refs values.
Between collections, every gc'ed object has one of two gc_refs values:
GC_UNTRACKED
The initial state; objects returned by PyObject_GC_Malloc are in this
state. The object doesn't live in any generation list, and its
tp_traverse slot must not be called.
GC_REACHABLE
The object lives in some generation list, and its tp_traverse is safe to
call. An object transitions to GC_REACHABLE when PyObject_GC_Track
is called.
During a collection, gc_refs can temporarily take on other states:
>= 0
At the start of a collection, update_refs() copies the true refcount
to gc_refs, for each object in the generation being collected.
subtract_refs() then adjusts gc_refs so that it equals the number of
times an object is referenced directly from outside the generation
being collected.
gc_refs remains >= 0 throughout these steps.
GC_TENTATIVELY_UNREACHABLE
move_unreachable() then moves objects not reachable (whether directly or
indirectly) from outside the generation into an "unreachable" set.
Objects that are found to be reachable have gc_refs set to GC_REACHABLE
again. Objects that are found to be unreachable have gc_refs set to
GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
transition back to GC_REACHABLE.
Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
for collection. If it's decided not to collect such an object (e.g.,
it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
----------------------------------------------------------------------------
*/
#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
#define GC_REACHABLE _PyGC_REFS_REACHABLE
#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
#define IS_TRACKED(o) (_PyGC_REFS(o) != GC_UNTRACKED)
#define IS_REACHABLE(o) (_PyGC_REFS(o) == GC_REACHABLE)
#define IS_TENTATIVELY_UNREACHABLE(o) ( \
_PyGC_REFS(o) == GC_TENTATIVELY_UNREACHABLE)
/*** list functions ***/
static void
gc_list_init(PyGC_Head *list)
{
list->gc.gc_prev = list;
list->gc.gc_next = list;
}
static int
gc_list_is_empty(PyGC_Head *list)
{
return (list->gc.gc_next == list);
}
#if 0
/* This became unused after gc_list_move() was introduced. */
/* Append `node` to `list`. */
static void
gc_list_append(PyGC_Head *node, PyGC_Head *list)
{
node->gc.gc_next = list;
node->gc.gc_prev = list->gc.gc_prev;
node->gc.gc_prev->gc.gc_next = node;
list->gc.gc_prev = node;
}
#endif
/* Remove `node` from the gc list it's currently in. */
static void
gc_list_remove(PyGC_Head *node)
{
node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
node->gc.gc_next = NULL; /* object is not currently tracked */
}
/* Move `node` from the gc list it's currently in (which is not explicitly
* named here) to the end of `list`. This is semantically the same as
* gc_list_remove(node) followed by gc_list_append(node, list).
*/
static void
gc_list_move(PyGC_Head *node, PyGC_Head *list)
{
PyGC_Head *new_prev;
PyGC_Head *current_prev = node->gc.gc_prev;
PyGC_Head *current_next = node->gc.gc_next;
/* Unlink from current list. */
current_prev->gc.gc_next = current_next;
current_next->gc.gc_prev = current_prev;
/* Relink at end of new list. */
new_prev = node->gc.gc_prev = list->gc.gc_prev;
new_prev->gc.gc_next = list->gc.gc_prev = node;
node->gc.gc_next = list;
}
/* append list `from` onto list `to`; `from` becomes an empty list */
static void
gc_list_merge(PyGC_Head *from, PyGC_Head *to)
{
PyGC_Head *tail;
assert(from != to);
if (!gc_list_is_empty(from)) {
tail = to->gc.gc_prev;
tail->gc.gc_next = from->gc.gc_next;
tail->gc.gc_next->gc.gc_prev = tail;
to->gc.gc_prev = from->gc.gc_prev;
to->gc.gc_prev->gc.gc_next = to;
}
gc_list_init(from);
}
static Py_ssize_t
gc_list_size(PyGC_Head *list)
{
PyGC_Head *gc;
Py_ssize_t n = 0;
for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
n++;
}
return n;
}
/* Append objects in a GC list to a Python list.
* Return 0 if all OK, < 0 if error (out of memory for list).
*/
static int
append_objects(PyObject *py_list, PyGC_Head *gc_list)
{
PyGC_Head *gc;
for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) {
PyObject *op = FROM_GC(gc);
if (op != py_list) {
if (PyList_Append(py_list, op)) {
return -1; /* exception */
}
}
}
return 0;
}
/*** end of list stuff ***/
/* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects
* in containers, and is GC_REACHABLE for all tracked gc objects not in
* containers.
*/
static void
update_refs(PyGC_Head *containers)
{
PyGC_Head *gc = containers->gc.gc_next;
for (; gc != containers; gc = gc->gc.gc_next) {
assert(_PyGCHead_REFS(gc) == GC_REACHABLE);
_PyGCHead_SET_REFS(gc, Py_REFCNT(FROM_GC(gc)));
/* Python's cyclic gc should never see an incoming refcount
* of 0: if something decref'ed to 0, it should have been
* deallocated immediately at that time.
* Possible cause (if the assert triggers): a tp_dealloc
* routine left a gc-aware object tracked during its teardown
* phase, and did something-- or allowed something to happen --
* that called back into Python. gc can trigger then, and may
* see the still-tracked dying object. Before this assert
* was added, such mistakes went on to allow gc to try to
* delete the object again. In a debug build, that caused
* a mysterious segfault, when _Py_ForgetReference tried
* to remove the object from the doubly-linked list of all
* objects a second time. In a release build, an actual
* double deallocation occurred, which leads to corruption
* of the allocator's internal bookkeeping pointers. That's
* so serious that maybe this should be a release-build
* check instead of an assert?
*/
assert(_PyGCHead_REFS(gc) != 0);
}
}
/* A traversal callback for subtract_refs. */
static int
visit_decref(PyObject *op, void *data)
{
assert(op != NULL);
if (PyObject_IS_GC(op)) {
PyGC_Head *gc = AS_GC(op);
/* We're only interested in gc_refs for objects in the
* generation being collected, which can be recognized
* because only they have positive gc_refs.
*/
assert(_PyGCHead_REFS(gc) != 0); /* else refcount was too small */
if (_PyGCHead_REFS(gc) > 0)
_PyGCHead_DECREF(gc);
}
return 0;
}
/* Subtract internal references from gc_refs. After this, gc_refs is >= 0
* for all objects in containers, and is GC_REACHABLE for all tracked gc
* objects not in containers. The ones with gc_refs > 0 are directly
* reachable from outside containers, and so can't be collected.
*/
static void
subtract_refs(PyGC_Head *containers)
{
traverseproc traverse;
PyGC_Head *gc = containers->gc.gc_next;
for (; gc != containers; gc=gc->gc.gc_next) {
traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
(void) traverse(FROM_GC(gc),
(visitproc)visit_decref,
NULL);
}
}
/* A traversal callback for move_unreachable. */
static int
visit_reachable(PyObject *op, PyGC_Head *reachable)
{
if (PyObject_IS_GC(op)) {
PyGC_Head *gc = AS_GC(op);
const Py_ssize_t gc_refs = _PyGCHead_REFS(gc);
if (gc_refs == 0) {
/* This is in move_unreachable's 'young' list, but
* the traversal hasn't yet gotten to it. All
* we need to do is tell move_unreachable that it's
* reachable.
*/
_PyGCHead_SET_REFS(gc, 1);
}
else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) {
/* This had gc_refs = 0 when move_unreachable got
* to it, but turns out it's reachable after all.
* Move it back to move_unreachable's 'young' list,
* and move_unreachable will eventually get to it
* again.
*/
gc_list_move(gc, reachable);
_PyGCHead_SET_REFS(gc, 1);
}
/* Else there's nothing to do.
* If gc_refs > 0, it must be in move_unreachable's 'young'
* list, and move_unreachable will eventually get to it.
* If gc_refs == GC_REACHABLE, it's either in some other
* generation so we don't care about it, or move_unreachable
* already dealt with it.
* If gc_refs == GC_UNTRACKED, it must be ignored.
*/
else {
assert(gc_refs > 0
|| gc_refs == GC_REACHABLE
|| gc_refs == GC_UNTRACKED);
}
}
return 0;
}
/* Move the unreachable objects from young to unreachable. After this,
* all objects in young have gc_refs = GC_REACHABLE, and all objects in
* unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked
* gc objects not in young or unreachable still have gc_refs = GC_REACHABLE.
* All objects in young after this are directly or indirectly reachable
* from outside the original young; and all objects in unreachable are
* not.
*/
static void
move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)
{
PyGC_Head *gc = young->gc.gc_next;
/* Invariants: all objects "to the left" of us in young have gc_refs
* = GC_REACHABLE, and are indeed reachable (directly or indirectly)
* from outside the young list as it was at entry. All other objects
* from the original young "to the left" of us are in unreachable now,
* and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the
* left of us in 'young' now have been scanned, and no objects here
* or to the right have been scanned yet.
*/
while (gc != young) {
PyGC_Head *next;
if (_PyGCHead_REFS(gc)) {
/* gc is definitely reachable from outside the
* original 'young'. Mark it as such, and traverse
* its pointers to find any other objects that may
* be directly reachable from it. Note that the
* call to tp_traverse may append objects to young,
* so we have to wait until it returns to determine
* the next object to visit.
*/
PyObject *op = FROM_GC(gc);
traverseproc traverse = Py_TYPE(op)->tp_traverse;
assert(_PyGCHead_REFS(gc) > 0);
_PyGCHead_SET_REFS(gc, GC_REACHABLE);
(void) traverse(op,
(visitproc)visit_reachable,
(void *)young);
next = gc->gc.gc_next;
if (PyTuple_CheckExact(op)) {
_PyTuple_MaybeUntrack(op);
}
}
else {
/* This *may* be unreachable. To make progress,
* assume it is. gc isn't directly reachable from
* any object we've already traversed, but may be
* reachable from an object we haven't gotten to yet.
* visit_reachable will eventually move gc back into
* young if that's so, and we'll see it again.
*/
next = gc->gc.gc_next;
gc_list_move(gc, unreachable);
_PyGCHead_SET_REFS(gc, GC_TENTATIVELY_UNREACHABLE);
}
gc = next;
}
}
/* Try to untrack all currently tracked dictionaries */
static void
untrack_dicts(PyGC_Head *head)
{
PyGC_Head *next, *gc = head->gc.gc_next;
while (gc != head) {
PyObject *op = FROM_GC(gc);
next = gc->gc.gc_next;
if (PyDict_CheckExact(op))
_PyDict_MaybeUntrack(op);
gc = next;
}
}
/* Return true if object has a pre-PEP 442 finalization method. */
static int
has_legacy_finalizer(PyObject *op)
{
return op->ob_type->tp_del != NULL;
}
/* Move the objects in unreachable with tp_del slots into `finalizers`.
* Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
* objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
*/
static void
move_legacy_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
{
PyGC_Head *gc;
PyGC_Head *next;
/* March over unreachable. Move objects with finalizers into
* `finalizers`.
*/
for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
PyObject *op = FROM_GC(gc);
assert(IS_TENTATIVELY_UNREACHABLE(op));
next = gc->gc.gc_next;
if (has_legacy_finalizer(op)) {
gc_list_move(gc, finalizers);
_PyGCHead_SET_REFS(gc, GC_REACHABLE);
}
}
}
/* A traversal callback for move_legacy_finalizer_reachable. */
static int
visit_move(PyObject *op, PyGC_Head *tolist)
{
if (PyObject_IS_GC(op)) {
if (IS_TENTATIVELY_UNREACHABLE(op)) {
PyGC_Head *gc = AS_GC(op);
gc_list_move(gc, tolist);
_PyGCHead_SET_REFS(gc, GC_REACHABLE);
}
}
return 0;
}
/* Move objects that are reachable from finalizers, from the unreachable set
* into finalizers set.
*/
static void
move_legacy_finalizer_reachable(PyGC_Head *finalizers)
{
traverseproc traverse;
PyGC_Head *gc = finalizers->gc.gc_next;
for (; gc != finalizers; gc = gc->gc.gc_next) {
/* Note that the finalizers list may grow during this. */
traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
(void) traverse(FROM_GC(gc),
(visitproc)visit_move,
(void *)finalizers);
}
}
/* Clear all weakrefs to unreachable objects, and if such a weakref has a
* callback, invoke it if necessary. Note that it's possible for such
* weakrefs to be outside the unreachable set -- indeed, those are precisely
* the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
* overview & some details. Some weakrefs with callbacks may be reclaimed
* directly by this routine; the number reclaimed is the return value. Other
* weakrefs with callbacks may be moved into the `old` generation. Objects
* moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
* unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
* no object in `unreachable` is weakly referenced anymore.
*/
static int
handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
{
PyGC_Head *gc;
PyObject *op; /* generally FROM_GC(gc) */
PyWeakReference *wr; /* generally a cast of op */
PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
PyGC_Head *next;
int num_freed = 0;
gc_list_init(&wrcb_to_call);
/* Clear all weakrefs to the objects in unreachable. If such a weakref
* also has a callback, move it into `wrcb_to_call` if the callback
* needs to be invoked. Note that we cannot invoke any callbacks until
* all weakrefs to unreachable objects are cleared, lest the callback
* resurrect an unreachable object via a still-active weakref. We
* make another pass over wrcb_to_call, invoking callbacks, after this
* pass completes.
*/
for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
PyWeakReference **wrlist;
op = FROM_GC(gc);
assert(IS_TENTATIVELY_UNREACHABLE(op));
next = gc->gc.gc_next;
if (! PyType_SUPPORTS_WEAKREFS(Py_TYPE(op)))
continue;
/* It supports weakrefs. Does it have any? */
wrlist = (PyWeakReference **)
PyObject_GET_WEAKREFS_LISTPTR(op);
/* `op` may have some weakrefs. March over the list, clear
* all the weakrefs, and move the weakrefs with callbacks
* that must be called into wrcb_to_call.
*/
for (wr = *wrlist; wr != NULL; wr = *wrlist) {
PyGC_Head *wrasgc; /* AS_GC(wr) */
/* _PyWeakref_ClearRef clears the weakref but leaves
* the callback pointer intact. Obscure: it also
* changes *wrlist.
*/
assert(wr->wr_object == op);
_PyWeakref_ClearRef(wr);
assert(wr->wr_object == Py_None);
if (wr->wr_callback == NULL)
continue; /* no callback */
/* Headache time. `op` is going away, and is weakly referenced by
* `wr`, which has a callback. Should the callback be invoked? If wr
* is also trash, no:
*
* 1. There's no need to call it. The object and the weakref are
* both going away, so it's legitimate to pretend the weakref is
* going away first. The user has to ensure a weakref outlives its
* referent if they want a guarantee that the wr callback will get
* invoked.
*
* 2. It may be catastrophic to call it. If the callback is also in
* cyclic trash (CT), then although the CT is unreachable from
* outside the current generation, CT may be reachable from the
* callback. Then the callback could resurrect insane objects.
*
* Since the callback is never needed and may be unsafe in this case,
* wr is simply left in the unreachable set. Note that because we
* already called _PyWeakref_ClearRef(wr), its callback will never
* trigger.
*
* OTOH, if wr isn't part of CT, we should invoke the callback: the
* weakref outlived the trash. Note that since wr isn't CT in this
* case, its callback can't be CT either -- wr acted as an external
* root to this generation, and therefore its callback did too. So
* nothing in CT is reachable from the callback either, so it's hard
* to imagine how calling it later could create a problem for us. wr
* is moved to wrcb_to_call in this case.
*/
if (IS_TENTATIVELY_UNREACHABLE(wr))
continue;
assert(IS_REACHABLE(wr));
/* Create a new reference so that wr can't go away
* before we can process it again.
*/
Py_INCREF(wr);
/* Move wr to wrcb_to_call, for the next pass. */
wrasgc = AS_GC(wr);
assert(wrasgc != next); /* wrasgc is reachable, but
next isn't, so they can't
be the same */
gc_list_move(wrasgc, &wrcb_to_call);
}
}
/* Invoke the callbacks we decided to honor. It's safe to invoke them
* because they can't reference unreachable objects.
*/
while (! gc_list_is_empty(&wrcb_to_call)) {
PyObject *temp;
PyObject *callback;
gc = wrcb_to_call.gc.gc_next;
op = FROM_GC(gc);
assert(IS_REACHABLE(op));
assert(PyWeakref_Check(op));
wr = (PyWeakReference *)op;
callback = wr->wr_callback;
assert(callback != NULL);
/* copy-paste of weakrefobject.c's handle_callback() */
temp = PyObject_CallFunctionObjArgs(callback, wr, NULL);
if (temp == NULL)
PyErr_WriteUnraisable(callback);
else
Py_DECREF(temp);
/* Give up the reference we created in the first pass. When
* op's refcount hits 0 (which it may or may not do right now),
* op's tp_dealloc will decref op->wr_callback too. Note
* that the refcount probably will hit 0 now, and because this
* weakref was reachable to begin with, gc didn't already
* add it to its count of freed objects. Example: a reachable
* weak value dict maps some key to this reachable weakref.
* The callback removes this key->weakref mapping from the
* dict, leaving no other references to the weakref (excepting
* ours).
*/
Py_DECREF(op);
if (wrcb_to_call.gc.gc_next == gc) {
/* object is still alive -- move it */
gc_list_move(gc, old);
}
else
++num_freed;
}
return num_freed;
}
static void
debug_cycle(const char *msg, PyObject *op)
{
PySys_FormatStderr("gc: %s <%s %p>\n",
msg, Py_TYPE(op)->tp_name, op);
}
/* Handle uncollectable garbage (cycles with tp_del slots, and stuff reachable
* only from such cycles).
* If DEBUG_SAVEALL, all objects in finalizers are appended to the module
* garbage list (a Python list), else only the objects in finalizers with
* __del__ methods are appended to garbage. All objects in finalizers are
* merged into the old list regardless.
*/
static void
handle_legacy_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
{
PyGC_Head *gc = finalizers->gc.gc_next;
if (garbage == NULL) {
garbage = PyList_New(0);
if (garbage == NULL)
Py_FatalError("gc couldn't create gc.garbage list");
}
for (; gc != finalizers; gc = gc->gc.gc_next) {
PyObject *op = FROM_GC(gc);
if ((debug & DEBUG_SAVEALL) || has_legacy_finalizer(op)) {
if (PyList_Append(garbage, op) < 0)
break;
}
}
gc_list_merge(finalizers, old);
}
/* Run first-time finalizers (if any) on all the objects in collectable.
* Note that this may remove some (or even all) of the objects from the
* list, due to refcounts falling to 0.
*/
static void
finalize_garbage(PyGC_Head *collectable)
{
destructor finalize;
PyGC_Head seen;
/* While we're going through the loop, `finalize(op)` may cause op, or
* other objects, to be reclaimed via refcounts falling to zero. So
* there's little we can rely on about the structure of the input
* `collectable` list across iterations. For safety, we always take the
* first object in that list and move it to a temporary `seen` list.
* If objects vanish from the `collectable` and `seen` lists we don't
* care.
*/
gc_list_init(&seen);
while (!gc_list_is_empty(collectable)) {
PyGC_Head *gc = collectable->gc.gc_next;
PyObject *op = FROM_GC(gc);
gc_list_move(gc, &seen);
if (!_PyGCHead_FINALIZED(gc) &&
PyType_HasFeature(Py_TYPE(op), Py_TPFLAGS_HAVE_FINALIZE) &&
(finalize = Py_TYPE(op)->tp_finalize) != NULL) {
_PyGCHead_SET_FINALIZED(gc, 1);
Py_INCREF(op);
finalize(op);
Py_DECREF(op);
}
}
gc_list_merge(&seen, collectable);
}
/* Walk the collectable list and check that they are really unreachable
from the outside (some objects could have been resurrected by a
finalizer). */
static int
check_garbage(PyGC_Head *collectable)
{
PyGC_Head *gc;
for (gc = collectable->gc.gc_next; gc != collectable;
gc = gc->gc.gc_next) {
_PyGCHead_SET_REFS(gc, Py_REFCNT(FROM_GC(gc)));
assert(_PyGCHead_REFS(gc) != 0);
}
subtract_refs(collectable);
for (gc = collectable->gc.gc_next; gc != collectable;
gc = gc->gc.gc_next) {
assert(_PyGCHead_REFS(gc) >= 0);
if (_PyGCHead_REFS(gc) != 0)
return -1;
}
return 0;
}
static void
revive_garbage(PyGC_Head *collectable)
{
PyGC_Head *gc;
for (gc = collectable->gc.gc_next; gc != collectable;
gc = gc->gc.gc_next) {
_PyGCHead_SET_REFS(gc, GC_REACHABLE);
}
}
/* Break reference cycles by clearing the containers involved. This is
* tricky business as the lists can be changing and we don't know which
* objects may be freed. It is possible I screwed something up here.
*/
static void
delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
{
inquiry clear;
while (!gc_list_is_empty(collectable)) {
PyGC_Head *gc = collectable->gc.gc_next;
PyObject *op = FROM_GC(gc);
if (debug & DEBUG_SAVEALL) {
PyList_Append(garbage, op);
}
else {
if ((clear = Py_TYPE(op)->tp_clear) != NULL) {
Py_INCREF(op);
clear(op);
Py_DECREF(op);
}
}
if (collectable->gc.gc_next == gc) {
/* object is still alive, move it, it may die later */
gc_list_move(gc, old);
_PyGCHead_SET_REFS(gc, GC_REACHABLE);
}
}
}
/* Clear all free lists
* All free lists are cleared during the collection of the highest generation.
* Allocated items in the free list may keep a pymalloc arena occupied.
* Clearing the free lists may give back memory to the OS earlier.
*/
static void
clear_freelists(void)
{
(void)PyMethod_ClearFreeList();
(void)PyFrame_ClearFreeList();
(void)PyCFunction_ClearFreeList();
(void)PyTuple_ClearFreeList();
(void)PyUnicode_ClearFreeList();
(void)PyFloat_ClearFreeList();
(void)PyList_ClearFreeList();
(void)PyDict_ClearFreeList();
(void)PySet_ClearFreeList();
(void)PyAsyncGen_ClearFreeLists();
}
/* This is the main function. Read this to understand how the
* collection process works. */
static Py_ssize_t
collect(int generation, Py_ssize_t *n_collected, Py_ssize_t *n_uncollectable,
int nofail)
{
int i;
Py_ssize_t m = 0; /* # objects collected */
Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */
PyGC_Head *young; /* the generation we are examining */
PyGC_Head *old; /* next older generation */
PyGC_Head unreachable; /* non-problematic unreachable trash */
PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
PyGC_Head *gc;
_PyTime_t t1 = 0; /* initialize to prevent a compiler warning */
struct gc_generation_stats *stats = &generation_stats[generation];
if (debug & DEBUG_STATS) {
PySys_WriteStderr("gc: collecting generation %d...\n",
generation);
PySys_WriteStderr("gc: objects in each generation:");
for (i = 0; i < NUM_GENERATIONS; i++)
PySys_FormatStderr(" %zd",
gc_list_size(GEN_HEAD(i)));
t1 = _PyTime_GetMonotonicClock();
PySys_WriteStderr("\n");
}
if (PyDTrace_GC_START_ENABLED())
PyDTrace_GC_START(generation);
/* update collection and allocation counters */
if (generation+1 < NUM_GENERATIONS)
generations[generation+1].count += 1;
for (i = 0; i <= generation; i++)
generations[i].count = 0;
/* merge younger generations with one we are currently collecting */
for (i = 0; i < generation; i++) {
gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
}
/* handy references */
young = GEN_HEAD(generation);
if (generation < NUM_GENERATIONS-1)
old = GEN_HEAD(generation+1);
else
old = young;
/* Using ob_refcnt and gc_refs, calculate which objects in the
* container set are reachable from outside the set (i.e., have a
* refcount greater than 0 when all the references within the
* set are taken into account).
*/
update_refs(young);
subtract_refs(young);
/* Leave everything reachable from outside young in young, and move
* everything else (in young) to unreachable.
* NOTE: This used to move the reachable objects into a reachable
* set instead. But most things usually turn out to be reachable,
* so it's more efficient to move the unreachable things.
*/
gc_list_init(&unreachable);
move_unreachable(young, &unreachable);
/* Move reachable objects to next generation. */
if (young != old) {
if (generation == NUM_GENERATIONS - 2) {
long_lived_pending += gc_list_size(young);
}
gc_list_merge(young, old);
}
else {
/* We only untrack dicts in full collections, to avoid quadratic
dict build-up. See issue #14775. */
untrack_dicts(young);
long_lived_pending = 0;
long_lived_total = gc_list_size(young);
}
/* All objects in unreachable are trash, but objects reachable from
* legacy finalizers (e.g. tp_del) can't safely be deleted.
*/
gc_list_init(&finalizers);
move_legacy_finalizers(&unreachable, &finalizers);
/* finalizers contains the unreachable objects with a legacy finalizer;
* unreachable objects reachable *from* those are also uncollectable,
* and we move those into the finalizers list too.
*/
move_legacy_finalizer_reachable(&finalizers);
/* Collect statistics on collectable objects found and print
* debugging information.
*/
for (gc = unreachable.gc.gc_next; gc != &unreachable;
gc = gc->gc.gc_next) {
m++;
if (debug & DEBUG_COLLECTABLE) {
debug_cycle("collectable", FROM_GC(gc));
}
}
/* Clear weakrefs and invoke callbacks as necessary. */
m += handle_weakrefs(&unreachable, old);
/* Call tp_finalize on objects which have one. */
finalize_garbage(&unreachable);
if (check_garbage(&unreachable)) {
revive_garbage(&unreachable);
gc_list_merge(&unreachable, old);
}
else {
/* Call tp_clear on objects in the unreachable set. This will cause
* the reference cycles to be broken. It may also cause some objects
* in finalizers to be freed.
*/
delete_garbage(&unreachable, old);
}
/* Collect statistics on uncollectable objects found and print
* debugging information. */
for (gc = finalizers.gc.gc_next;
gc != &finalizers;
gc = gc->gc.gc_next) {
n++;
if (debug & DEBUG_UNCOLLECTABLE)
debug_cycle("uncollectable", FROM_GC(gc));
}
if (debug & DEBUG_STATS) {
_PyTime_t t2 = _PyTime_GetMonotonicClock();
if (m == 0 && n == 0)
PySys_WriteStderr("gc: done");
else
PySys_FormatStderr(
"gc: done, %zd unreachable, %zd uncollectable",
n+m, n);
PySys_WriteStderr(", %.4fs elapsed\n",
_PyTime_AsSecondsDouble(t2 - t1));
}
/* Append instances in the uncollectable set to a Python
* reachable list of garbage. The programmer has to deal with
* this if they insist on creating this type of structure.
*/
handle_legacy_finalizers(&finalizers, old);
/* Clear free list only during the collection of the highest
* generation */
if (generation == NUM_GENERATIONS-1) {
clear_freelists();
}
if (PyErr_Occurred()) {
if (nofail) {
PyErr_Clear();
}
else {
if (gc_str == NULL)
gc_str = PyUnicode_FromString("garbage collection");
PyErr_WriteUnraisable(gc_str);
Py_FatalError("unexpected exception during garbage collection");
}
}
/* Update stats */
if (n_collected)
*n_collected = m;
if (n_uncollectable)
*n_uncollectable = n;
stats->collections++;
stats->collected += m;
stats->uncollectable += n;
if (PyDTrace_GC_DONE_ENABLED())
PyDTrace_GC_DONE(n+m);
return n+m;
}
/* Invoke progress callbacks to notify clients that garbage collection
* is starting or stopping
*/
static void
invoke_gc_callback(const char *phase, int generation,
Py_ssize_t collected, Py_ssize_t uncollectable)
{
Py_ssize_t i;
PyObject *info = NULL;
/* we may get called very early */
if (callbacks == NULL)
return;
/* The local variable cannot be rebound, check it for sanity */
assert(callbacks != NULL && PyList_CheckExact(callbacks));
if (PyList_GET_SIZE(callbacks) != 0) {
info = Py_BuildValue("{sisnsn}",
"generation", generation,
"collected", collected,
"uncollectable", uncollectable);
if (info == NULL) {
PyErr_WriteUnraisable(NULL);
return;
}
}
for (i=0; i<PyList_GET_SIZE(callbacks); i++) {
PyObject *r, *cb = PyList_GET_ITEM(callbacks, i);
Py_INCREF(cb); /* make sure cb doesn't go away */
r = PyObject_CallFunction(cb, "sO", phase, info);
if (r == NULL) {
PyErr_WriteUnraisable(cb);
}
else {
Py_DECREF(r);
}
Py_DECREF(cb);
}
Py_XDECREF(info);
}
/* Perform garbage collection of a generation and invoke
* progress callbacks.
*/
static Py_ssize_t
collect_with_callback(int generation)
{
Py_ssize_t result, collected, uncollectable;
invoke_gc_callback("start", generation, 0, 0);
result = collect(generation, &collected, &uncollectable, 0);
invoke_gc_callback("stop", generation, collected, uncollectable);
return result;
}
static Py_ssize_t
collect_generations(void)
{
int i;
Py_ssize_t n = 0;
/* Find the oldest generation (highest numbered) where the count
* exceeds the threshold. Objects in the that generation and
* generations younger than it will be collected. */
for (i = NUM_GENERATIONS-1; i >= 0; i--) {
if (generations[i].count > generations[i].threshold) {
/* Avoid quadratic performance degradation in number
of tracked objects. See comments at the beginning
of this file, and issue #4074.
*/
if (i == NUM_GENERATIONS - 1
&& long_lived_pending < long_lived_total / 4)
continue;
n = collect_with_callback(i);
break;
}
}
return n;
}
PyDoc_STRVAR(gc_enable__doc__,
"enable() -> None\n"
"\n"
"Enable automatic garbage collection.\n");
static PyObject *
gc_enable(PyObject *self, PyObject *noargs)
{
enabled = 1;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(gc_disable__doc__,
"disable() -> None\n"
"\n"
"Disable automatic garbage collection.\n");
static PyObject *
gc_disable(PyObject *self, PyObject *noargs)
{
enabled = 0;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(gc_isenabled__doc__,
"isenabled() -> status\n"
"\n"
"Returns true if automatic garbage collection is enabled.\n");
static PyObject *
gc_isenabled(PyObject *self, PyObject *noargs)
{
return PyBool_FromLong((long)enabled);
}
PyDoc_STRVAR(gc_collect__doc__,
"collect([generation]) -> n\n"
"\n"
"With no arguments, run a full collection. The optional argument\n"
"may be an integer specifying which generation to collect. A ValueError\n"
"is raised if the generation number is invalid.\n\n"
"The number of unreachable objects is returned.\n");
static PyObject *
gc_collect(PyObject *self, PyObject *args, PyObject *kws)
{
static char *keywords[] = {"generation", NULL};
int genarg = NUM_GENERATIONS - 1;
Py_ssize_t n;
if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg))
return NULL;
else if (genarg < 0 || genarg >= NUM_GENERATIONS) {
PyErr_SetString(PyExc_ValueError, "invalid generation");
return NULL;
}
if (collecting)
n = 0; /* already collecting, don't do anything */
else {
collecting = 1;
n = collect_with_callback(genarg);
collecting = 0;
}
return PyLong_FromSsize_t(n);
}
PyDoc_STRVAR(gc_set_debug__doc__,
"set_debug(flags) -> None\n"
"\n"
"Set the garbage collection debugging flags. Debugging information is\n"
"written to sys.stderr.\n"
"\n"
"flags is an integer and can have the following bits turned on:\n"
"\n"
" DEBUG_STATS - Print statistics during collection.\n"
" DEBUG_COLLECTABLE - Print collectable objects found.\n"
" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
static PyObject *
gc_set_debug(PyObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(gc_get_debug__doc__,
"get_debug() -> flags\n"
"\n"
"Get the garbage collection debugging flags.\n");
static PyObject *
gc_get_debug(PyObject *self, PyObject *noargs)
{
return Py_BuildValue("i", debug);
}
PyDoc_STRVAR(gc_set_thresh__doc__,
"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
"\n"
"Sets the collection thresholds. Setting threshold0 to zero disables\n"
"collection.\n");
static PyObject *
gc_set_thresh(PyObject *self, PyObject *args)
{
int i;
if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
&generations[0].threshold,
&generations[1].threshold,
&generations[2].threshold))
return NULL;
for (i = 2; i < NUM_GENERATIONS; i++) {
/* generations higher than 2 get the same threshold */
generations[i].threshold = generations[2].threshold;
}
Py_INCREF(Py_None);
return Py_None;
}
PyDoc_STRVAR(gc_get_thresh__doc__,
"get_threshold() -> (threshold0, threshold1, threshold2)\n"
"\n"
"Return the current collection thresholds\n");
static PyObject *
gc_get_thresh(PyObject *self, PyObject *noargs)
{
return Py_BuildValue("(iii)",
generations[0].threshold,
generations[1].threshold,
generations[2].threshold);
}
PyDoc_STRVAR(gc_get_count__doc__,
"get_count() -> (count0, count1, count2)\n"
"\n"
"Return the current collection counts\n");
static PyObject *
gc_get_count(PyObject *self, PyObject *noargs)
{
return Py_BuildValue("(iii)",
generations[0].count,
generations[1].count,
generations[2].count);
}
static int
referrersvisit(PyObject* obj, PyObject *objs)
{
Py_ssize_t i;
for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
if (PyTuple_GET_ITEM(objs, i) == obj)
return 1;
return 0;
}
static int
gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
{
PyGC_Head *gc;
PyObject *obj;
traverseproc traverse;
for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
obj = FROM_GC(gc);
traverse = Py_TYPE(obj)->tp_traverse;
if (obj == objs || obj == resultlist)
continue;
if (traverse(obj, (visitproc)referrersvisit, objs)) {
if (PyList_Append(resultlist, obj) < 0)
return 0; /* error */
}
}
return 1; /* no error */
}
PyDoc_STRVAR(gc_get_referrers__doc__,
"get_referrers(*objs) -> list\n\
Return the list of objects that directly refer to any of objs.");
static PyObject *
gc_get_referrers(PyObject *self, PyObject *args)
{
int i;
PyObject *result = PyList_New(0);
if (!result) return NULL;
for (i = 0; i < NUM_GENERATIONS; i++) {
if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
Py_DECREF(result);
return NULL;
}
}
return result;
}
/* Append obj to list; return true if error (out of memory), false if OK. */
static int
referentsvisit(PyObject *obj, PyObject *list)
{
return PyList_Append(list, obj) < 0;
}
PyDoc_STRVAR(gc_get_referents__doc__,
"get_referents(*objs) -> list\n\
Return the list of objects that are directly referred to by objs.");
static PyObject *
gc_get_referents(PyObject *self, PyObject *args)
{
Py_ssize_t i;
PyObject *result = PyList_New(0);
if (result == NULL)
return NULL;
for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
traverseproc traverse;
PyObject *obj = PyTuple_GET_ITEM(args, i);
if (! PyObject_IS_GC(obj))
continue;
traverse = Py_TYPE(obj)->tp_traverse;
if (! traverse)
continue;
if (traverse(obj, (visitproc)referentsvisit, result)) {
Py_DECREF(result);
return NULL;
}
}
return result;
}
PyDoc_STRVAR(gc_get_objects__doc__,
"get_objects() -> [...]\n"
"\n"
"Return a list of objects tracked by the collector (excluding the list\n"
"returned).\n");
static PyObject *
gc_get_objects(PyObject *self, PyObject *noargs)
{
int i;
PyObject* result;
result = PyList_New(0);
if (result == NULL)
return NULL;
for (i = 0; i < NUM_GENERATIONS; i++) {
if (append_objects(result, GEN_HEAD(i))) {
Py_DECREF(result);
return NULL;
}
}
return result;
}
PyDoc_STRVAR(gc_get_stats__doc__,
"get_stats() -> [...]\n"
"\n"
"Return a list of dictionaries containing per-generation statistics.\n");
static PyObject *
gc_get_stats(PyObject *self, PyObject *noargs)
{
int i;
PyObject *result;
struct gc_generation_stats stats[NUM_GENERATIONS], *st;
/* To get consistent values despite allocations while constructing
the result list, we use a snapshot of the running stats. */
for (i = 0; i < NUM_GENERATIONS; i++) {
stats[i] = generation_stats[i];
}
result = PyList_New(0);
if (result == NULL)
return NULL;
for (i = 0; i < NUM_GENERATIONS; i++) {
PyObject *dict;
st = &stats[i];
dict = Py_BuildValue("{snsnsn}",
"collections", st->collections,
"collected", st->collected,
"uncollectable", st->uncollectable
);
if (dict == NULL)
goto error;
if (PyList_Append(result, dict)) {
Py_DECREF(dict);
goto error;
}
Py_DECREF(dict);
}
return result;
error:
Py_XDECREF(result);
return NULL;
}
PyDoc_STRVAR(gc_is_tracked__doc__,
"is_tracked(obj) -> bool\n"
"\n"
"Returns true if the object is tracked by the garbage collector.\n"
"Simple atomic objects will return false.\n"
);
static PyObject *
gc_is_tracked(PyObject *self, PyObject *obj)
{
PyObject *result;
if (PyObject_IS_GC(obj) && IS_TRACKED(obj))
result = Py_True;
else
result = Py_False;
Py_INCREF(result);
return result;
}
PyDoc_STRVAR(gc__doc__,
"This module provides access to the garbage collector for reference cycles.\n"
"\n"
"enable() -- Enable automatic garbage collection.\n"
"disable() -- Disable automatic garbage collection.\n"
"isenabled() -- Returns true if automatic collection is enabled.\n"
"collect() -- Do a full collection right now.\n"
"get_count() -- Return the current collection counts.\n"
"get_stats() -- Return list of dictionaries containing per-generation stats.\n"
"set_debug() -- Set debugging flags.\n"
"get_debug() -- Get debugging flags.\n"
"set_threshold() -- Set the collection thresholds.\n"
"get_threshold() -- Return the current the collection thresholds.\n"
"get_objects() -- Return a list of all objects tracked by the collector.\n"
"is_tracked() -- Returns true if a given object is tracked.\n"
"get_referrers() -- Return the list of objects that refer to an object.\n"
"get_referents() -- Return the list of objects that an object refers to.\n");
static PyMethodDef GcMethods[] = {
{"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
{"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
{"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
{"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
{"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
{"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__},
{"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
{"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
{"collect", (PyCFunction)gc_collect,
METH_VARARGS | METH_KEYWORDS, gc_collect__doc__},
{"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
{"get_stats", gc_get_stats, METH_NOARGS, gc_get_stats__doc__},
{"is_tracked", gc_is_tracked, METH_O, gc_is_tracked__doc__},
{"get_referrers", gc_get_referrers, METH_VARARGS,
gc_get_referrers__doc__},
{"get_referents", gc_get_referents, METH_VARARGS,
gc_get_referents__doc__},
{NULL, NULL} /* Sentinel */
};
static struct PyModuleDef gcmodule = {
PyModuleDef_HEAD_INIT,
"gc", /* m_name */
gc__doc__, /* m_doc */
-1, /* m_size */
GcMethods, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL /* m_free */
};
PyMODINIT_FUNC
PyInit_gc(void)
{
PyObject *m;
m = PyModule_Create(&gcmodule);
if (m == NULL)
return NULL;
if (garbage == NULL) {
garbage = PyList_New(0);
if (garbage == NULL)
return NULL;
}
Py_INCREF(garbage);
if (PyModule_AddObject(m, "garbage", garbage) < 0)
return NULL;
if (callbacks == NULL) {
callbacks = PyList_New(0);
if (callbacks == NULL)
return NULL;
}
Py_INCREF(callbacks);
if (PyModule_AddObject(m, "callbacks", callbacks) < 0)
return NULL;
#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return NULL
ADD_INT(DEBUG_STATS);
ADD_INT(DEBUG_COLLECTABLE);
ADD_INT(DEBUG_UNCOLLECTABLE);
ADD_INT(DEBUG_SAVEALL);
ADD_INT(DEBUG_LEAK);
#undef ADD_INT
return m;
}
/* API to invoke gc.collect() from C */
Py_ssize_t
PyGC_Collect(void)
{
Py_ssize_t n;
if (collecting)
n = 0; /* already collecting, don't do anything */
else {
PyObject *exc, *value, *tb;
collecting = 1;
PyErr_Fetch(&exc, &value, &tb);
n = collect_with_callback(NUM_GENERATIONS - 1);
PyErr_Restore(exc, value, tb);
collecting = 0;
}
return n;
}
Py_ssize_t
_PyGC_CollectIfEnabled(void)
{
if (!enabled)
return 0;
return PyGC_Collect();
}
Py_ssize_t
_PyGC_CollectNoFail(void)
{
Py_ssize_t n;
/* Ideally, this function is only called on interpreter shutdown,
and therefore not recursively. Unfortunately, when there are daemon
threads, a daemon thread can start a cyclic garbage collection
during interpreter shutdown (and then never finish it).
See http://bugs.python.org/issue8713#msg195178 for an example.
*/
if (collecting)
n = 0;
else {
collecting = 1;
n = collect(NUM_GENERATIONS - 1, NULL, NULL, 1);
collecting = 0;
}
return n;
}
void
_PyGC_DumpShutdownStats(void)
{
if (!(debug & DEBUG_SAVEALL)
&& garbage != NULL && PyList_GET_SIZE(garbage) > 0) {
char *message;
if (debug & DEBUG_UNCOLLECTABLE)
message = "gc: %zd uncollectable objects at " \
"shutdown";
else
message = "gc: %zd uncollectable objects at " \
"shutdown; use gc.set_debug(gc.DEBUG_UNCOLLECTABLE) to list them";
/* PyErr_WarnFormat does too many things and we are at shutdown,
the warnings module's dependencies (e.g. linecache) may be gone
already. */
if (PyErr_WarnExplicitFormat(PyExc_ResourceWarning, "gc", 0,
"gc", NULL, message,
PyList_GET_SIZE(garbage)))
PyErr_WriteUnraisable(NULL);
if (debug & DEBUG_UNCOLLECTABLE) {
PyObject *repr = NULL, *bytes = NULL;
repr = PyObject_Repr(garbage);
if (!repr || !(bytes = PyUnicode_EncodeFSDefault(repr)))
PyErr_WriteUnraisable(garbage);
else {
PySys_WriteStderr(
" %s\n",
PyBytes_AS_STRING(bytes)
);
}
Py_XDECREF(repr);
Py_XDECREF(bytes);
}
}
}
void
_PyGC_Fini(void)
{
Py_CLEAR(callbacks);
}
/* for debugging */
void
_PyGC_Dump(PyGC_Head *g)
{
_PyObject_Dump(FROM_GC(g));
}
void
PyObject_GC_Track(void *op)
{
_PyObject_GC_TRACK(op);
}
void
(PyObject_GC_UnTrack)(void *op)
{
/* Obscure: the Py_TRASHCAN mechanism requires that we be able to
* call PyObject_GC_UnTrack twice on an object.
*/
if (IS_TRACKED(op))
_PyObject_GC_UNTRACK(op);
}
PyObject *
_PyObject_GC_Alloc(int use_calloc, size_t basicsize)
{
PyObject *op;
PyGC_Head *g;
size_t size;
if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head))
return PyErr_NoMemory();
size = sizeof(PyGC_Head) + basicsize;
if (use_calloc)
g = (PyGC_Head *)PyObject_Calloc(1, size);
else
g = (PyGC_Head *)PyObject_Malloc(size);
if (g == NULL)
return PyErr_NoMemory();
g->gc.gc_refs = 0;
_PyGCHead_SET_REFS(g, GC_UNTRACKED);
generations[0].count++; /* number of allocated GC objects */
if (generations[0].count > generations[0].threshold &&
enabled &&
generations[0].threshold &&
!collecting &&
!PyErr_Occurred()) {
collecting = 1;
collect_generations();
collecting = 0;
}
op = FROM_GC(g);
return op;
}
PyObject *
(_PyObject_GC_Malloc)(size_t basicsize)
{
return _PyObject_GC_Alloc(0, basicsize);
}
PyObject *
(_PyObject_GC_Calloc)(size_t basicsize)
{
return _PyObject_GC_Alloc(1, basicsize);
}
PyObject *
_PyObject_GC_New(PyTypeObject *tp)
{
PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
if (op != NULL)
op = PyObject_INIT(op, tp);
return op;
}
PyVarObject *
_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
{
size_t size;
PyVarObject *op;
if (nitems < 0) {
PyErr_BadInternalCall();
return NULL;
}
size = _PyObject_VAR_SIZE(tp, nitems);
op = (PyVarObject *) _PyObject_GC_Malloc(size);
if (op != NULL)
op = PyObject_INIT_VAR(op, tp, nitems);
return op;
}
PyVarObject *
_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)
{
const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems);
PyGC_Head *g = AS_GC(op);
assert(!IS_TRACKED(op));
if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head))
return (PyVarObject *)PyErr_NoMemory();
g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
if (g == NULL)
return (PyVarObject *)PyErr_NoMemory();
op = (PyVarObject *) FROM_GC(g);
Py_SIZE(op) = nitems;
return op;
}
void
PyObject_GC_Del(void *op)
{
PyGC_Head *g = AS_GC(op);
if (IS_TRACKED(op))
gc_list_remove(g);
if (generations[0].count > 0) {
generations[0].count--;
}
PyObject_FREE(g);
}
| 60,692 | 1,842 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_getdecomprecord.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/intrin/bits.h"
#include "third_party/python/Modules/unicodedata.h"
#include "third_party/python/Modules/unicodedata_unidata.h"
/* clang-format off */
void
_PyUnicode_GetDecompRecord(PyObject *self,
Py_UCS4 code,
int *index,
int *prefix,
int *count)
{
unsigned decomp;
if (code >= 0x110000) {
*index = 0;
} else if (self && UCD_Check(self) &&
get_old_record(self, code)->category_changed==0) {
/* unassigned in old version */
*index = 0;
}
else {
*index = _PyUnicode_DecompIndex1[(code>>_PyUnicode_DecompShift)];
*index = _PyUnicode_DecompIndex2[(*index<<_PyUnicode_DecompShift)+
(code&((1<<_PyUnicode_DecompShift)-1))];
}
/* high byte is number of hex bytes (usually one or two), low byte
is prefix code (from*/
decomp = _bextra(_PyUnicode_Decomp, *index, _PyUnicode_DecompBits);
*count = decomp >> 8;
*prefix = decomp & 255;
(*index)++;
}
| 1,927 | 39 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_math.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__MATH_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__MATH_H_
#include "third_party/python/pyconfig.h"
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
double _Py_acosh(double);
double _Py_asinh(double);
double _Py_atanh(double);
double _Py_expm1(double);
double _Py_log1p(double);
#ifdef HAVE_ACOSH
#define m_acosh acosh
#else
/* if the system doesn't have acosh, use the substitute
function defined in Modules/_math.c. */
#define m_acosh _Py_acosh
#endif
#ifdef HAVE_ASINH
#define m_asinh asinh
#else
/* if the system doesn't have asinh, use the substitute
function defined in Modules/_math.c. */
#define m_asinh _Py_asinh
#endif
#ifdef HAVE_ATANH
#define m_atanh atanh
#else
/* if the system doesn't have atanh, use the substitute
function defined in Modules/_math.c. */
#define m_atanh _Py_atanh
#endif
#ifdef HAVE_EXPM1
#define m_expm1 expm1
#else
/* if the system doesn't have expm1, use the substitute
function defined in Modules/_math.c. */
#define m_expm1 _Py_expm1
#endif
/* Use the substitute from _math.c on all platforms:
it includes workarounds for buggy handling of zeros. */
#define m_log1p _Py_log1p
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES__MATH_H_ */
| 1,331 | 52 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_pickle.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/errno.h"
#include "libc/fmt/conv.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/classobject.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/funcobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pystate.h"
#include "third_party/python/Include/pystrtod.h"
#include "third_party/python/Include/setobject.h"
#include "third_party/python/Include/sliceobject.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/sysmodule.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/quickjs/internal.h"
/* clang-format off */
PYTHON_PROVIDE("_pickle");
PYTHON_PROVIDE("_pickle.PickleError");
PYTHON_PROVIDE("_pickle.Pickler");
PYTHON_PROVIDE("_pickle.PicklingError");
PYTHON_PROVIDE("_pickle.Unpickler");
PYTHON_PROVIDE("_pickle.UnpicklingError");
PYTHON_PROVIDE("_pickle.dump");
PYTHON_PROVIDE("_pickle.dumps");
PYTHON_PROVIDE("_pickle.load");
PYTHON_PROVIDE("_pickle.loads");
PYTHON_YOINK("encodings.ascii");
PyDoc_STRVAR(pickle_module_doc,
"Optimized C implementation for the Python pickle module.");
/*[clinic input]
module _pickle
class _pickle.Pickler "PicklerObject *" "&Pickler_Type"
class _pickle.PicklerMemoProxy "PicklerMemoProxyObject *" "&PicklerMemoProxyType"
class _pickle.Unpickler "UnpicklerObject *" "&Unpickler_Type"
class _pickle.UnpicklerMemoProxy "UnpicklerMemoProxyObject *" "&UnpicklerMemoProxyType"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=4b3e113468a58e6c]*/
/* Bump this when new opcodes are added to the pickle protocol. */
enum {
HIGHEST_PROTOCOL = 4,
DEFAULT_PROTOCOL = 3
};
/* Pickle opcodes. These must be kept updated with pickle.py.
Extensive docs are in pickletools.py. */
enum opcode {
MARK = '(',
STOP = '.',
POP = '0',
POP_MARK = '1',
DUP = '2',
FLOAT = 'F',
INT = 'I',
BININT = 'J',
BININT1 = 'K',
LONG = 'L',
BININT2 = 'M',
NONE = 'N',
PERSID = 'P',
BINPERSID = 'Q',
REDUCE = 'R',
STRING = 'S',
BINSTRING = 'T',
SHORT_BINSTRING = 'U',
UNICODE = 'V',
BINUNICODE = 'X',
APPEND = 'a',
BUILD = 'b',
GLOBAL = 'c',
DICT = 'd',
EMPTY_DICT = '}',
APPENDS = 'e',
GET = 'g',
BINGET = 'h',
INST = 'i',
LONG_BINGET = 'j',
LIST = 'l',
EMPTY_LIST = ']',
OBJ = 'o',
PUT = 'p',
BINPUT = 'q',
LONG_BINPUT = 'r',
SETITEM = 's',
TUPLE = 't',
EMPTY_TUPLE = ')',
SETITEMS = 'u',
BINFLOAT = 'G',
/* Protocol 2. */
PROTO = '\x80',
NEWOBJ = '\x81',
EXT1 = '\x82',
EXT2 = '\x83',
EXT4 = '\x84',
TUPLE1 = '\x85',
TUPLE2 = '\x86',
TUPLE3 = '\x87',
NEWTRUE = '\x88',
NEWFALSE = '\x89',
LONG1 = '\x8a',
LONG4 = '\x8b',
/* Protocol 3 (Python 3.x) */
BINBYTES = 'B',
SHORT_BINBYTES = 'C',
/* Protocol 4 */
SHORT_BINUNICODE = '\x8c',
BINUNICODE8 = '\x8d',
BINBYTES8 = '\x8e',
EMPTY_SET = '\x8f',
ADDITEMS = '\x90',
FROZENSET = '\x91',
NEWOBJ_EX = '\x92',
STACK_GLOBAL = '\x93',
MEMOIZE = '\x94',
FRAME = '\x95'
};
enum {
/* Keep in synch with pickle.Pickler._BATCHSIZE. This is how many elements
batch_list/dict() pumps out before doing APPENDS/SETITEMS. Nothing will
break if this gets out of synch with pickle.py, but it's unclear that would
help anything either. */
BATCHSIZE = 1000,
/* Nesting limit until Pickler, when running in "fast mode", starts
checking for self-referential data-structures. */
FAST_NESTING_LIMIT = 50,
/* Initial size of the write buffer of Pickler. */
WRITE_BUF_SIZE = 4096,
/* Prefetch size when unpickling (disabled on unpeekable streams) */
PREFETCH = 8192 * 16,
FRAME_SIZE_TARGET = 64 * 1024,
FRAME_HEADER_SIZE = 9
};
/*************************************************************************/
/* State of the pickle module, per PEP 3121. */
typedef struct {
/* Exception classes for pickle. */
PyObject *PickleError;
PyObject *PicklingError;
PyObject *UnpicklingError;
/* copyreg.dispatch_table, {type_object: pickling_function} */
PyObject *dispatch_table;
/* For the extension opcodes EXT1, EXT2 and EXT4. */
/* copyreg._extension_registry, {(module_name, function_name): code} */
PyObject *extension_registry;
/* copyreg._extension_cache, {code: object} */
PyObject *extension_cache;
/* copyreg._inverted_registry, {code: (module_name, function_name)} */
PyObject *inverted_registry;
/* Import mappings for compatibility with Python 2.x */
/* _compat_pickle.NAME_MAPPING,
{(oldmodule, oldname): (newmodule, newname)} */
PyObject *name_mapping_2to3;
/* _compat_pickle.IMPORT_MAPPING, {oldmodule: newmodule} */
PyObject *import_mapping_2to3;
/* Same, but with REVERSE_NAME_MAPPING / REVERSE_IMPORT_MAPPING */
PyObject *name_mapping_3to2;
PyObject *import_mapping_3to2;
/* codecs.encode, used for saving bytes in older protocols */
PyObject *codecs_encode;
/* builtins.getattr, used for saving nested names with protocol < 4 */
PyObject *getattr;
/* functools.partial, used for implementing __newobj_ex__ with protocols
2 and 3 */
PyObject *partial;
} PickleState;
/* Forward declaration of the _pickle module definition. */
static struct PyModuleDef _picklemodule;
/* Given a module object, get its per-module state. */
static PickleState *
_Pickle_GetState(PyObject *module)
{
return (PickleState *)PyModule_GetState(module);
}
/* Find the module instance imported in the currently running sub-interpreter
and get its state. */
static PickleState *
_Pickle_GetGlobalState(void)
{
return _Pickle_GetState(PyState_FindModule(&_picklemodule));
}
/* Clear the given pickle module state. */
static void
_Pickle_ClearState(PickleState *st)
{
Py_CLEAR(st->PickleError);
Py_CLEAR(st->PicklingError);
Py_CLEAR(st->UnpicklingError);
Py_CLEAR(st->dispatch_table);
Py_CLEAR(st->extension_registry);
Py_CLEAR(st->extension_cache);
Py_CLEAR(st->inverted_registry);
Py_CLEAR(st->name_mapping_2to3);
Py_CLEAR(st->import_mapping_2to3);
Py_CLEAR(st->name_mapping_3to2);
Py_CLEAR(st->import_mapping_3to2);
Py_CLEAR(st->codecs_encode);
Py_CLEAR(st->getattr);
Py_CLEAR(st->partial);
}
/* Initialize the given pickle module state. */
static int
_Pickle_InitState(PickleState *st)
{
PyObject *copyreg = NULL;
PyObject *compat_pickle = NULL;
PyObject *codecs = NULL;
PyObject *functools = NULL;
_Py_IDENTIFIER(getattr);
st->getattr = _PyEval_GetBuiltinId(&PyId_getattr);
if (st->getattr == NULL)
goto error;
copyreg = PyImport_ImportModule("copyreg");
if (!copyreg)
goto error;
st->dispatch_table = PyObject_GetAttrString(copyreg, "dispatch_table");
if (!st->dispatch_table)
goto error;
if (!PyDict_CheckExact(st->dispatch_table)) {
PyErr_Format(PyExc_RuntimeError,
"copyreg.dispatch_table should be a dict, not %.200s",
Py_TYPE(st->dispatch_table)->tp_name);
goto error;
}
st->extension_registry = \
PyObject_GetAttrString(copyreg, "_extension_registry");
if (!st->extension_registry)
goto error;
if (!PyDict_CheckExact(st->extension_registry)) {
PyErr_Format(PyExc_RuntimeError,
"copyreg._extension_registry should be a dict, "
"not %.200s", Py_TYPE(st->extension_registry)->tp_name);
goto error;
}
st->inverted_registry = \
PyObject_GetAttrString(copyreg, "_inverted_registry");
if (!st->inverted_registry)
goto error;
if (!PyDict_CheckExact(st->inverted_registry)) {
PyErr_Format(PyExc_RuntimeError,
"copyreg._inverted_registry should be a dict, "
"not %.200s", Py_TYPE(st->inverted_registry)->tp_name);
goto error;
}
st->extension_cache = PyObject_GetAttrString(copyreg, "_extension_cache");
if (!st->extension_cache)
goto error;
if (!PyDict_CheckExact(st->extension_cache)) {
PyErr_Format(PyExc_RuntimeError,
"copyreg._extension_cache should be a dict, "
"not %.200s", Py_TYPE(st->extension_cache)->tp_name);
goto error;
}
Py_CLEAR(copyreg);
/* Load the 2.x -> 3.x stdlib module mapping tables */
compat_pickle = PyImport_ImportModule("_compat_pickle");
if (!compat_pickle)
goto error;
st->name_mapping_2to3 = \
PyObject_GetAttrString(compat_pickle, "NAME_MAPPING");
if (!st->name_mapping_2to3)
goto error;
if (!PyDict_CheckExact(st->name_mapping_2to3)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.NAME_MAPPING should be a dict, not %.200s",
Py_TYPE(st->name_mapping_2to3)->tp_name);
goto error;
}
st->import_mapping_2to3 = \
PyObject_GetAttrString(compat_pickle, "IMPORT_MAPPING");
if (!st->import_mapping_2to3)
goto error;
if (!PyDict_CheckExact(st->import_mapping_2to3)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.IMPORT_MAPPING should be a dict, "
"not %.200s", Py_TYPE(st->import_mapping_2to3)->tp_name);
goto error;
}
/* ... and the 3.x -> 2.x mapping tables */
st->name_mapping_3to2 = \
PyObject_GetAttrString(compat_pickle, "REVERSE_NAME_MAPPING");
if (!st->name_mapping_3to2)
goto error;
if (!PyDict_CheckExact(st->name_mapping_3to2)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.REVERSE_NAME_MAPPING should be a dict, "
"not %.200s", Py_TYPE(st->name_mapping_3to2)->tp_name);
goto error;
}
st->import_mapping_3to2 = \
PyObject_GetAttrString(compat_pickle, "REVERSE_IMPORT_MAPPING");
if (!st->import_mapping_3to2)
goto error;
if (!PyDict_CheckExact(st->import_mapping_3to2)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.REVERSE_IMPORT_MAPPING should be a dict, "
"not %.200s", Py_TYPE(st->import_mapping_3to2)->tp_name);
goto error;
}
Py_CLEAR(compat_pickle);
codecs = PyImport_ImportModule("codecs");
if (codecs == NULL)
goto error;
st->codecs_encode = PyObject_GetAttrString(codecs, "encode");
if (st->codecs_encode == NULL) {
goto error;
}
if (!PyCallable_Check(st->codecs_encode)) {
PyErr_Format(PyExc_RuntimeError,
"codecs.encode should be a callable, not %.200s",
Py_TYPE(st->codecs_encode)->tp_name);
goto error;
}
Py_CLEAR(codecs);
functools = PyImport_ImportModule("functools");
if (!functools)
goto error;
st->partial = PyObject_GetAttrString(functools, "partial");
if (!st->partial)
goto error;
Py_CLEAR(functools);
return 0;
error:
Py_CLEAR(copyreg);
Py_CLEAR(compat_pickle);
Py_CLEAR(codecs);
Py_CLEAR(functools);
_Pickle_ClearState(st);
return -1;
}
/* Helper for calling a function with a single argument quickly.
This function steals the reference of the given argument. */
static PyObject *
_Pickle_FastCall(PyObject *func, PyObject *obj)
{
PyObject *result;
result = _PyObject_CallArg1(func, obj);
Py_DECREF(obj);
return result;
}
/*************************************************************************/
/* Retrieve and deconstruct a method for avoiding a reference cycle
(pickler -> bound method of pickler -> pickler) */
static int
init_method_ref(PyObject *self, _Py_Identifier *name,
PyObject **method_func, PyObject **method_self)
{
PyObject *func, *func2;
/* *method_func and *method_self should be consistent. All refcount decrements
should be occurred after setting *method_self and *method_func. */
func = _PyObject_GetAttrId(self, name);
if (func == NULL) {
*method_self = NULL;
Py_CLEAR(*method_func);
if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
return -1;
}
PyErr_Clear();
return 0;
}
if (PyMethod_Check(func) && PyMethod_GET_SELF(func) == self) {
/* Deconstruct a bound Python method */
func2 = PyMethod_GET_FUNCTION(func);
Py_INCREF(func2);
*method_self = self; /* borrowed */
Py_XSETREF(*method_func, func2);
Py_DECREF(func);
return 0;
}
else {
*method_self = NULL;
Py_XSETREF(*method_func, func);
return 0;
}
}
/* Bind a method if it was deconstructed */
static PyObject *
reconstruct_method(PyObject *func, PyObject *self)
{
if (self) {
return PyMethod_New(func, self);
}
else {
Py_INCREF(func);
return func;
}
}
static PyObject *
call_method(PyObject *func, PyObject *self, PyObject *obj)
{
if (self) {
return PyObject_CallFunctionObjArgs(func, self, obj, NULL);
}
else {
return PyObject_CallFunctionObjArgs(func, obj, NULL);
}
}
/*************************************************************************/
/* Internal data type used as the unpickling stack. */
typedef struct {
PyObject_VAR_HEAD
PyObject **data;
int mark_set; /* is MARK set? */
Py_ssize_t fence; /* position of top MARK or 0 */
Py_ssize_t allocated; /* number of slots in data allocated */
} Pdata;
static void
Pdata_dealloc(Pdata *self)
{
Py_ssize_t i = Py_SIZE(self);
while (--i >= 0) {
Py_DECREF(self->data[i]);
}
PyMem_FREE(self->data);
PyObject_Del(self);
}
static PyTypeObject Pdata_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_pickle.Pdata", /*tp_name*/
sizeof(Pdata), /*tp_basicsize*/
sizeof(PyObject *), /*tp_itemsize*/
(destructor)Pdata_dealloc, /*tp_dealloc*/
};
static PyObject *
Pdata_New(void)
{
Pdata *self;
if (!(self = PyObject_New(Pdata, &Pdata_Type)))
return NULL;
Py_SIZE(self) = 0;
self->mark_set = 0;
self->fence = 0;
self->allocated = 8;
self->data = PyMem_MALLOC(self->allocated * sizeof(PyObject *));
if (self->data)
return (PyObject *)self;
Py_DECREF(self);
return PyErr_NoMemory();
}
/* Retain only the initial clearto items. If clearto >= the current
* number of items, this is a (non-erroneous) NOP.
*/
static int
Pdata_clear(Pdata *self, Py_ssize_t clearto)
{
Py_ssize_t i = Py_SIZE(self);
assert(clearto >= self->fence);
if (clearto >= i)
return 0;
while (--i >= clearto) {
Py_CLEAR(self->data[i]);
}
Py_SIZE(self) = clearto;
return 0;
}
static int
Pdata_grow(Pdata *self)
{
PyObject **data = self->data;
size_t allocated = (size_t)self->allocated;
size_t new_allocated;
new_allocated = (allocated >> 3) + 6;
/* check for integer overflow */
if (new_allocated > (size_t)PY_SSIZE_T_MAX - allocated)
goto nomemory;
new_allocated += allocated;
PyMem_RESIZE(data, PyObject *, new_allocated);
if (data == NULL)
goto nomemory;
self->data = data;
self->allocated = (Py_ssize_t)new_allocated;
return 0;
nomemory:
PyErr_NoMemory();
return -1;
}
static int
Pdata_stack_underflow(Pdata *self)
{
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
self->mark_set ?
"unexpected MARK found" :
"unpickling stack underflow");
return -1;
}
/* D is a Pdata*. Pop the topmost element and store it into V, which
* must be an lvalue holding PyObject*. On stack underflow, UnpicklingError
* is raised and V is set to NULL.
*/
static PyObject *
Pdata_pop(Pdata *self)
{
if (Py_SIZE(self) <= self->fence) {
Pdata_stack_underflow(self);
return NULL;
}
return self->data[--Py_SIZE(self)];
}
#define PDATA_POP(D, V) do { (V) = Pdata_pop((D)); } while (0)
static int
Pdata_push(Pdata *self, PyObject *obj)
{
if (Py_SIZE(self) == self->allocated && Pdata_grow(self) < 0) {
return -1;
}
self->data[Py_SIZE(self)++] = obj;
return 0;
}
/* Push an object on stack, transferring its ownership to the stack. */
#define PDATA_PUSH(D, O, ER) do { \
if (Pdata_push((D), (O)) < 0) return (ER); } while(0)
/* Push an object on stack, adding a new reference to the object. */
#define PDATA_APPEND(D, O, ER) do { \
Py_INCREF((O)); \
if (Pdata_push((D), (O)) < 0) return (ER); } while(0)
static PyObject *
Pdata_poptuple(Pdata *self, Py_ssize_t start)
{
PyObject *tuple;
Py_ssize_t len, i, j;
if (start < self->fence) {
Pdata_stack_underflow(self);
return NULL;
}
len = Py_SIZE(self) - start;
tuple = PyTuple_New(len);
if (tuple == NULL)
return NULL;
for (i = start, j = 0; j < len; i++, j++)
PyTuple_SET_ITEM(tuple, j, self->data[i]);
Py_SIZE(self) = start;
return tuple;
}
static PyObject *
Pdata_poplist(Pdata *self, Py_ssize_t start)
{
PyObject *list;
Py_ssize_t len, i, j;
len = Py_SIZE(self) - start;
list = PyList_New(len);
if (list == NULL)
return NULL;
for (i = start, j = 0; j < len; i++, j++)
PyList_SET_ITEM(list, j, self->data[i]);
Py_SIZE(self) = start;
return list;
}
typedef struct {
PyObject *me_key;
Py_ssize_t me_value;
} PyMemoEntry;
typedef struct {
size_t mt_mask;
size_t mt_used;
size_t mt_allocated;
PyMemoEntry *mt_table;
} PyMemoTable;
typedef struct PicklerObject {
PyObject_HEAD
PyMemoTable *memo; /* Memo table, keep track of the seen
objects to support self-referential objects
pickling. */
PyObject *pers_func; /* persistent_id() method, can be NULL */
PyObject *pers_func_self; /* borrowed reference to self if pers_func
is an unbound method, NULL otherwise */
PyObject *dispatch_table; /* private dispatch_table, can be NULL */
PyObject *write_; /* write() method of the output stream. */
PyObject *output_buffer; /* Write into a local bytearray buffer before
flushing to the stream. */
Py_ssize_t output_len; /* Length of output_buffer. */
Py_ssize_t max_output_len; /* Allocation size of output_buffer. */
int proto; /* Pickle protocol number, >= 0 */
int bin; /* Boolean, true if proto > 0 */
int framing; /* True when framing is enabled, proto >= 4 */
Py_ssize_t frame_start; /* Position in output_buffer where the
current frame begins. -1 if there
is no frame currently open. */
Py_ssize_t buf_size; /* Size of the current buffered pickle data */
int fast; /* Enable fast mode if set to a true value.
The fast mode disable the usage of memo,
therefore speeding the pickling process by
not generating superfluous PUT opcodes. It
should not be used if with self-referential
objects. */
int fast_nesting;
int fix_imports; /* Indicate whether Pickler should fix
the name of globals for Python 2.x. */
PyObject *fast_memo;
} PicklerObject;
typedef struct UnpicklerObject {
PyObject_HEAD
Pdata *stack; /* Pickle data stack, store unpickled objects. */
/* The unpickler memo is just an array of PyObject *s. Using a dict
is unnecessary, since the keys are contiguous ints. */
PyObject **memo;
size_t memo_size; /* Capacity of the memo array */
size_t memo_len; /* Number of objects in the memo */
PyObject *pers_func; /* persistent_load() method, can be NULL. */
PyObject *pers_func_self; /* borrowed reference to self if pers_func
is an unbound method, NULL otherwise */
Py_buffer buffer;
char *input_buffer;
char *input_line;
Py_ssize_t input_len;
Py_ssize_t next_read_idx;
Py_ssize_t prefetched_idx; /* index of first prefetched byte */
PyObject *read_; /* read() method of the input stream. */
PyObject *readline; /* readline() method of the input stream. */
PyObject *peek; /* peek() method of the input stream, or NULL */
char *encoding; /* Name of the encoding to be used for
decoding strings pickled using Python
2.x. The default value is "ASCII" */
char *errors; /* Name of errors handling scheme to used when
decoding strings. The default value is
"strict". */
Py_ssize_t *marks; /* Mark stack, used for unpickling container
objects. */
Py_ssize_t num_marks; /* Number of marks in the mark stack. */
Py_ssize_t marks_size; /* Current allocated size of the mark stack. */
int proto; /* Protocol of the pickle loaded. */
int fix_imports; /* Indicate whether Unpickler should fix
the name of globals pickled by Python 2.x. */
} UnpicklerObject;
typedef struct {
PyObject_HEAD
PicklerObject *pickler; /* Pickler whose memo table we're proxying. */
} PicklerMemoProxyObject;
typedef struct {
PyObject_HEAD
UnpicklerObject *unpickler;
} UnpicklerMemoProxyObject;
/* Forward declarations */
static int save(PicklerObject *, PyObject *, int);
static int save_reduce(PicklerObject *, PyObject *, PyObject *);
static PyTypeObject Pickler_Type;
static PyTypeObject Unpickler_Type;
#include "third_party/python/Modules/clinic/_pickle.inc"
/*************************************************************************
A custom hashtable mapping void* to Python ints. This is used by the pickler
for memoization. Using a custom hashtable rather than PyDict allows us to skip
a bunch of unnecessary object creation. This makes a huge performance
difference. */
#define MT_MINSIZE 8
#define PERTURB_SHIFT 5
static PyMemoTable *
PyMemoTable_New(void)
{
PyMemoTable *memo = PyMem_MALLOC(sizeof(PyMemoTable));
if (memo == NULL) {
PyErr_NoMemory();
return NULL;
}
memo->mt_used = 0;
memo->mt_allocated = MT_MINSIZE;
memo->mt_mask = MT_MINSIZE - 1;
memo->mt_table = PyMem_MALLOC(MT_MINSIZE * sizeof(PyMemoEntry));
if (memo->mt_table == NULL) {
PyMem_FREE(memo);
PyErr_NoMemory();
return NULL;
}
bzero(memo->mt_table, MT_MINSIZE * sizeof(PyMemoEntry));
return memo;
}
static PyMemoTable *
PyMemoTable_Copy(PyMemoTable *self)
{
PyMemoTable *new = PyMemoTable_New();
if (new == NULL)
return NULL;
new->mt_used = self->mt_used;
new->mt_allocated = self->mt_allocated;
new->mt_mask = self->mt_mask;
/* The table we get from _New() is probably smaller than we wanted.
Free it and allocate one that's the right size. */
PyMem_FREE(new->mt_table);
new->mt_table = PyMem_NEW(PyMemoEntry, self->mt_allocated);
if (new->mt_table == NULL) {
PyMem_FREE(new);
PyErr_NoMemory();
return NULL;
}
for (size_t i = 0; i < self->mt_allocated; i++) {
Py_XINCREF(self->mt_table[i].me_key);
}
memcpy(new->mt_table, self->mt_table,
sizeof(PyMemoEntry) * self->mt_allocated);
return new;
}
static Py_ssize_t
PyMemoTable_Size(PyMemoTable *self)
{
return self->mt_used;
}
static int
PyMemoTable_Clear(PyMemoTable *self)
{
Py_ssize_t i = self->mt_allocated;
while (--i >= 0) {
Py_XDECREF(self->mt_table[i].me_key);
}
self->mt_used = 0;
bzero(self->mt_table, self->mt_allocated * sizeof(PyMemoEntry));
return 0;
}
static void
PyMemoTable_Del(PyMemoTable *self)
{
if (self == NULL)
return;
PyMemoTable_Clear(self);
PyMem_FREE(self->mt_table);
PyMem_FREE(self);
}
/* Since entries cannot be deleted from this hashtable, _PyMemoTable_Lookup()
can be considerably simpler than dictobject.c's lookdict(). */
static PyMemoEntry *
_PyMemoTable_Lookup(PyMemoTable *self, PyObject *key)
{
size_t i;
size_t perturb;
size_t mask = self->mt_mask;
PyMemoEntry *table = self->mt_table;
PyMemoEntry *entry;
Py_hash_t hash = (Py_hash_t)key >> 3;
i = hash & mask;
entry = &table[i];
if (entry->me_key == NULL || entry->me_key == key)
return entry;
for (perturb = hash; ; perturb >>= PERTURB_SHIFT) {
i = (i << 2) + i + perturb + 1;
entry = &table[i & mask];
if (entry->me_key == NULL || entry->me_key == key)
return entry;
}
assert(0); /* Never reached */
return NULL;
}
/* Returns -1 on failure, 0 on success. */
static int
_PyMemoTable_ResizeTable(PyMemoTable *self, size_t min_size)
{
PyMemoEntry *oldtable = NULL;
PyMemoEntry *oldentry, *newentry;
size_t new_size = MT_MINSIZE;
size_t to_process;
assert(min_size > 0);
if (min_size > PY_SSIZE_T_MAX) {
PyErr_NoMemory();
return -1;
}
/* Find the smallest valid table size >= min_size. */
while (new_size < min_size) {
new_size <<= 1;
}
/* new_size needs to be a power of two. */
assert((new_size & (new_size - 1)) == 0);
/* Allocate new table. */
oldtable = self->mt_table;
self->mt_table = PyMem_NEW(PyMemoEntry, new_size);
if (self->mt_table == NULL) {
self->mt_table = oldtable;
PyErr_NoMemory();
return -1;
}
self->mt_allocated = new_size;
self->mt_mask = new_size - 1;
bzero(self->mt_table, sizeof(PyMemoEntry) * new_size);
/* Copy entries from the old table. */
to_process = self->mt_used;
for (oldentry = oldtable; to_process > 0; oldentry++) {
if (oldentry->me_key != NULL) {
to_process--;
/* newentry is a pointer to a chunk of the new
mt_table, so we're setting the key:value pair
in-place. */
newentry = _PyMemoTable_Lookup(self, oldentry->me_key);
newentry->me_key = oldentry->me_key;
newentry->me_value = oldentry->me_value;
}
}
/* Deallocate the old table. */
PyMem_FREE(oldtable);
return 0;
}
/* Returns NULL on failure, a pointer to the value otherwise. */
static Py_ssize_t *
PyMemoTable_Get(PyMemoTable *self, PyObject *key)
{
PyMemoEntry *entry = _PyMemoTable_Lookup(self, key);
if (entry->me_key == NULL)
return NULL;
return &entry->me_value;
}
/* Returns -1 on failure, 0 on success. */
static int
PyMemoTable_Set(PyMemoTable *self, PyObject *key, Py_ssize_t value)
{
PyMemoEntry *entry;
assert(key != NULL);
entry = _PyMemoTable_Lookup(self, key);
if (entry->me_key != NULL) {
entry->me_value = value;
return 0;
}
Py_INCREF(key);
entry->me_key = key;
entry->me_value = value;
self->mt_used++;
/* If we added a key, we can safely resize. Otherwise just return!
* If used >= 2/3 size, adjust size. Normally, this quaduples the size.
*
* Quadrupling the size improves average table sparseness
* (reducing collisions) at the cost of some memory. It also halves
* the number of expensive resize operations in a growing memo table.
*
* Very large memo tables (over 50K items) use doubling instead.
* This may help applications with severe memory constraints.
*/
if (SIZE_MAX / 3 >= self->mt_used && self->mt_used * 3 < self->mt_allocated * 2) {
return 0;
}
// self->mt_used is always < PY_SSIZE_T_MAX, so this can't overflow.
size_t desired_size = (self->mt_used > 50000 ? 2 : 4) * self->mt_used;
return _PyMemoTable_ResizeTable(self, desired_size);
}
#undef MT_MINSIZE
#undef PERTURB_SHIFT
/*************************************************************************/
static int
_Pickler_ClearBuffer(PicklerObject *self)
{
Py_XSETREF(self->output_buffer,
PyBytes_FromStringAndSize(NULL, self->max_output_len));
if (self->output_buffer == NULL)
return -1;
self->output_len = 0;
self->frame_start = -1;
return 0;
}
static void
_write_size64(char *out, size_t value)
{
size_t i;
Py_BUILD_ASSERT(sizeof(size_t) <= 8);
for (i = 0; i < sizeof(size_t); i++) {
out[i] = (unsigned char)((value >> (8 * i)) & 0xff);
}
for (i = sizeof(size_t); i < 8; i++) {
out[i] = 0;
}
}
static void
_Pickler_WriteFrameHeader(PicklerObject *self, char *qdata, size_t frame_len)
{
qdata[0] = FRAME;
_write_size64(qdata + 1, frame_len);
}
static int
_Pickler_CommitFrame(PicklerObject *self)
{
size_t frame_len;
char *qdata;
if (!self->framing || self->frame_start == -1)
return 0;
frame_len = self->output_len - self->frame_start - FRAME_HEADER_SIZE;
qdata = PyBytes_AS_STRING(self->output_buffer) + self->frame_start;
_Pickler_WriteFrameHeader(self, qdata, frame_len);
self->frame_start = -1;
return 0;
}
static int
_Pickler_OpcodeBoundary(PicklerObject *self)
{
Py_ssize_t frame_len;
if (!self->framing || self->frame_start == -1)
return 0;
frame_len = self->output_len - self->frame_start - FRAME_HEADER_SIZE;
if (frame_len >= FRAME_SIZE_TARGET)
return _Pickler_CommitFrame(self);
else
return 0;
}
static PyObject *
_Pickler_GetString(PicklerObject *self)
{
PyObject *output_buffer = self->output_buffer;
assert(self->output_buffer != NULL);
if (_Pickler_CommitFrame(self))
return NULL;
self->output_buffer = NULL;
/* Resize down to exact size */
if (_PyBytes_Resize(&output_buffer, self->output_len) < 0)
return NULL;
return output_buffer;
}
static int
_Pickler_FlushToFile(PicklerObject *self)
{
PyObject *output, *result;
assert(self->write_ != NULL);
/* This will commit the frame first */
output = _Pickler_GetString(self);
if (output == NULL)
return -1;
result = _Pickle_FastCall(self->write_, output);
Py_XDECREF(result);
return (result == NULL) ? -1 : 0;
}
static Py_ssize_t
_Pickler_Write(PicklerObject *self, const char *s, Py_ssize_t data_len)
{
Py_ssize_t i, n, required;
char *buffer;
int need_new_frame;
assert(s != NULL);
need_new_frame = (self->framing && self->frame_start == -1);
if (need_new_frame)
n = data_len + FRAME_HEADER_SIZE;
else
n = data_len;
required = self->output_len + n;
if (required > self->max_output_len) {
/* Make place in buffer for the pickle chunk */
if (self->output_len >= PY_SSIZE_T_MAX / 2 - n) {
PyErr_NoMemory();
return -1;
}
self->max_output_len = (self->output_len + n) / 2 * 3;
if (_PyBytes_Resize(&self->output_buffer, self->max_output_len) < 0)
return -1;
}
buffer = PyBytes_AS_STRING(self->output_buffer);
if (need_new_frame) {
/* Setup new frame */
Py_ssize_t frame_start = self->output_len;
self->frame_start = frame_start;
for (i = 0; i < FRAME_HEADER_SIZE; i++) {
/* Write an invalid value, for debugging */
buffer[frame_start + i] = 0xFE;
}
self->output_len += FRAME_HEADER_SIZE;
}
if (data_len < 8) {
/* This is faster than memcpy when the string is short. */
for (i = 0; i < data_len; i++) {
buffer[self->output_len + i] = s[i];
}
}
else {
memcpy(buffer + self->output_len, s, data_len);
}
self->output_len += data_len;
return data_len;
}
static PicklerObject *
_Pickler_New(void)
{
PicklerObject *self;
self = PyObject_GC_New(PicklerObject, &Pickler_Type);
if (self == NULL)
return NULL;
self->pers_func = NULL;
self->dispatch_table = NULL;
self->write_ = NULL;
self->proto = 0;
self->bin = 0;
self->framing = 0;
self->frame_start = -1;
self->fast = 0;
self->fast_nesting = 0;
self->fix_imports = 0;
self->fast_memo = NULL;
self->max_output_len = WRITE_BUF_SIZE;
self->output_len = 0;
self->memo = PyMemoTable_New();
self->output_buffer = PyBytes_FromStringAndSize(NULL,
self->max_output_len);
if (self->memo == NULL || self->output_buffer == NULL) {
Py_DECREF(self);
return NULL;
}
return self;
}
static int
_Pickler_SetProtocol(PicklerObject *self, PyObject *protocol, int fix_imports)
{
long proto;
if (protocol == NULL || protocol == Py_None) {
proto = DEFAULT_PROTOCOL;
}
else {
proto = PyLong_AsLong(protocol);
if (proto < 0) {
if (proto == -1 && PyErr_Occurred())
return -1;
proto = HIGHEST_PROTOCOL;
}
else if (proto > HIGHEST_PROTOCOL) {
PyErr_Format(PyExc_ValueError, "pickle protocol must be <= %d",
HIGHEST_PROTOCOL);
return -1;
}
}
self->proto = (int)proto;
self->bin = proto > 0;
self->fix_imports = fix_imports && proto < 3;
return 0;
}
/* Returns -1 (with an exception set) on failure, 0 on success. This may
be called once on a freshly created Pickler. */
static int
_Pickler_SetOutputStream(PicklerObject *self, PyObject *file)
{
_Py_IDENTIFIER(write);
assert(file != NULL);
self->write_ = _PyObject_GetAttrId(file, &PyId_write);
if (self->write_ == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_SetString(PyExc_TypeError,
"file must have a 'write' attribute");
return -1;
}
return 0;
}
/* Returns the size of the input on success, -1 on failure. This takes its
own reference to `input`. */
static Py_ssize_t
_Unpickler_SetStringInput(UnpicklerObject *self, PyObject *input)
{
if (self->buffer.buf != NULL)
PyBuffer_Release(&self->buffer);
if (PyObject_GetBuffer(input, &self->buffer, PyBUF_CONTIG_RO) < 0)
return -1;
self->input_buffer = self->buffer.buf;
self->input_len = self->buffer.len;
self->next_read_idx = 0;
self->prefetched_idx = self->input_len;
return self->input_len;
}
static int
bad_readline(void)
{
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError, "pickle data was truncated");
return -1;
}
static int
_Unpickler_SkipConsumed(UnpicklerObject *self)
{
Py_ssize_t consumed;
PyObject *r;
consumed = self->next_read_idx - self->prefetched_idx;
if (consumed <= 0)
return 0;
assert(self->peek); /* otherwise we did something wrong */
/* This makes a useless copy... */
r = PyObject_CallFunction(self->read_, "n", consumed);
if (r == NULL)
return -1;
Py_DECREF(r);
self->prefetched_idx = self->next_read_idx;
return 0;
}
static const Py_ssize_t READ_WHOLE_LINE = -1;
/* If reading from a file, we need to only pull the bytes we need, since there
may be multiple pickle objects arranged contiguously in the same input
buffer.
If `n` is READ_WHOLE_LINE, read a whole line. Otherwise, read up to `n`
bytes from the input stream/buffer.
Update the unpickler's input buffer with the newly-read data. Returns -1 on
failure; on success, returns the number of bytes read from the file.
On success, self->input_len will be 0; this is intentional so that when
unpickling from a file, the "we've run out of data" code paths will trigger,
causing the Unpickler to go back to the file for more data. Use the returned
size to tell you how much data you can process. */
static Py_ssize_t
_Unpickler_ReadFromFile(UnpicklerObject *self, Py_ssize_t n)
{
PyObject *data;
Py_ssize_t read_size;
assert(self->read_ != NULL);
if (_Unpickler_SkipConsumed(self) < 0)
return -1;
if (n == READ_WHOLE_LINE) {
data = _PyObject_CallNoArg(self->readline);
}
else {
PyObject *len;
/* Prefetch some data without advancing the file pointer, if possible */
if (self->peek && n < PREFETCH) {
len = PyLong_FromSsize_t(PREFETCH);
if (len == NULL)
return -1;
data = _Pickle_FastCall(self->peek, len);
if (data == NULL) {
if (!PyErr_ExceptionMatches(PyExc_NotImplementedError))
return -1;
/* peek() is probably not supported by the given file object */
PyErr_Clear();
Py_CLEAR(self->peek);
}
else {
read_size = _Unpickler_SetStringInput(self, data);
Py_DECREF(data);
self->prefetched_idx = 0;
if (n <= read_size)
return n;
}
}
len = PyLong_FromSsize_t(n);
if (len == NULL)
return -1;
data = _Pickle_FastCall(self->read_, len);
}
if (data == NULL)
return -1;
read_size = _Unpickler_SetStringInput(self, data);
Py_DECREF(data);
return read_size;
}
/* Don't call it directly: use _Unpickler_Read() */
static Py_ssize_t
_Unpickler_ReadImpl(UnpicklerObject *self, char **s, Py_ssize_t n)
{
Py_ssize_t num_read;
*s = NULL;
if (self->next_read_idx > PY_SSIZE_T_MAX - n) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
"read would overflow (invalid bytecode)");
return -1;
}
/* This case is handled by the _Unpickler_Read() macro for efficiency */
assert(self->next_read_idx + n > self->input_len);
if (!self->read_)
return bad_readline();
num_read = _Unpickler_ReadFromFile(self, n);
if (num_read < 0)
return -1;
if (num_read < n)
return bad_readline();
*s = self->input_buffer;
self->next_read_idx = n;
return n;
}
/* Read `n` bytes from the unpickler's data source, storing the result in `*s`.
This should be used for all data reads, rather than accessing the unpickler's
input buffer directly. This method deals correctly with reading from input
streams, which the input buffer doesn't deal with.
Note that when reading from a file-like object, self->next_read_idx won't
be updated (it should remain at 0 for the entire unpickling process). You
should use this function's return value to know how many bytes you can
consume.
Returns -1 (with an exception set) on failure. On success, return the
number of chars read. */
#define _Unpickler_Read(self, s, n) \
(((n) <= (self)->input_len - (self)->next_read_idx) \
? (*(s) = (self)->input_buffer + (self)->next_read_idx, \
(self)->next_read_idx += (n), \
(n)) \
: _Unpickler_ReadImpl(self, (s), (n)))
static Py_ssize_t
_Unpickler_CopyLine(UnpicklerObject *self, char *line, Py_ssize_t len,
char **result)
{
char *input_line = PyMem_Realloc(self->input_line, len + 1);
if (input_line == NULL) {
PyErr_NoMemory();
return -1;
}
memcpy(input_line, line, len);
input_line[len] = '\0';
self->input_line = input_line;
*result = self->input_line;
return len;
}
/* Read a line from the input stream/buffer. If we run off the end of the input
before hitting \n, raise an error.
Returns the number of chars read, or -1 on failure. */
static Py_ssize_t
_Unpickler_Readline(UnpicklerObject *self, char **result)
{
Py_ssize_t i, num_read;
for (i = self->next_read_idx; i < self->input_len; i++) {
if (self->input_buffer[i] == '\n') {
char *line_start = self->input_buffer + self->next_read_idx;
num_read = i - self->next_read_idx + 1;
self->next_read_idx = i + 1;
return _Unpickler_CopyLine(self, line_start, num_read, result);
}
}
if (!self->read_)
return bad_readline();
num_read = _Unpickler_ReadFromFile(self, READ_WHOLE_LINE);
if (num_read < 0)
return -1;
if (num_read == 0 || self->input_buffer[num_read - 1] != '\n')
return bad_readline();
self->next_read_idx = num_read;
return _Unpickler_CopyLine(self, self->input_buffer, num_read, result);
}
/* Returns -1 (with an exception set) on failure, 0 on success. The memo array
will be modified in place. */
static int
_Unpickler_ResizeMemoList(UnpicklerObject *self, size_t new_size)
{
size_t i;
assert(new_size > self->memo_size);
PyObject **memo_new = self->memo;
PyMem_RESIZE(memo_new, PyObject *, new_size);
if (memo_new == NULL) {
PyErr_NoMemory();
return -1;
}
self->memo = memo_new;
for (i = self->memo_size; i < new_size; i++)
self->memo[i] = NULL;
self->memo_size = new_size;
return 0;
}
/* Returns NULL if idx is out of bounds. */
static PyObject *
_Unpickler_MemoGet(UnpicklerObject *self, size_t idx)
{
if (idx >= self->memo_size)
return NULL;
return self->memo[idx];
}
/* Returns -1 (with an exception set) on failure, 0 on success.
This takes its own reference to `value`. */
static int
_Unpickler_MemoPut(UnpicklerObject *self, size_t idx, PyObject *value)
{
PyObject *old_item;
if (idx >= self->memo_size) {
if (_Unpickler_ResizeMemoList(self, idx * 2) < 0)
return -1;
assert(idx < self->memo_size);
}
Py_INCREF(value);
old_item = self->memo[idx];
self->memo[idx] = value;
if (old_item != NULL) {
Py_DECREF(old_item);
}
else {
self->memo_len++;
}
return 0;
}
static PyObject **
_Unpickler_NewMemo(Py_ssize_t new_size)
{
PyObject **memo = PyMem_NEW(PyObject *, new_size);
if (memo == NULL) {
PyErr_NoMemory();
return NULL;
}
bzero(memo, new_size * sizeof(PyObject *));
return memo;
}
/* Free the unpickler's memo, taking care to decref any items left in it. */
static void
_Unpickler_MemoCleanup(UnpicklerObject *self)
{
Py_ssize_t i;
PyObject **memo = self->memo;
if (self->memo == NULL)
return;
self->memo = NULL;
i = self->memo_size;
while (--i >= 0) {
Py_XDECREF(memo[i]);
}
PyMem_FREE(memo);
}
static UnpicklerObject *
_Unpickler_New(void)
{
UnpicklerObject *self;
self = PyObject_GC_New(UnpicklerObject, &Unpickler_Type);
if (self == NULL)
return NULL;
self->pers_func = NULL;
self->input_buffer = NULL;
self->input_line = NULL;
self->input_len = 0;
self->next_read_idx = 0;
self->prefetched_idx = 0;
self->read_ = NULL;
self->readline = NULL;
self->peek = NULL;
self->encoding = NULL;
self->errors = NULL;
self->marks = NULL;
self->num_marks = 0;
self->marks_size = 0;
self->proto = 0;
self->fix_imports = 0;
bzero(&self->buffer, sizeof(Py_buffer));
self->memo_size = 32;
self->memo_len = 0;
self->memo = _Unpickler_NewMemo(self->memo_size);
self->stack = (Pdata *)Pdata_New();
if (self->memo == NULL || self->stack == NULL) {
Py_DECREF(self);
return NULL;
}
return self;
}
/* Returns -1 (with an exception set) on failure, 0 on success. This may
be called once on a freshly created Pickler. */
static int
_Unpickler_SetInputStream(UnpicklerObject *self, PyObject *file)
{
_Py_IDENTIFIER(peek);
_Py_IDENTIFIER(read);
_Py_IDENTIFIER(readline);
self->peek = _PyObject_GetAttrId(file, &PyId_peek);
if (self->peek == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_Clear();
else
return -1;
}
self->read_ = _PyObject_GetAttrId(file, &PyId_read);
self->readline = _PyObject_GetAttrId(file, &PyId_readline);
if (self->readline == NULL || self->read_ == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_SetString(PyExc_TypeError,
"file must have 'read' and 'readline' attributes");
Py_CLEAR(self->read_);
Py_CLEAR(self->readline);
Py_CLEAR(self->peek);
return -1;
}
return 0;
}
/* Returns -1 (with an exception set) on failure, 0 on success. This may
be called once on a freshly created Pickler. */
static int
_Unpickler_SetInputEncoding(UnpicklerObject *self,
const char *encoding,
const char *errors)
{
if (encoding == NULL)
encoding = "ASCII";
if (errors == NULL)
errors = "strict";
self->encoding = _PyMem_Strdup(encoding);
self->errors = _PyMem_Strdup(errors);
if (self->encoding == NULL || self->errors == NULL) {
PyErr_NoMemory();
return -1;
}
return 0;
}
/* Generate a GET opcode for an object stored in the memo. */
static int
memo_get(PicklerObject *self, PyObject *key)
{
Py_ssize_t *value;
char pdata[30];
Py_ssize_t len;
value = PyMemoTable_Get(self->memo, key);
if (value == NULL) {
PyErr_SetObject(PyExc_KeyError, key);
return -1;
}
if (!self->bin) {
pdata[0] = GET;
PyOS_snprintf(pdata + 1, sizeof(pdata) - 1,
"%" PY_FORMAT_SIZE_T "d\n", *value);
len = strlen(pdata);
}
else {
if (*value < 256) {
pdata[0] = BINGET;
pdata[1] = (unsigned char)(*value & 0xff);
len = 2;
}
else if ((size_t)*value <= 0xffffffffUL) {
pdata[0] = LONG_BINGET;
pdata[1] = (unsigned char)(*value & 0xff);
pdata[2] = (unsigned char)((*value >> 8) & 0xff);
pdata[3] = (unsigned char)((*value >> 16) & 0xff);
pdata[4] = (unsigned char)((*value >> 24) & 0xff);
len = 5;
}
else { /* unlikely */
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->PicklingError,
"memo id too large for LONG_BINGET");
return -1;
}
}
if (_Pickler_Write(self, pdata, len) < 0)
return -1;
return 0;
}
/* Store an object in the memo, assign it a new unique ID based on the number
of objects currently stored in the memo and generate a PUT opcode. */
static int
memo_put(PicklerObject *self, PyObject *obj)
{
char pdata[30];
Py_ssize_t len;
Py_ssize_t idx;
const char memoize_op = MEMOIZE;
if (self->fast)
return 0;
idx = PyMemoTable_Size(self->memo);
if (PyMemoTable_Set(self->memo, obj, idx) < 0)
return -1;
if (self->proto >= 4) {
if (_Pickler_Write(self, &memoize_op, 1) < 0)
return -1;
return 0;
}
else if (!self->bin) {
pdata[0] = PUT;
PyOS_snprintf(pdata + 1, sizeof(pdata) - 1,
"%" PY_FORMAT_SIZE_T "d\n", idx);
len = strlen(pdata);
}
else {
if (idx < 256) {
pdata[0] = BINPUT;
pdata[1] = (unsigned char)idx;
len = 2;
}
else if ((size_t)idx <= 0xffffffffUL) {
pdata[0] = LONG_BINPUT;
pdata[1] = (unsigned char)(idx & 0xff);
pdata[2] = (unsigned char)((idx >> 8) & 0xff);
pdata[3] = (unsigned char)((idx >> 16) & 0xff);
pdata[4] = (unsigned char)((idx >> 24) & 0xff);
len = 5;
}
else { /* unlikely */
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->PicklingError,
"memo id too large for LONG_BINPUT");
return -1;
}
}
if (_Pickler_Write(self, pdata, len) < 0)
return -1;
return 0;
}
static PyObject *
get_dotted_path(PyObject *obj, PyObject *name)
{
_Py_static_string(PyId_dot, ".");
PyObject *dotted_path;
Py_ssize_t i, n;
dotted_path = PyUnicode_Split(name, _PyUnicode_FromId(&PyId_dot), -1);
if (dotted_path == NULL)
return NULL;
n = PyList_GET_SIZE(dotted_path);
assert(n >= 1);
for (i = 0; i < n; i++) {
PyObject *subpath = PyList_GET_ITEM(dotted_path, i);
if (_PyUnicode_EqualToASCIIString(subpath, "<locals>")) {
if (obj == NULL)
PyErr_Format(PyExc_AttributeError,
"Can't pickle local object %R", name);
else
PyErr_Format(PyExc_AttributeError,
"Can't pickle local attribute %R on %R", name, obj);
Py_DECREF(dotted_path);
return NULL;
}
}
return dotted_path;
}
static PyObject *
get_deep_attribute(PyObject *obj, PyObject *names, PyObject **pparent)
{
Py_ssize_t i, n;
PyObject *parent = NULL;
assert(PyList_CheckExact(names));
Py_INCREF(obj);
n = PyList_GET_SIZE(names);
for (i = 0; i < n; i++) {
PyObject *name = PyList_GET_ITEM(names, i);
Py_XDECREF(parent);
parent = obj;
obj = PyObject_GetAttr(parent, name);
if (obj == NULL) {
Py_DECREF(parent);
return NULL;
}
}
if (pparent != NULL)
*pparent = parent;
else
Py_XDECREF(parent);
return obj;
}
static void
reformat_attribute_error(PyObject *obj, PyObject *name)
{
if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_Clear();
PyErr_Format(PyExc_AttributeError,
"Can't get attribute %R on %R", name, obj);
}
}
static PyObject *
getattribute(PyObject *obj, PyObject *name, int allow_qualname)
{
PyObject *dotted_path, *attr;
if (allow_qualname) {
dotted_path = get_dotted_path(obj, name);
if (dotted_path == NULL)
return NULL;
attr = get_deep_attribute(obj, dotted_path, NULL);
Py_DECREF(dotted_path);
}
else
attr = PyObject_GetAttr(obj, name);
if (attr == NULL)
reformat_attribute_error(obj, name);
return attr;
}
static PyObject *
whichmodule(PyObject *global, PyObject *dotted_path)
{
PyObject *module_name;
PyObject *modules_dict;
PyObject *module;
Py_ssize_t i;
_Py_IDENTIFIER(__module__);
_Py_IDENTIFIER(modules);
_Py_IDENTIFIER(__main__);
module_name = _PyObject_GetAttrId(global, &PyId___module__);
if (module_name == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError))
return NULL;
PyErr_Clear();
}
else {
/* In some rare cases (e.g., bound methods of extension types),
__module__ can be None. If it is so, then search sys.modules for
the module of global. */
if (module_name != Py_None)
return module_name;
Py_CLEAR(module_name);
}
assert(module_name == NULL);
/* Fallback on walking sys.modules */
modules_dict = _PySys_GetObjectId(&PyId_modules);
if (modules_dict == NULL) {
PyErr_SetString(PyExc_RuntimeError, "unable to get sys.modules");
return NULL;
}
i = 0;
while (PyDict_Next(modules_dict, &i, &module_name, &module)) {
PyObject *candidate;
if (PyUnicode_Check(module_name) &&
_PyUnicode_EqualToASCIIString(module_name, "__main__"))
continue;
if (module == Py_None)
continue;
candidate = get_deep_attribute(module, dotted_path, NULL);
if (candidate == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError))
return NULL;
PyErr_Clear();
continue;
}
if (candidate == global) {
Py_INCREF(module_name);
Py_DECREF(candidate);
return module_name;
}
Py_DECREF(candidate);
}
/* If no module is found, use __main__. */
module_name = _PyUnicode_FromId(&PyId___main__);
Py_XINCREF(module_name);
return module_name;
}
/* fast_save_enter() and fast_save_leave() are guards against recursive
objects when Pickler is used with the "fast mode" (i.e., with object
memoization disabled). If the nesting of a list or dict object exceed
FAST_NESTING_LIMIT, these guards will start keeping an internal
reference to the seen list or dict objects and check whether these objects
are recursive. These are not strictly necessary, since save() has a
hard-coded recursion limit, but they give a nicer error message than the
typical RuntimeError. */
static int
fast_save_enter(PicklerObject *self, PyObject *obj)
{
/* if fast_nesting < 0, we're doing an error exit. */
if (++self->fast_nesting >= FAST_NESTING_LIMIT) {
PyObject *key = NULL;
if (self->fast_memo == NULL) {
self->fast_memo = PyDict_New();
if (self->fast_memo == NULL) {
self->fast_nesting = -1;
return 0;
}
}
key = PyLong_FromVoidPtr(obj);
if (key == NULL) {
self->fast_nesting = -1;
return 0;
}
if (PyDict_GetItemWithError(self->fast_memo, key)) {
Py_DECREF(key);
PyErr_Format(PyExc_ValueError,
"fast mode: can't pickle cyclic objects "
"including object type %.200s at %p",
obj->ob_type->tp_name, obj);
self->fast_nesting = -1;
return 0;
}
if (PyErr_Occurred()) {
Py_DECREF(key);
self->fast_nesting = -1;
return 0;
}
if (PyDict_SetItem(self->fast_memo, key, Py_None) < 0) {
Py_DECREF(key);
self->fast_nesting = -1;
return 0;
}
Py_DECREF(key);
}
return 1;
}
static int
fast_save_leave(PicklerObject *self, PyObject *obj)
{
if (self->fast_nesting-- >= FAST_NESTING_LIMIT) {
PyObject *key = PyLong_FromVoidPtr(obj);
if (key == NULL)
return 0;
if (PyDict_DelItem(self->fast_memo, key) < 0) {
Py_DECREF(key);
return 0;
}
Py_DECREF(key);
}
return 1;
}
static int
save_none(PicklerObject *self, PyObject *obj)
{
const char none_op = NONE;
if (_Pickler_Write(self, &none_op, 1) < 0)
return -1;
return 0;
}
static int
save_bool(PicklerObject *self, PyObject *obj)
{
if (self->proto >= 2) {
const char bool_op = (obj == Py_True) ? NEWTRUE : NEWFALSE;
if (_Pickler_Write(self, &bool_op, 1) < 0)
return -1;
}
else {
/* These aren't opcodes -- they're ways to pickle bools before protocol 2
* so that unpicklers written before bools were introduced unpickle them
* as ints, but unpicklers after can recognize that bools were intended.
* Note that protocol 2 added direct ways to pickle bools.
*/
const char *bool_str = (obj == Py_True) ? "I01\n" : "I00\n";
if (_Pickler_Write(self, bool_str, strlen(bool_str)) < 0)
return -1;
}
return 0;
}
static int
save_long(PicklerObject *self, PyObject *obj)
{
PyObject *repr = NULL;
Py_ssize_t size;
long val;
int status = 0;
const char long_op = LONG;
val= PyLong_AsLong(obj);
if (val == -1 && PyErr_Occurred()) {
/* out of range for int pickling */
PyErr_Clear();
}
else if (self->bin &&
(sizeof(long) <= 4 ||
(val <= 0x7fffffffL && val >= (-0x7fffffffL - 1)))) {
/* result fits in a signed 4-byte integer.
Note: we can't use -0x80000000L in the above condition because some
compilers (e.g., MSVC) will promote 0x80000000L to an unsigned type
before applying the unary minus when sizeof(long) <= 4. The
resulting value stays unsigned which is commonly not what we want,
so MSVC happily warns us about it. However, that result would have
been fine because we guard for sizeof(long) <= 4 which turns the
condition true in that particular case. */
char pdata[32];
Py_ssize_t len = 0;
pdata[1] = (unsigned char)(val & 0xff);
pdata[2] = (unsigned char)((val >> 8) & 0xff);
pdata[3] = (unsigned char)((val >> 16) & 0xff);
pdata[4] = (unsigned char)((val >> 24) & 0xff);
if ((pdata[4] == 0) && (pdata[3] == 0)) {
if (pdata[2] == 0) {
pdata[0] = BININT1;
len = 2;
}
else {
pdata[0] = BININT2;
len = 3;
}
}
else {
pdata[0] = BININT;
len = 5;
}
if (_Pickler_Write(self, pdata, len) < 0)
return -1;
return 0;
}
if (self->proto >= 2) {
/* Linear-time pickling. */
size_t nbits;
size_t nbytes;
unsigned char *pdata;
char header[5];
int i;
int sign = _PyLong_Sign(obj);
if (sign == 0) {
header[0] = LONG1;
header[1] = 0; /* It's 0 -- an empty bytestring. */
if (_Pickler_Write(self, header, 2) < 0)
goto error;
return 0;
}
nbits = _PyLong_NumBits(obj);
if (nbits == (size_t)-1 && PyErr_Occurred())
goto error;
/* How many bytes do we need? There are nbits >> 3 full
* bytes of data, and nbits & 7 leftover bits. If there
* are any leftover bits, then we clearly need another
* byte. Wnat's not so obvious is that we *probably*
* need another byte even if there aren't any leftovers:
* the most-significant bit of the most-significant byte
* acts like a sign bit, and it's usually got a sense
* opposite of the one we need. The exception is ints
* of the form -(2**(8*j-1)) for j > 0. Such an int is
* its own 256's-complement, so has the right sign bit
* even without the extra byte. That's a pain to check
* for in advance, though, so we always grab an extra
* byte at the start, and cut it back later if possible.
*/
nbytes = (nbits >> 3) + 1;
if (nbytes > 0x7fffffffL) {
PyErr_SetString(PyExc_OverflowError,
"int too large to pickle");
goto error;
}
repr = PyBytes_FromStringAndSize(NULL, (Py_ssize_t)nbytes);
if (repr == NULL)
goto error;
pdata = (unsigned char *)PyBytes_AS_STRING(repr);
i = _PyLong_AsByteArray((PyLongObject *)obj,
pdata, nbytes,
1 /* little endian */ , 1 /* signed */ );
if (i < 0)
goto error;
/* If the int is negative, this may be a byte more than
* needed. This is so iff the MSB is all redundant sign
* bits.
*/
if (sign < 0 &&
nbytes > 1 &&
pdata[nbytes - 1] == 0xff &&
(pdata[nbytes - 2] & 0x80) != 0) {
nbytes--;
}
if (nbytes < 256) {
header[0] = LONG1;
header[1] = (unsigned char)nbytes;
size = 2;
}
else {
header[0] = LONG4;
size = (Py_ssize_t) nbytes;
for (i = 1; i < 5; i++) {
header[i] = (unsigned char)(size & 0xff);
size >>= 8;
}
size = 5;
}
if (_Pickler_Write(self, header, size) < 0 ||
_Pickler_Write(self, (char *)pdata, (int)nbytes) < 0)
goto error;
}
else {
char *string;
/* proto < 2: write the repr and newline. This is quadratic-time (in
the number of digits), in both directions. We add a trailing 'L'
to the repr, for compatibility with Python 2.x. */
repr = PyObject_Repr(obj);
if (repr == NULL)
goto error;
string = PyUnicode_AsUTF8AndSize(repr, &size);
if (string == NULL)
goto error;
if (_Pickler_Write(self, &long_op, 1) < 0 ||
_Pickler_Write(self, string, size) < 0 ||
_Pickler_Write(self, "L\n", 2) < 0)
goto error;
}
if (0) {
error:
status = -1;
}
Py_XDECREF(repr);
return status;
}
static int
save_float(PicklerObject *self, PyObject *obj)
{
double x = PyFloat_AS_DOUBLE((PyFloatObject *)obj);
if (self->bin) {
char pdata[9];
pdata[0] = BINFLOAT;
if (_PyFloat_Pack8(x, (unsigned char *)&pdata[1], 0) < 0)
return -1;
if (_Pickler_Write(self, pdata, 9) < 0)
return -1;
}
else {
int result = -1;
char *buf = NULL;
char op = FLOAT;
if (_Pickler_Write(self, &op, 1) < 0)
goto done;
buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL);
if (!buf) {
PyErr_NoMemory();
goto done;
}
if (_Pickler_Write(self, buf, strlen(buf)) < 0)
goto done;
if (_Pickler_Write(self, "\n", 1) < 0)
goto done;
result = 0;
done:
PyMem_Free(buf);
return result;
}
return 0;
}
static int
save_bytes(PicklerObject *self, PyObject *obj)
{
if (self->proto < 3) {
/* Older pickle protocols do not have an opcode for pickling bytes
objects. Therefore, we need to fake the copy protocol (i.e.,
the __reduce__ method) to permit bytes object unpickling.
Here we use a hack to be compatible with Python 2. Since in Python
2 'bytes' is just an alias for 'str' (which has different
parameters than the actual bytes object), we use codecs.encode
to create the appropriate 'str' object when unpickled using
Python 2 *and* the appropriate 'bytes' object when unpickled
using Python 3. Again this is a hack and we don't need to do this
with newer protocols. */
PyObject *reduce_value = NULL;
int status;
if (PyBytes_GET_SIZE(obj) == 0) {
reduce_value = Py_BuildValue("(O())", (PyObject*)&PyBytes_Type);
}
else {
PickleState *st = _Pickle_GetGlobalState();
PyObject *unicode_str =
PyUnicode_DecodeLatin1(PyBytes_AS_STRING(obj),
PyBytes_GET_SIZE(obj),
"strict");
_Py_IDENTIFIER(latin1);
if (unicode_str == NULL)
return -1;
reduce_value = Py_BuildValue("(O(OO))",
st->codecs_encode, unicode_str,
_PyUnicode_FromId(&PyId_latin1));
Py_DECREF(unicode_str);
}
if (reduce_value == NULL)
return -1;
/* save_reduce() will memoize the object automatically. */
status = save_reduce(self, reduce_value, obj);
Py_DECREF(reduce_value);
return status;
}
else {
Py_ssize_t size;
char header[9];
Py_ssize_t len;
size = PyBytes_GET_SIZE(obj);
if (size < 0)
return -1;
if (size <= 0xff) {
header[0] = SHORT_BINBYTES;
header[1] = (unsigned char)size;
len = 2;
}
else if ((size_t)size <= 0xffffffffUL) {
header[0] = BINBYTES;
header[1] = (unsigned char)(size & 0xff);
header[2] = (unsigned char)((size >> 8) & 0xff);
header[3] = (unsigned char)((size >> 16) & 0xff);
header[4] = (unsigned char)((size >> 24) & 0xff);
len = 5;
}
else if (self->proto >= 4) {
header[0] = BINBYTES8;
_write_size64(header + 1, size);
len = 9;
}
else {
PyErr_SetString(PyExc_OverflowError,
"cannot serialize a bytes object larger than 4 GiB");
return -1; /* string too large */
}
if (_Pickler_Write(self, header, len) < 0)
return -1;
if (_Pickler_Write(self, PyBytes_AS_STRING(obj), size) < 0)
return -1;
if (memo_put(self, obj) < 0)
return -1;
return 0;
}
}
/* A copy of PyUnicode_EncodeRawUnicodeEscape() that also translates
backslash and newline characters to \uXXXX escapes. */
static PyObject *
raw_unicode_escape(PyObject *obj)
{
char *p;
Py_ssize_t i, size;
void *data;
unsigned int kind;
_PyBytesWriter writer;
if (PyUnicode_READY(obj))
return NULL;
_PyBytesWriter_Init(&writer);
size = PyUnicode_GET_LENGTH(obj);
data = PyUnicode_DATA(obj);
kind = PyUnicode_KIND(obj);
p = _PyBytesWriter_Alloc(&writer, size);
if (p == NULL)
goto error;
writer.overallocate = 1;
for (i=0; i < size; i++) {
Py_UCS4 ch = PyUnicode_READ(kind, data, i);
/* Map 32-bit characters to '\Uxxxxxxxx' */
if (ch >= 0x10000) {
/* -1: subtract 1 preallocated byte */
p = _PyBytesWriter_Prepare(&writer, p, 10-1);
if (p == NULL)
goto error;
*p++ = '\\';
*p++ = 'U';
*p++ = Py_hexdigits[(ch >> 28) & 0xf];
*p++ = Py_hexdigits[(ch >> 24) & 0xf];
*p++ = Py_hexdigits[(ch >> 20) & 0xf];
*p++ = Py_hexdigits[(ch >> 16) & 0xf];
*p++ = Py_hexdigits[(ch >> 12) & 0xf];
*p++ = Py_hexdigits[(ch >> 8) & 0xf];
*p++ = Py_hexdigits[(ch >> 4) & 0xf];
*p++ = Py_hexdigits[ch & 15];
}
/* Map 16-bit characters, '\\' and '\n' to '\uxxxx' */
else if (ch >= 256 || ch == '\\' || ch == '\n') {
/* -1: subtract 1 preallocated byte */
p = _PyBytesWriter_Prepare(&writer, p, 6-1);
if (p == NULL)
goto error;
*p++ = '\\';
*p++ = 'u';
*p++ = Py_hexdigits[(ch >> 12) & 0xf];
*p++ = Py_hexdigits[(ch >> 8) & 0xf];
*p++ = Py_hexdigits[(ch >> 4) & 0xf];
*p++ = Py_hexdigits[ch & 15];
}
/* Copy everything else as-is */
else
*p++ = (char) ch;
}
return _PyBytesWriter_Finish(&writer, p);
error:
_PyBytesWriter_Dealloc(&writer);
return NULL;
}
static int
write_utf8(PicklerObject *self, const char *data, Py_ssize_t size)
{
char header[9];
Py_ssize_t len;
assert(size >= 0);
if (size <= 0xff && self->proto >= 4) {
header[0] = SHORT_BINUNICODE;
header[1] = (unsigned char)(size & 0xff);
len = 2;
}
else if ((size_t)size <= 0xffffffffUL) {
header[0] = BINUNICODE;
header[1] = (unsigned char)(size & 0xff);
header[2] = (unsigned char)((size >> 8) & 0xff);
header[3] = (unsigned char)((size >> 16) & 0xff);
header[4] = (unsigned char)((size >> 24) & 0xff);
len = 5;
}
else if (self->proto >= 4) {
header[0] = BINUNICODE8;
_write_size64(header + 1, size);
len = 9;
}
else {
PyErr_SetString(PyExc_OverflowError,
"cannot serialize a string larger than 4GiB");
return -1;
}
if (_Pickler_Write(self, header, len) < 0)
return -1;
if (_Pickler_Write(self, data, size) < 0)
return -1;
return 0;
}
static int
write_unicode_binary(PicklerObject *self, PyObject *obj)
{
PyObject *encoded = NULL;
Py_ssize_t size;
char *data;
int r;
if (PyUnicode_READY(obj))
return -1;
data = PyUnicode_AsUTF8AndSize(obj, &size);
if (data != NULL)
return write_utf8(self, data, size);
/* Issue #8383: for strings with lone surrogates, fallback on the
"surrogatepass" error handler. */
PyErr_Clear();
encoded = PyUnicode_AsEncodedString(obj, "utf-8", "surrogatepass");
if (encoded == NULL)
return -1;
r = write_utf8(self, PyBytes_AS_STRING(encoded),
PyBytes_GET_SIZE(encoded));
Py_DECREF(encoded);
return r;
}
static int
save_unicode(PicklerObject *self, PyObject *obj)
{
if (self->bin) {
if (write_unicode_binary(self, obj) < 0)
return -1;
}
else {
PyObject *encoded;
Py_ssize_t size;
const char unicode_op = UNICODE;
encoded = raw_unicode_escape(obj);
if (encoded == NULL)
return -1;
if (_Pickler_Write(self, &unicode_op, 1) < 0) {
Py_DECREF(encoded);
return -1;
}
size = PyBytes_GET_SIZE(encoded);
if (_Pickler_Write(self, PyBytes_AS_STRING(encoded), size) < 0) {
Py_DECREF(encoded);
return -1;
}
Py_DECREF(encoded);
if (_Pickler_Write(self, "\n", 1) < 0)
return -1;
}
if (memo_put(self, obj) < 0)
return -1;
return 0;
}
/* A helper for save_tuple. Push the len elements in tuple t on the stack. */
static int
store_tuple_elements(PicklerObject *self, PyObject *t, Py_ssize_t len)
{
Py_ssize_t i;
assert(PyTuple_Size(t) == len);
for (i = 0; i < len; i++) {
PyObject *element = PyTuple_GET_ITEM(t, i);
if (element == NULL)
return -1;
if (save(self, element, 0) < 0)
return -1;
}
return 0;
}
/* Tuples are ubiquitous in the pickle protocols, so many techniques are
* used across protocols to minimize the space needed to pickle them.
* Tuples are also the only builtin immutable type that can be recursive
* (a tuple can be reached from itself), and that requires some subtle
* magic so that it works in all cases. IOW, this is a long routine.
*/
static int
save_tuple(PicklerObject *self, PyObject *obj)
{
Py_ssize_t len, i;
const char mark_op = MARK;
const char tuple_op = TUPLE;
const char pop_op = POP;
const char pop_mark_op = POP_MARK;
const char len2opcode[] = {EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3};
if ((len = PyTuple_Size(obj)) < 0)
return -1;
if (len == 0) {
char pdata[2];
if (self->proto) {
pdata[0] = EMPTY_TUPLE;
len = 1;
}
else {
pdata[0] = MARK;
pdata[1] = TUPLE;
len = 2;
}
if (_Pickler_Write(self, pdata, len) < 0)
return -1;
return 0;
}
/* The tuple isn't in the memo now. If it shows up there after
* saving the tuple elements, the tuple must be recursive, in
* which case we'll pop everything we put on the stack, and fetch
* its value from the memo.
*/
if (len <= 3 && self->proto >= 2) {
/* Use TUPLE{1,2,3} opcodes. */
if (store_tuple_elements(self, obj, len) < 0)
return -1;
if (PyMemoTable_Get(self->memo, obj)) {
/* pop the len elements */
for (i = 0; i < len; i++)
if (_Pickler_Write(self, &pop_op, 1) < 0)
return -1;
/* fetch from memo */
if (memo_get(self, obj) < 0)
return -1;
return 0;
}
else { /* Not recursive. */
if (_Pickler_Write(self, len2opcode + len, 1) < 0)
return -1;
}
goto memoize;
}
/* proto < 2 and len > 0, or proto >= 2 and len > 3.
* Generate MARK e1 e2 ... TUPLE
*/
if (_Pickler_Write(self, &mark_op, 1) < 0)
return -1;
if (store_tuple_elements(self, obj, len) < 0)
return -1;
if (PyMemoTable_Get(self->memo, obj)) {
/* pop the stack stuff we pushed */
if (self->bin) {
if (_Pickler_Write(self, &pop_mark_op, 1) < 0)
return -1;
}
else {
/* Note that we pop one more than len, to remove
* the MARK too.
*/
for (i = 0; i <= len; i++)
if (_Pickler_Write(self, &pop_op, 1) < 0)
return -1;
}
/* fetch from memo */
if (memo_get(self, obj) < 0)
return -1;
return 0;
}
else { /* Not recursive. */
if (_Pickler_Write(self, &tuple_op, 1) < 0)
return -1;
}
memoize:
if (memo_put(self, obj) < 0)
return -1;
return 0;
}
/* iter is an iterator giving items, and we batch up chunks of
* MARK item item ... item APPENDS
* opcode sequences. Calling code should have arranged to first create an
* empty list, or list-like object, for the APPENDS to operate on.
* Returns 0 on success, <0 on error.
*/
static int
batch_list(PicklerObject *self, PyObject *iter)
{
PyObject *obj = NULL;
PyObject *firstitem = NULL;
int i, n;
const char mark_op = MARK;
const char append_op = APPEND;
const char appends_op = APPENDS;
assert(iter != NULL);
/* XXX: I think this function could be made faster by avoiding the
iterator interface and fetching objects directly from list using
PyList_GET_ITEM.
*/
if (self->proto == 0) {
/* APPENDS isn't available; do one at a time. */
for (;;) {
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
return -1;
break;
}
i = save(self, obj, 0);
Py_DECREF(obj);
if (i < 0)
return -1;
if (_Pickler_Write(self, &append_op, 1) < 0)
return -1;
}
return 0;
}
/* proto > 0: write in batches of BATCHSIZE. */
do {
/* Get first item */
firstitem = PyIter_Next(iter);
if (firstitem == NULL) {
if (PyErr_Occurred())
goto error;
/* nothing more to add */
break;
}
/* Try to get a second item */
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
goto error;
/* Only one item to write */
if (save(self, firstitem, 0) < 0)
goto error;
if (_Pickler_Write(self, &append_op, 1) < 0)
goto error;
Py_CLEAR(firstitem);
break;
}
/* More than one item to write */
/* Pump out MARK, items, APPENDS. */
if (_Pickler_Write(self, &mark_op, 1) < 0)
goto error;
if (save(self, firstitem, 0) < 0)
goto error;
Py_CLEAR(firstitem);
n = 1;
/* Fetch and save up to BATCHSIZE items */
while (obj) {
if (save(self, obj, 0) < 0)
goto error;
Py_CLEAR(obj);
n += 1;
if (n == BATCHSIZE)
break;
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
goto error;
break;
}
}
if (_Pickler_Write(self, &appends_op, 1) < 0)
goto error;
} while (n == BATCHSIZE);
return 0;
error:
Py_XDECREF(firstitem);
Py_XDECREF(obj);
return -1;
}
/* This is a variant of batch_list() above, specialized for lists (with no
* support for list subclasses). Like batch_list(), we batch up chunks of
* MARK item item ... item APPENDS
* opcode sequences. Calling code should have arranged to first create an
* empty list, or list-like object, for the APPENDS to operate on.
* Returns 0 on success, -1 on error.
*
* This version is considerably faster than batch_list(), if less general.
*
* Note that this only works for protocols > 0.
*/
static int
batch_list_exact(PicklerObject *self, PyObject *obj)
{
PyObject *item = NULL;
Py_ssize_t this_batch, total;
const char append_op = APPEND;
const char appends_op = APPENDS;
const char mark_op = MARK;
assert(obj != NULL);
assert(self->proto > 0);
assert(PyList_CheckExact(obj));
if (PyList_GET_SIZE(obj) == 1) {
item = PyList_GET_ITEM(obj, 0);
if (save(self, item, 0) < 0)
return -1;
if (_Pickler_Write(self, &append_op, 1) < 0)
return -1;
return 0;
}
/* Write in batches of BATCHSIZE. */
total = 0;
do {
this_batch = 0;
if (_Pickler_Write(self, &mark_op, 1) < 0)
return -1;
while (total < PyList_GET_SIZE(obj)) {
item = PyList_GET_ITEM(obj, total);
if (save(self, item, 0) < 0)
return -1;
total++;
if (++this_batch == BATCHSIZE)
break;
}
if (_Pickler_Write(self, &appends_op, 1) < 0)
return -1;
} while (total < PyList_GET_SIZE(obj));
return 0;
}
static int
save_list(PicklerObject *self, PyObject *obj)
{
char header[3];
Py_ssize_t len;
int status = 0;
if (self->fast && !fast_save_enter(self, obj))
goto error;
/* Create an empty list. */
if (self->bin) {
header[0] = EMPTY_LIST;
len = 1;
}
else {
header[0] = MARK;
header[1] = LIST;
len = 2;
}
if (_Pickler_Write(self, header, len) < 0)
goto error;
/* Get list length, and bow out early if empty. */
if ((len = PyList_Size(obj)) < 0)
goto error;
if (memo_put(self, obj) < 0)
goto error;
if (len != 0) {
/* Materialize the list elements. */
if (PyList_CheckExact(obj) && self->proto > 0) {
if (Py_EnterRecursiveCall(" while pickling an object"))
goto error;
status = batch_list_exact(self, obj);
Py_LeaveRecursiveCall();
} else {
PyObject *iter = PyObject_GetIter(obj);
if (iter == NULL)
goto error;
if (Py_EnterRecursiveCall(" while pickling an object")) {
Py_DECREF(iter);
goto error;
}
status = batch_list(self, iter);
Py_LeaveRecursiveCall();
Py_DECREF(iter);
}
}
if (0) {
error:
status = -1;
}
if (self->fast && !fast_save_leave(self, obj))
status = -1;
return status;
}
/* iter is an iterator giving (key, value) pairs, and we batch up chunks of
* MARK key value ... key value SETITEMS
* opcode sequences. Calling code should have arranged to first create an
* empty dict, or dict-like object, for the SETITEMS to operate on.
* Returns 0 on success, <0 on error.
*
* This is very much like batch_list(). The difference between saving
* elements directly, and picking apart two-tuples, is so long-winded at
* the C level, though, that attempts to combine these routines were too
* ugly to bear.
*/
static int
batch_dict(PicklerObject *self, PyObject *iter)
{
PyObject *obj = NULL;
PyObject *firstitem = NULL;
int i, n;
const char mark_op = MARK;
const char setitem_op = SETITEM;
const char setitems_op = SETITEMS;
assert(iter != NULL);
if (self->proto == 0) {
/* SETITEMS isn't available; do one at a time. */
for (;;) {
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
return -1;
break;
}
if (!PyTuple_Check(obj) || PyTuple_Size(obj) != 2) {
PyErr_SetString(PyExc_TypeError, "dict items "
"iterator must return 2-tuples");
return -1;
}
i = save(self, PyTuple_GET_ITEM(obj, 0), 0);
if (i >= 0)
i = save(self, PyTuple_GET_ITEM(obj, 1), 0);
Py_DECREF(obj);
if (i < 0)
return -1;
if (_Pickler_Write(self, &setitem_op, 1) < 0)
return -1;
}
return 0;
}
/* proto > 0: write in batches of BATCHSIZE. */
do {
/* Get first item */
firstitem = PyIter_Next(iter);
if (firstitem == NULL) {
if (PyErr_Occurred())
goto error;
/* nothing more to add */
break;
}
if (!PyTuple_Check(firstitem) || PyTuple_Size(firstitem) != 2) {
PyErr_SetString(PyExc_TypeError, "dict items "
"iterator must return 2-tuples");
goto error;
}
/* Try to get a second item */
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
goto error;
/* Only one item to write */
if (save(self, PyTuple_GET_ITEM(firstitem, 0), 0) < 0)
goto error;
if (save(self, PyTuple_GET_ITEM(firstitem, 1), 0) < 0)
goto error;
if (_Pickler_Write(self, &setitem_op, 1) < 0)
goto error;
Py_CLEAR(firstitem);
break;
}
/* More than one item to write */
/* Pump out MARK, items, SETITEMS. */
if (_Pickler_Write(self, &mark_op, 1) < 0)
goto error;
if (save(self, PyTuple_GET_ITEM(firstitem, 0), 0) < 0)
goto error;
if (save(self, PyTuple_GET_ITEM(firstitem, 1), 0) < 0)
goto error;
Py_CLEAR(firstitem);
n = 1;
/* Fetch and save up to BATCHSIZE items */
while (obj) {
if (!PyTuple_Check(obj) || PyTuple_Size(obj) != 2) {
PyErr_SetString(PyExc_TypeError, "dict items "
"iterator must return 2-tuples");
goto error;
}
if (save(self, PyTuple_GET_ITEM(obj, 0), 0) < 0 ||
save(self, PyTuple_GET_ITEM(obj, 1), 0) < 0)
goto error;
Py_CLEAR(obj);
n += 1;
if (n == BATCHSIZE)
break;
obj = PyIter_Next(iter);
if (obj == NULL) {
if (PyErr_Occurred())
goto error;
break;
}
}
if (_Pickler_Write(self, &setitems_op, 1) < 0)
goto error;
} while (n == BATCHSIZE);
return 0;
error:
Py_XDECREF(firstitem);
Py_XDECREF(obj);
return -1;
}
/* This is a variant of batch_dict() above that specializes for dicts, with no
* support for dict subclasses. Like batch_dict(), we batch up chunks of
* MARK key value ... key value SETITEMS
* opcode sequences. Calling code should have arranged to first create an
* empty dict, or dict-like object, for the SETITEMS to operate on.
* Returns 0 on success, -1 on error.
*
* Note that this currently doesn't work for protocol 0.
*/
static int
batch_dict_exact(PicklerObject *self, PyObject *obj)
{
PyObject *key = NULL, *value = NULL;
int i;
Py_ssize_t dict_size, ppos = 0;
const char mark_op = MARK;
const char setitem_op = SETITEM;
const char setitems_op = SETITEMS;
assert(obj != NULL);
assert(self->proto > 0);
dict_size = PyDict_Size(obj);
/* Special-case len(d) == 1 to save space. */
if (dict_size == 1) {
PyDict_Next(obj, &ppos, &key, &value);
if (save(self, key, 0) < 0)
return -1;
if (save(self, value, 0) < 0)
return -1;
if (_Pickler_Write(self, &setitem_op, 1) < 0)
return -1;
return 0;
}
/* Write in batches of BATCHSIZE. */
do {
i = 0;
if (_Pickler_Write(self, &mark_op, 1) < 0)
return -1;
while (PyDict_Next(obj, &ppos, &key, &value)) {
if (save(self, key, 0) < 0)
return -1;
if (save(self, value, 0) < 0)
return -1;
if (++i == BATCHSIZE)
break;
}
if (_Pickler_Write(self, &setitems_op, 1) < 0)
return -1;
if (PyDict_Size(obj) != dict_size) {
PyErr_Format(
PyExc_RuntimeError,
"dictionary changed size during iteration");
return -1;
}
} while (i == BATCHSIZE);
return 0;
}
static int
save_dict(PicklerObject *self, PyObject *obj)
{
PyObject *items, *iter;
char header[3];
Py_ssize_t len;
int status = 0;
if (self->fast && !fast_save_enter(self, obj))
goto error;
/* Create an empty dict. */
if (self->bin) {
header[0] = EMPTY_DICT;
len = 1;
}
else {
header[0] = MARK;
header[1] = DICT;
len = 2;
}
if (_Pickler_Write(self, header, len) < 0)
goto error;
/* Get dict size, and bow out early if empty. */
if ((len = PyDict_Size(obj)) < 0)
goto error;
if (memo_put(self, obj) < 0)
goto error;
if (len != 0) {
/* Save the dict items. */
if (PyDict_CheckExact(obj) && self->proto > 0) {
/* We can take certain shortcuts if we know this is a dict and
not a dict subclass. */
if (Py_EnterRecursiveCall(" while pickling an object"))
goto error;
status = batch_dict_exact(self, obj);
Py_LeaveRecursiveCall();
} else {
_Py_IDENTIFIER(items);
items = _PyObject_CallMethodId(obj, &PyId_items, NULL);
if (items == NULL)
goto error;
iter = PyObject_GetIter(items);
Py_DECREF(items);
if (iter == NULL)
goto error;
if (Py_EnterRecursiveCall(" while pickling an object")) {
Py_DECREF(iter);
goto error;
}
status = batch_dict(self, iter);
Py_LeaveRecursiveCall();
Py_DECREF(iter);
}
}
if (0) {
error:
status = -1;
}
if (self->fast && !fast_save_leave(self, obj))
status = -1;
return status;
}
static int
save_set(PicklerObject *self, PyObject *obj)
{
PyObject *item;
int i;
Py_ssize_t set_size, ppos = 0;
Py_hash_t hash;
const char empty_set_op = EMPTY_SET;
const char mark_op = MARK;
const char additems_op = ADDITEMS;
if (self->proto < 4) {
PyObject *items;
PyObject *reduce_value;
int status;
items = PySequence_List(obj);
if (items == NULL) {
return -1;
}
reduce_value = Py_BuildValue("(O(O))", (PyObject*)&PySet_Type, items);
Py_DECREF(items);
if (reduce_value == NULL) {
return -1;
}
/* save_reduce() will memoize the object automatically. */
status = save_reduce(self, reduce_value, obj);
Py_DECREF(reduce_value);
return status;
}
if (_Pickler_Write(self, &empty_set_op, 1) < 0)
return -1;
if (memo_put(self, obj) < 0)
return -1;
set_size = PySet_GET_SIZE(obj);
if (set_size == 0)
return 0; /* nothing to do */
/* Write in batches of BATCHSIZE. */
do {
i = 0;
if (_Pickler_Write(self, &mark_op, 1) < 0)
return -1;
while (_PySet_NextEntry(obj, &ppos, &item, &hash)) {
if (save(self, item, 0) < 0)
return -1;
if (++i == BATCHSIZE)
break;
}
if (_Pickler_Write(self, &additems_op, 1) < 0)
return -1;
if (PySet_GET_SIZE(obj) != set_size) {
PyErr_Format(
PyExc_RuntimeError,
"set changed size during iteration");
return -1;
}
} while (i == BATCHSIZE);
return 0;
}
static int
save_frozenset(PicklerObject *self, PyObject *obj)
{
PyObject *iter;
const char mark_op = MARK;
const char frozenset_op = FROZENSET;
if (self->fast && !fast_save_enter(self, obj))
return -1;
if (self->proto < 4) {
PyObject *items;
PyObject *reduce_value;
int status;
items = PySequence_List(obj);
if (items == NULL) {
return -1;
}
reduce_value = Py_BuildValue("(O(O))", (PyObject*)&PyFrozenSet_Type,
items);
Py_DECREF(items);
if (reduce_value == NULL) {
return -1;
}
/* save_reduce() will memoize the object automatically. */
status = save_reduce(self, reduce_value, obj);
Py_DECREF(reduce_value);
return status;
}
if (_Pickler_Write(self, &mark_op, 1) < 0)
return -1;
iter = PyObject_GetIter(obj);
if (iter == NULL) {
return -1;
}
for (;;) {
PyObject *item;
item = PyIter_Next(iter);
if (item == NULL) {
if (PyErr_Occurred()) {
Py_DECREF(iter);
return -1;
}
break;
}
if (save(self, item, 0) < 0) {
Py_DECREF(item);
Py_DECREF(iter);
return -1;
}
Py_DECREF(item);
}
Py_DECREF(iter);
/* If the object is already in the memo, this means it is
recursive. In this case, throw away everything we put on the
stack, and fetch the object back from the memo. */
if (PyMemoTable_Get(self->memo, obj)) {
const char pop_mark_op = POP_MARK;
if (_Pickler_Write(self, &pop_mark_op, 1) < 0)
return -1;
if (memo_get(self, obj) < 0)
return -1;
return 0;
}
if (_Pickler_Write(self, &frozenset_op, 1) < 0)
return -1;
if (memo_put(self, obj) < 0)
return -1;
return 0;
}
static int
fix_imports(PyObject **module_name, PyObject **global_name)
{
PyObject *key;
PyObject *item;
PickleState *st = _Pickle_GetGlobalState();
key = PyTuple_Pack(2, *module_name, *global_name);
if (key == NULL)
return -1;
item = PyDict_GetItemWithError(st->name_mapping_3to2, key);
Py_DECREF(key);
if (item) {
PyObject *fixed_module_name;
PyObject *fixed_global_name;
if (!PyTuple_Check(item) || PyTuple_GET_SIZE(item) != 2) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.REVERSE_NAME_MAPPING values "
"should be 2-tuples, not %.200s",
Py_TYPE(item)->tp_name);
return -1;
}
fixed_module_name = PyTuple_GET_ITEM(item, 0);
fixed_global_name = PyTuple_GET_ITEM(item, 1);
if (!PyUnicode_Check(fixed_module_name) ||
!PyUnicode_Check(fixed_global_name)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.REVERSE_NAME_MAPPING values "
"should be pairs of str, not (%.200s, %.200s)",
Py_TYPE(fixed_module_name)->tp_name,
Py_TYPE(fixed_global_name)->tp_name);
return -1;
}
Py_CLEAR(*module_name);
Py_CLEAR(*global_name);
Py_INCREF(fixed_module_name);
Py_INCREF(fixed_global_name);
*module_name = fixed_module_name;
*global_name = fixed_global_name;
return 0;
}
else if (PyErr_Occurred()) {
return -1;
}
item = PyDict_GetItemWithError(st->import_mapping_3to2, *module_name);
if (item) {
if (!PyUnicode_Check(item)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.REVERSE_IMPORT_MAPPING values "
"should be strings, not %.200s",
Py_TYPE(item)->tp_name);
return -1;
}
Py_INCREF(item);
Py_XSETREF(*module_name, item);
}
else if (PyErr_Occurred()) {
return -1;
}
return 0;
}
static int
save_global(PicklerObject *self, PyObject *obj, PyObject *name)
{
PyObject *global_name = NULL;
PyObject *module_name = NULL;
PyObject *module = NULL;
PyObject *parent = NULL;
PyObject *dotted_path = NULL;
PyObject *lastname = NULL;
PyObject *cls;
PickleState *st = _Pickle_GetGlobalState();
int status = 0;
_Py_IDENTIFIER(__name__);
_Py_IDENTIFIER(__qualname__);
const char global_op = GLOBAL;
if (name) {
Py_INCREF(name);
global_name = name;
}
else {
global_name = _PyObject_GetAttrId(obj, &PyId___qualname__);
if (global_name == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError))
goto error;
PyErr_Clear();
}
if (global_name == NULL) {
global_name = _PyObject_GetAttrId(obj, &PyId___name__);
if (global_name == NULL)
goto error;
}
}
dotted_path = get_dotted_path(module, global_name);
if (dotted_path == NULL)
goto error;
module_name = whichmodule(obj, dotted_path);
if (module_name == NULL)
goto error;
/* XXX: Change to use the import C API directly with level=0 to disallow
relative imports.
XXX: PyImport_ImportModuleLevel could be used. However, this bypasses
builtins.__import__. Therefore, _pickle, unlike pickle.py, will ignore
custom import functions (IMHO, this would be a nice security
feature). The import C API would need to be extended to support the
extra parameters of __import__ to fix that. */
module = PyImport_Import(module_name);
if (module == NULL) {
PyErr_Format(st->PicklingError,
"Can't pickle %R: import of module %R failed",
obj, module_name);
goto error;
}
lastname = PyList_GET_ITEM(dotted_path, PyList_GET_SIZE(dotted_path)-1);
Py_INCREF(lastname);
cls = get_deep_attribute(module, dotted_path, &parent);
Py_CLEAR(dotted_path);
if (cls == NULL) {
PyErr_Format(st->PicklingError,
"Can't pickle %R: attribute lookup %S on %S failed",
obj, global_name, module_name);
goto error;
}
if (cls != obj) {
Py_DECREF(cls);
PyErr_Format(st->PicklingError,
"Can't pickle %R: it's not the same object as %S.%S",
obj, module_name, global_name);
goto error;
}
Py_DECREF(cls);
if (self->proto >= 2) {
/* See whether this is in the extension registry, and if
* so generate an EXT opcode.
*/
PyObject *extension_key;
PyObject *code_obj; /* extension code as Python object */
long code; /* extension code as C value */
char pdata[5];
Py_ssize_t n;
extension_key = PyTuple_Pack(2, module_name, global_name);
if (extension_key == NULL) {
goto error;
}
code_obj = PyDict_GetItemWithError(st->extension_registry,
extension_key);
Py_DECREF(extension_key);
/* The object is not registered in the extension registry.
This is the most likely code path. */
if (code_obj == NULL) {
if (PyErr_Occurred()) {
goto error;
}
goto gen_global;
}
/* XXX: pickle.py doesn't check neither the type, nor the range
of the value returned by the extension_registry. It should for
consistency. */
/* Verify code_obj has the right type and value. */
if (!PyLong_Check(code_obj)) {
PyErr_Format(st->PicklingError,
"Can't pickle %R: extension code %R isn't an integer",
obj, code_obj);
goto error;
}
code = PyLong_AS_LONG(code_obj);
if (code <= 0 || code > 0x7fffffffL) {
if (!PyErr_Occurred())
PyErr_Format(st->PicklingError, "Can't pickle %R: extension "
"code %ld is out of range", obj, code);
goto error;
}
/* Generate an EXT opcode. */
if (code <= 0xff) {
pdata[0] = EXT1;
pdata[1] = (unsigned char)code;
n = 2;
}
else if (code <= 0xffff) {
pdata[0] = EXT2;
pdata[1] = (unsigned char)(code & 0xff);
pdata[2] = (unsigned char)((code >> 8) & 0xff);
n = 3;
}
else {
pdata[0] = EXT4;
pdata[1] = (unsigned char)(code & 0xff);
pdata[2] = (unsigned char)((code >> 8) & 0xff);
pdata[3] = (unsigned char)((code >> 16) & 0xff);
pdata[4] = (unsigned char)((code >> 24) & 0xff);
n = 5;
}
if (_Pickler_Write(self, pdata, n) < 0)
goto error;
}
else {
gen_global:
if (parent == module) {
Py_INCREF(lastname);
Py_DECREF(global_name);
global_name = lastname;
}
if (self->proto >= 4) {
const char stack_global_op = STACK_GLOBAL;
if (save(self, module_name, 0) < 0)
goto error;
if (save(self, global_name, 0) < 0)
goto error;
if (_Pickler_Write(self, &stack_global_op, 1) < 0)
goto error;
}
else if (parent != module) {
PickleState *st = _Pickle_GetGlobalState();
PyObject *reduce_value = Py_BuildValue("(O(OO))",
st->getattr, parent, lastname);
if (reduce_value == NULL)
goto error;
status = save_reduce(self, reduce_value, NULL);
Py_DECREF(reduce_value);
if (status < 0)
goto error;
}
else {
/* Generate a normal global opcode if we are using a pickle
protocol < 4, or if the object is not registered in the
extension registry. */
PyObject *encoded;
PyObject *(*unicode_encoder)(PyObject *);
if (_Pickler_Write(self, &global_op, 1) < 0)
goto error;
/* For protocol < 3 and if the user didn't request against doing
so, we convert module names to the old 2.x module names. */
if (self->proto < 3 && self->fix_imports) {
if (fix_imports(&module_name, &global_name) < 0) {
goto error;
}
}
/* Since Python 3.0 now supports non-ASCII identifiers, we encode
both the module name and the global name using UTF-8. We do so
only when we are using the pickle protocol newer than version
3. This is to ensure compatibility with older Unpickler running
on Python 2.x. */
if (self->proto == 3) {
unicode_encoder = PyUnicode_AsUTF8String;
}
else {
unicode_encoder = PyUnicode_AsASCIIString;
}
encoded = unicode_encoder(module_name);
if (encoded == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError))
PyErr_Format(st->PicklingError,
"can't pickle module identifier '%S' using "
"pickle protocol %i",
module_name, self->proto);
goto error;
}
if (_Pickler_Write(self, PyBytes_AS_STRING(encoded),
PyBytes_GET_SIZE(encoded)) < 0) {
Py_DECREF(encoded);
goto error;
}
Py_DECREF(encoded);
if(_Pickler_Write(self, "\n", 1) < 0)
goto error;
/* Save the name of the module. */
encoded = unicode_encoder(global_name);
if (encoded == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError))
PyErr_Format(st->PicklingError,
"can't pickle global identifier '%S' using "
"pickle protocol %i",
global_name, self->proto);
goto error;
}
if (_Pickler_Write(self, PyBytes_AS_STRING(encoded),
PyBytes_GET_SIZE(encoded)) < 0) {
Py_DECREF(encoded);
goto error;
}
Py_DECREF(encoded);
if (_Pickler_Write(self, "\n", 1) < 0)
goto error;
}
/* Memoize the object. */
if (memo_put(self, obj) < 0)
goto error;
}
if (0) {
error:
status = -1;
}
Py_XDECREF(module_name);
Py_XDECREF(global_name);
Py_XDECREF(module);
Py_XDECREF(parent);
Py_XDECREF(dotted_path);
Py_XDECREF(lastname);
return status;
}
static int
save_singleton_type(PicklerObject *self, PyObject *obj, PyObject *singleton)
{
PyObject *reduce_value;
int status;
reduce_value = Py_BuildValue("O(O)", &PyType_Type, singleton);
if (reduce_value == NULL) {
return -1;
}
status = save_reduce(self, reduce_value, obj);
Py_DECREF(reduce_value);
return status;
}
static int
save_type(PicklerObject *self, PyObject *obj)
{
if (obj == (PyObject *)&_PyNone_Type) {
return save_singleton_type(self, obj, Py_None);
}
else if (obj == (PyObject *)&PyEllipsis_Type) {
return save_singleton_type(self, obj, Py_Ellipsis);
}
else if (obj == (PyObject *)&_PyNotImplemented_Type) {
return save_singleton_type(self, obj, Py_NotImplemented);
}
return save_global(self, obj, NULL);
}
static int
save_pers(PicklerObject *self, PyObject *obj)
{
PyObject *pid = NULL;
int status = 0;
const char persid_op = PERSID;
const char binpersid_op = BINPERSID;
pid = call_method(self->pers_func, self->pers_func_self, obj);
if (pid == NULL)
return -1;
if (pid != Py_None) {
if (self->bin) {
if (save(self, pid, 1) < 0 ||
_Pickler_Write(self, &binpersid_op, 1) < 0)
goto error;
}
else {
PyObject *pid_str;
pid_str = PyObject_Str(pid);
if (pid_str == NULL)
goto error;
/* XXX: Should it check whether the pid contains embedded
newlines? */
if (!PyUnicode_IS_ASCII(pid_str)) {
PyErr_SetString(_Pickle_GetGlobalState()->PicklingError,
"persistent IDs in protocol 0 must be "
"ASCII strings");
Py_DECREF(pid_str);
goto error;
}
if (_Pickler_Write(self, &persid_op, 1) < 0 ||
_Pickler_Write(self, PyUnicode_DATA(pid_str),
PyUnicode_GET_LENGTH(pid_str)) < 0 ||
_Pickler_Write(self, "\n", 1) < 0) {
Py_DECREF(pid_str);
goto error;
}
Py_DECREF(pid_str);
}
status = 1;
}
if (0) {
error:
status = -1;
}
Py_XDECREF(pid);
return status;
}
static PyObject *
get_class(PyObject *obj)
{
PyObject *cls;
_Py_IDENTIFIER(__class__);
cls = _PyObject_GetAttrId(obj, &PyId___class__);
if (cls == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_Clear();
cls = (PyObject *) Py_TYPE(obj);
Py_INCREF(cls);
}
}
return cls;
}
/* We're saving obj, and args is the 2-thru-5 tuple returned by the
* appropriate __reduce__ method for obj.
*/
static int
save_reduce(PicklerObject *self, PyObject *args, PyObject *obj)
{
PyObject *callable;
PyObject *argtup;
PyObject *state = NULL;
PyObject *listitems = Py_None;
PyObject *dictitems = Py_None;
PickleState *st = _Pickle_GetGlobalState();
Py_ssize_t size;
int use_newobj = 0, use_newobj_ex = 0;
const char reduce_op = REDUCE;
const char build_op = BUILD;
const char newobj_op = NEWOBJ;
const char newobj_ex_op = NEWOBJ_EX;
size = PyTuple_Size(args);
if (size < 2 || size > 5) {
PyErr_SetString(st->PicklingError, "tuple returned by "
"__reduce__ must contain 2 through 5 elements");
return -1;
}
if (!PyArg_UnpackTuple(args, "save_reduce", 2, 5,
&callable, &argtup, &state, &listitems, &dictitems))
return -1;
if (!PyCallable_Check(callable)) {
PyErr_SetString(st->PicklingError, "first item of the tuple "
"returned by __reduce__ must be callable");
return -1;
}
if (!PyTuple_Check(argtup)) {
PyErr_SetString(st->PicklingError, "second item of the tuple "
"returned by __reduce__ must be a tuple");
return -1;
}
if (state == Py_None)
state = NULL;
if (listitems == Py_None)
listitems = NULL;
else if (!PyIter_Check(listitems)) {
PyErr_Format(st->PicklingError, "fourth element of the tuple "
"returned by __reduce__ must be an iterator, not %s",
Py_TYPE(listitems)->tp_name);
return -1;
}
if (dictitems == Py_None)
dictitems = NULL;
else if (!PyIter_Check(dictitems)) {
PyErr_Format(st->PicklingError, "fifth element of the tuple "
"returned by __reduce__ must be an iterator, not %s",
Py_TYPE(dictitems)->tp_name);
return -1;
}
if (self->proto >= 2) {
PyObject *name;
_Py_IDENTIFIER(__name__);
name = _PyObject_GetAttrId(callable, &PyId___name__);
if (name == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
return -1;
}
PyErr_Clear();
}
else if (PyUnicode_Check(name)) {
_Py_IDENTIFIER(__newobj_ex__);
use_newobj_ex = _PyUnicode_EqualToASCIIId(
name, &PyId___newobj_ex__);
if (!use_newobj_ex) {
_Py_IDENTIFIER(__newobj__);
use_newobj = _PyUnicode_EqualToASCIIId(name, &PyId___newobj__);
}
}
Py_XDECREF(name);
}
if (use_newobj_ex) {
PyObject *cls;
PyObject *args;
PyObject *kwargs;
if (Py_SIZE(argtup) != 3) {
PyErr_Format(st->PicklingError,
"length of the NEWOBJ_EX argument tuple must be "
"exactly 3, not %zd", Py_SIZE(argtup));
return -1;
}
cls = PyTuple_GET_ITEM(argtup, 0);
if (!PyType_Check(cls)) {
PyErr_Format(st->PicklingError,
"first item from NEWOBJ_EX argument tuple must "
"be a class, not %.200s", Py_TYPE(cls)->tp_name);
return -1;
}
args = PyTuple_GET_ITEM(argtup, 1);
if (!PyTuple_Check(args)) {
PyErr_Format(st->PicklingError,
"second item from NEWOBJ_EX argument tuple must "
"be a tuple, not %.200s", Py_TYPE(args)->tp_name);
return -1;
}
kwargs = PyTuple_GET_ITEM(argtup, 2);
if (!PyDict_Check(kwargs)) {
PyErr_Format(st->PicklingError,
"third item from NEWOBJ_EX argument tuple must "
"be a dict, not %.200s", Py_TYPE(kwargs)->tp_name);
return -1;
}
if (self->proto >= 4) {
if (save(self, cls, 0) < 0 ||
save(self, args, 0) < 0 ||
save(self, kwargs, 0) < 0 ||
_Pickler_Write(self, &newobj_ex_op, 1) < 0) {
return -1;
}
}
else {
PyObject *newargs;
PyObject *cls_new;
Py_ssize_t i;
_Py_IDENTIFIER(__new__);
newargs = PyTuple_New(Py_SIZE(args) + 2);
if (newargs == NULL)
return -1;
cls_new = _PyObject_GetAttrId(cls, &PyId___new__);
if (cls_new == NULL) {
Py_DECREF(newargs);
return -1;
}
PyTuple_SET_ITEM(newargs, 0, cls_new);
Py_INCREF(cls);
PyTuple_SET_ITEM(newargs, 1, cls);
for (i = 0; i < Py_SIZE(args); i++) {
PyObject *item = PyTuple_GET_ITEM(args, i);
Py_INCREF(item);
PyTuple_SET_ITEM(newargs, i + 2, item);
}
callable = PyObject_Call(st->partial, newargs, kwargs);
Py_DECREF(newargs);
if (callable == NULL)
return -1;
newargs = PyTuple_New(0);
if (newargs == NULL) {
Py_DECREF(callable);
return -1;
}
if (save(self, callable, 0) < 0 ||
save(self, newargs, 0) < 0 ||
_Pickler_Write(self, &reduce_op, 1) < 0) {
Py_DECREF(newargs);
Py_DECREF(callable);
return -1;
}
Py_DECREF(newargs);
Py_DECREF(callable);
}
}
else if (use_newobj) {
PyObject *cls;
PyObject *newargtup;
PyObject *obj_class;
int p;
/* Sanity checks. */
if (Py_SIZE(argtup) < 1) {
PyErr_SetString(st->PicklingError, "__newobj__ arglist is empty");
return -1;
}
cls = PyTuple_GET_ITEM(argtup, 0);
if (!PyType_Check(cls)) {
PyErr_SetString(st->PicklingError, "args[0] from "
"__newobj__ args is not a type");
return -1;
}
if (obj != NULL) {
obj_class = get_class(obj);
if (obj_class == NULL) {
return -1;
}
p = obj_class != cls;
Py_DECREF(obj_class);
if (p) {
PyErr_SetString(st->PicklingError, "args[0] from "
"__newobj__ args has the wrong class");
return -1;
}
}
/* XXX: These calls save() are prone to infinite recursion. Imagine
what happen if the value returned by the __reduce__() method of
some extension type contains another object of the same type. Ouch!
Here is a quick example, that I ran into, to illustrate what I
mean:
>>> import pickle, copyreg
>>> copyreg.dispatch_table.pop(complex)
>>> pickle.dumps(1+2j)
Traceback (most recent call last):
...
RecursionError: maximum recursion depth exceeded
Removing the complex class from copyreg.dispatch_table made the
__reduce_ex__() method emit another complex object:
>>> (1+1j).__reduce_ex__(2)
(<function __newobj__ at 0xb7b71c3c>,
(<class 'complex'>, (1+1j)), None, None, None)
Thus when save() was called on newargstup (the 2nd item) recursion
ensued. Of course, the bug was in the complex class which had a
broken __getnewargs__() that emitted another complex object. But,
the point, here, is it is quite easy to end up with a broken reduce
function. */
/* Save the class and its __new__ arguments. */
if (save(self, cls, 0) < 0)
return -1;
newargtup = PyTuple_GetSlice(argtup, 1, Py_SIZE(argtup));
if (newargtup == NULL)
return -1;
p = save(self, newargtup, 0);
Py_DECREF(newargtup);
if (p < 0)
return -1;
/* Add NEWOBJ opcode. */
if (_Pickler_Write(self, &newobj_op, 1) < 0)
return -1;
}
else { /* Not using NEWOBJ. */
if (save(self, callable, 0) < 0 ||
save(self, argtup, 0) < 0 ||
_Pickler_Write(self, &reduce_op, 1) < 0)
return -1;
}
/* obj can be NULL when save_reduce() is used directly. A NULL obj means
the caller do not want to memoize the object. Not particularly useful,
but that is to mimic the behavior save_reduce() in pickle.py when
obj is None. */
if (obj != NULL) {
/* If the object is already in the memo, this means it is
recursive. In this case, throw away everything we put on the
stack, and fetch the object back from the memo. */
if (PyMemoTable_Get(self->memo, obj)) {
const char pop_op = POP;
if (_Pickler_Write(self, &pop_op, 1) < 0)
return -1;
if (memo_get(self, obj) < 0)
return -1;
return 0;
}
else if (memo_put(self, obj) < 0)
return -1;
}
if (listitems && batch_list(self, listitems) < 0)
return -1;
if (dictitems && batch_dict(self, dictitems) < 0)
return -1;
if (state) {
if (save(self, state, 0) < 0 ||
_Pickler_Write(self, &build_op, 1) < 0)
return -1;
}
return 0;
}
static int
save(PicklerObject *self, PyObject *obj, int pers_save)
{
PyTypeObject *type;
PyObject *reduce_func = NULL;
PyObject *reduce_value = NULL;
int status = 0;
if (_Pickler_OpcodeBoundary(self) < 0)
return -1;
if (Py_EnterRecursiveCall(" while pickling an object"))
return -1;
/* The extra pers_save argument is necessary to avoid calling save_pers()
on its returned object. */
if (!pers_save && self->pers_func) {
/* save_pers() returns:
-1 to signal an error;
0 if it did nothing successfully;
1 if a persistent id was saved.
*/
if ((status = save_pers(self, obj)) != 0)
goto done;
}
type = Py_TYPE(obj);
/* The old cPickle had an optimization that used switch-case statement
dispatching on the first letter of the type name. This has was removed
since benchmarks shown that this optimization was actually slowing
things down. */
/* Atom types; these aren't memoized, so don't check the memo. */
if (obj == Py_None) {
status = save_none(self, obj);
goto done;
}
else if (obj == Py_False || obj == Py_True) {
status = save_bool(self, obj);
goto done;
}
else if (type == &PyLong_Type) {
status = save_long(self, obj);
goto done;
}
else if (type == &PyFloat_Type) {
status = save_float(self, obj);
goto done;
}
/* Check the memo to see if it has the object. If so, generate
a GET (or BINGET) opcode, instead of pickling the object
once again. */
if (PyMemoTable_Get(self->memo, obj)) {
if (memo_get(self, obj) < 0)
goto error;
goto done;
}
if (type == &PyBytes_Type) {
status = save_bytes(self, obj);
goto done;
}
else if (type == &PyUnicode_Type) {
status = save_unicode(self, obj);
goto done;
}
else if (type == &PyDict_Type) {
status = save_dict(self, obj);
goto done;
}
else if (type == &PySet_Type) {
status = save_set(self, obj);
goto done;
}
else if (type == &PyFrozenSet_Type) {
status = save_frozenset(self, obj);
goto done;
}
else if (type == &PyList_Type) {
status = save_list(self, obj);
goto done;
}
else if (type == &PyTuple_Type) {
status = save_tuple(self, obj);
goto done;
}
else if (type == &PyType_Type) {
status = save_type(self, obj);
goto done;
}
else if (type == &PyFunction_Type) {
status = save_global(self, obj, NULL);
goto done;
}
/* XXX: This part needs some unit tests. */
/* Get a reduction callable, and call it. This may come from
* self.dispatch_table, copyreg.dispatch_table, the object's
* __reduce_ex__ method, or the object's __reduce__ method.
*/
if (self->dispatch_table == NULL) {
PickleState *st = _Pickle_GetGlobalState();
reduce_func = PyDict_GetItemWithError(st->dispatch_table,
(PyObject *)type);
if (reduce_func == NULL) {
if (PyErr_Occurred()) {
goto error;
}
} else {
/* PyDict_GetItemWithError() returns a borrowed reference.
Increase the reference count to be consistent with
PyObject_GetItem and _PyObject_GetAttrId used below. */
Py_INCREF(reduce_func);
}
} else {
reduce_func = PyObject_GetItem(self->dispatch_table,
(PyObject *)type);
if (reduce_func == NULL) {
if (PyErr_ExceptionMatches(PyExc_KeyError))
PyErr_Clear();
else
goto error;
}
}
if (reduce_func != NULL) {
Py_INCREF(obj);
reduce_value = _Pickle_FastCall(reduce_func, obj);
}
else if (PyType_IsSubtype(type, &PyType_Type)) {
status = save_global(self, obj, NULL);
goto done;
}
else {
_Py_IDENTIFIER(__reduce__);
_Py_IDENTIFIER(__reduce_ex__);
/* XXX: If the __reduce__ method is defined, __reduce_ex__ is
automatically defined as __reduce__. While this is convenient, this
make it impossible to know which method was actually called. Of
course, this is not a big deal. But still, it would be nice to let
the user know which method was called when something go
wrong. Incidentally, this means if __reduce_ex__ is not defined, we
don't actually have to check for a __reduce__ method. */
/* Check for a __reduce_ex__ method. */
reduce_func = _PyObject_GetAttrId(obj, &PyId___reduce_ex__);
if (reduce_func != NULL) {
PyObject *proto;
proto = PyLong_FromLong(self->proto);
if (proto != NULL) {
reduce_value = _Pickle_FastCall(reduce_func, proto);
}
}
else {
PickleState *st = _Pickle_GetGlobalState();
if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
PyErr_Clear();
}
else {
goto error;
}
/* Check for a __reduce__ method. */
reduce_func = _PyObject_GetAttrId(obj, &PyId___reduce__);
if (reduce_func != NULL) {
reduce_value = _PyObject_CallNoArg(reduce_func);
}
else {
PyErr_Format(st->PicklingError,
"can't pickle '%.200s' object: %R",
type->tp_name, obj);
goto error;
}
}
}
if (reduce_value == NULL)
goto error;
if (PyUnicode_Check(reduce_value)) {
status = save_global(self, obj, reduce_value);
goto done;
}
if (!PyTuple_Check(reduce_value)) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->PicklingError,
"__reduce__ must return a string or tuple");
goto error;
}
status = save_reduce(self, reduce_value, obj);
if (0) {
error:
status = -1;
}
done:
Py_LeaveRecursiveCall();
Py_XDECREF(reduce_func);
Py_XDECREF(reduce_value);
return status;
}
static int
dump(PicklerObject *self, PyObject *obj)
{
const char stop_op = STOP;
if (self->proto >= 2) {
char header[2];
header[0] = PROTO;
assert(self->proto >= 0 && self->proto < 256);
header[1] = (unsigned char)self->proto;
if (_Pickler_Write(self, header, 2) < 0)
return -1;
if (self->proto >= 4)
self->framing = 1;
}
if (save(self, obj, 0) < 0 ||
_Pickler_Write(self, &stop_op, 1) < 0 ||
_Pickler_CommitFrame(self) < 0)
return -1;
self->framing = 0;
return 0;
}
/*[clinic input]
_pickle.Pickler.clear_memo
Clears the pickler's "memo".
The memo is the data structure that remembers which objects the
pickler has already seen, so that shared or recursive objects are
pickled by reference and not by value. This method is useful when
re-using picklers.
[clinic start generated code]*/
static PyObject *
_pickle_Pickler_clear_memo_impl(PicklerObject *self)
/*[clinic end generated code: output=8665c8658aaa094b input=01bdad52f3d93e56]*/
{
if (self->memo)
PyMemoTable_Clear(self->memo);
Py_RETURN_NONE;
}
/*[clinic input]
_pickle.Pickler.dump
obj: object
/
Write a pickled representation of the given object to the open file.
[clinic start generated code]*/
static PyObject *
_pickle_Pickler_dump(PicklerObject *self, PyObject *obj)
/*[clinic end generated code: output=87ecad1261e02ac7 input=552eb1c0f52260d9]*/
{
/* Check whether the Pickler was initialized correctly (issue3664).
Developers often forget to call __init__() in their subclasses, which
would trigger a segfault without this check. */
if (self->write_ == NULL) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_Format(st->PicklingError,
"Pickler.__init__() was not called by %s.__init__()",
Py_TYPE(self)->tp_name);
return NULL;
}
if (_Pickler_ClearBuffer(self) < 0)
return NULL;
if (dump(self, obj) < 0)
return NULL;
if (_Pickler_FlushToFile(self) < 0)
return NULL;
Py_RETURN_NONE;
}
/*[clinic input]
_pickle.Pickler.__sizeof__ -> Py_ssize_t
Returns size in memory, in bytes.
[clinic start generated code]*/
static Py_ssize_t
_pickle_Pickler___sizeof___impl(PicklerObject *self)
/*[clinic end generated code: output=106edb3123f332e1 input=8cbbec9bd5540d42]*/
{
Py_ssize_t res, s;
res = _PyObject_SIZE(Py_TYPE(self));
if (self->memo != NULL) {
res += sizeof(PyMemoTable);
res += self->memo->mt_allocated * sizeof(PyMemoEntry);
}
if (self->output_buffer != NULL) {
s = _PySys_GetSizeOf(self->output_buffer);
if (s == -1)
return -1;
res += s;
}
return res;
}
static struct PyMethodDef Pickler_methods[] = {
_PICKLE_PICKLER_DUMP_METHODDEF
_PICKLE_PICKLER_CLEAR_MEMO_METHODDEF
_PICKLE_PICKLER___SIZEOF___METHODDEF
{NULL, NULL} /* sentinel */
};
static void
Pickler_dealloc(PicklerObject *self)
{
PyObject_GC_UnTrack(self);
Py_XDECREF(self->output_buffer);
Py_XDECREF(self->write_);
Py_XDECREF(self->pers_func);
Py_XDECREF(self->dispatch_table);
Py_XDECREF(self->fast_memo);
PyMemoTable_Del(self->memo);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static int
Pickler_traverse(PicklerObject *self, visitproc visit, void *arg)
{
Py_VISIT(self->write_);
Py_VISIT(self->pers_func);
Py_VISIT(self->dispatch_table);
Py_VISIT(self->fast_memo);
return 0;
}
static int
Pickler_clear(PicklerObject *self)
{
Py_CLEAR(self->output_buffer);
Py_CLEAR(self->write_);
Py_CLEAR(self->pers_func);
Py_CLEAR(self->dispatch_table);
Py_CLEAR(self->fast_memo);
if (self->memo != NULL) {
PyMemoTable *memo = self->memo;
self->memo = NULL;
PyMemoTable_Del(memo);
}
return 0;
}
/*[clinic input]
_pickle.Pickler.__init__
file: object
protocol: object = NULL
fix_imports: bool = True
This takes a binary file for writing a pickle data stream.
The optional *protocol* argument tells the pickler to use the given
protocol; supported protocols are 0, 1, 2, 3 and 4. The default
protocol is 3; a backward-incompatible protocol designed for Python 3.
Specifying a negative protocol version selects the highest protocol
version supported. The higher the protocol used, the more recent the
version of Python needed to read the pickle produced.
The *file* argument must have a write() method that accepts a single
bytes argument. It can thus be a file object opened for binary
writing, an io.BytesIO instance, or any other custom object that meets
this interface.
If *fix_imports* is True and protocol is less than 3, pickle will try
to map the new Python 3 names to the old module names used in Python
2, so that the pickle data stream is readable with Python 2.
[clinic start generated code]*/
static int
_pickle_Pickler___init___impl(PicklerObject *self, PyObject *file,
PyObject *protocol, int fix_imports)
/*[clinic end generated code: output=b5f31078dab17fb0 input=4faabdbc763c2389]*/
{
_Py_IDENTIFIER(persistent_id);
_Py_IDENTIFIER(dispatch_table);
/* In case of multiple __init__() calls, clear previous content. */
if (self->write_ != NULL)
(void)Pickler_clear(self);
if (_Pickler_SetProtocol(self, protocol, fix_imports) < 0)
return -1;
if (_Pickler_SetOutputStream(self, file) < 0)
return -1;
/* memo and output_buffer may have already been created in _Pickler_New */
if (self->memo == NULL) {
self->memo = PyMemoTable_New();
if (self->memo == NULL)
return -1;
}
self->output_len = 0;
if (self->output_buffer == NULL) {
self->max_output_len = WRITE_BUF_SIZE;
self->output_buffer = PyBytes_FromStringAndSize(NULL,
self->max_output_len);
if (self->output_buffer == NULL)
return -1;
}
self->fast = 0;
self->fast_nesting = 0;
self->fast_memo = NULL;
if (init_method_ref((PyObject *)self, &PyId_persistent_id,
&self->pers_func, &self->pers_func_self) < 0)
{
return -1;
}
self->dispatch_table = _PyObject_GetAttrId((PyObject *)self,
&PyId_dispatch_table);
if (self->dispatch_table == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
return -1;
}
PyErr_Clear();
}
return 0;
}
/* Define a proxy object for the Pickler's internal memo object. This is to
* avoid breaking code like:
* pickler.memo.clear()
* and
* pickler.memo = saved_memo
* Is this a good idea? Not really, but we don't want to break code that uses
* it. Note that we don't implement the entire mapping API here. This is
* intentional, as these should be treated as black-box implementation details.
*/
/*[clinic input]
_pickle.PicklerMemoProxy.clear
Remove all items from memo.
[clinic start generated code]*/
static PyObject *
_pickle_PicklerMemoProxy_clear_impl(PicklerMemoProxyObject *self)
/*[clinic end generated code: output=5fb9370d48ae8b05 input=ccc186dacd0f1405]*/
{
if (self->pickler->memo)
PyMemoTable_Clear(self->pickler->memo);
Py_RETURN_NONE;
}
/*[clinic input]
_pickle.PicklerMemoProxy.copy
Copy the memo to a new object.
[clinic start generated code]*/
static PyObject *
_pickle_PicklerMemoProxy_copy_impl(PicklerMemoProxyObject *self)
/*[clinic end generated code: output=bb83a919d29225ef input=b73043485ac30b36]*/
{
PyMemoTable *memo;
PyObject *new_memo = PyDict_New();
if (new_memo == NULL)
return NULL;
memo = self->pickler->memo;
for (size_t i = 0; i < memo->mt_allocated; ++i) {
PyMemoEntry entry = memo->mt_table[i];
if (entry.me_key != NULL) {
int status;
PyObject *key, *value;
key = PyLong_FromVoidPtr(entry.me_key);
value = Py_BuildValue("nO", entry.me_value, entry.me_key);
if (key == NULL || value == NULL) {
Py_XDECREF(key);
Py_XDECREF(value);
goto error;
}
status = PyDict_SetItem(new_memo, key, value);
Py_DECREF(key);
Py_DECREF(value);
if (status < 0)
goto error;
}
}
return new_memo;
error:
Py_XDECREF(new_memo);
return NULL;
}
/*[clinic input]
_pickle.PicklerMemoProxy.__reduce__
Implement pickle support.
[clinic start generated code]*/
static PyObject *
_pickle_PicklerMemoProxy___reduce___impl(PicklerMemoProxyObject *self)
/*[clinic end generated code: output=bebba1168863ab1d input=2f7c540e24b7aae4]*/
{
PyObject *reduce_value, *dict_args;
PyObject *contents = _pickle_PicklerMemoProxy_copy_impl(self);
if (contents == NULL)
return NULL;
reduce_value = PyTuple_New(2);
if (reduce_value == NULL) {
Py_DECREF(contents);
return NULL;
}
dict_args = PyTuple_New(1);
if (dict_args == NULL) {
Py_DECREF(contents);
Py_DECREF(reduce_value);
return NULL;
}
PyTuple_SET_ITEM(dict_args, 0, contents);
Py_INCREF((PyObject *)&PyDict_Type);
PyTuple_SET_ITEM(reduce_value, 0, (PyObject *)&PyDict_Type);
PyTuple_SET_ITEM(reduce_value, 1, dict_args);
return reduce_value;
}
static PyMethodDef picklerproxy_methods[] = {
_PICKLE_PICKLERMEMOPROXY_CLEAR_METHODDEF
_PICKLE_PICKLERMEMOPROXY_COPY_METHODDEF
_PICKLE_PICKLERMEMOPROXY___REDUCE___METHODDEF
{NULL, NULL} /* sentinel */
};
static void
PicklerMemoProxy_dealloc(PicklerMemoProxyObject *self)
{
PyObject_GC_UnTrack(self);
Py_XDECREF(self->pickler);
PyObject_GC_Del((PyObject *)self);
}
static int
PicklerMemoProxy_traverse(PicklerMemoProxyObject *self,
visitproc visit, void *arg)
{
Py_VISIT(self->pickler);
return 0;
}
static int
PicklerMemoProxy_clear(PicklerMemoProxyObject *self)
{
Py_CLEAR(self->pickler);
return 0;
}
static PyTypeObject PicklerMemoProxyType = {
PyVarObject_HEAD_INIT(NULL, 0)
"_pickle.PicklerMemoProxy", /*tp_name*/
sizeof(PicklerMemoProxyObject), /*tp_basicsize*/
0,
(destructor)PicklerMemoProxy_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
PyObject_HashNotImplemented, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
0, /* tp_doc */
(traverseproc)PicklerMemoProxy_traverse, /* tp_traverse */
(inquiry)PicklerMemoProxy_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
picklerproxy_methods, /* tp_methods */
};
static PyObject *
PicklerMemoProxy_New(PicklerObject *pickler)
{
PicklerMemoProxyObject *self;
self = PyObject_GC_New(PicklerMemoProxyObject, &PicklerMemoProxyType);
if (self == NULL)
return NULL;
Py_INCREF(pickler);
self->pickler = pickler;
PyObject_GC_Track(self);
return (PyObject *)self;
}
/*****************************************************************************/
static PyObject *
Pickler_get_memo(PicklerObject *self, void *Py_UNUSED(ignored))
{
return PicklerMemoProxy_New(self);
}
static int
Pickler_set_memo(PicklerObject *self, PyObject *obj, void *Py_UNUSED(ignored))
{
PyMemoTable *new_memo = NULL;
if (obj == NULL) {
PyErr_SetString(PyExc_TypeError,
"attribute deletion is not supported");
return -1;
}
if (Py_TYPE(obj) == &PicklerMemoProxyType) {
PicklerObject *pickler =
((PicklerMemoProxyObject *)obj)->pickler;
new_memo = PyMemoTable_Copy(pickler->memo);
if (new_memo == NULL)
return -1;
}
else if (PyDict_Check(obj)) {
Py_ssize_t i = 0;
PyObject *key, *value;
new_memo = PyMemoTable_New();
if (new_memo == NULL)
return -1;
while (PyDict_Next(obj, &i, &key, &value)) {
Py_ssize_t memo_id;
PyObject *memo_obj;
if (!PyTuple_Check(value) || Py_SIZE(value) != 2) {
PyErr_SetString(PyExc_TypeError,
"'memo' values must be 2-item tuples");
goto error;
}
memo_id = PyLong_AsSsize_t(PyTuple_GET_ITEM(value, 0));
if (memo_id == -1 && PyErr_Occurred())
goto error;
memo_obj = PyTuple_GET_ITEM(value, 1);
if (PyMemoTable_Set(new_memo, memo_obj, memo_id) < 0)
goto error;
}
}
else {
PyErr_Format(PyExc_TypeError,
"'memo' attribute must be a PicklerMemoProxy object "
"or dict, not %.200s", Py_TYPE(obj)->tp_name);
return -1;
}
PyMemoTable_Del(self->memo);
self->memo = new_memo;
return 0;
error:
if (new_memo)
PyMemoTable_Del(new_memo);
return -1;
}
static PyObject *
Pickler_get_persid(PicklerObject *self, void *Py_UNUSED(ignored))
{
if (self->pers_func == NULL) {
PyErr_SetString(PyExc_AttributeError, "persistent_id");
return NULL;
}
return reconstruct_method(self->pers_func, self->pers_func_self);
}
static int
Pickler_set_persid(PicklerObject *self, PyObject *value, void *Py_UNUSED(ignored))
{
if (value == NULL) {
PyErr_SetString(PyExc_TypeError,
"attribute deletion is not supported");
return -1;
}
if (!PyCallable_Check(value)) {
PyErr_SetString(PyExc_TypeError,
"persistent_id must be a callable taking one argument");
return -1;
}
self->pers_func_self = NULL;
Py_INCREF(value);
Py_XSETREF(self->pers_func, value);
return 0;
}
static PyMemberDef Pickler_members[] = {
{"bin", T_INT, offsetof(PicklerObject, bin)},
{"fast", T_INT, offsetof(PicklerObject, fast)},
{"dispatch_table", T_OBJECT_EX, offsetof(PicklerObject, dispatch_table)},
{NULL}
};
static PyGetSetDef Pickler_getsets[] = {
{"memo", (getter)Pickler_get_memo,
(setter)Pickler_set_memo},
{"persistent_id", (getter)Pickler_get_persid,
(setter)Pickler_set_persid},
{NULL}
};
static PyTypeObject Pickler_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_pickle.Pickler" , /*tp_name*/
sizeof(PicklerObject), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)Pickler_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
_pickle_Pickler___init____doc__, /*tp_doc*/
(traverseproc)Pickler_traverse, /*tp_traverse*/
(inquiry)Pickler_clear, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
Pickler_methods, /*tp_methods*/
Pickler_members, /*tp_members*/
Pickler_getsets, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
_pickle_Pickler___init__, /*tp_init*/
PyType_GenericAlloc, /*tp_alloc*/
PyType_GenericNew, /*tp_new*/
PyObject_GC_Del, /*tp_free*/
0, /*tp_is_gc*/
};
/* Temporary helper for calling self.find_class().
XXX: It would be nice to able to avoid Python function call overhead, by
using directly the C version of find_class(), when find_class() is not
overridden by a subclass. Although, this could become rather hackish. A
simpler optimization would be to call the C function when self is not a
subclass instance. */
static PyObject *
find_class(UnpicklerObject *self, PyObject *module_name, PyObject *global_name)
{
_Py_IDENTIFIER(find_class);
return _PyObject_CallMethodId((PyObject *)self, &PyId_find_class, "OO",
module_name, global_name);
}
static Py_ssize_t
marker(UnpicklerObject *self)
{
Py_ssize_t mark;
if (self->num_marks < 1) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError, "could not find MARK");
return -1;
}
mark = self->marks[--self->num_marks];
self->stack->mark_set = self->num_marks != 0;
self->stack->fence = self->num_marks ?
self->marks[self->num_marks - 1] : 0;
return mark;
}
static int
load_none(UnpicklerObject *self)
{
PDATA_APPEND(self->stack, Py_None, -1);
return 0;
}
static int
load_int(UnpicklerObject *self)
{
PyObject *value;
char *endptr, *s;
Py_ssize_t len;
long x;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
errno = 0;
/* XXX: Should the base argument of strtol() be explicitly set to 10?
XXX(avassalotti): Should this uses PyOS_strtol()? */
x = strtol(s, &endptr, 0);
if (errno || (*endptr != '\n' && *endptr != '\0')) {
/* Hm, maybe we've got something long. Let's try reading
* it as a Python int object. */
errno = 0;
/* XXX: Same thing about the base here. */
value = PyLong_FromString(s, NULL, 0);
if (value == NULL) {
PyErr_SetString(PyExc_ValueError,
"could not convert string to int");
return -1;
}
}
else {
if (len == 3 && (x == 0 || x == 1)) {
if ((value = PyBool_FromLong(x)) == NULL)
return -1;
}
else {
if ((value = PyLong_FromLong(x)) == NULL)
return -1;
}
}
PDATA_PUSH(self->stack, value, -1);
return 0;
}
static int
load_bool(UnpicklerObject *self, PyObject *boolean)
{
assert(boolean == Py_True || boolean == Py_False);
PDATA_APPEND(self->stack, boolean, -1);
return 0;
}
/* s contains x bytes of an unsigned little-endian integer. Return its value
* as a C Py_ssize_t, or -1 if it's higher than PY_SSIZE_T_MAX.
*/
static Py_ssize_t
calc_binsize(char *bytes, int nbytes)
{
unsigned char *s = (unsigned char *)bytes;
int i;
size_t x = 0;
if (nbytes > (int)sizeof(size_t)) {
/* Check for integer overflow. BINBYTES8 and BINUNICODE8 opcodes
* have 64-bit size that can't be represented on 32-bit platform.
*/
for (i = (int)sizeof(size_t); i < nbytes; i++) {
if (s[i])
return -1;
}
nbytes = (int)sizeof(size_t);
}
for (i = 0; i < nbytes; i++) {
x |= (size_t) s[i] << (8 * i);
}
if (x > PY_SSIZE_T_MAX)
return -1;
else
return (Py_ssize_t) x;
}
/* s contains x bytes of a little-endian integer. Return its value as a
* C int. Obscure: when x is 1 or 2, this is an unsigned little-endian
* int, but when x is 4 it's a signed one. This is a historical source
* of x-platform bugs.
*/
static long
calc_binint(char *bytes, int nbytes)
{
unsigned char *s = (unsigned char *)bytes;
Py_ssize_t i;
long x = 0;
for (i = 0; i < nbytes; i++) {
x |= (long)s[i] << (8 * i);
}
/* Unlike BININT1 and BININT2, BININT (more accurately BININT4)
* is signed, so on a box with longs bigger than 4 bytes we need
* to extend a BININT's sign bit to the full width.
*/
if (SIZEOF_LONG > 4 && nbytes == 4) {
x |= -(x & (1L << 31));
}
return x;
}
static int
load_binintx(UnpicklerObject *self, char *s, int size)
{
PyObject *value;
long x;
x = calc_binint(s, size);
if ((value = PyLong_FromLong(x)) == NULL)
return -1;
PDATA_PUSH(self->stack, value, -1);
return 0;
}
static int
load_binint(UnpicklerObject *self)
{
char *s;
if (_Unpickler_Read(self, &s, 4) < 0)
return -1;
return load_binintx(self, s, 4);
}
static int
load_binint1(UnpicklerObject *self)
{
char *s;
if (_Unpickler_Read(self, &s, 1) < 0)
return -1;
return load_binintx(self, s, 1);
}
static int
load_binint2(UnpicklerObject *self)
{
char *s;
if (_Unpickler_Read(self, &s, 2) < 0)
return -1;
return load_binintx(self, s, 2);
}
static int
load_long(UnpicklerObject *self)
{
PyObject *value;
char *s;
Py_ssize_t len;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
/* s[len-2] will usually be 'L' (and s[len-1] is '\n'); we need to remove
the 'L' before calling PyLong_FromString. In order to maintain
compatibility with Python 3.0.0, we don't actually *require*
the 'L' to be present. */
if (s[len-2] == 'L')
s[len-2] = '\0';
/* XXX: Should the base argument explicitly set to 10? */
value = PyLong_FromString(s, NULL, 0);
if (value == NULL)
return -1;
PDATA_PUSH(self->stack, value, -1);
return 0;
}
/* 'size' bytes contain the # of bytes of little-endian 256's-complement
* data following.
*/
static int
load_counted_long(UnpicklerObject *self, int size)
{
PyObject *value;
char *nbytes;
char *pdata;
assert(size == 1 || size == 4);
if (_Unpickler_Read(self, &nbytes, size) < 0)
return -1;
size = calc_binint(nbytes, size);
if (size < 0) {
PickleState *st = _Pickle_GetGlobalState();
/* Corrupt or hostile pickle -- we never write one like this */
PyErr_SetString(st->UnpicklingError,
"LONG pickle has negative byte count");
return -1;
}
if (size == 0)
value = PyLong_FromLong(0L);
else {
/* Read the raw little-endian bytes and convert. */
if (_Unpickler_Read(self, &pdata, size) < 0)
return -1;
value = _PyLong_FromByteArray((unsigned char *)pdata, (size_t)size,
1 /* little endian */ , 1 /* signed */ );
}
if (value == NULL)
return -1;
PDATA_PUSH(self->stack, value, -1);
return 0;
}
static int
load_float(UnpicklerObject *self)
{
PyObject *value;
char *endptr, *s;
Py_ssize_t len;
double d;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
errno = 0;
d = PyOS_string_to_double(s, &endptr, PyExc_OverflowError);
if (d == -1.0 && PyErr_Occurred())
return -1;
if ((endptr[0] != '\n') && (endptr[0] != '\0')) {
PyErr_SetString(PyExc_ValueError, "could not convert string to float");
return -1;
}
value = PyFloat_FromDouble(d);
if (value == NULL)
return -1;
PDATA_PUSH(self->stack, value, -1);
return 0;
}
static int
load_binfloat(UnpicklerObject *self)
{
PyObject *value;
double x;
char *s;
if (_Unpickler_Read(self, &s, 8) < 0)
return -1;
x = _PyFloat_Unpack8((unsigned char *)s, 0);
if (x == -1.0 && PyErr_Occurred())
return -1;
if ((value = PyFloat_FromDouble(x)) == NULL)
return -1;
PDATA_PUSH(self->stack, value, -1);
return 0;
}
static int
load_string(UnpicklerObject *self)
{
PyObject *bytes;
PyObject *obj;
Py_ssize_t len;
char *s, *p;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
/* Strip the newline */
len--;
/* Strip outermost quotes */
if (len >= 2 && s[0] == s[len - 1] && (s[0] == '\'' || s[0] == '"')) {
p = s + 1;
len -= 2;
}
else {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
"the STRING opcode argument must be quoted");
return -1;
}
assert(len >= 0);
/* Use the PyBytes API to decode the string, since that is what is used
to encode, and then coerce the result to Unicode. */
bytes = PyBytes_DecodeEscape(p, len, NULL, 0, NULL);
if (bytes == NULL)
return -1;
/* Leave the Python 2.x strings as bytes if the *encoding* given to the
Unpickler was 'bytes'. Otherwise, convert them to unicode. */
if (strcmp(self->encoding, "bytes") == 0) {
obj = bytes;
}
else {
obj = PyUnicode_FromEncodedObject(bytes, self->encoding, self->errors);
Py_DECREF(bytes);
if (obj == NULL) {
return -1;
}
}
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
static int
load_counted_binstring(UnpicklerObject *self, int nbytes)
{
PyObject *obj;
Py_ssize_t size;
char *s;
if (_Unpickler_Read(self, &s, nbytes) < 0)
return -1;
size = calc_binsize(s, nbytes);
if (size < 0) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_Format(st->UnpicklingError,
"BINSTRING exceeds system's maximum size of %zd bytes",
PY_SSIZE_T_MAX);
return -1;
}
if (_Unpickler_Read(self, &s, size) < 0)
return -1;
/* Convert Python 2.x strings to bytes if the *encoding* given to the
Unpickler was 'bytes'. Otherwise, convert them to unicode. */
if (strcmp(self->encoding, "bytes") == 0) {
obj = PyBytes_FromStringAndSize(s, size);
}
else {
obj = PyUnicode_Decode(s, size, self->encoding, self->errors);
}
if (obj == NULL) {
return -1;
}
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
static int
load_counted_binbytes(UnpicklerObject *self, int nbytes)
{
PyObject *bytes;
Py_ssize_t size;
char *s;
if (_Unpickler_Read(self, &s, nbytes) < 0)
return -1;
size = calc_binsize(s, nbytes);
if (size < 0) {
PyErr_Format(PyExc_OverflowError,
"BINBYTES exceeds system's maximum size of %zd bytes",
PY_SSIZE_T_MAX);
return -1;
}
if (_Unpickler_Read(self, &s, size) < 0)
return -1;
bytes = PyBytes_FromStringAndSize(s, size);
if (bytes == NULL)
return -1;
PDATA_PUSH(self->stack, bytes, -1);
return 0;
}
static int
load_unicode(UnpicklerObject *self)
{
PyObject *str;
Py_ssize_t len;
char *s;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 1)
return bad_readline();
str = PyUnicode_DecodeRawUnicodeEscape(s, len - 1, NULL);
if (str == NULL)
return -1;
PDATA_PUSH(self->stack, str, -1);
return 0;
}
static int
load_counted_binunicode(UnpicklerObject *self, int nbytes)
{
PyObject *str;
Py_ssize_t size;
char *s;
if (_Unpickler_Read(self, &s, nbytes) < 0)
return -1;
size = calc_binsize(s, nbytes);
if (size < 0) {
PyErr_Format(PyExc_OverflowError,
"BINUNICODE exceeds system's maximum size of %zd bytes",
PY_SSIZE_T_MAX);
return -1;
}
if (_Unpickler_Read(self, &s, size) < 0)
return -1;
str = PyUnicode_DecodeUTF8(s, size, "surrogatepass");
if (str == NULL)
return -1;
PDATA_PUSH(self->stack, str, -1);
return 0;
}
static int
load_counted_tuple(UnpicklerObject *self, Py_ssize_t len)
{
PyObject *tuple;
if (Py_SIZE(self->stack) < len)
return Pdata_stack_underflow(self->stack);
tuple = Pdata_poptuple(self->stack, Py_SIZE(self->stack) - len);
if (tuple == NULL)
return -1;
PDATA_PUSH(self->stack, tuple, -1);
return 0;
}
static int
load_tuple(UnpicklerObject *self)
{
Py_ssize_t i;
if ((i = marker(self)) < 0)
return -1;
return load_counted_tuple(self, Py_SIZE(self->stack) - i);
}
static int
load_empty_list(UnpicklerObject *self)
{
PyObject *list;
if ((list = PyList_New(0)) == NULL)
return -1;
PDATA_PUSH(self->stack, list, -1);
return 0;
}
static int
load_empty_dict(UnpicklerObject *self)
{
PyObject *dict;
if ((dict = PyDict_New()) == NULL)
return -1;
PDATA_PUSH(self->stack, dict, -1);
return 0;
}
static int
load_empty_set(UnpicklerObject *self)
{
PyObject *set;
if ((set = PySet_New(NULL)) == NULL)
return -1;
PDATA_PUSH(self->stack, set, -1);
return 0;
}
static int
load_list(UnpicklerObject *self)
{
PyObject *list;
Py_ssize_t i;
if ((i = marker(self)) < 0)
return -1;
list = Pdata_poplist(self->stack, i);
if (list == NULL)
return -1;
PDATA_PUSH(self->stack, list, -1);
return 0;
}
static int
load_dict(UnpicklerObject *self)
{
PyObject *dict, *key, *value;
Py_ssize_t i, j, k;
if ((i = marker(self)) < 0)
return -1;
j = Py_SIZE(self->stack);
if ((dict = PyDict_New()) == NULL)
return -1;
if ((j - i) % 2 != 0) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError, "odd number of items for DICT");
Py_DECREF(dict);
return -1;
}
for (k = i + 1; k < j; k += 2) {
key = self->stack->data[k - 1];
value = self->stack->data[k];
if (PyDict_SetItem(dict, key, value) < 0) {
Py_DECREF(dict);
return -1;
}
}
Pdata_clear(self->stack, i);
PDATA_PUSH(self->stack, dict, -1);
return 0;
}
static int
load_frozenset(UnpicklerObject *self)
{
PyObject *items;
PyObject *frozenset;
Py_ssize_t i;
if ((i = marker(self)) < 0)
return -1;
items = Pdata_poptuple(self->stack, i);
if (items == NULL)
return -1;
frozenset = PyFrozenSet_New(items);
Py_DECREF(items);
if (frozenset == NULL)
return -1;
PDATA_PUSH(self->stack, frozenset, -1);
return 0;
}
static PyObject *
instantiate(PyObject *cls, PyObject *args)
{
/* Caller must assure args are a tuple. Normally, args come from
Pdata_poptuple which packs objects from the top of the stack
into a newly created tuple. */
assert(PyTuple_Check(args));
if (!PyTuple_GET_SIZE(args) && PyType_Check(cls)) {
_Py_IDENTIFIER(__getinitargs__);
_Py_IDENTIFIER(__new__);
PyObject *func = _PyObject_GetAttrId(cls, &PyId___getinitargs__);
if (func == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
return NULL;
}
PyErr_Clear();
return _PyObject_CallMethodIdObjArgs(cls, &PyId___new__, cls, NULL);
}
Py_DECREF(func);
}
return PyObject_CallObject(cls, args);
}
static int
load_obj(UnpicklerObject *self)
{
PyObject *cls, *args, *obj = NULL;
Py_ssize_t i;
if ((i = marker(self)) < 0)
return -1;
if (Py_SIZE(self->stack) - i < 1)
return Pdata_stack_underflow(self->stack);
args = Pdata_poptuple(self->stack, i + 1);
if (args == NULL)
return -1;
PDATA_POP(self->stack, cls);
if (cls) {
obj = instantiate(cls, args);
Py_DECREF(cls);
}
Py_DECREF(args);
if (obj == NULL)
return -1;
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
static int
load_inst(UnpicklerObject *self)
{
PyObject *cls = NULL;
PyObject *args = NULL;
PyObject *obj = NULL;
PyObject *module_name;
PyObject *class_name;
Py_ssize_t len;
Py_ssize_t i;
char *s;
if ((i = marker(self)) < 0)
return -1;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
/* Here it is safe to use PyUnicode_DecodeASCII(), even though non-ASCII
identifiers are permitted in Python 3.0, since the INST opcode is only
supported by older protocols on Python 2.x. */
module_name = PyUnicode_DecodeASCII(s, len - 1, "strict");
if (module_name == NULL)
return -1;
if ((len = _Unpickler_Readline(self, &s)) >= 0) {
if (len < 2) {
Py_DECREF(module_name);
return bad_readline();
}
class_name = PyUnicode_DecodeASCII(s, len - 1, "strict");
if (class_name != NULL) {
cls = find_class(self, module_name, class_name);
Py_DECREF(class_name);
}
}
Py_DECREF(module_name);
if (cls == NULL)
return -1;
if ((args = Pdata_poptuple(self->stack, i)) != NULL) {
obj = instantiate(cls, args);
Py_DECREF(args);
}
Py_DECREF(cls);
if (obj == NULL)
return -1;
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
static int
load_newobj(UnpicklerObject *self)
{
PyObject *args = NULL;
PyObject *clsraw = NULL;
PyTypeObject *cls; /* clsraw cast to its true type */
PyObject *obj;
PickleState *st = _Pickle_GetGlobalState();
/* Stack is ... cls argtuple, and we want to call
* cls.__new__(cls, *argtuple).
*/
PDATA_POP(self->stack, args);
if (args == NULL)
goto error;
if (!PyTuple_Check(args)) {
PyErr_SetString(st->UnpicklingError,
"NEWOBJ expected an arg " "tuple.");
goto error;
}
PDATA_POP(self->stack, clsraw);
cls = (PyTypeObject *)clsraw;
if (cls == NULL)
goto error;
if (!PyType_Check(cls)) {
PyErr_SetString(st->UnpicklingError, "NEWOBJ class argument "
"isn't a type object");
goto error;
}
if (cls->tp_new == NULL) {
PyErr_SetString(st->UnpicklingError, "NEWOBJ class argument "
"has NULL tp_new");
goto error;
}
/* Call __new__. */
obj = cls->tp_new(cls, args, NULL);
if (obj == NULL)
goto error;
Py_DECREF(args);
Py_DECREF(clsraw);
PDATA_PUSH(self->stack, obj, -1);
return 0;
error:
Py_XDECREF(args);
Py_XDECREF(clsraw);
return -1;
}
static int
load_newobj_ex(UnpicklerObject *self)
{
PyObject *cls, *args, *kwargs;
PyObject *obj;
PickleState *st = _Pickle_GetGlobalState();
PDATA_POP(self->stack, kwargs);
if (kwargs == NULL) {
return -1;
}
PDATA_POP(self->stack, args);
if (args == NULL) {
Py_DECREF(kwargs);
return -1;
}
PDATA_POP(self->stack, cls);
if (cls == NULL) {
Py_DECREF(kwargs);
Py_DECREF(args);
return -1;
}
if (!PyType_Check(cls)) {
PyErr_Format(st->UnpicklingError,
"NEWOBJ_EX class argument must be a type, not %.200s",
Py_TYPE(cls)->tp_name);
goto error;
}
if (((PyTypeObject *)cls)->tp_new == NULL) {
PyErr_SetString(st->UnpicklingError,
"NEWOBJ_EX class argument doesn't have __new__");
goto error;
}
if (!PyTuple_Check(args)) {
PyErr_Format(st->UnpicklingError,
"NEWOBJ_EX args argument must be a tuple, not %.200s",
Py_TYPE(args)->tp_name);
goto error;
}
if (!PyDict_Check(kwargs)) {
PyErr_Format(st->UnpicklingError,
"NEWOBJ_EX kwargs argument must be a dict, not %.200s",
Py_TYPE(kwargs)->tp_name);
goto error;
}
obj = ((PyTypeObject *)cls)->tp_new((PyTypeObject *)cls, args, kwargs);
Py_DECREF(kwargs);
Py_DECREF(args);
Py_DECREF(cls);
if (obj == NULL) {
return -1;
}
PDATA_PUSH(self->stack, obj, -1);
return 0;
error:
Py_DECREF(kwargs);
Py_DECREF(args);
Py_DECREF(cls);
return -1;
}
static int
load_global(UnpicklerObject *self)
{
PyObject *global = NULL;
PyObject *module_name;
PyObject *global_name;
Py_ssize_t len;
char *s;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
module_name = PyUnicode_DecodeUTF8(s, len - 1, "strict");
if (!module_name)
return -1;
if ((len = _Unpickler_Readline(self, &s)) >= 0) {
if (len < 2) {
Py_DECREF(module_name);
return bad_readline();
}
global_name = PyUnicode_DecodeUTF8(s, len - 1, "strict");
if (global_name) {
global = find_class(self, module_name, global_name);
Py_DECREF(global_name);
}
}
Py_DECREF(module_name);
if (global == NULL)
return -1;
PDATA_PUSH(self->stack, global, -1);
return 0;
}
static int
load_stack_global(UnpicklerObject *self)
{
PyObject *global;
PyObject *module_name;
PyObject *global_name;
PDATA_POP(self->stack, global_name);
PDATA_POP(self->stack, module_name);
if (module_name == NULL || !PyUnicode_CheckExact(module_name) ||
global_name == NULL || !PyUnicode_CheckExact(global_name)) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError, "STACK_GLOBAL requires str");
Py_XDECREF(global_name);
Py_XDECREF(module_name);
return -1;
}
global = find_class(self, module_name, global_name);
Py_DECREF(global_name);
Py_DECREF(module_name);
if (global == NULL)
return -1;
PDATA_PUSH(self->stack, global, -1);
return 0;
}
static int
load_persid(UnpicklerObject *self)
{
PyObject *pid, *obj;
Py_ssize_t len;
char *s;
if (self->pers_func) {
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 1)
return bad_readline();
pid = PyUnicode_DecodeASCII(s, len - 1, "strict");
if (pid == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) {
PyErr_SetString(_Pickle_GetGlobalState()->UnpicklingError,
"persistent IDs in protocol 0 must be "
"ASCII strings");
}
return -1;
}
obj = call_method(self->pers_func, self->pers_func_self, pid);
Py_DECREF(pid);
if (obj == NULL)
return -1;
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
else {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
"A load persistent id instruction was encountered,\n"
"but no persistent_load function was specified.");
return -1;
}
}
static int
load_binpersid(UnpicklerObject *self)
{
PyObject *pid, *obj;
if (self->pers_func) {
PDATA_POP(self->stack, pid);
if (pid == NULL)
return -1;
obj = call_method(self->pers_func, self->pers_func_self, pid);
Py_DECREF(pid);
if (obj == NULL)
return -1;
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
else {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
"A load persistent id instruction was encountered,\n"
"but no persistent_load function was specified.");
return -1;
}
}
static int
load_pop(UnpicklerObject *self)
{
Py_ssize_t len = Py_SIZE(self->stack);
/* Note that we split the (pickle.py) stack into two stacks,
* an object stack and a mark stack. We have to be clever and
* pop the right one. We do this by looking at the top of the
* mark stack first, and only signalling a stack underflow if
* the object stack is empty and the mark stack doesn't match
* our expectations.
*/
if (self->num_marks > 0 && self->marks[self->num_marks - 1] == len) {
self->num_marks--;
self->stack->mark_set = self->num_marks != 0;
self->stack->fence = self->num_marks ?
self->marks[self->num_marks - 1] : 0;
} else if (len <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
else {
len--;
Py_DECREF(self->stack->data[len]);
Py_SIZE(self->stack) = len;
}
return 0;
}
static int
load_pop_mark(UnpicklerObject *self)
{
Py_ssize_t i;
if ((i = marker(self)) < 0)
return -1;
Pdata_clear(self->stack, i);
return 0;
}
static int
load_dup(UnpicklerObject *self)
{
PyObject *last;
Py_ssize_t len = Py_SIZE(self->stack);
if (len <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
last = self->stack->data[len - 1];
PDATA_APPEND(self->stack, last, -1);
return 0;
}
static int
load_get(UnpicklerObject *self)
{
PyObject *key, *value;
Py_ssize_t idx;
Py_ssize_t len;
char *s;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
key = PyLong_FromString(s, NULL, 10);
if (key == NULL)
return -1;
idx = PyLong_AsSsize_t(key);
if (idx == -1 && PyErr_Occurred()) {
Py_DECREF(key);
return -1;
}
value = _Unpickler_MemoGet(self, idx);
if (value == NULL) {
if (!PyErr_Occurred())
PyErr_SetObject(PyExc_KeyError, key);
Py_DECREF(key);
return -1;
}
Py_DECREF(key);
PDATA_APPEND(self->stack, value, -1);
return 0;
}
static int
load_binget(UnpicklerObject *self)
{
PyObject *value;
Py_ssize_t idx;
char *s;
if (_Unpickler_Read(self, &s, 1) < 0)
return -1;
idx = Py_CHARMASK(s[0]);
value = _Unpickler_MemoGet(self, idx);
if (value == NULL) {
PyObject *key = PyLong_FromSsize_t(idx);
if (key != NULL) {
PyErr_SetObject(PyExc_KeyError, key);
Py_DECREF(key);
}
return -1;
}
PDATA_APPEND(self->stack, value, -1);
return 0;
}
static int
load_long_binget(UnpicklerObject *self)
{
PyObject *value;
Py_ssize_t idx;
char *s;
if (_Unpickler_Read(self, &s, 4) < 0)
return -1;
idx = calc_binsize(s, 4);
value = _Unpickler_MemoGet(self, idx);
if (value == NULL) {
PyObject *key = PyLong_FromSsize_t(idx);
if (key != NULL) {
PyErr_SetObject(PyExc_KeyError, key);
Py_DECREF(key);
}
return -1;
}
PDATA_APPEND(self->stack, value, -1);
return 0;
}
/* Push an object from the extension registry (EXT[124]). nbytes is
* the number of bytes following the opcode, holding the index (code) value.
*/
static int
load_extension(UnpicklerObject *self, int nbytes)
{
char *codebytes; /* the nbytes bytes after the opcode */
long code; /* calc_binint returns long */
PyObject *py_code; /* code as a Python int */
PyObject *obj; /* the object to push */
PyObject *pair; /* (module_name, class_name) */
PyObject *module_name, *class_name;
PickleState *st = _Pickle_GetGlobalState();
assert(nbytes == 1 || nbytes == 2 || nbytes == 4);
if (_Unpickler_Read(self, &codebytes, nbytes) < 0)
return -1;
code = calc_binint(codebytes, nbytes);
if (code <= 0) { /* note that 0 is forbidden */
/* Corrupt or hostile pickle. */
PyErr_SetString(st->UnpicklingError, "EXT specifies code <= 0");
return -1;
}
/* Look for the code in the cache. */
py_code = PyLong_FromLong(code);
if (py_code == NULL)
return -1;
obj = PyDict_GetItemWithError(st->extension_cache, py_code);
if (obj != NULL) {
/* Bingo. */
Py_DECREF(py_code);
PDATA_APPEND(self->stack, obj, -1);
return 0;
}
if (PyErr_Occurred()) {
Py_DECREF(py_code);
return -1;
}
/* Look up the (module_name, class_name) pair. */
pair = PyDict_GetItemWithError(st->inverted_registry, py_code);
if (pair == NULL) {
Py_DECREF(py_code);
if (!PyErr_Occurred()) {
PyErr_Format(PyExc_ValueError, "unregistered extension "
"code %ld", code);
}
return -1;
}
/* Since the extension registry is manipulable via Python code,
* confirm that pair is really a 2-tuple of strings.
*/
if (!PyTuple_Check(pair) || PyTuple_Size(pair) != 2 ||
!PyUnicode_Check(module_name = PyTuple_GET_ITEM(pair, 0)) ||
!PyUnicode_Check(class_name = PyTuple_GET_ITEM(pair, 1))) {
Py_DECREF(py_code);
PyErr_Format(PyExc_ValueError, "_inverted_registry[%ld] "
"isn't a 2-tuple of strings", code);
return -1;
}
/* Load the object. */
obj = find_class(self, module_name, class_name);
if (obj == NULL) {
Py_DECREF(py_code);
return -1;
}
/* Cache code -> obj. */
code = PyDict_SetItem(st->extension_cache, py_code, obj);
Py_DECREF(py_code);
if (code < 0) {
Py_DECREF(obj);
return -1;
}
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
static int
load_put(UnpicklerObject *self)
{
PyObject *key, *value;
Py_ssize_t idx;
Py_ssize_t len;
char *s;
if ((len = _Unpickler_Readline(self, &s)) < 0)
return -1;
if (len < 2)
return bad_readline();
if (Py_SIZE(self->stack) <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
value = self->stack->data[Py_SIZE(self->stack) - 1];
key = PyLong_FromString(s, NULL, 10);
if (key == NULL)
return -1;
idx = PyLong_AsSsize_t(key);
Py_DECREF(key);
if (idx < 0) {
if (!PyErr_Occurred())
PyErr_SetString(PyExc_ValueError,
"negative PUT argument");
return -1;
}
return _Unpickler_MemoPut(self, idx, value);
}
static int
load_binput(UnpicklerObject *self)
{
PyObject *value;
Py_ssize_t idx;
char *s;
if (_Unpickler_Read(self, &s, 1) < 0)
return -1;
if (Py_SIZE(self->stack) <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
value = self->stack->data[Py_SIZE(self->stack) - 1];
idx = Py_CHARMASK(s[0]);
return _Unpickler_MemoPut(self, idx, value);
}
static int
load_long_binput(UnpicklerObject *self)
{
PyObject *value;
Py_ssize_t idx;
char *s;
if (_Unpickler_Read(self, &s, 4) < 0)
return -1;
if (Py_SIZE(self->stack) <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
value = self->stack->data[Py_SIZE(self->stack) - 1];
idx = calc_binsize(s, 4);
if (idx < 0) {
PyErr_SetString(PyExc_ValueError,
"negative LONG_BINPUT argument");
return -1;
}
return _Unpickler_MemoPut(self, idx, value);
}
static int
load_memoize(UnpicklerObject *self)
{
PyObject *value;
if (Py_SIZE(self->stack) <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
value = self->stack->data[Py_SIZE(self->stack) - 1];
return _Unpickler_MemoPut(self, self->memo_len, value);
}
static int
do_append(UnpicklerObject *self, Py_ssize_t x)
{
PyObject *value;
PyObject *slice;
PyObject *result;
PyObject *list;
Py_ssize_t len, i;
len = Py_SIZE(self->stack);
if (x > len || x <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
if (len == x) /* nothing to do */
return 0;
list = self->stack->data[x - 1];
if (PyList_CheckExact(list)) {
Py_ssize_t list_len;
int ret;
slice = Pdata_poplist(self->stack, x);
if (!slice)
return -1;
list_len = PyList_GET_SIZE(list);
ret = PyList_SetSlice(list, list_len, list_len, slice);
Py_DECREF(slice);
return ret;
}
else {
PyObject *extend_func;
_Py_IDENTIFIER(extend);
extend_func = _PyObject_GetAttrId(list, &PyId_extend);
if (extend_func != NULL) {
slice = Pdata_poplist(self->stack, x);
if (!slice) {
Py_DECREF(extend_func);
return -1;
}
result = _Pickle_FastCall(extend_func, slice);
Py_DECREF(extend_func);
if (result == NULL)
return -1;
Py_DECREF(result);
}
else {
PyObject *append_func;
_Py_IDENTIFIER(append);
/* Even if the PEP 307 requires extend() and append() methods,
fall back on append() if the object has no extend() method
for backward compatibility. */
PyErr_Clear();
append_func = _PyObject_GetAttrId(list, &PyId_append);
if (append_func == NULL)
return -1;
for (i = x; i < len; i++) {
value = self->stack->data[i];
result = _Pickle_FastCall(append_func, value);
if (result == NULL) {
Pdata_clear(self->stack, i + 1);
Py_SIZE(self->stack) = x;
Py_DECREF(append_func);
return -1;
}
Py_DECREF(result);
}
Py_SIZE(self->stack) = x;
Py_DECREF(append_func);
}
}
return 0;
}
static int
load_append(UnpicklerObject *self)
{
if (Py_SIZE(self->stack) - 1 <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
return do_append(self, Py_SIZE(self->stack) - 1);
}
static int
load_appends(UnpicklerObject *self)
{
Py_ssize_t i = marker(self);
if (i < 0)
return -1;
return do_append(self, i);
}
static int
do_setitems(UnpicklerObject *self, Py_ssize_t x)
{
PyObject *value, *key;
PyObject *dict;
Py_ssize_t len, i;
int status = 0;
len = Py_SIZE(self->stack);
if (x > len || x <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
if (len == x) /* nothing to do */
return 0;
if ((len - x) % 2 != 0) {
PickleState *st = _Pickle_GetGlobalState();
/* Currupt or hostile pickle -- we never write one like this. */
PyErr_SetString(st->UnpicklingError,
"odd number of items for SETITEMS");
return -1;
}
/* Here, dict does not actually need to be a PyDict; it could be anything
that supports the __setitem__ attribute. */
dict = self->stack->data[x - 1];
for (i = x + 1; i < len; i += 2) {
key = self->stack->data[i - 1];
value = self->stack->data[i];
if (PyObject_SetItem(dict, key, value) < 0) {
status = -1;
break;
}
}
Pdata_clear(self->stack, x);
return status;
}
static int
load_setitem(UnpicklerObject *self)
{
return do_setitems(self, Py_SIZE(self->stack) - 2);
}
static int
load_setitems(UnpicklerObject *self)
{
Py_ssize_t i = marker(self);
if (i < 0)
return -1;
return do_setitems(self, i);
}
static int
load_additems(UnpicklerObject *self)
{
PyObject *set;
Py_ssize_t mark, len, i;
mark = marker(self);
if (mark < 0)
return -1;
len = Py_SIZE(self->stack);
if (mark > len || mark <= self->stack->fence)
return Pdata_stack_underflow(self->stack);
if (len == mark) /* nothing to do */
return 0;
set = self->stack->data[mark - 1];
if (PySet_Check(set)) {
PyObject *items;
int status;
items = Pdata_poptuple(self->stack, mark);
if (items == NULL)
return -1;
status = _PySet_Update(set, items);
Py_DECREF(items);
return status;
}
else {
PyObject *add_func;
_Py_IDENTIFIER(add);
add_func = _PyObject_GetAttrId(set, &PyId_add);
if (add_func == NULL)
return -1;
for (i = mark; i < len; i++) {
PyObject *result;
PyObject *item;
item = self->stack->data[i];
result = _Pickle_FastCall(add_func, item);
if (result == NULL) {
Pdata_clear(self->stack, i + 1);
Py_SIZE(self->stack) = mark;
return -1;
}
Py_DECREF(result);
}
Py_SIZE(self->stack) = mark;
}
return 0;
}
static int
load_build(UnpicklerObject *self)
{
PyObject *state, *inst, *slotstate;
PyObject *setstate;
int status = 0;
_Py_IDENTIFIER(__setstate__);
/* Stack is ... instance, state. We want to leave instance at
* the stack top, possibly mutated via instance.__setstate__(state).
*/
if (Py_SIZE(self->stack) - 2 < self->stack->fence)
return Pdata_stack_underflow(self->stack);
PDATA_POP(self->stack, state);
if (state == NULL)
return -1;
inst = self->stack->data[Py_SIZE(self->stack) - 1];
setstate = _PyObject_GetAttrId(inst, &PyId___setstate__);
if (setstate == NULL) {
if (PyErr_ExceptionMatches(PyExc_AttributeError))
PyErr_Clear();
else {
Py_DECREF(state);
return -1;
}
}
else {
PyObject *result;
/* The explicit __setstate__ is responsible for everything. */
result = _Pickle_FastCall(setstate, state);
Py_DECREF(setstate);
if (result == NULL)
return -1;
Py_DECREF(result);
return 0;
}
/* A default __setstate__. First see whether state embeds a
* slot state dict too (a proto 2 addition).
*/
if (PyTuple_Check(state) && Py_SIZE(state) == 2) {
PyObject *tmp = state;
state = PyTuple_GET_ITEM(tmp, 0);
slotstate = PyTuple_GET_ITEM(tmp, 1);
Py_INCREF(state);
Py_INCREF(slotstate);
Py_DECREF(tmp);
}
else
slotstate = NULL;
/* Set inst.__dict__ from the state dict (if any). */
if (state != Py_None) {
PyObject *dict;
PyObject *d_key, *d_value;
Py_ssize_t i;
_Py_IDENTIFIER(__dict__);
if (!PyDict_Check(state)) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError, "state is not a dictionary");
goto error;
}
dict = _PyObject_GetAttrId(inst, &PyId___dict__);
if (dict == NULL)
goto error;
i = 0;
while (PyDict_Next(state, &i, &d_key, &d_value)) {
/* normally the keys for instance attributes are
interned. we should try to do that here. */
Py_INCREF(d_key);
if (PyUnicode_CheckExact(d_key))
PyUnicode_InternInPlace(&d_key);
if (PyObject_SetItem(dict, d_key, d_value) < 0) {
Py_DECREF(d_key);
goto error;
}
Py_DECREF(d_key);
}
Py_DECREF(dict);
}
/* Also set instance attributes from the slotstate dict (if any). */
if (slotstate != NULL) {
PyObject *d_key, *d_value;
Py_ssize_t i;
if (!PyDict_Check(slotstate)) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_SetString(st->UnpicklingError,
"slot state is not a dictionary");
goto error;
}
i = 0;
while (PyDict_Next(slotstate, &i, &d_key, &d_value)) {
if (PyObject_SetAttr(inst, d_key, d_value) < 0)
goto error;
}
}
if (0) {
error:
status = -1;
}
Py_DECREF(state);
Py_XDECREF(slotstate);
return status;
}
static int
load_mark(UnpicklerObject *self)
{
/* Note that we split the (pickle.py) stack into two stacks, an
* object stack and a mark stack. Here we push a mark onto the
* mark stack.
*/
if ((self->num_marks + 1) >= self->marks_size) {
size_t alloc;
/* Use the size_t type to check for overflow. */
alloc = ((size_t)self->num_marks << 1) + 20;
if (alloc > (PY_SSIZE_T_MAX / sizeof(Py_ssize_t)) ||
alloc <= ((size_t)self->num_marks + 1)) {
PyErr_NoMemory();
return -1;
}
Py_ssize_t *marks_old = self->marks;
PyMem_RESIZE(self->marks, Py_ssize_t, alloc);
if (self->marks == NULL) {
PyMem_FREE(marks_old);
self->marks_size = 0;
PyErr_NoMemory();
return -1;
}
self->marks_size = (Py_ssize_t)alloc;
}
self->stack->mark_set = 1;
self->marks[self->num_marks++] = self->stack->fence = Py_SIZE(self->stack);
return 0;
}
static int
load_reduce(UnpicklerObject *self)
{
PyObject *callable = NULL;
PyObject *argtup = NULL;
PyObject *obj = NULL;
PDATA_POP(self->stack, argtup);
if (argtup == NULL)
return -1;
PDATA_POP(self->stack, callable);
if (callable) {
obj = PyObject_CallObject(callable, argtup);
Py_DECREF(callable);
}
Py_DECREF(argtup);
if (obj == NULL)
return -1;
PDATA_PUSH(self->stack, obj, -1);
return 0;
}
/* Just raises an error if we don't know the protocol specified. PROTO
* is the first opcode for protocols >= 2.
*/
static int
load_proto(UnpicklerObject *self)
{
char *s;
int i;
if (_Unpickler_Read(self, &s, 1) < 0)
return -1;
i = (unsigned char)s[0];
if (i <= HIGHEST_PROTOCOL) {
self->proto = i;
return 0;
}
PyErr_Format(PyExc_ValueError, "unsupported pickle protocol: %d", i);
return -1;
}
static int
load_frame(UnpicklerObject *self)
{
char *s;
Py_ssize_t frame_len;
if (_Unpickler_Read(self, &s, 8) < 0)
return -1;
frame_len = calc_binsize(s, 8);
if (frame_len < 0) {
PyErr_Format(PyExc_OverflowError,
"FRAME length exceeds system's maximum of %zd bytes",
PY_SSIZE_T_MAX);
return -1;
}
if (_Unpickler_Read(self, &s, frame_len) < 0)
return -1;
/* Rewind to start of frame */
self->next_read_idx -= frame_len;
return 0;
}
static PyObject *
load(UnpicklerObject *self)
{
PyObject *value = NULL;
char *s = NULL;
self->num_marks = 0;
self->stack->mark_set = 0;
self->stack->fence = 0;
self->proto = 0;
if (Py_SIZE(self->stack))
Pdata_clear(self->stack, 0);
/* Convenient macros for the dispatch while-switch loop just below. */
#define OP(opcode, load_func) \
case opcode: if (load_func(self) < 0) break; continue;
#define OP_ARG(opcode, load_func, arg) \
case opcode: if (load_func(self, (arg)) < 0) break; continue;
while (1) {
if (_Unpickler_Read(self, &s, 1) < 0) {
PickleState *st = _Pickle_GetGlobalState();
if (PyErr_ExceptionMatches(st->UnpicklingError)) {
PyErr_Format(PyExc_EOFError, "Ran out of input");
}
return NULL;
}
switch ((enum opcode)s[0]) {
OP(NONE, load_none)
OP(BININT, load_binint)
OP(BININT1, load_binint1)
OP(BININT2, load_binint2)
OP(INT, load_int)
OP(LONG, load_long)
OP_ARG(LONG1, load_counted_long, 1)
OP_ARG(LONG4, load_counted_long, 4)
OP(FLOAT, load_float)
OP(BINFLOAT, load_binfloat)
OP_ARG(SHORT_BINBYTES, load_counted_binbytes, 1)
OP_ARG(BINBYTES, load_counted_binbytes, 4)
OP_ARG(BINBYTES8, load_counted_binbytes, 8)
OP_ARG(SHORT_BINSTRING, load_counted_binstring, 1)
OP_ARG(BINSTRING, load_counted_binstring, 4)
OP(STRING, load_string)
OP(UNICODE, load_unicode)
OP_ARG(SHORT_BINUNICODE, load_counted_binunicode, 1)
OP_ARG(BINUNICODE, load_counted_binunicode, 4)
OP_ARG(BINUNICODE8, load_counted_binunicode, 8)
OP_ARG(EMPTY_TUPLE, load_counted_tuple, 0)
OP_ARG(TUPLE1, load_counted_tuple, 1)
OP_ARG(TUPLE2, load_counted_tuple, 2)
OP_ARG(TUPLE3, load_counted_tuple, 3)
OP(TUPLE, load_tuple)
OP(EMPTY_LIST, load_empty_list)
OP(LIST, load_list)
OP(EMPTY_DICT, load_empty_dict)
OP(DICT, load_dict)
OP(EMPTY_SET, load_empty_set)
OP(ADDITEMS, load_additems)
OP(FROZENSET, load_frozenset)
OP(OBJ, load_obj)
OP(INST, load_inst)
OP(NEWOBJ, load_newobj)
OP(NEWOBJ_EX, load_newobj_ex)
OP(GLOBAL, load_global)
OP(STACK_GLOBAL, load_stack_global)
OP(APPEND, load_append)
OP(APPENDS, load_appends)
OP(BUILD, load_build)
OP(DUP, load_dup)
OP(BINGET, load_binget)
OP(LONG_BINGET, load_long_binget)
OP(GET, load_get)
OP(MARK, load_mark)
OP(BINPUT, load_binput)
OP(LONG_BINPUT, load_long_binput)
OP(PUT, load_put)
OP(MEMOIZE, load_memoize)
OP(POP, load_pop)
OP(POP_MARK, load_pop_mark)
OP(SETITEM, load_setitem)
OP(SETITEMS, load_setitems)
OP(PERSID, load_persid)
OP(BINPERSID, load_binpersid)
OP(REDUCE, load_reduce)
OP(PROTO, load_proto)
OP(FRAME, load_frame)
OP_ARG(EXT1, load_extension, 1)
OP_ARG(EXT2, load_extension, 2)
OP_ARG(EXT4, load_extension, 4)
OP_ARG(NEWTRUE, load_bool, Py_True)
OP_ARG(NEWFALSE, load_bool, Py_False)
case STOP:
break;
default:
{
PickleState *st = _Pickle_GetGlobalState();
unsigned char c = (unsigned char) *s;
if (0x20 <= c && c <= 0x7e && c != '\'' && c != '\\') {
PyErr_Format(st->UnpicklingError,
"invalid load key, '%c'.", c);
}
else {
PyErr_Format(st->UnpicklingError,
"invalid load key, '\\x%02x'.", c);
}
return NULL;
}
}
break; /* and we are done! */
}
if (PyErr_Occurred()) {
return NULL;
}
if (_Unpickler_SkipConsumed(self) < 0)
return NULL;
PDATA_POP(self->stack, value);
return value;
}
/*[clinic input]
_pickle.Unpickler.load
Load a pickle.
Read a pickled object representation from the open file object given
in the constructor, and return the reconstituted object hierarchy
specified therein.
[clinic start generated code]*/
static PyObject *
_pickle_Unpickler_load_impl(UnpicklerObject *self)
/*[clinic end generated code: output=fdcc488aad675b14 input=acbb91a42fa9b7b9]*/
{
UnpicklerObject *unpickler = (UnpicklerObject*)self;
/* Check whether the Unpickler was initialized correctly. This prevents
segfaulting if a subclass overridden __init__ with a function that does
not call Unpickler.__init__(). Here, we simply ensure that self->read_
is not NULL. */
if (unpickler->read_ == NULL) {
PickleState *st = _Pickle_GetGlobalState();
PyErr_Format(st->UnpicklingError,
"Unpickler.__init__() was not called by %s.__init__()",
Py_TYPE(unpickler)->tp_name);
return NULL;
}
return load(unpickler);
}
/* The name of find_class() is misleading. In newer pickle protocols, this
function is used for loading any global (i.e., functions), not just
classes. The name is kept only for backward compatibility. */
/*[clinic input]
_pickle.Unpickler.find_class
module_name: object
global_name: object
/
Return an object from a specified module.
If necessary, the module will be imported. Subclasses may override
this method (e.g. to restrict unpickling of arbitrary classes and
functions).
This method is called whenever a class or a function object is
needed. Both arguments passed are str objects.
[clinic start generated code]*/
static PyObject *
_pickle_Unpickler_find_class_impl(UnpicklerObject *self,
PyObject *module_name,
PyObject *global_name)
/*[clinic end generated code: output=becc08d7f9ed41e3 input=e2e6a865de093ef4]*/
{
PyObject *global;
PyObject *modules_dict;
PyObject *module;
_Py_IDENTIFIER(modules);
/* Try to map the old names used in Python 2.x to the new ones used in
Python 3.x. We do this only with old pickle protocols and when the
user has not disabled the feature. */
if (self->proto < 3 && self->fix_imports) {
PyObject *key;
PyObject *item;
PickleState *st = _Pickle_GetGlobalState();
/* Check if the global (i.e., a function or a class) was renamed
or moved to another module. */
key = PyTuple_Pack(2, module_name, global_name);
if (key == NULL)
return NULL;
item = PyDict_GetItemWithError(st->name_mapping_2to3, key);
Py_DECREF(key);
if (item) {
if (!PyTuple_Check(item) || PyTuple_GET_SIZE(item) != 2) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.NAME_MAPPING values should be "
"2-tuples, not %.200s", Py_TYPE(item)->tp_name);
return NULL;
}
module_name = PyTuple_GET_ITEM(item, 0);
global_name = PyTuple_GET_ITEM(item, 1);
if (!PyUnicode_Check(module_name) ||
!PyUnicode_Check(global_name)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.NAME_MAPPING values should be "
"pairs of str, not (%.200s, %.200s)",
Py_TYPE(module_name)->tp_name,
Py_TYPE(global_name)->tp_name);
return NULL;
}
}
else if (PyErr_Occurred()) {
return NULL;
}
else {
/* Check if the module was renamed. */
item = PyDict_GetItemWithError(st->import_mapping_2to3, module_name);
if (item) {
if (!PyUnicode_Check(item)) {
PyErr_Format(PyExc_RuntimeError,
"_compat_pickle.IMPORT_MAPPING values should be "
"strings, not %.200s", Py_TYPE(item)->tp_name);
return NULL;
}
module_name = item;
}
else if (PyErr_Occurred()) {
return NULL;
}
}
}
modules_dict = _PySys_GetObjectId(&PyId_modules);
if (modules_dict == NULL) {
PyErr_SetString(PyExc_RuntimeError, "unable to get sys.modules");
return NULL;
}
module = PyDict_GetItemWithError(modules_dict, module_name);
if (module == NULL) {
if (PyErr_Occurred())
return NULL;
module = PyImport_Import(module_name);
if (module == NULL)
return NULL;
global = getattribute(module, global_name, self->proto >= 4);
Py_DECREF(module);
}
else {
global = getattribute(module, global_name, self->proto >= 4);
}
return global;
}
/*[clinic input]
_pickle.Unpickler.__sizeof__ -> Py_ssize_t
Returns size in memory, in bytes.
[clinic start generated code]*/
static Py_ssize_t
_pickle_Unpickler___sizeof___impl(UnpicklerObject *self)
/*[clinic end generated code: output=119d9d03ad4c7651 input=13333471fdeedf5e]*/
{
Py_ssize_t res;
res = _PyObject_SIZE(Py_TYPE(self));
if (self->memo != NULL)
res += self->memo_size * sizeof(PyObject *);
if (self->marks != NULL)
res += self->marks_size * sizeof(Py_ssize_t);
if (self->input_line != NULL)
res += strlen(self->input_line) + 1;
if (self->encoding != NULL)
res += strlen(self->encoding) + 1;
if (self->errors != NULL)
res += strlen(self->errors) + 1;
return res;
}
static struct PyMethodDef Unpickler_methods[] = {
_PICKLE_UNPICKLER_LOAD_METHODDEF
_PICKLE_UNPICKLER_FIND_CLASS_METHODDEF
_PICKLE_UNPICKLER___SIZEOF___METHODDEF
{NULL, NULL} /* sentinel */
};
static void
Unpickler_dealloc(UnpicklerObject *self)
{
PyObject_GC_UnTrack((PyObject *)self);
Py_XDECREF(self->readline);
Py_XDECREF(self->read_);
Py_XDECREF(self->peek);
Py_XDECREF(self->stack);
Py_XDECREF(self->pers_func);
if (self->buffer.buf != NULL) {
PyBuffer_Release(&self->buffer);
self->buffer.buf = NULL;
}
_Unpickler_MemoCleanup(self);
PyMem_Free(self->marks);
PyMem_Free(self->input_line);
PyMem_Free(self->encoding);
PyMem_Free(self->errors);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static int
Unpickler_traverse(UnpicklerObject *self, visitproc visit, void *arg)
{
Py_VISIT(self->readline);
Py_VISIT(self->read_);
Py_VISIT(self->peek);
Py_VISIT(self->stack);
Py_VISIT(self->pers_func);
return 0;
}
static int
Unpickler_clear(UnpicklerObject *self)
{
Py_CLEAR(self->readline);
Py_CLEAR(self->read_);
Py_CLEAR(self->peek);
Py_CLEAR(self->stack);
Py_CLEAR(self->pers_func);
if (self->buffer.buf != NULL) {
PyBuffer_Release(&self->buffer);
self->buffer.buf = NULL;
}
_Unpickler_MemoCleanup(self);
PyMem_Free(self->marks);
self->marks = NULL;
PyMem_Free(self->input_line);
self->input_line = NULL;
PyMem_Free(self->encoding);
self->encoding = NULL;
PyMem_Free(self->errors);
self->errors = NULL;
return 0;
}
/*[clinic input]
_pickle.Unpickler.__init__
file: object
*
fix_imports: bool = True
encoding: str = 'ASCII'
errors: str = 'strict'
This takes a binary file for reading a pickle data stream.
The protocol version of the pickle is detected automatically, so no
protocol argument is needed. Bytes past the pickled object's
representation are ignored.
The argument *file* must have two methods, a read() method that takes
an integer argument, and a readline() method that requires no
arguments. Both methods should return bytes. Thus *file* can be a
binary file object opened for reading, an io.BytesIO object, or any
other custom object that meets this interface.
Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
which are used to control compatibility support for pickle stream
generated by Python 2. If *fix_imports* is True, pickle will try to
map the old Python 2 names to the new names used in Python 3. The
*encoding* and *errors* tell pickle how to decode 8-bit string
instances pickled by Python 2; these default to 'ASCII' and 'strict',
respectively. The *encoding* can be 'bytes' to read these 8-bit
string instances as bytes objects.
[clinic start generated code]*/
static int
_pickle_Unpickler___init___impl(UnpicklerObject *self, PyObject *file,
int fix_imports, const char *encoding,
const char *errors)
/*[clinic end generated code: output=e2c8ce748edc57b0 input=f9b7da04f5f4f335]*/
{
_Py_IDENTIFIER(persistent_load);
/* In case of multiple __init__() calls, clear previous content. */
if (self->read_ != NULL)
(void)Unpickler_clear(self);
if (_Unpickler_SetInputStream(self, file) < 0)
return -1;
if (_Unpickler_SetInputEncoding(self, encoding, errors) < 0)
return -1;
self->fix_imports = fix_imports;
if (init_method_ref((PyObject *)self, &PyId_persistent_load,
&self->pers_func, &self->pers_func_self) < 0)
{
return -1;
}
self->stack = (Pdata *)Pdata_New();
if (self->stack == NULL)
return -1;
self->memo_size = 32;
self->memo = _Unpickler_NewMemo(self->memo_size);
if (self->memo == NULL)
return -1;
self->proto = 0;
return 0;
}
/* Define a proxy object for the Unpickler's internal memo object. This is to
* avoid breaking code like:
* unpickler.memo.clear()
* and
* unpickler.memo = saved_memo
* Is this a good idea? Not really, but we don't want to break code that uses
* it. Note that we don't implement the entire mapping API here. This is
* intentional, as these should be treated as black-box implementation details.
*
* We do, however, have to implement pickling/unpickling support because of
* real-world code like cvs2svn.
*/
/*[clinic input]
_pickle.UnpicklerMemoProxy.clear
Remove all items from memo.
[clinic start generated code]*/
static PyObject *
_pickle_UnpicklerMemoProxy_clear_impl(UnpicklerMemoProxyObject *self)
/*[clinic end generated code: output=d20cd43f4ba1fb1f input=b1df7c52e7afd9bd]*/
{
_Unpickler_MemoCleanup(self->unpickler);
self->unpickler->memo = _Unpickler_NewMemo(self->unpickler->memo_size);
if (self->unpickler->memo == NULL)
return NULL;
Py_RETURN_NONE;
}
/*[clinic input]
_pickle.UnpicklerMemoProxy.copy
Copy the memo to a new object.
[clinic start generated code]*/
static PyObject *
_pickle_UnpicklerMemoProxy_copy_impl(UnpicklerMemoProxyObject *self)
/*[clinic end generated code: output=e12af7e9bc1e4c77 input=97769247ce032c1d]*/
{
size_t i;
PyObject *new_memo = PyDict_New();
if (new_memo == NULL)
return NULL;
for (i = 0; i < self->unpickler->memo_size; i++) {
int status;
PyObject *key, *value;
value = self->unpickler->memo[i];
if (value == NULL)
continue;
key = PyLong_FromSsize_t(i);
if (key == NULL)
goto error;
status = PyDict_SetItem(new_memo, key, value);
Py_DECREF(key);
if (status < 0)
goto error;
}
return new_memo;
error:
Py_DECREF(new_memo);
return NULL;
}
/*[clinic input]
_pickle.UnpicklerMemoProxy.__reduce__
Implement pickling support.
[clinic start generated code]*/
static PyObject *
_pickle_UnpicklerMemoProxy___reduce___impl(UnpicklerMemoProxyObject *self)
/*[clinic end generated code: output=6da34ac048d94cca input=6920862413407199]*/
{
PyObject *reduce_value;
PyObject *constructor_args;
PyObject *contents = _pickle_UnpicklerMemoProxy_copy_impl(self);
if (contents == NULL)
return NULL;
reduce_value = PyTuple_New(2);
if (reduce_value == NULL) {
Py_DECREF(contents);
return NULL;
}
constructor_args = PyTuple_New(1);
if (constructor_args == NULL) {
Py_DECREF(contents);
Py_DECREF(reduce_value);
return NULL;
}
PyTuple_SET_ITEM(constructor_args, 0, contents);
Py_INCREF((PyObject *)&PyDict_Type);
PyTuple_SET_ITEM(reduce_value, 0, (PyObject *)&PyDict_Type);
PyTuple_SET_ITEM(reduce_value, 1, constructor_args);
return reduce_value;
}
static PyMethodDef unpicklerproxy_methods[] = {
_PICKLE_UNPICKLERMEMOPROXY_CLEAR_METHODDEF
_PICKLE_UNPICKLERMEMOPROXY_COPY_METHODDEF
_PICKLE_UNPICKLERMEMOPROXY___REDUCE___METHODDEF
{NULL, NULL} /* sentinel */
};
static void
UnpicklerMemoProxy_dealloc(UnpicklerMemoProxyObject *self)
{
PyObject_GC_UnTrack(self);
Py_XDECREF(self->unpickler);
PyObject_GC_Del((PyObject *)self);
}
static int
UnpicklerMemoProxy_traverse(UnpicklerMemoProxyObject *self,
visitproc visit, void *arg)
{
Py_VISIT(self->unpickler);
return 0;
}
static int
UnpicklerMemoProxy_clear(UnpicklerMemoProxyObject *self)
{
Py_CLEAR(self->unpickler);
return 0;
}
static PyTypeObject UnpicklerMemoProxyType = {
PyVarObject_HEAD_INIT(NULL, 0)
"_pickle.UnpicklerMemoProxy", /*tp_name*/
sizeof(UnpicklerMemoProxyObject), /*tp_basicsize*/
0,
(destructor)UnpicklerMemoProxy_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_compare */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
PyObject_HashNotImplemented, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
0, /* tp_doc */
(traverseproc)UnpicklerMemoProxy_traverse, /* tp_traverse */
(inquiry)UnpicklerMemoProxy_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
unpicklerproxy_methods, /* tp_methods */
};
static PyObject *
UnpicklerMemoProxy_New(UnpicklerObject *unpickler)
{
UnpicklerMemoProxyObject *self;
self = PyObject_GC_New(UnpicklerMemoProxyObject,
&UnpicklerMemoProxyType);
if (self == NULL)
return NULL;
Py_INCREF(unpickler);
self->unpickler = unpickler;
PyObject_GC_Track(self);
return (PyObject *)self;
}
/*****************************************************************************/
static PyObject *
Unpickler_get_memo(UnpicklerObject *self, void *Py_UNUSED(ignored))
{
return UnpicklerMemoProxy_New(self);
}
static int
Unpickler_set_memo(UnpicklerObject *self, PyObject *obj, void *Py_UNUSED(ignored))
{
PyObject **new_memo;
size_t new_memo_size = 0;
if (obj == NULL) {
PyErr_SetString(PyExc_TypeError,
"attribute deletion is not supported");
return -1;
}
if (Py_TYPE(obj) == &UnpicklerMemoProxyType) {
UnpicklerObject *unpickler =
((UnpicklerMemoProxyObject *)obj)->unpickler;
new_memo_size = unpickler->memo_size;
new_memo = _Unpickler_NewMemo(new_memo_size);
if (new_memo == NULL)
return -1;
for (size_t i = 0; i < new_memo_size; i++) {
Py_XINCREF(unpickler->memo[i]);
new_memo[i] = unpickler->memo[i];
}
}
else if (PyDict_Check(obj)) {
Py_ssize_t i = 0;
PyObject *key, *value;
new_memo_size = PyDict_Size(obj);
new_memo = _Unpickler_NewMemo(new_memo_size);
if (new_memo == NULL)
return -1;
while (PyDict_Next(obj, &i, &key, &value)) {
Py_ssize_t idx;
if (!PyLong_Check(key)) {
PyErr_SetString(PyExc_TypeError,
"memo key must be integers");
goto error;
}
idx = PyLong_AsSsize_t(key);
if (idx == -1 && PyErr_Occurred())
goto error;
if (idx < 0) {
PyErr_SetString(PyExc_ValueError,
"memo key must be positive integers.");
goto error;
}
if (_Unpickler_MemoPut(self, idx, value) < 0)
goto error;
}
}
else {
PyErr_Format(PyExc_TypeError,
"'memo' attribute must be an UnpicklerMemoProxy object "
"or dict, not %.200s", Py_TYPE(obj)->tp_name);
return -1;
}
_Unpickler_MemoCleanup(self);
self->memo_size = new_memo_size;
self->memo = new_memo;
return 0;
error:
if (new_memo_size) {
for (size_t i = new_memo_size - 1; i != SIZE_MAX; i--) {
Py_XDECREF(new_memo[i]);
}
PyMem_FREE(new_memo);
}
return -1;
}
static PyObject *
Unpickler_get_persload(UnpicklerObject *self, void *Py_UNUSED(ignored))
{
if (self->pers_func == NULL) {
PyErr_SetString(PyExc_AttributeError, "persistent_load");
return NULL;
}
return reconstruct_method(self->pers_func, self->pers_func_self);
}
static int
Unpickler_set_persload(UnpicklerObject *self, PyObject *value, void *Py_UNUSED(ignored))
{
if (value == NULL) {
PyErr_SetString(PyExc_TypeError,
"attribute deletion is not supported");
return -1;
}
if (!PyCallable_Check(value)) {
PyErr_SetString(PyExc_TypeError,
"persistent_load must be a callable taking "
"one argument");
return -1;
}
self->pers_func_self = NULL;
Py_INCREF(value);
Py_XSETREF(self->pers_func, value);
return 0;
}
static PyGetSetDef Unpickler_getsets[] = {
{"memo", (getter)Unpickler_get_memo, (setter)Unpickler_set_memo},
{"persistent_load", (getter)Unpickler_get_persload,
(setter)Unpickler_set_persload},
{NULL}
};
static PyTypeObject Unpickler_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_pickle.Unpickler", /*tp_name*/
sizeof(UnpicklerObject), /*tp_basicsize*/
0, /*tp_itemsize*/
(destructor)Unpickler_dealloc, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
_pickle_Unpickler___init____doc__, /*tp_doc*/
(traverseproc)Unpickler_traverse, /*tp_traverse*/
(inquiry)Unpickler_clear, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
Unpickler_methods, /*tp_methods*/
0, /*tp_members*/
Unpickler_getsets, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
_pickle_Unpickler___init__, /*tp_init*/
PyType_GenericAlloc, /*tp_alloc*/
PyType_GenericNew, /*tp_new*/
PyObject_GC_Del, /*tp_free*/
0, /*tp_is_gc*/
};
/*[clinic input]
_pickle.dump
obj: object
file: object
protocol: object = NULL
*
fix_imports: bool = True
Write a pickled representation of obj to the open file object file.
This is equivalent to ``Pickler(file, protocol).dump(obj)``, but may
be more efficient.
The optional *protocol* argument tells the pickler to use the given
protocol supported protocols are 0, 1, 2, 3 and 4. The default
protocol is 3; a backward-incompatible protocol designed for Python 3.
Specifying a negative protocol version selects the highest protocol
version supported. The higher the protocol used, the more recent the
version of Python needed to read the pickle produced.
The *file* argument must have a write() method that accepts a single
bytes argument. It can thus be a file object opened for binary
writing, an io.BytesIO instance, or any other custom object that meets
this interface.
If *fix_imports* is True and protocol is less than 3, pickle will try
to map the new Python 3 names to the old module names used in Python
2, so that the pickle data stream is readable with Python 2.
[clinic start generated code]*/
static PyObject *
_pickle_dump_impl(PyObject *module, PyObject *obj, PyObject *file,
PyObject *protocol, int fix_imports)
/*[clinic end generated code: output=a4774d5fde7d34de input=830f8a64cef6f042]*/
{
PicklerObject *pickler = _Pickler_New();
if (pickler == NULL)
return NULL;
if (_Pickler_SetProtocol(pickler, protocol, fix_imports) < 0)
goto error;
if (_Pickler_SetOutputStream(pickler, file) < 0)
goto error;
if (dump(pickler, obj) < 0)
goto error;
if (_Pickler_FlushToFile(pickler) < 0)
goto error;
Py_DECREF(pickler);
Py_RETURN_NONE;
error:
Py_XDECREF(pickler);
return NULL;
}
/*[clinic input]
_pickle.dumps
obj: object
protocol: object = NULL
*
fix_imports: bool = True
Return the pickled representation of the object as a bytes object.
The optional *protocol* argument tells the pickler to use the given
protocol; supported protocols are 0, 1, 2, 3 and 4. The default
protocol is 3; a backward-incompatible protocol designed for Python 3.
Specifying a negative protocol version selects the highest protocol
version supported. The higher the protocol used, the more recent the
version of Python needed to read the pickle produced.
If *fix_imports* is True and *protocol* is less than 3, pickle will
try to map the new Python 3 names to the old module names used in
Python 2, so that the pickle data stream is readable with Python 2.
[clinic start generated code]*/
static PyObject *
_pickle_dumps_impl(PyObject *module, PyObject *obj, PyObject *protocol,
int fix_imports)
/*[clinic end generated code: output=d75d5cda456fd261 input=293dbeda181580b7]*/
{
PyObject *result;
PicklerObject *pickler = _Pickler_New();
if (pickler == NULL)
return NULL;
if (_Pickler_SetProtocol(pickler, protocol, fix_imports) < 0)
goto error;
if (dump(pickler, obj) < 0)
goto error;
result = _Pickler_GetString(pickler);
Py_DECREF(pickler);
return result;
error:
Py_XDECREF(pickler);
return NULL;
}
/*[clinic input]
_pickle.load
file: object
*
fix_imports: bool = True
encoding: str = 'ASCII'
errors: str = 'strict'
Read and return an object from the pickle data stored in a file.
This is equivalent to ``Unpickler(file).load()``, but may be more
efficient.
The protocol version of the pickle is detected automatically, so no
protocol argument is needed. Bytes past the pickled object's
representation are ignored.
The argument *file* must have two methods, a read() method that takes
an integer argument, and a readline() method that requires no
arguments. Both methods should return bytes. Thus *file* can be a
binary file object opened for reading, an io.BytesIO object, or any
other custom object that meets this interface.
Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
which are used to control compatibility support for pickle stream
generated by Python 2. If *fix_imports* is True, pickle will try to
map the old Python 2 names to the new names used in Python 3. The
*encoding* and *errors* tell pickle how to decode 8-bit string
instances pickled by Python 2; these default to 'ASCII' and 'strict',
respectively. The *encoding* can be 'bytes' to read these 8-bit
string instances as bytes objects.
[clinic start generated code]*/
static PyObject *
_pickle_load_impl(PyObject *module, PyObject *file, int fix_imports,
const char *encoding, const char *errors)
/*[clinic end generated code: output=69e298160285199e input=01b44dd3fc07afa7]*/
{
PyObject *result;
UnpicklerObject *unpickler = _Unpickler_New();
if (unpickler == NULL)
return NULL;
if (_Unpickler_SetInputStream(unpickler, file) < 0)
goto error;
if (_Unpickler_SetInputEncoding(unpickler, encoding, errors) < 0)
goto error;
unpickler->fix_imports = fix_imports;
result = load(unpickler);
Py_DECREF(unpickler);
return result;
error:
Py_XDECREF(unpickler);
return NULL;
}
/*[clinic input]
_pickle.loads
data: object
*
fix_imports: bool = True
encoding: str = 'ASCII'
errors: str = 'strict'
Read and return an object from the given pickle data.
The protocol version of the pickle is detected automatically, so no
protocol argument is needed. Bytes past the pickled object's
representation are ignored.
Optional keyword arguments are *fix_imports*, *encoding* and *errors*,
which are used to control compatibility support for pickle stream
generated by Python 2. If *fix_imports* is True, pickle will try to
map the old Python 2 names to the new names used in Python 3. The
*encoding* and *errors* tell pickle how to decode 8-bit string
instances pickled by Python 2; these default to 'ASCII' and 'strict',
respectively. The *encoding* can be 'bytes' to read these 8-bit
string instances as bytes objects.
[clinic start generated code]*/
static PyObject *
_pickle_loads_impl(PyObject *module, PyObject *data, int fix_imports,
const char *encoding, const char *errors)
/*[clinic end generated code: output=1e7cb2343f2c440f input=70605948a719feb9]*/
{
PyObject *result;
UnpicklerObject *unpickler = _Unpickler_New();
if (unpickler == NULL)
return NULL;
if (_Unpickler_SetStringInput(unpickler, data) < 0)
goto error;
if (_Unpickler_SetInputEncoding(unpickler, encoding, errors) < 0)
goto error;
unpickler->fix_imports = fix_imports;
result = load(unpickler);
Py_DECREF(unpickler);
return result;
error:
Py_XDECREF(unpickler);
return NULL;
}
static struct PyMethodDef pickle_methods[] = {
_PICKLE_DUMP_METHODDEF
_PICKLE_DUMPS_METHODDEF
_PICKLE_LOAD_METHODDEF
_PICKLE_LOADS_METHODDEF
{NULL, NULL} /* sentinel */
};
static int
pickle_clear(PyObject *m)
{
_Pickle_ClearState(_Pickle_GetState(m));
return 0;
}
static void
pickle_free(PyObject *m)
{
_Pickle_ClearState(_Pickle_GetState(m));
}
static int
pickle_traverse(PyObject *m, visitproc visit, void *arg)
{
PickleState *st = _Pickle_GetState(m);
Py_VISIT(st->PickleError);
Py_VISIT(st->PicklingError);
Py_VISIT(st->UnpicklingError);
Py_VISIT(st->dispatch_table);
Py_VISIT(st->extension_registry);
Py_VISIT(st->extension_cache);
Py_VISIT(st->inverted_registry);
Py_VISIT(st->name_mapping_2to3);
Py_VISIT(st->import_mapping_2to3);
Py_VISIT(st->name_mapping_3to2);
Py_VISIT(st->import_mapping_3to2);
Py_VISIT(st->codecs_encode);
Py_VISIT(st->getattr);
return 0;
}
static struct PyModuleDef _picklemodule = {
PyModuleDef_HEAD_INIT,
"_pickle", /* m_name */
pickle_module_doc, /* m_doc */
sizeof(PickleState), /* m_size */
pickle_methods, /* m_methods */
NULL, /* m_reload */
pickle_traverse, /* m_traverse */
pickle_clear, /* m_clear */
(freefunc)pickle_free /* m_free */
};
PyMODINIT_FUNC
PyInit__pickle(void)
{
PyObject *m;
PickleState *st;
m = PyState_FindModule(&_picklemodule);
if (m) {
Py_INCREF(m);
return m;
}
if (PyType_Ready(&Unpickler_Type) < 0)
return NULL;
if (PyType_Ready(&Pickler_Type) < 0)
return NULL;
if (PyType_Ready(&Pdata_Type) < 0)
return NULL;
if (PyType_Ready(&PicklerMemoProxyType) < 0)
return NULL;
if (PyType_Ready(&UnpicklerMemoProxyType) < 0)
return NULL;
/* Create the module and add the functions. */
m = PyModule_Create(&_picklemodule);
if (m == NULL)
return NULL;
Py_INCREF(&Pickler_Type);
if (PyModule_AddObject(m, "Pickler", (PyObject *)&Pickler_Type) < 0)
return NULL;
Py_INCREF(&Unpickler_Type);
if (PyModule_AddObject(m, "Unpickler", (PyObject *)&Unpickler_Type) < 0)
return NULL;
st = _Pickle_GetState(m);
/* Initialize the exceptions. */
st->PickleError = PyErr_NewException("_pickle.PickleError", NULL, NULL);
if (st->PickleError == NULL)
return NULL;
st->PicklingError = \
PyErr_NewException("_pickle.PicklingError", st->PickleError, NULL);
if (st->PicklingError == NULL)
return NULL;
st->UnpicklingError = \
PyErr_NewException("_pickle.UnpicklingError", st->PickleError, NULL);
if (st->UnpicklingError == NULL)
return NULL;
Py_INCREF(st->PickleError);
if (PyModule_AddObject(m, "PickleError", st->PickleError) < 0)
return NULL;
Py_INCREF(st->PicklingError);
if (PyModule_AddObject(m, "PicklingError", st->PicklingError) < 0)
return NULL;
Py_INCREF(st->UnpicklingError);
if (PyModule_AddObject(m, "UnpicklingError", st->UnpicklingError) < 0)
return NULL;
if (_Pickle_InitState(st) < 0)
return NULL;
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__pickle = {
"_pickle",
PyInit__pickle,
};
| 218,872 | 7,506 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/atexitmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pgenheaders.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pystate.h"
#include "third_party/python/Include/pythonrun.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("atexit");
PYTHON_PROVIDE("atexit._clear");
PYTHON_PROVIDE("atexit._ncallbacks");
PYTHON_PROVIDE("atexit._run_exitfuncs");
PYTHON_PROVIDE("atexit.register");
PYTHON_PROVIDE("atexit.unregister");
/*
* atexit - allow programmer to define multiple exit functions to be executed
* upon normal program termination.
*
* Translated from atexit.py by Collin Winter.
+ Copyright 2007 Python Software Foundation.
*/
/* Forward declaration (for atexit_cleanup) */
static PyObject *atexit_clear(PyObject*, PyObject*);
/* Forward declaration of module object */
static struct PyModuleDef atexitmodule;
/* ===================================================================== */
/* Callback machinery. */
typedef struct {
PyObject *func;
PyObject *args;
PyObject *kwargs;
} atexit_callback;
typedef struct {
atexit_callback **atexit_callbacks;
int ncallbacks;
int callback_len;
} atexitmodule_state;
#define GET_ATEXIT_STATE(mod) ((atexitmodule_state*)PyModule_GetState(mod))
static void
atexit_delete_cb(atexitmodule_state *modstate, int i)
{
atexit_callback *cb;
cb = modstate->atexit_callbacks[i];
modstate->atexit_callbacks[i] = NULL;
Py_DECREF(cb->func);
Py_DECREF(cb->args);
Py_XDECREF(cb->kwargs);
PyMem_Free(cb);
}
/* Clear all callbacks without calling them */
static void
atexit_cleanup(atexitmodule_state *modstate)
{
atexit_callback *cb;
int i;
for (i = 0; i < modstate->ncallbacks; i++) {
cb = modstate->atexit_callbacks[i];
if (cb == NULL)
continue;
atexit_delete_cb(modstate, i);
}
modstate->ncallbacks = 0;
}
/* Installed into pylifecycle.c's atexit mechanism */
static void
atexit_callfuncs(void)
{
PyObject *exc_type = NULL, *exc_value, *exc_tb, *r;
atexit_callback *cb;
PyObject *module;
atexitmodule_state *modstate;
int i;
module = PyState_FindModule(&atexitmodule);
if (module == NULL)
return;
modstate = GET_ATEXIT_STATE(module);
if (modstate->ncallbacks == 0)
return;
for (i = modstate->ncallbacks - 1; i >= 0; i--)
{
cb = modstate->atexit_callbacks[i];
if (cb == NULL)
continue;
r = PyObject_Call(cb->func, cb->args, cb->kwargs);
Py_XDECREF(r);
if (r == NULL) {
/* Maintain the last exception, but don't leak if there are
multiple exceptions. */
if (exc_type) {
Py_DECREF(exc_type);
Py_XDECREF(exc_value);
Py_XDECREF(exc_tb);
}
PyErr_Fetch(&exc_type, &exc_value, &exc_tb);
if (!PyErr_GivenExceptionMatches(exc_type, PyExc_SystemExit)) {
PySys_WriteStderr("Error in atexit._run_exitfuncs:\n");
PyErr_NormalizeException(&exc_type, &exc_value, &exc_tb);
PyErr_Display(exc_type, exc_value, exc_tb);
}
}
}
atexit_cleanup(modstate);
if (exc_type)
PyErr_Restore(exc_type, exc_value, exc_tb);
}
/* ===================================================================== */
/* Module methods. */
PyDoc_STRVAR(atexit_register__doc__,
"register(func, *args, **kwargs) -> func\n\
\n\
Register a function to be executed upon normal program termination\n\
\n\
func - function to be called at exit\n\
args - optional arguments to pass to func\n\
kwargs - optional keyword arguments to pass to func\n\
\n\
func is returned to facilitate usage as a decorator.");
static PyObject *
atexit_register(PyObject *self, PyObject *args, PyObject *kwargs)
{
atexitmodule_state *modstate;
atexit_callback *new_callback;
PyObject *func = NULL;
modstate = GET_ATEXIT_STATE(self);
if (modstate->ncallbacks >= modstate->callback_len) {
atexit_callback **r;
modstate->callback_len += 16;
r = (atexit_callback**)PyMem_Realloc(modstate->atexit_callbacks,
sizeof(atexit_callback*) * modstate->callback_len);
if (r == NULL)
return PyErr_NoMemory();
modstate->atexit_callbacks = r;
}
if (PyTuple_GET_SIZE(args) == 0) {
PyErr_SetString(PyExc_TypeError,
"register() takes at least 1 argument (0 given)");
return NULL;
}
func = PyTuple_GET_ITEM(args, 0);
if (!PyCallable_Check(func)) {
PyErr_SetString(PyExc_TypeError,
"the first argument must be callable");
return NULL;
}
new_callback = PyMem_Malloc(sizeof(atexit_callback));
if (new_callback == NULL)
return PyErr_NoMemory();
new_callback->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
if (new_callback->args == NULL) {
PyMem_Free(new_callback);
return NULL;
}
new_callback->func = func;
new_callback->kwargs = kwargs;
Py_INCREF(func);
Py_XINCREF(kwargs);
modstate->atexit_callbacks[modstate->ncallbacks++] = new_callback;
Py_INCREF(func);
return func;
}
PyDoc_STRVAR(atexit_run_exitfuncs__doc__,
"_run_exitfuncs() -> None\n\
\n\
Run all registered exit functions.");
static PyObject *
atexit_run_exitfuncs(PyObject *self, PyObject *unused)
{
atexit_callfuncs();
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(atexit_clear__doc__,
"_clear() -> None\n\
\n\
Clear the list of previously registered exit functions.");
static PyObject *
atexit_clear(PyObject *self, PyObject *unused)
{
atexit_cleanup(GET_ATEXIT_STATE(self));
Py_RETURN_NONE;
}
PyDoc_STRVAR(atexit_ncallbacks__doc__,
"_ncallbacks() -> int\n\
\n\
Return the number of registered exit functions.");
static PyObject *
atexit_ncallbacks(PyObject *self, PyObject *unused)
{
atexitmodule_state *modstate;
modstate = GET_ATEXIT_STATE(self);
return PyLong_FromSsize_t(modstate->ncallbacks);
}
static int
atexit_m_traverse(PyObject *self, visitproc visit, void *arg)
{
int i;
atexitmodule_state *modstate;
modstate = GET_ATEXIT_STATE(self);
for (i = 0; i < modstate->ncallbacks; i++) {
atexit_callback *cb = modstate->atexit_callbacks[i];
if (cb == NULL)
continue;
Py_VISIT(cb->func);
Py_VISIT(cb->args);
Py_VISIT(cb->kwargs);
}
return 0;
}
static int
atexit_m_clear(PyObject *self)
{
atexitmodule_state *modstate;
modstate = GET_ATEXIT_STATE(self);
atexit_cleanup(modstate);
return 0;
}
static void
atexit_free(PyObject *m)
{
atexitmodule_state *modstate;
modstate = GET_ATEXIT_STATE(m);
atexit_cleanup(modstate);
PyMem_Free(modstate->atexit_callbacks);
}
PyDoc_STRVAR(atexit_unregister__doc__,
"unregister(func) -> None\n\
\n\
Unregister an exit function which was previously registered using\n\
atexit.register\n\
\n\
func - function to be unregistered");
static PyObject *
atexit_unregister(PyObject *self, PyObject *func)
{
atexitmodule_state *modstate;
atexit_callback *cb;
int i, eq;
modstate = GET_ATEXIT_STATE(self);
for (i = 0; i < modstate->ncallbacks; i++)
{
cb = modstate->atexit_callbacks[i];
if (cb == NULL)
continue;
eq = PyObject_RichCompareBool(cb->func, func, Py_EQ);
if (eq < 0)
return NULL;
if (eq)
atexit_delete_cb(modstate, i);
}
Py_RETURN_NONE;
}
static PyMethodDef atexit_methods[] = {
{"register", (PyCFunction) atexit_register, METH_VARARGS|METH_KEYWORDS,
atexit_register__doc__},
{"_clear", (PyCFunction) atexit_clear, METH_NOARGS,
atexit_clear__doc__},
{"unregister", (PyCFunction) atexit_unregister, METH_O,
atexit_unregister__doc__},
{"_run_exitfuncs", (PyCFunction) atexit_run_exitfuncs, METH_NOARGS,
atexit_run_exitfuncs__doc__},
{"_ncallbacks", (PyCFunction) atexit_ncallbacks, METH_NOARGS,
atexit_ncallbacks__doc__},
{NULL, NULL} /* sentinel */
};
/* ===================================================================== */
/* Initialization function. */
PyDoc_STRVAR(atexit__doc__,
"allow programmer to define multiple exit functions to be executed\
upon normal program termination.\n\
\n\
Two public functions, register and unregister, are defined.\n\
");
static struct PyModuleDef atexitmodule = {
PyModuleDef_HEAD_INIT,
"atexit",
atexit__doc__,
sizeof(atexitmodule_state),
atexit_methods,
NULL,
atexit_m_traverse,
atexit_m_clear,
(freefunc)atexit_free
};
PyMODINIT_FUNC
PyInit_atexit(void)
{
PyObject *m;
atexitmodule_state *modstate;
m = PyModule_Create(&atexitmodule);
if (m == NULL)
return NULL;
modstate = GET_ATEXIT_STATE(m);
modstate->callback_len = 32;
modstate->ncallbacks = 0;
modstate->atexit_callbacks = PyMem_New(atexit_callback*,
modstate->callback_len);
if (modstate->atexit_callbacks == NULL)
return NULL;
_Py_PyAtExit(atexit_callfuncs);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_atexit = {
"atexit",
PyInit_atexit,
};
| 10,774 | 380 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/sre_lib.inc | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
/* clang-format off */
/*
* Secret Labs' Regular Expression Engine
*
* regular expression matching engine
*
* Copyright (c) 1997-2001 by Secret Labs AB. All rights reserved.
*
* See the _sre.c file for information on usage and redistribution.
*/
/* String matching engine */
/* This file is included three times, with different character settings */
LOCAL(int)
SRE(at)(SRE_STATE* state, SRE_CHAR* ptr, SRE_CODE at)
{
/* check if pointer is at given position */
Py_ssize_t thisp, thatp;
switch (at) {
case SRE_AT_BEGINNING:
case SRE_AT_BEGINNING_STRING:
return ((void*) ptr == state->beginning);
case SRE_AT_BEGINNING_LINE:
return ((void*) ptr == state->beginning ||
SRE_IS_LINEBREAK((int) ptr[-1]));
case SRE_AT_END:
return (((SRE_CHAR *)state->end - ptr == 1 &&
SRE_IS_LINEBREAK((int) ptr[0])) ||
((void*) ptr == state->end));
case SRE_AT_END_LINE:
return ((void*) ptr == state->end ||
SRE_IS_LINEBREAK((int) ptr[0]));
case SRE_AT_END_STRING:
return ((void*) ptr == state->end);
case SRE_AT_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_IS_WORD((int) ptr[0]) : 0;
return thisp != thatp;
case SRE_AT_NON_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_IS_WORD((int) ptr[0]) : 0;
return thisp == thatp;
case SRE_AT_LOC_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_LOC_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_LOC_IS_WORD((int) ptr[0]) : 0;
return thisp != thatp;
case SRE_AT_LOC_NON_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_LOC_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_LOC_IS_WORD((int) ptr[0]) : 0;
return thisp == thatp;
case SRE_AT_UNI_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_UNI_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_UNI_IS_WORD((int) ptr[0]) : 0;
return thisp != thatp;
case SRE_AT_UNI_NON_BOUNDARY:
if (state->beginning == state->end)
return 0;
thatp = ((void*) ptr > state->beginning) ?
SRE_UNI_IS_WORD((int) ptr[-1]) : 0;
thisp = ((void*) ptr < state->end) ?
SRE_UNI_IS_WORD((int) ptr[0]) : 0;
return thisp == thatp;
}
return 0;
}
LOCAL(int)
SRE(charset)(SRE_STATE* state, SRE_CODE* set, SRE_CODE ch)
{
/* check if character is a member of the given set */
int ok = 1;
for (;;) {
switch (*set++) {
case SRE_OP_FAILURE:
return !ok;
case SRE_OP_LITERAL:
/* <LITERAL> <code> */
if (ch == set[0])
return ok;
set++;
break;
case SRE_OP_CATEGORY:
/* <CATEGORY> <code> */
if (sre_category(set[0], (int) ch))
return ok;
set++;
break;
case SRE_OP_CHARSET:
/* <CHARSET> <bitmap> */
if (ch < 256 &&
(set[ch/SRE_CODE_BITS] & (1u << (ch & (SRE_CODE_BITS-1)))))
return ok;
set += 256/SRE_CODE_BITS;
break;
case SRE_OP_RANGE:
/* <RANGE> <lower> <upper> */
if (set[0] <= ch && ch <= set[1])
return ok;
set += 2;
break;
case SRE_OP_RANGE_IGNORE:
/* <RANGE_IGNORE> <lower> <upper> */
{
SRE_CODE uch;
/* ch is already lower cased */
if (set[0] <= ch && ch <= set[1])
return ok;
uch = state->upper(ch);
if (set[0] <= uch && uch <= set[1])
return ok;
set += 2;
break;
}
case SRE_OP_NEGATE:
ok = !ok;
break;
case SRE_OP_BIGCHARSET:
/* <BIGCHARSET> <blockcount> <256 blockindices> <blocks> */
{
Py_ssize_t count, block;
count = *(set++);
if (ch < 0x10000u)
block = ((unsigned char*)set)[ch >> 8];
else
block = -1;
set += 256/sizeof(SRE_CODE);
if (block >=0 &&
(set[(block * 256 + (ch & 255))/SRE_CODE_BITS] &
(1u << (ch & (SRE_CODE_BITS-1)))))
return ok;
set += count * (256/SRE_CODE_BITS);
break;
}
default:
/* internal error -- there's not much we can do about it
here, so let's just pretend it didn't match... */
return 0;
}
}
}
LOCAL(Py_ssize_t) SRE(match)(SRE_STATE* state, SRE_CODE* pattern, int match_all);
LOCAL(Py_ssize_t)
SRE(count)(SRE_STATE* state, SRE_CODE* pattern, Py_ssize_t maxcount)
{
SRE_CODE chr;
SRE_CHAR c;
SRE_CHAR* ptr = (SRE_CHAR *)state->ptr;
SRE_CHAR* end = (SRE_CHAR *)state->end;
Py_ssize_t i;
/* adjust end */
if (maxcount < end - ptr && maxcount != SRE_MAXREPEAT)
end = ptr + maxcount;
switch (pattern[0]) {
case SRE_OP_IN:
/* repeated set */
TRACE(("|%p|%p|COUNT IN\n", pattern, ptr));
while (ptr < end && SRE(charset)(state, pattern + 2, *ptr))
ptr++;
break;
case SRE_OP_ANY:
/* repeated dot wildcard. */
TRACE(("|%p|%p|COUNT ANY\n", pattern, ptr));
while (ptr < end && !SRE_IS_LINEBREAK(*ptr))
ptr++;
break;
case SRE_OP_ANY_ALL:
/* repeated dot wildcard. skip to the end of the target
string, and backtrack from there */
TRACE(("|%p|%p|COUNT ANY_ALL\n", pattern, ptr));
ptr = end;
break;
case SRE_OP_LITERAL:
/* repeated literal */
chr = pattern[1];
TRACE(("|%p|%p|COUNT LITERAL %d\n", pattern, ptr, chr));
c = (SRE_CHAR) chr;
#if SIZEOF_SRE_CHAR < 4
if ((SRE_CODE) c != chr)
; /* literal can't match: doesn't fit in char width */
else
#endif
while (ptr < end && *ptr == c)
ptr++;
break;
case SRE_OP_LITERAL_IGNORE:
/* repeated literal */
chr = pattern[1];
TRACE(("|%p|%p|COUNT LITERAL_IGNORE %d\n", pattern, ptr, chr));
while (ptr < end && (SRE_CODE) state->lower(*ptr) == chr)
ptr++;
break;
case SRE_OP_NOT_LITERAL:
/* repeated non-literal */
chr = pattern[1];
TRACE(("|%p|%p|COUNT NOT_LITERAL %d\n", pattern, ptr, chr));
c = (SRE_CHAR) chr;
#if SIZEOF_SRE_CHAR < 4
if ((SRE_CODE) c != chr)
ptr = end; /* literal can't match: doesn't fit in char width */
else
#endif
while (ptr < end && *ptr != c)
ptr++;
break;
case SRE_OP_NOT_LITERAL_IGNORE:
/* repeated non-literal */
chr = pattern[1];
TRACE(("|%p|%p|COUNT NOT_LITERAL_IGNORE %d\n", pattern, ptr, chr));
while (ptr < end && (SRE_CODE) state->lower(*ptr) != chr)
ptr++;
break;
default:
/* repeated single character pattern */
TRACE(("|%p|%p|COUNT SUBPATTERN\n", pattern, ptr));
while ((SRE_CHAR*) state->ptr < end) {
i = SRE(match)(state, pattern, 0);
if (i < 0)
return i;
if (!i)
break;
}
TRACE(("|%p|%p|COUNT %" PY_FORMAT_SIZE_T "d\n", pattern, ptr,
(SRE_CHAR*) state->ptr - ptr));
return (SRE_CHAR*) state->ptr - ptr;
}
TRACE(("|%p|%p|COUNT %" PY_FORMAT_SIZE_T "d\n", pattern, ptr,
ptr - (SRE_CHAR*) state->ptr));
return ptr - (SRE_CHAR*) state->ptr;
}
#if 0 /* not used in this release */
LOCAL(int)
SRE(info)(SRE_STATE* state, SRE_CODE* pattern)
{
/* check if an SRE_OP_INFO block matches at the current position.
returns the number of SRE_CODE objects to skip if successful, 0
if no match */
SRE_CHAR* end = (SRE_CHAR*) state->end;
SRE_CHAR* ptr = (SRE_CHAR*) state->ptr;
Py_ssize_t i;
/* check minimal length */
if (pattern[3] && end - ptr < pattern[3])
return 0;
/* check known prefix */
if (pattern[2] & SRE_INFO_PREFIX && pattern[5] > 1) {
/* <length> <skip> <prefix data> <overlap data> */
for (i = 0; i < pattern[5]; i++)
if ((SRE_CODE) ptr[i] != pattern[7 + i])
return 0;
return pattern[0] + 2 * pattern[6];
}
return pattern[0];
}
#endif
/* The macros below should be used to protect recursive SRE(match)()
* calls that *failed* and do *not* return immediately (IOW, those
* that will backtrack). Explaining:
*
* - Recursive SRE(match)() returned true: that's usually a success
* (besides atypical cases like ASSERT_NOT), therefore there's no
* reason to restore lastmark;
*
* - Recursive SRE(match)() returned false but the current SRE(match)()
* is returning to the caller: If the current SRE(match)() is the
* top function of the recursion, returning false will be a matching
* failure, and it doesn't matter where lastmark is pointing to.
* If it's *not* the top function, it will be a recursive SRE(match)()
* failure by itself, and the calling SRE(match)() will have to deal
* with the failure by the same rules explained here (it will restore
* lastmark by itself if necessary);
*
* - Recursive SRE(match)() returned false, and will continue the
* outside 'for' loop: must be protected when breaking, since the next
* OP could potentially depend on lastmark;
*
* - Recursive SRE(match)() returned false, and will be called again
* inside a local for/while loop: must be protected between each
* loop iteration, since the recursive SRE(match)() could do anything,
* and could potentially depend on lastmark.
*
* For more information, check the discussion at SF patch #712900.
*/
#define LASTMARK_SAVE() \
do { \
ctx->lastmark = state->lastmark; \
ctx->lastindex = state->lastindex; \
} while (0)
#define LASTMARK_RESTORE() \
do { \
state->lastmark = ctx->lastmark; \
state->lastindex = ctx->lastindex; \
} while (0)
#define RETURN_ERROR(i) do { return i; } while(0)
#define RETURN_FAILURE do { ret = 0; goto exit; } while(0)
#define RETURN_SUCCESS do { ret = 1; goto exit; } while(0)
#define RETURN_ON_ERROR(i) \
do { if (i < 0) RETURN_ERROR(i); } while (0)
#define RETURN_ON_SUCCESS(i) \
do { RETURN_ON_ERROR(i); if (i > 0) RETURN_SUCCESS; } while (0)
#define RETURN_ON_FAILURE(i) \
do { RETURN_ON_ERROR(i); if (i == 0) RETURN_FAILURE; } while (0)
#define DATA_STACK_ALLOC(state, type, ptr) \
do { \
alloc_pos = state->data_stack_base; \
TRACE(("allocating %s in %" PY_FORMAT_SIZE_T "d " \
"(%" PY_FORMAT_SIZE_T "d)\n", \
Py_STRINGIFY(type), alloc_pos, sizeof(type))); \
if (sizeof(type) > state->data_stack_size - alloc_pos) { \
int j = data_stack_grow(state, sizeof(type)); \
if (j < 0) return j; \
if (ctx_pos != -1) \
DATA_STACK_LOOKUP_AT(state, SRE(match_context), ctx, ctx_pos); \
} \
ptr = (type*)(state->data_stack+alloc_pos); \
state->data_stack_base += sizeof(type); \
} while (0)
#define DATA_STACK_LOOKUP_AT(state, type, ptr, pos) \
do { \
TRACE(("looking up %s at %" PY_FORMAT_SIZE_T "d\n", Py_STRINGIFY(type), pos)); \
ptr = (type*)(state->data_stack+pos); \
} while (0)
#define DATA_STACK_PUSH(state, data, size) \
do { \
TRACE(("copy data in %p to %" PY_FORMAT_SIZE_T "d " \
"(%" PY_FORMAT_SIZE_T "d)\n", \
data, state->data_stack_base, size)); \
if (size > state->data_stack_size - state->data_stack_base) { \
int j = data_stack_grow(state, size); \
if (j < 0) return j; \
if (ctx_pos != -1) \
DATA_STACK_LOOKUP_AT(state, SRE(match_context), ctx, ctx_pos); \
} \
memcpy(state->data_stack+state->data_stack_base, data, size); \
state->data_stack_base += size; \
} while (0)
#define DATA_STACK_POP(state, data, size, discard) \
do { \
TRACE(("copy data to %p from %" PY_FORMAT_SIZE_T "d " \
"(%" PY_FORMAT_SIZE_T "d)\n", \
data, state->data_stack_base-size, size)); \
memcpy(data, state->data_stack+state->data_stack_base-size, size); \
if (discard) \
state->data_stack_base -= size; \
} while (0)
#define DATA_STACK_POP_DISCARD(state, size) \
do { \
TRACE(("discard data from %" PY_FORMAT_SIZE_T "d " \
"(%" PY_FORMAT_SIZE_T "d)\n", \
state->data_stack_base-size, size)); \
state->data_stack_base -= size; \
} while(0)
#define DATA_PUSH(x) \
DATA_STACK_PUSH(state, (x), sizeof(*(x)))
#define DATA_POP(x) \
DATA_STACK_POP(state, (x), sizeof(*(x)), 1)
#define DATA_POP_DISCARD(x) \
DATA_STACK_POP_DISCARD(state, sizeof(*(x)))
#define DATA_ALLOC(t,p) \
DATA_STACK_ALLOC(state, t, p)
#define DATA_LOOKUP_AT(t,p,pos) \
DATA_STACK_LOOKUP_AT(state,t,p,pos)
#define MARK_PUSH(lastmark) \
do if (lastmark > 0) { \
i = lastmark; /* ctx->lastmark may change if reallocated */ \
DATA_STACK_PUSH(state, state->mark, (i+1)*sizeof(void*)); \
} while (0)
#define MARK_POP(lastmark) \
do if (lastmark > 0) { \
DATA_STACK_POP(state, state->mark, (lastmark+1)*sizeof(void*), 1); \
} while (0)
#define MARK_POP_KEEP(lastmark) \
do if (lastmark > 0) { \
DATA_STACK_POP(state, state->mark, (lastmark+1)*sizeof(void*), 0); \
} while (0)
#define MARK_POP_DISCARD(lastmark) \
do if (lastmark > 0) { \
DATA_STACK_POP_DISCARD(state, (lastmark+1)*sizeof(void*)); \
} while (0)
#define JUMP_NONE 0
#define JUMP_MAX_UNTIL_1 1
#define JUMP_MAX_UNTIL_2 2
#define JUMP_MAX_UNTIL_3 3
#define JUMP_MIN_UNTIL_1 4
#define JUMP_MIN_UNTIL_2 5
#define JUMP_MIN_UNTIL_3 6
#define JUMP_REPEAT 7
#define JUMP_REPEAT_ONE_1 8
#define JUMP_REPEAT_ONE_2 9
#define JUMP_MIN_REPEAT_ONE 10
#define JUMP_BRANCH 11
#define JUMP_ASSERT 12
#define JUMP_ASSERT_NOT 13
#define DO_JUMPX(jumpvalue, jumplabel, nextpattern, matchall) \
DATA_ALLOC(SRE(match_context), nextctx); \
nextctx->last_ctx_pos = ctx_pos; \
nextctx->jump = jumpvalue; \
nextctx->pattern = nextpattern; \
nextctx->match_all = matchall; \
ctx_pos = alloc_pos; \
ctx = nextctx; \
goto entrance; \
jumplabel: \
while (0) /* gcc doesn't like labels at end of scopes */ \
#define DO_JUMP(jumpvalue, jumplabel, nextpattern) \
DO_JUMPX(jumpvalue, jumplabel, nextpattern, ctx->match_all)
#define DO_JUMP0(jumpvalue, jumplabel, nextpattern) \
DO_JUMPX(jumpvalue, jumplabel, nextpattern, 0)
typedef struct {
Py_ssize_t last_ctx_pos;
Py_ssize_t jump;
SRE_CHAR* ptr;
SRE_CODE* pattern;
Py_ssize_t count;
Py_ssize_t lastmark;
Py_ssize_t lastindex;
union {
SRE_CODE chr;
SRE_REPEAT* rep;
} u;
int match_all;
} SRE(match_context);
/* check if string matches the given pattern. returns <0 for
error, 0 for failure, and 1 for success */
LOCAL(Py_ssize_t)
SRE(match)(SRE_STATE* state, SRE_CODE* pattern, int match_all)
{
SRE_CHAR* end = (SRE_CHAR *)state->end;
Py_ssize_t alloc_pos, ctx_pos = -1;
Py_ssize_t i, ret = 0;
Py_ssize_t jump;
unsigned int sigcount=0;
SRE(match_context)* ctx;
SRE(match_context)* nextctx;
TRACE(("|%p|%p|ENTER\n", pattern, state->ptr));
DATA_ALLOC(SRE(match_context), ctx);
ctx->last_ctx_pos = -1;
ctx->jump = JUMP_NONE;
ctx->pattern = pattern;
ctx->match_all = match_all;
ctx_pos = alloc_pos;
entrance:
ctx->ptr = (SRE_CHAR *)state->ptr;
if (ctx->pattern[0] == SRE_OP_INFO) {
/* optimization info block */
/* <INFO> <1=skip> <2=flags> <3=min> ... */
if (ctx->pattern[3] && (uintptr_t)(end - ctx->ptr) < ctx->pattern[3]) {
TRACE(("reject (got %" PY_FORMAT_SIZE_T "d chars, "
"need %" PY_FORMAT_SIZE_T "d)\n",
end - ctx->ptr, (Py_ssize_t) ctx->pattern[3]));
RETURN_FAILURE;
}
ctx->pattern += ctx->pattern[1] + 1;
}
for (;;) {
++sigcount;
if ((0 == (sigcount & 0xfff)) && PyErr_CheckSignals())
RETURN_ERROR(SRE_ERROR_INTERRUPTED);
switch (*ctx->pattern++) {
case SRE_OP_MARK:
/* set mark */
/* <MARK> <gid> */
TRACE(("|%p|%p|MARK %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[0]));
i = ctx->pattern[0];
if (i & 1)
state->lastindex = i/2 + 1;
if (i > state->lastmark) {
/* state->lastmark is the highest valid index in the
state->mark array. If it is increased by more than 1,
the intervening marks must be set to NULL to signal
that these marks have not been encountered. */
Py_ssize_t j = state->lastmark + 1;
while (j < i)
state->mark[j++] = NULL;
state->lastmark = i;
}
state->mark[i] = ctx->ptr;
ctx->pattern++;
break;
case SRE_OP_LITERAL:
/* match literal string */
/* <LITERAL> <code> */
TRACE(("|%p|%p|LITERAL %d\n", ctx->pattern,
ctx->ptr, *ctx->pattern));
if (ctx->ptr >= end || (SRE_CODE) ctx->ptr[0] != ctx->pattern[0])
RETURN_FAILURE;
ctx->pattern++;
ctx->ptr++;
break;
case SRE_OP_NOT_LITERAL:
/* match anything that is not literal character */
/* <NOT_LITERAL> <code> */
TRACE(("|%p|%p|NOT_LITERAL %d\n", ctx->pattern,
ctx->ptr, *ctx->pattern));
if (ctx->ptr >= end || (SRE_CODE) ctx->ptr[0] == ctx->pattern[0])
RETURN_FAILURE;
ctx->pattern++;
ctx->ptr++;
break;
case SRE_OP_SUCCESS:
/* end of pattern */
TRACE(("|%p|%p|SUCCESS\n", ctx->pattern, ctx->ptr));
if (!ctx->match_all || ctx->ptr == state->end) {
state->ptr = ctx->ptr;
RETURN_SUCCESS;
}
RETURN_FAILURE;
case SRE_OP_AT:
/* match at given position */
/* <AT> <code> */
TRACE(("|%p|%p|AT %d\n", ctx->pattern, ctx->ptr, *ctx->pattern));
if (!SRE(at)(state, ctx->ptr, *ctx->pattern))
RETURN_FAILURE;
ctx->pattern++;
break;
case SRE_OP_CATEGORY:
/* match at given category */
/* <CATEGORY> <code> */
TRACE(("|%p|%p|CATEGORY %d\n", ctx->pattern,
ctx->ptr, *ctx->pattern));
if (ctx->ptr >= end || !sre_category(ctx->pattern[0], ctx->ptr[0]))
RETURN_FAILURE;
ctx->pattern++;
ctx->ptr++;
break;
case SRE_OP_ANY:
/* match anything (except a newline) */
/* <ANY> */
TRACE(("|%p|%p|ANY\n", ctx->pattern, ctx->ptr));
if (ctx->ptr >= end || SRE_IS_LINEBREAK(ctx->ptr[0]))
RETURN_FAILURE;
ctx->ptr++;
break;
case SRE_OP_ANY_ALL:
/* match anything */
/* <ANY_ALL> */
TRACE(("|%p|%p|ANY_ALL\n", ctx->pattern, ctx->ptr));
if (ctx->ptr >= end)
RETURN_FAILURE;
ctx->ptr++;
break;
case SRE_OP_IN:
/* match set member (or non_member) */
/* <IN> <skip> <set> */
TRACE(("|%p|%p|IN\n", ctx->pattern, ctx->ptr));
if (ctx->ptr >= end ||
!SRE(charset)(state, ctx->pattern + 1, *ctx->ptr))
RETURN_FAILURE;
ctx->pattern += ctx->pattern[0];
ctx->ptr++;
break;
case SRE_OP_LITERAL_IGNORE:
TRACE(("|%p|%p|LITERAL_IGNORE %d\n",
ctx->pattern, ctx->ptr, ctx->pattern[0]));
if (ctx->ptr >= end ||
state->lower(*ctx->ptr) != state->lower(*ctx->pattern))
RETURN_FAILURE;
ctx->pattern++;
ctx->ptr++;
break;
case SRE_OP_NOT_LITERAL_IGNORE:
TRACE(("|%p|%p|NOT_LITERAL_IGNORE %d\n",
ctx->pattern, ctx->ptr, *ctx->pattern));
if (ctx->ptr >= end ||
state->lower(*ctx->ptr) == state->lower(*ctx->pattern))
RETURN_FAILURE;
ctx->pattern++;
ctx->ptr++;
break;
case SRE_OP_IN_IGNORE:
TRACE(("|%p|%p|IN_IGNORE\n", ctx->pattern, ctx->ptr));
if (ctx->ptr >= end
|| !SRE(charset)(state, ctx->pattern+1,
(SRE_CODE)state->lower(*ctx->ptr)))
RETURN_FAILURE;
ctx->pattern += ctx->pattern[0];
ctx->ptr++;
break;
case SRE_OP_JUMP:
case SRE_OP_INFO:
/* jump forward */
/* <JUMP> <offset> */
TRACE(("|%p|%p|JUMP %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[0]));
ctx->pattern += ctx->pattern[0];
break;
case SRE_OP_BRANCH:
/* alternation */
/* <BRANCH> <0=skip> code <JUMP> ... <NULL> */
TRACE(("|%p|%p|BRANCH\n", ctx->pattern, ctx->ptr));
LASTMARK_SAVE();
ctx->u.rep = state->repeat;
if (ctx->u.rep)
MARK_PUSH(ctx->lastmark);
for (; ctx->pattern[0]; ctx->pattern += ctx->pattern[0]) {
if (ctx->pattern[1] == SRE_OP_LITERAL &&
(ctx->ptr >= end ||
(SRE_CODE) *ctx->ptr != ctx->pattern[2]))
continue;
if (ctx->pattern[1] == SRE_OP_IN &&
(ctx->ptr >= end ||
!SRE(charset)(state, ctx->pattern + 3,
(SRE_CODE) *ctx->ptr)))
continue;
state->ptr = ctx->ptr;
DO_JUMP(JUMP_BRANCH, jump_branch, ctx->pattern+1);
if (ret) {
if (ctx->u.rep)
MARK_POP_DISCARD(ctx->lastmark);
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
if (ctx->u.rep)
MARK_POP_KEEP(ctx->lastmark);
LASTMARK_RESTORE();
}
if (ctx->u.rep)
MARK_POP_DISCARD(ctx->lastmark);
RETURN_FAILURE;
case SRE_OP_REPEAT_ONE:
/* match repeated sequence (maximizing regexp) */
/* this operator only works if the repeated item is
exactly one character wide, and we're not already
collecting backtracking points. for other cases,
use the MAX_REPEAT operator */
/* <REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
TRACE(("|%p|%p|REPEAT_ONE %d %d\n", ctx->pattern, ctx->ptr,
ctx->pattern[1], ctx->pattern[2]));
if ((Py_ssize_t) ctx->pattern[1] > end - ctx->ptr)
RETURN_FAILURE; /* cannot match */
state->ptr = ctx->ptr;
ret = SRE(count)(state, ctx->pattern+3, ctx->pattern[2]);
RETURN_ON_ERROR(ret);
DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos);
ctx->count = ret;
ctx->ptr += ctx->count;
/* when we arrive here, count contains the number of
matches, and ctx->ptr points to the tail of the target
string. check if the rest of the pattern matches,
and backtrack if not. */
if (ctx->count < (Py_ssize_t) ctx->pattern[1])
RETURN_FAILURE;
if (ctx->pattern[ctx->pattern[0]] == SRE_OP_SUCCESS &&
ctx->ptr == state->end) {
/* tail is empty. we're finished */
state->ptr = ctx->ptr;
RETURN_SUCCESS;
}
LASTMARK_SAVE();
if (ctx->pattern[ctx->pattern[0]] == SRE_OP_LITERAL) {
/* tail starts with a literal. skip positions where
the rest of the pattern cannot possibly match */
ctx->u.chr = ctx->pattern[ctx->pattern[0]+1];
for (;;) {
while (ctx->count >= (Py_ssize_t) ctx->pattern[1] &&
(ctx->ptr >= end || *ctx->ptr != ctx->u.chr)) {
ctx->ptr--;
ctx->count--;
}
if (ctx->count < (Py_ssize_t) ctx->pattern[1])
break;
state->ptr = ctx->ptr;
DO_JUMP(JUMP_REPEAT_ONE_1, jump_repeat_one_1,
ctx->pattern+ctx->pattern[0]);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
LASTMARK_RESTORE();
ctx->ptr--;
ctx->count--;
}
} else {
/* general case */
while (ctx->count >= (Py_ssize_t) ctx->pattern[1]) {
state->ptr = ctx->ptr;
DO_JUMP(JUMP_REPEAT_ONE_2, jump_repeat_one_2,
ctx->pattern+ctx->pattern[0]);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
ctx->ptr--;
ctx->count--;
LASTMARK_RESTORE();
}
}
RETURN_FAILURE;
case SRE_OP_MIN_REPEAT_ONE:
/* match repeated sequence (minimizing regexp) */
/* this operator only works if the repeated item is
exactly one character wide, and we're not already
collecting backtracking points. for other cases,
use the MIN_REPEAT operator */
/* <MIN_REPEAT_ONE> <skip> <1=min> <2=max> item <SUCCESS> tail */
TRACE(("|%p|%p|MIN_REPEAT_ONE %d %d\n", ctx->pattern, ctx->ptr,
ctx->pattern[1], ctx->pattern[2]));
if ((Py_ssize_t) ctx->pattern[1] > end - ctx->ptr)
RETURN_FAILURE; /* cannot match */
state->ptr = ctx->ptr;
if (ctx->pattern[1] == 0)
ctx->count = 0;
else {
/* count using pattern min as the maximum */
ret = SRE(count)(state, ctx->pattern+3, ctx->pattern[1]);
RETURN_ON_ERROR(ret);
DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos);
if (ret < (Py_ssize_t) ctx->pattern[1])
/* didn't match minimum number of times */
RETURN_FAILURE;
/* advance past minimum matches of repeat */
ctx->count = ret;
ctx->ptr += ctx->count;
}
if (ctx->pattern[ctx->pattern[0]] == SRE_OP_SUCCESS &&
(!match_all || ctx->ptr == state->end)) {
/* tail is empty. we're finished */
state->ptr = ctx->ptr;
RETURN_SUCCESS;
} else {
/* general case */
LASTMARK_SAVE();
while ((Py_ssize_t)ctx->pattern[2] == SRE_MAXREPEAT
|| ctx->count <= (Py_ssize_t)ctx->pattern[2]) {
state->ptr = ctx->ptr;
DO_JUMP(JUMP_MIN_REPEAT_ONE,jump_min_repeat_one,
ctx->pattern+ctx->pattern[0]);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
state->ptr = ctx->ptr;
ret = SRE(count)(state, ctx->pattern+3, 1);
RETURN_ON_ERROR(ret);
DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos);
if (ret == 0)
break;
assert(ret == 1);
ctx->ptr++;
ctx->count++;
LASTMARK_RESTORE();
}
}
RETURN_FAILURE;
case SRE_OP_REPEAT:
/* create repeat context. all the hard work is done
by the UNTIL operator (MAX_UNTIL, MIN_UNTIL) */
/* <REPEAT> <skip> <1=min> <2=max> item <UNTIL> tail */
TRACE(("|%p|%p|REPEAT %d %d\n", ctx->pattern, ctx->ptr,
ctx->pattern[1], ctx->pattern[2]));
/* install new repeat context */
ctx->u.rep = (SRE_REPEAT*) PyObject_MALLOC(sizeof(*ctx->u.rep));
if (!ctx->u.rep) {
PyErr_NoMemory();
RETURN_FAILURE;
}
ctx->u.rep->count = -1;
ctx->u.rep->pattern = ctx->pattern;
ctx->u.rep->prev = state->repeat;
ctx->u.rep->last_ptr = NULL;
state->repeat = ctx->u.rep;
state->ptr = ctx->ptr;
DO_JUMP(JUMP_REPEAT, jump_repeat, ctx->pattern+ctx->pattern[0]);
state->repeat = ctx->u.rep->prev;
PyObject_FREE(ctx->u.rep);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
RETURN_FAILURE;
case SRE_OP_MAX_UNTIL:
/* maximizing repeat */
/* <REPEAT> <skip> <1=min> <2=max> item <MAX_UNTIL> tail */
/* FIXME: we probably need to deal with zero-width
matches in here... */
ctx->u.rep = state->repeat;
if (!ctx->u.rep)
RETURN_ERROR(SRE_ERROR_STATE);
state->ptr = ctx->ptr;
ctx->count = ctx->u.rep->count+1;
TRACE(("|%p|%p|MAX_UNTIL %" PY_FORMAT_SIZE_T "d\n", ctx->pattern,
ctx->ptr, ctx->count));
if (ctx->count < (Py_ssize_t) ctx->u.rep->pattern[1]) {
/* not enough matches */
ctx->u.rep->count = ctx->count;
DO_JUMP(JUMP_MAX_UNTIL_1, jump_max_until_1,
ctx->u.rep->pattern+3);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
ctx->u.rep->count = ctx->count-1;
state->ptr = ctx->ptr;
RETURN_FAILURE;
}
if ((ctx->count < (Py_ssize_t) ctx->u.rep->pattern[2] ||
ctx->u.rep->pattern[2] == SRE_MAXREPEAT) &&
state->ptr != ctx->u.rep->last_ptr) {
/* we may have enough matches, but if we can
match another item, do so */
ctx->u.rep->count = ctx->count;
LASTMARK_SAVE();
MARK_PUSH(ctx->lastmark);
/* zero-width match protection */
DATA_PUSH(&ctx->u.rep->last_ptr);
ctx->u.rep->last_ptr = state->ptr;
DO_JUMP(JUMP_MAX_UNTIL_2, jump_max_until_2,
ctx->u.rep->pattern+3);
DATA_POP(&ctx->u.rep->last_ptr);
if (ret) {
MARK_POP_DISCARD(ctx->lastmark);
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
MARK_POP(ctx->lastmark);
LASTMARK_RESTORE();
ctx->u.rep->count = ctx->count-1;
state->ptr = ctx->ptr;
}
/* cannot match more repeated items here. make sure the
tail matches */
state->repeat = ctx->u.rep->prev;
DO_JUMP(JUMP_MAX_UNTIL_3, jump_max_until_3, ctx->pattern);
RETURN_ON_SUCCESS(ret);
state->repeat = ctx->u.rep;
state->ptr = ctx->ptr;
RETURN_FAILURE;
case SRE_OP_MIN_UNTIL:
/* minimizing repeat */
/* <REPEAT> <skip> <1=min> <2=max> item <MIN_UNTIL> tail */
ctx->u.rep = state->repeat;
if (!ctx->u.rep)
RETURN_ERROR(SRE_ERROR_STATE);
state->ptr = ctx->ptr;
ctx->count = ctx->u.rep->count+1;
TRACE(("|%p|%p|MIN_UNTIL %" PY_FORMAT_SIZE_T "d %p\n", ctx->pattern,
ctx->ptr, ctx->count, ctx->u.rep->pattern));
if (ctx->count < (Py_ssize_t) ctx->u.rep->pattern[1]) {
/* not enough matches */
ctx->u.rep->count = ctx->count;
DO_JUMP(JUMP_MIN_UNTIL_1, jump_min_until_1,
ctx->u.rep->pattern+3);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
ctx->u.rep->count = ctx->count-1;
state->ptr = ctx->ptr;
RETURN_FAILURE;
}
LASTMARK_SAVE();
/* see if the tail matches */
state->repeat = ctx->u.rep->prev;
DO_JUMP(JUMP_MIN_UNTIL_2, jump_min_until_2, ctx->pattern);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
state->repeat = ctx->u.rep;
state->ptr = ctx->ptr;
LASTMARK_RESTORE();
if ((ctx->count >= (Py_ssize_t) ctx->u.rep->pattern[2]
&& ctx->u.rep->pattern[2] != SRE_MAXREPEAT) ||
state->ptr == ctx->u.rep->last_ptr)
RETURN_FAILURE;
ctx->u.rep->count = ctx->count;
/* zero-width match protection */
DATA_PUSH(&ctx->u.rep->last_ptr);
ctx->u.rep->last_ptr = state->ptr;
DO_JUMP(JUMP_MIN_UNTIL_3,jump_min_until_3,
ctx->u.rep->pattern+3);
DATA_POP(&ctx->u.rep->last_ptr);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_SUCCESS;
}
ctx->u.rep->count = ctx->count-1;
state->ptr = ctx->ptr;
RETURN_FAILURE;
case SRE_OP_GROUPREF:
/* match backreference */
TRACE(("|%p|%p|GROUPREF %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[0]));
i = ctx->pattern[0];
{
Py_ssize_t groupref = i+i;
if (groupref >= state->lastmark) {
RETURN_FAILURE;
} else {
SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref];
SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1];
if (!p || !e || e < p)
RETURN_FAILURE;
while (p < e) {
if (ctx->ptr >= end || *ctx->ptr != *p)
RETURN_FAILURE;
p++;
ctx->ptr++;
}
}
}
ctx->pattern++;
break;
case SRE_OP_GROUPREF_IGNORE:
/* match backreference */
TRACE(("|%p|%p|GROUPREF_IGNORE %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[0]));
i = ctx->pattern[0];
{
Py_ssize_t groupref = i+i;
if (groupref >= state->lastmark) {
RETURN_FAILURE;
} else {
SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref];
SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1];
if (!p || !e || e < p)
RETURN_FAILURE;
while (p < e) {
if (ctx->ptr >= end ||
state->lower(*ctx->ptr) != state->lower(*p))
RETURN_FAILURE;
p++;
ctx->ptr++;
}
}
}
ctx->pattern++;
break;
case SRE_OP_GROUPREF_EXISTS:
TRACE(("|%p|%p|GROUPREF_EXISTS %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[0]));
/* <GROUPREF_EXISTS> <group> <skip> codeyes <JUMP> codeno ... */
i = ctx->pattern[0];
{
Py_ssize_t groupref = i+i;
if (groupref >= state->lastmark) {
ctx->pattern += ctx->pattern[1];
break;
} else {
SRE_CHAR* p = (SRE_CHAR*) state->mark[groupref];
SRE_CHAR* e = (SRE_CHAR*) state->mark[groupref+1];
if (!p || !e || e < p) {
ctx->pattern += ctx->pattern[1];
break;
}
}
}
ctx->pattern += 2;
break;
case SRE_OP_ASSERT:
/* assert subpattern */
/* <ASSERT> <skip> <back> <pattern> */
TRACE(("|%p|%p|ASSERT %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[1]));
if (ctx->ptr - (SRE_CHAR *)state->beginning < (Py_ssize_t)ctx->pattern[1])
RETURN_FAILURE;
state->ptr = ctx->ptr - ctx->pattern[1];
DO_JUMP0(JUMP_ASSERT, jump_assert, ctx->pattern+2);
RETURN_ON_FAILURE(ret);
ctx->pattern += ctx->pattern[0];
break;
case SRE_OP_ASSERT_NOT:
/* assert not subpattern */
/* <ASSERT_NOT> <skip> <back> <pattern> */
TRACE(("|%p|%p|ASSERT_NOT %d\n", ctx->pattern,
ctx->ptr, ctx->pattern[1]));
if (ctx->ptr - (SRE_CHAR *)state->beginning >= (Py_ssize_t)ctx->pattern[1]) {
state->ptr = ctx->ptr - ctx->pattern[1];
DO_JUMP0(JUMP_ASSERT_NOT, jump_assert_not, ctx->pattern+2);
if (ret) {
RETURN_ON_ERROR(ret);
RETURN_FAILURE;
}
}
ctx->pattern += ctx->pattern[0];
break;
case SRE_OP_FAILURE:
/* immediate failure */
TRACE(("|%p|%p|FAILURE\n", ctx->pattern, ctx->ptr));
RETURN_FAILURE;
default:
TRACE(("|%p|%p|UNKNOWN %d\n", ctx->pattern, ctx->ptr,
ctx->pattern[-1]));
RETURN_ERROR(SRE_ERROR_ILLEGAL);
}
}
exit:
ctx_pos = ctx->last_ctx_pos;
jump = ctx->jump;
DATA_POP_DISCARD(ctx);
if (ctx_pos == -1)
return ret;
DATA_LOOKUP_AT(SRE(match_context), ctx, ctx_pos);
switch (jump) {
case JUMP_MAX_UNTIL_2:
TRACE(("|%p|%p|JUMP_MAX_UNTIL_2\n", ctx->pattern, ctx->ptr));
goto jump_max_until_2;
case JUMP_MAX_UNTIL_3:
TRACE(("|%p|%p|JUMP_MAX_UNTIL_3\n", ctx->pattern, ctx->ptr));
goto jump_max_until_3;
case JUMP_MIN_UNTIL_2:
TRACE(("|%p|%p|JUMP_MIN_UNTIL_2\n", ctx->pattern, ctx->ptr));
goto jump_min_until_2;
case JUMP_MIN_UNTIL_3:
TRACE(("|%p|%p|JUMP_MIN_UNTIL_3\n", ctx->pattern, ctx->ptr));
goto jump_min_until_3;
case JUMP_BRANCH:
TRACE(("|%p|%p|JUMP_BRANCH\n", ctx->pattern, ctx->ptr));
goto jump_branch;
case JUMP_MAX_UNTIL_1:
TRACE(("|%p|%p|JUMP_MAX_UNTIL_1\n", ctx->pattern, ctx->ptr));
goto jump_max_until_1;
case JUMP_MIN_UNTIL_1:
TRACE(("|%p|%p|JUMP_MIN_UNTIL_1\n", ctx->pattern, ctx->ptr));
goto jump_min_until_1;
case JUMP_REPEAT:
TRACE(("|%p|%p|JUMP_REPEAT\n", ctx->pattern, ctx->ptr));
goto jump_repeat;
case JUMP_REPEAT_ONE_1:
TRACE(("|%p|%p|JUMP_REPEAT_ONE_1\n", ctx->pattern, ctx->ptr));
goto jump_repeat_one_1;
case JUMP_REPEAT_ONE_2:
TRACE(("|%p|%p|JUMP_REPEAT_ONE_2\n", ctx->pattern, ctx->ptr));
goto jump_repeat_one_2;
case JUMP_MIN_REPEAT_ONE:
TRACE(("|%p|%p|JUMP_MIN_REPEAT_ONE\n", ctx->pattern, ctx->ptr));
goto jump_min_repeat_one;
case JUMP_ASSERT:
TRACE(("|%p|%p|JUMP_ASSERT\n", ctx->pattern, ctx->ptr));
goto jump_assert;
case JUMP_ASSERT_NOT:
TRACE(("|%p|%p|JUMP_ASSERT_NOT\n", ctx->pattern, ctx->ptr));
goto jump_assert_not;
case JUMP_NONE:
TRACE(("|%p|%p|RETURN %" PY_FORMAT_SIZE_T "d\n", ctx->pattern,
ctx->ptr, ret));
break;
}
return ret; /* should never get here */
}
LOCAL(Py_ssize_t)
SRE(search)(SRE_STATE* state, SRE_CODE* pattern)
{
SRE_CHAR* ptr = (SRE_CHAR *)state->start;
SRE_CHAR* end = (SRE_CHAR *)state->end;
Py_ssize_t status = 0;
Py_ssize_t prefix_len = 0;
Py_ssize_t prefix_skip = 0;
SRE_CODE* prefix = NULL;
SRE_CODE* charset = NULL;
SRE_CODE* overlap = NULL;
int flags = 0;
if (ptr > end)
return 0;
if (pattern[0] == SRE_OP_INFO) {
/* optimization info block */
/* <INFO> <1=skip> <2=flags> <3=min> <4=max> <5=prefix info> */
flags = pattern[2];
if (pattern[3] && end - ptr < (Py_ssize_t)pattern[3]) {
TRACE(("reject (got %u chars, need %u)\n",
(unsigned int)(end - ptr), pattern[3]));
return 0;
}
if (pattern[3] > 1) {
/* adjust end point (but make sure we leave at least one
character in there, so literal search will work) */
end -= pattern[3] - 1;
if (end <= ptr)
end = ptr;
}
if (flags & SRE_INFO_PREFIX) {
/* pattern starts with a known prefix */
/* <length> <skip> <prefix data> <overlap data> */
prefix_len = pattern[5];
prefix_skip = pattern[6];
prefix = pattern + 7;
overlap = prefix + prefix_len - 1;
} else if (flags & SRE_INFO_CHARSET)
/* pattern starts with a character from a known set */
/* <charset> */
charset = pattern + 5;
pattern += 1 + pattern[1];
}
TRACE(("prefix = %p %" PY_FORMAT_SIZE_T "d %" PY_FORMAT_SIZE_T "d\n",
prefix, prefix_len, prefix_skip));
TRACE(("charset = %p\n", charset));
if (prefix_len == 1) {
/* pattern starts with a literal character */
SRE_CHAR c = (SRE_CHAR) prefix[0];
#if SIZEOF_SRE_CHAR < 4
if ((SRE_CODE) c != prefix[0])
return 0; /* literal can't match: doesn't fit in char width */
#endif
end = (SRE_CHAR *)state->end;
while (ptr < end) {
while (*ptr != c) {
if (++ptr >= end)
return 0;
}
TRACE(("|%p|%p|SEARCH LITERAL\n", pattern, ptr));
state->start = ptr;
state->ptr = ptr + prefix_skip;
if (flags & SRE_INFO_LITERAL)
return 1; /* we got all of it */
status = SRE(match)(state, pattern + 2*prefix_skip, 0);
if (status != 0)
return status;
++ptr;
}
return 0;
}
if (prefix_len > 1) {
/* pattern starts with a known prefix. use the overlap
table to skip forward as fast as we possibly can */
Py_ssize_t i = 0;
end = (SRE_CHAR *)state->end;
if (prefix_len > end - ptr)
return 0;
#if SIZEOF_SRE_CHAR < 4
for (i = 0; i < prefix_len; i++)
if ((SRE_CODE)(SRE_CHAR) prefix[i] != prefix[i])
return 0; /* literal can't match: doesn't fit in char width */
#endif
while (ptr < end) {
SRE_CHAR c = (SRE_CHAR) prefix[0];
while (*ptr++ != c) {
if (ptr >= end)
return 0;
}
if (ptr >= end)
return 0;
i = 1;
do {
if (*ptr == (SRE_CHAR) prefix[i]) {
if (++i != prefix_len) {
if (++ptr >= end)
return 0;
continue;
}
/* found a potential match */
TRACE(("|%p|%p|SEARCH SCAN\n", pattern, ptr));
state->start = ptr - (prefix_len - 1);
state->ptr = ptr - (prefix_len - prefix_skip - 1);
if (flags & SRE_INFO_LITERAL)
return 1; /* we got all of it */
status = SRE(match)(state, pattern + 2*prefix_skip, 0);
if (status != 0)
return status;
/* close but no cigar -- try again */
if (++ptr >= end)
return 0;
}
i = overlap[i];
} while (i != 0);
}
return 0;
}
if (charset) {
/* pattern starts with a character from a known set */
end = (SRE_CHAR *)state->end;
for (;;) {
while (ptr < end && !SRE(charset)(state, charset, *ptr))
ptr++;
if (ptr >= end)
return 0;
TRACE(("|%p|%p|SEARCH CHARSET\n", pattern, ptr));
state->start = ptr;
state->ptr = ptr;
status = SRE(match)(state, pattern, 0);
if (status != 0)
break;
ptr++;
}
} else {
/* general case */
assert(ptr <= end);
while (1) {
TRACE(("|%p|%p|SEARCH\n", pattern, ptr));
state->start = state->ptr = ptr;
status = SRE(match)(state, pattern, 0);
if (status != 0 || ptr >= end)
break;
ptr++;
}
}
return status;
}
#undef SRE_CHAR
#undef SIZEOF_SRE_CHAR
#undef SRE
/* vim:ts=4:sw=4:et
*/
| 47,858 | 1,378 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_math.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/errno.h"
#include "third_party/python/Include/pymath.h"
#include "third_party/python/Modules/_math.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
/* Definitions of some C99 math library functions, for those platforms
that don't implement these functions already. */
/* The following copyright notice applies to the original
implementations of acosh, asinh and atanh. */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
static const double ln2 = 6.93147180559945286227E-01;
static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */
static const double two_pow_p28 = 268435456.0; /* 2**28 */
#ifndef Py_NAN
static const double zero = 0.0;
#endif
/* acosh(x)
* Method :
* Based on
* acosh(x) = log [ x + sqrt(x*x-1) ]
* we have
* acosh(x) := log(x)+ln2, if x is large; else
* acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
* acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
*
* Special cases:
* acosh(x) is NaN with signal if x<1.
* acosh(NaN) is NaN without signal.
*/
double
_Py_acosh(double x)
{
if (Py_IS_NAN(x)) {
return x+x;
}
if (x < 1.) { /* x < 1; return a signaling NaN */
errno = EDOM;
#ifdef Py_NAN
return Py_NAN;
#else
return (x-x)/(x-x);
#endif
}
else if (x >= two_pow_p28) { /* x > 2**28 */
if (Py_IS_INFINITY(x)) {
return x+x;
}
else {
return log(x)+ln2; /* acosh(huge)=log(2x) */
}
}
else if (x == 1.) {
return 0.0; /* acosh(1) = 0 */
}
else if (x > 2.) { /* 2 < x < 2**28 */
double t = x*x;
return log(2.0*x - 1.0 / (x + sqrt(t - 1.0)));
}
else { /* 1 < x <= 2 */
double t = x - 1.0;
return m_log1p(t + sqrt(2.0*t + t*t));
}
}
/* asinh(x)
* Method :
* Based on
* asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
* we have
* asinh(x) := x if 1+x*x=1,
* := sign(x)*(log(x)+ln2)) for large |x|, else
* := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
* := sign(x)*log1p(|x| + x^2/(1 + sqrt(1+x^2)))
*/
double
_Py_asinh(double x)
{
double w;
double absx = fabs(x);
if (Py_IS_NAN(x) || Py_IS_INFINITY(x)) {
return x+x;
}
if (absx < two_pow_m28) { /* |x| < 2**-28 */
return x; /* return x inexact except 0 */
}
if (absx > two_pow_p28) { /* |x| > 2**28 */
w = log(absx)+ln2;
}
else if (absx > 2.0) { /* 2 < |x| < 2**28 */
w = log(2.0*absx + 1.0 / (sqrt(x*x + 1.0) + absx));
}
else { /* 2**-28 <= |x| < 2= */
double t = x*x;
w = m_log1p(absx + t / (1.0 + sqrt(1.0 + t)));
}
return copysign(w, x);
}
/* atanh(x)
* Method :
* 1.Reduced x to positive by atanh(-x) = -atanh(x)
* 2.For x>=0.5
* 1 2x x
* atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * -------)
* 2 1 - x 1 - x
*
* For x<0.5
* atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
*
* Special cases:
* atanh(x) is NaN if |x| >= 1 with signal;
* atanh(NaN) is that NaN with no signal;
*
*/
double
_Py_atanh(double x)
{
double absx;
double t;
if (Py_IS_NAN(x)) {
return x+x;
}
absx = fabs(x);
if (absx >= 1.) { /* |x| >= 1 */
errno = EDOM;
#ifdef Py_NAN
return Py_NAN;
#else
return x/zero;
#endif
}
if (absx < two_pow_m28) { /* |x| < 2**-28 */
return x;
}
if (absx < 0.5) { /* |x| < 0.5 */
t = absx+absx;
t = 0.5 * m_log1p(t + t*absx / (1.0 - absx));
}
else { /* 0.5 <= |x| <= 1.0 */
t = 0.5 * m_log1p((absx + absx) / (1.0 - absx));
}
return copysign(t, x);
}
/* Mathematically, expm1(x) = exp(x) - 1. The expm1 function is designed
to avoid the significant loss of precision that arises from direct
evaluation of the expression exp(x) - 1, for x near 0. */
double
_Py_expm1(double x)
{
/* For abs(x) >= log(2), it's safe to evaluate exp(x) - 1 directly; this
also works fine for infinities and nans.
For smaller x, we can use a method due to Kahan that achieves close to
full accuracy.
*/
if (fabs(x) < 0.7) {
double u;
u = exp(x);
if (u == 1.0)
return x;
else
return (u - 1.0) * x / log(u);
}
else
return exp(x) - 1.0;
}
/* log1p(x) = log(1+x). The log1p function is designed to avoid the
significant loss of precision that arises from direct evaluation when x is
small. */
#ifdef HAVE_LOG1P
double
_Py_log1p(double x)
{
/* Some platforms supply a log1p function but don't respect the sign of
zero: log1p(-0.0) gives 0.0 instead of the correct result of -0.0.
To save fiddling with configure tests and platform checks, we handle the
special case of zero input directly on all platforms.
*/
if (x == 0.0) {
return x;
}
else {
return log1p(x);
}
}
#else
double
_Py_log1p(double x)
{
/* For x small, we use the following approach. Let y be the nearest float
to 1+x, then
1+x = y * (1 - (y-1-x)/y)
so log(1+x) = log(y) + log(1-(y-1-x)/y). Since (y-1-x)/y is tiny, the
second term is well approximated by (y-1-x)/y. If abs(x) >=
DBL_EPSILON/2 or the rounding-mode is some form of round-to-nearest
then y-1-x will be exactly representable, and is computed exactly by
(y-1)-x.
If abs(x) < DBL_EPSILON/2 and the rounding mode is not known to be
round-to-nearest then this method is slightly dangerous: 1+x could be
rounded up to 1+DBL_EPSILON instead of down to 1, and in that case
y-1-x will not be exactly representable any more and the result can be
off by many ulps. But this is easily fixed: for a floating-point
number |x| < DBL_EPSILON/2., the closest floating-point number to
log(1+x) is exactly x.
*/
double y;
if (fabs(x) < DBL_EPSILON/2.) {
return x;
}
else if (-0.5 <= x && x <= 1.) {
/* WARNING: it's possible that an overeager compiler
will incorrectly optimize the following two lines
to the equivalent of "return log(1.+x)". If this
happens, then results from log1p will be inaccurate
for small x. */
y = 1.+x;
return log(y)-((y-1.)-x)/y;
}
else {
/* NaNs and infinities should end up here */
return log(1.+x);
}
}
#endif /* ifdef HAVE_LOG1P */
| 8,128 | 266 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/hashtable.h | #ifndef Py_HASHTABLE_H
#define Py_HASHTABLE_H
#include "libc/assert.h"
#include "libc/str/str.h"
#include "third_party/python/Include/pyport.h"
/* clang-format off */
#ifndef Py_LIMITED_API
/* Single linked list */
typedef struct _Py_slist_item_s {
struct _Py_slist_item_s *next;
} _Py_slist_item_t;
typedef struct {
_Py_slist_item_t *head;
} _Py_slist_t;
#define _Py_SLIST_ITEM_NEXT(ITEM) (((_Py_slist_item_t *)ITEM)->next)
#define _Py_SLIST_HEAD(SLIST) (((_Py_slist_t *)SLIST)->head)
/* _Py_hashtable: table entry */
typedef struct {
/* used by _Py_hashtable_t.buckets to link entries */
_Py_slist_item_t _Py_slist_item;
Py_uhash_t key_hash;
/* key (key_size bytes) and then data (data_size bytes) follows */
} _Py_hashtable_entry_t;
#define _Py_HASHTABLE_ENTRY_PKEY(ENTRY) \
((const void *)((char *)(ENTRY) \
+ sizeof(_Py_hashtable_entry_t)))
#define _Py_HASHTABLE_ENTRY_PDATA(TABLE, ENTRY) \
((const void *)((char *)(ENTRY) \
+ sizeof(_Py_hashtable_entry_t) \
+ (TABLE)->key_size))
/* Get a key value from pkey: use memcpy() rather than a pointer dereference
to avoid memory alignment issues. */
#define _Py_HASHTABLE_READ_KEY(TABLE, PKEY, DST_KEY) \
do { \
assert(sizeof(DST_KEY) == (TABLE)->key_size); \
memcpy(&(DST_KEY), (PKEY), sizeof(DST_KEY)); \
} while (0)
#define _Py_HASHTABLE_ENTRY_READ_KEY(TABLE, ENTRY, KEY) \
do { \
assert(sizeof(KEY) == (TABLE)->key_size); \
memcpy(&(KEY), _Py_HASHTABLE_ENTRY_PKEY(ENTRY), sizeof(KEY)); \
} while (0)
#define _Py_HASHTABLE_ENTRY_READ_DATA(TABLE, ENTRY, DATA) \
do { \
assert(sizeof(DATA) == (TABLE)->data_size); \
memcpy(&(DATA), _Py_HASHTABLE_ENTRY_PDATA(TABLE, (ENTRY)), \
sizeof(DATA)); \
} while (0)
#define _Py_HASHTABLE_ENTRY_WRITE_DATA(TABLE, ENTRY, DATA) \
do { \
assert(sizeof(DATA) == (TABLE)->data_size); \
memcpy((void *)_Py_HASHTABLE_ENTRY_PDATA((TABLE), (ENTRY)), \
&(DATA), sizeof(DATA)); \
} while (0)
/* _Py_hashtable: prototypes */
/* Forward declaration */
struct _Py_hashtable_t;
typedef Py_uhash_t (*_Py_hashtable_hash_func) (struct _Py_hashtable_t *ht,
const void *pkey);
typedef int (*_Py_hashtable_compare_func) (struct _Py_hashtable_t *ht,
const void *pkey,
const _Py_hashtable_entry_t *he);
typedef struct {
/* allocate a memory block */
void* (*malloc) (size_t size);
/* release a memory block */
void (*free) (void *ptr);
} _Py_hashtable_allocator_t;
/* _Py_hashtable: table */
typedef struct _Py_hashtable_t {
size_t num_buckets;
size_t entries; /* Total number of entries in the table. */
_Py_slist_t *buckets;
size_t key_size;
size_t data_size;
_Py_hashtable_hash_func hash_func;
_Py_hashtable_compare_func compare_func;
_Py_hashtable_allocator_t alloc;
} _Py_hashtable_t;
/* hash a pointer (void*) */
Py_uhash_t _Py_hashtable_hash_ptr(
struct _Py_hashtable_t *ht,
const void *pkey);
/* comparison using memcmp() */
int _Py_hashtable_compare_direct(
_Py_hashtable_t *ht,
const void *pkey,
const _Py_hashtable_entry_t *entry);
_Py_hashtable_t * _Py_hashtable_new(
size_t key_size,
size_t data_size,
_Py_hashtable_hash_func hash_func,
_Py_hashtable_compare_func compare_func);
_Py_hashtable_t * _Py_hashtable_new_full(
size_t key_size,
size_t data_size,
size_t init_size,
_Py_hashtable_hash_func hash_func,
_Py_hashtable_compare_func compare_func,
_Py_hashtable_allocator_t *allocator);
void _Py_hashtable_destroy(_Py_hashtable_t *ht);
/* Return a copy of the hash table */
_Py_hashtable_t * _Py_hashtable_copy(_Py_hashtable_t *src);
void _Py_hashtable_clear(_Py_hashtable_t *ht);
typedef int (*_Py_hashtable_foreach_func) (_Py_hashtable_t *ht,
_Py_hashtable_entry_t *entry,
void *arg);
/* Call func() on each entry of the hashtable.
Iteration stops if func() result is non-zero, in this case it's the result
of the call. Otherwise, the function returns 0. */
int _Py_hashtable_foreach(
_Py_hashtable_t *ht,
_Py_hashtable_foreach_func func,
void *arg);
size_t _Py_hashtable_size(_Py_hashtable_t *ht);
/* Add a new entry to the hash. The key must not be present in the hash table.
Return 0 on success, -1 on memory error.
Don't call directly this function,
but use _Py_HASHTABLE_SET() and _Py_HASHTABLE_SET_NODATA() macros */
int _Py_hashtable_set(
_Py_hashtable_t *ht,
size_t key_size,
const void *pkey,
size_t data_size,
const void *data);
#define _Py_HASHTABLE_SET(TABLE, KEY, DATA) \
_Py_hashtable_set(TABLE, sizeof(KEY), &(KEY), sizeof(DATA), &(DATA))
#define _Py_HASHTABLE_SET_NODATA(TABLE, KEY) \
_Py_hashtable_set(TABLE, sizeof(KEY), &(KEY), 0, NULL)
/* Get an entry.
Return NULL if the key does not exist.
Don't call directly this function, but use _Py_HASHTABLE_GET_ENTRY()
macro */
_Py_hashtable_entry_t* _Py_hashtable_get_entry(
_Py_hashtable_t *ht,
size_t key_size,
const void *pkey);
#define _Py_HASHTABLE_GET_ENTRY(TABLE, KEY) \
_Py_hashtable_get_entry(TABLE, sizeof(KEY), &(KEY))
/* Get data from an entry. Copy entry data into data and return 1 if the entry
exists, return 0 if the entry does not exist.
Don't call directly this function, but use _Py_HASHTABLE_GET() macro */
int _Py_hashtable_get(
_Py_hashtable_t *ht,
size_t key_size,
const void *pkey,
size_t data_size,
void *data);
#define _Py_HASHTABLE_GET(TABLE, KEY, DATA) \
_Py_hashtable_get(TABLE, sizeof(KEY), &(KEY), sizeof(DATA), &(DATA))
/* Don't call directly this function, but use _Py_HASHTABLE_POP() macro */
int _Py_hashtable_pop(
_Py_hashtable_t *ht,
size_t key_size,
const void *pkey,
size_t data_size,
void *data);
#define _Py_HASHTABLE_POP(TABLE, KEY, DATA) \
_Py_hashtable_pop(TABLE, sizeof(KEY), &(KEY), sizeof(DATA), &(DATA))
#endif /* Py_LIMITED_API */
#endif
| 6,296 | 214 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_stat.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/calls/calls.h"
#include "libc/calls/weirdtypes.h"
#include "libc/sysv/consts/s.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_stat");
PYTHON_PROVIDE("_stat.SF_APPEND");
PYTHON_PROVIDE("_stat.SF_ARCHIVED");
PYTHON_PROVIDE("_stat.SF_IMMUTABLE");
PYTHON_PROVIDE("_stat.SF_NOUNLINK");
PYTHON_PROVIDE("_stat.SF_SNAPSHOT");
PYTHON_PROVIDE("_stat.ST_ATIME");
PYTHON_PROVIDE("_stat.ST_CTIME");
PYTHON_PROVIDE("_stat.ST_DEV");
PYTHON_PROVIDE("_stat.ST_GID");
PYTHON_PROVIDE("_stat.ST_INO");
PYTHON_PROVIDE("_stat.ST_MODE");
PYTHON_PROVIDE("_stat.ST_MTIME");
PYTHON_PROVIDE("_stat.ST_NLINK");
PYTHON_PROVIDE("_stat.ST_SIZE");
PYTHON_PROVIDE("_stat.ST_UID");
PYTHON_PROVIDE("_stat.S_ENFMT");
PYTHON_PROVIDE("_stat.S_IEXEC");
PYTHON_PROVIDE("_stat.S_IFBLK");
PYTHON_PROVIDE("_stat.S_IFCHR");
PYTHON_PROVIDE("_stat.S_IFDIR");
PYTHON_PROVIDE("_stat.S_IFDOOR");
PYTHON_PROVIDE("_stat.S_IFIFO");
PYTHON_PROVIDE("_stat.S_IFLNK");
PYTHON_PROVIDE("_stat.S_IFMT");
PYTHON_PROVIDE("_stat.S_IFPORT");
PYTHON_PROVIDE("_stat.S_IFREG");
PYTHON_PROVIDE("_stat.S_IFSOCK");
PYTHON_PROVIDE("_stat.S_IFWHT");
PYTHON_PROVIDE("_stat.S_IMODE");
PYTHON_PROVIDE("_stat.S_IREAD");
PYTHON_PROVIDE("_stat.S_IRGRP");
PYTHON_PROVIDE("_stat.S_IROTH");
PYTHON_PROVIDE("_stat.S_IRUSR");
PYTHON_PROVIDE("_stat.S_IRWXG");
PYTHON_PROVIDE("_stat.S_IRWXO");
PYTHON_PROVIDE("_stat.S_IRWXU");
PYTHON_PROVIDE("_stat.S_ISBLK");
PYTHON_PROVIDE("_stat.S_ISCHR");
PYTHON_PROVIDE("_stat.S_ISDIR");
PYTHON_PROVIDE("_stat.S_ISDOOR");
PYTHON_PROVIDE("_stat.S_ISFIFO");
PYTHON_PROVIDE("_stat.S_ISGID");
PYTHON_PROVIDE("_stat.S_ISLNK");
PYTHON_PROVIDE("_stat.S_ISPORT");
PYTHON_PROVIDE("_stat.S_ISREG");
PYTHON_PROVIDE("_stat.S_ISSOCK");
PYTHON_PROVIDE("_stat.S_ISUID");
PYTHON_PROVIDE("_stat.S_ISVTX");
PYTHON_PROVIDE("_stat.S_ISWHT");
PYTHON_PROVIDE("_stat.S_IWGRP");
PYTHON_PROVIDE("_stat.S_IWOTH");
PYTHON_PROVIDE("_stat.S_IWRITE");
PYTHON_PROVIDE("_stat.S_IWUSR");
PYTHON_PROVIDE("_stat.S_IXGRP");
PYTHON_PROVIDE("_stat.S_IXOTH");
PYTHON_PROVIDE("_stat.S_IXUSR");
PYTHON_PROVIDE("_stat.UF_APPEND");
PYTHON_PROVIDE("_stat.UF_COMPRESSED");
PYTHON_PROVIDE("_stat.UF_HIDDEN");
PYTHON_PROVIDE("_stat.UF_IMMUTABLE");
PYTHON_PROVIDE("_stat.UF_NODUMP");
PYTHON_PROVIDE("_stat.UF_NOUNLINK");
PYTHON_PROVIDE("_stat.UF_OPAQUE");
PYTHON_PROVIDE("_stat.filemode");
/* stat.h interface
*
* The module defines all S_IF*, S_I*, UF_*, SF_* and ST_* constants to
* sensible default values as well as defines S_IS*() macros in order to keep
* backward compatibility with the old stat.py module.
*
* New constants and macros such as S_IFDOOR / S_ISDOOR() are always defined
* as int 0.
*
* NOTE: POSIX only defines the values of the S_I* permission bits.
*
*/
/* FILE_ATTRIBUTE_INTEGRITY_STREAM and FILE_ATTRIBUTE_NO_SCRUB_DATA
are not present in VC2010, so define them manually */
#ifndef FILE_ATTRIBUTE_INTEGRITY_STREAM
# define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x8000
#endif
#ifndef FILE_ATTRIBUTE_NO_SCRUB_DATA
# define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x20000
#endif
/* S_IFXXX constants (file types)
*
* Only the names are defined by POSIX but not their value. All common file
* types seems to have the same numeric value on all platforms, though.
*
* pyport.h guarantees S_IFMT, S_IFDIR, S_IFCHR, S_IFREG and S_IFLNK
*/
#ifndef S_IFDOOR
# define S_IFDOOR 0
#endif
#ifndef S_IFPORT
# define S_IFPORT 0
#endif
#ifndef S_IFWHT
# define S_IFWHT 0
#endif
/* S_ISXXX()
* pyport.h defines S_ISDIR(), S_ISREG() and S_ISCHR()
*/
#ifndef S_ISDOOR
# define S_ISDOOR(mode) 0
#endif
#ifndef S_ISPORT
# define S_ISPORT(mode) 0
#endif
#ifndef S_ISWHT
# define S_ISWHT(mode) 0
#endif
/* S_I* file permission
*
* The permission bit value are defined by POSIX standards.
*/
#ifndef S_ISUID
# define S_ISUID 04000
#endif
#ifndef S_ISGID
# define S_ISGID 02000
#endif
/* what is S_ENFMT? */
#ifndef S_ENFMT
# define S_ENFMT S_ISGID
#endif
#ifndef S_ISVTX
# define S_ISVTX 01000
#endif
#ifndef S_IREAD
# define S_IREAD 00400
#endif
#ifndef S_IWRITE
# define S_IWRITE 00200
#endif
#ifndef S_IEXEC
# define S_IEXEC 00100
#endif
#ifndef S_IRWXU
# define S_IRWXU 00700
#endif
#ifndef S_IRUSR
# define S_IRUSR 00400
#endif
#ifndef S_IWUSR
# define S_IWUSR 00200
#endif
#ifndef S_IXUSR
# define S_IXUSR 00100
#endif
#ifndef S_IRWXG
# define S_IRWXG 00070
#endif
#ifndef S_IRGRP
# define S_IRGRP 00040
#endif
#ifndef S_IWGRP
# define S_IWGRP 00020
#endif
#ifndef S_IXGRP
# define S_IXGRP 00010
#endif
#ifndef S_IRWXO
# define S_IRWXO 00007
#endif
#ifndef S_IROTH
# define S_IROTH 00004
#endif
#ifndef S_IWOTH
# define S_IWOTH 00002
#endif
#ifndef S_IXOTH
# define S_IXOTH 00001
#endif
/* Names for file flags */
#ifndef UF_NODUMP
# define UF_NODUMP 0x00000001
#endif
#ifndef UF_IMMUTABLE
# define UF_IMMUTABLE 0x00000002
#endif
#ifndef UF_APPEND
# define UF_APPEND 0x00000004
#endif
#ifndef UF_OPAQUE
# define UF_OPAQUE 0x00000008
#endif
#ifndef UF_NOUNLINK
# define UF_NOUNLINK 0x00000010
#endif
#ifndef UF_COMPRESSED
# define UF_COMPRESSED 0x00000020
#endif
#ifndef UF_HIDDEN
# define UF_HIDDEN 0x00008000
#endif
#ifndef SF_ARCHIVED
# define SF_ARCHIVED 0x00010000
#endif
#ifndef SF_IMMUTABLE
# define SF_IMMUTABLE 0x00020000
#endif
#ifndef SF_APPEND
# define SF_APPEND 0x00040000
#endif
#ifndef SF_NOUNLINK
# define SF_NOUNLINK 0x00100000
#endif
#ifndef SF_SNAPSHOT
# define SF_SNAPSHOT 0x00200000
#endif
static mode_t
_PyLong_AsMode_t(PyObject *op)
{
unsigned long value;
mode_t mode;
value = PyLong_AsUnsignedLong(op);
if ((value == (unsigned long)-1) && PyErr_Occurred())
return (mode_t)-1;
mode = (mode_t)value;
if ((unsigned long)mode != value) {
PyErr_SetString(PyExc_OverflowError, "mode out of range");
return (mode_t)-1;
}
return mode;
}
#define stat_S_ISFUNC(isfunc, doc) \
static PyObject * \
stat_ ##isfunc (PyObject *self, PyObject *omode) \
{ \
mode_t mode = _PyLong_AsMode_t(omode); \
if ((mode == (mode_t)-1) && PyErr_Occurred()) \
return NULL; \
return PyBool_FromLong(isfunc(mode)); \
} \
PyDoc_STRVAR(stat_ ## isfunc ## _doc, doc)
stat_S_ISFUNC(S_ISDIR,
"S_ISDIR(mode) -> bool\n\n"
"Return True if mode is from a directory.");
stat_S_ISFUNC(S_ISCHR,
"S_ISCHR(mode) -> bool\n\n"
"Return True if mode is from a character special device file.");
stat_S_ISFUNC(S_ISBLK,
"S_ISBLK(mode) -> bool\n\n"
"Return True if mode is from a block special device file.");
stat_S_ISFUNC(S_ISREG,
"S_ISREG(mode) -> bool\n\n"
"Return True if mode is from a regular file.");
stat_S_ISFUNC(S_ISFIFO,
"S_ISFIFO(mode) -> bool\n\n"
"Return True if mode is from a FIFO (named pipe).");
stat_S_ISFUNC(S_ISLNK,
"S_ISLNK(mode) -> bool\n\n"
"Return True if mode is from a symbolic link.");
stat_S_ISFUNC(S_ISSOCK,
"S_ISSOCK(mode) -> bool\n\n"
"Return True if mode is from a socket.");
stat_S_ISFUNC(S_ISDOOR,
"S_ISDOOR(mode) -> bool\n\n"
"Return True if mode is from a door.");
stat_S_ISFUNC(S_ISPORT,
"S_ISPORT(mode) -> bool\n\n"
"Return True if mode is from an event port.");
stat_S_ISFUNC(S_ISWHT,
"S_ISWHT(mode) -> bool\n\n"
"Return True if mode is from a whiteout.");
PyDoc_STRVAR(stat_S_IMODE_doc,
"Return the portion of the file's mode that can be set by os.chmod().");
static PyObject *
stat_S_IMODE(PyObject *self, PyObject *omode)
{
mode_t mode = _PyLong_AsMode_t(omode);
if ((mode == (mode_t)-1) && PyErr_Occurred())
return NULL;
return PyLong_FromUnsignedLong(mode & 07777);
}
PyDoc_STRVAR(stat_S_IFMT_doc,
"Return the portion of the file's mode that describes the file type.");
static PyObject *
stat_S_IFMT(PyObject *self, PyObject *omode)
{
mode_t mode = _PyLong_AsMode_t(omode);
if ((mode == (mode_t)-1) && PyErr_Occurred())
return NULL;
return PyLong_FromUnsignedLong(mode & S_IFMT);
}
/* file type chars according to
http://en.wikibooks.org/wiki/C_Programming/POSIX_Reference/sys/stat.h */
static char
filetype(mode_t mode)
{
/* common cases first */
if (S_ISREG(mode)) return '-';
if (S_ISDIR(mode)) return 'd';
if (S_ISLNK(mode)) return 'l';
/* special files */
if (S_ISBLK(mode)) return 'b';
if (S_ISCHR(mode)) return 'c';
if (S_ISFIFO(mode)) return 'p';
if (S_ISSOCK(mode)) return 's';
/* non-standard types */
if (S_ISDOOR(mode)) return 'D';
if (S_ISPORT(mode)) return 'P';
if (S_ISWHT(mode)) return 'w';
/* unknown */
return '?';
}
static void
fileperm(mode_t mode, char *buf)
{
buf[0] = mode & S_IRUSR ? 'r' : '-';
buf[1] = mode & S_IWUSR ? 'w' : '-';
if (mode & S_ISUID) {
buf[2] = mode & S_IXUSR ? 's' : 'S';
} else {
buf[2] = mode & S_IXUSR ? 'x' : '-';
}
buf[3] = mode & S_IRGRP ? 'r' : '-';
buf[4] = mode & S_IWGRP ? 'w' : '-';
if (mode & S_ISGID) {
buf[5] = mode & S_IXGRP ? 's' : 'S';
} else {
buf[5] = mode & S_IXGRP ? 'x' : '-';
}
buf[6] = mode & S_IROTH ? 'r' : '-';
buf[7] = mode & S_IWOTH ? 'w' : '-';
if (mode & S_ISVTX) {
buf[8] = mode & S_IXOTH ? 't' : 'T';
} else {
buf[8] = mode & S_IXOTH ? 'x' : '-';
}
}
PyDoc_STRVAR(stat_filemode_doc,
"Convert a file's mode to a string of the form '-rwxrwxrwx'");
static PyObject *
stat_filemode(PyObject *self, PyObject *omode)
{
char buf[10];
mode_t mode;
mode = _PyLong_AsMode_t(omode);
if ((mode == (mode_t)-1) && PyErr_Occurred())
return NULL;
buf[0] = filetype(mode);
fileperm(mode, &buf[1]);
return PyUnicode_FromStringAndSize(buf, 10);
}
static PyMethodDef stat_methods[] = {
{"S_ISDIR", stat_S_ISDIR, METH_O, stat_S_ISDIR_doc},
{"S_ISCHR", stat_S_ISCHR, METH_O, stat_S_ISCHR_doc},
{"S_ISBLK", stat_S_ISBLK, METH_O, stat_S_ISBLK_doc},
{"S_ISREG", stat_S_ISREG, METH_O, stat_S_ISREG_doc},
{"S_ISFIFO", stat_S_ISFIFO, METH_O, stat_S_ISFIFO_doc},
{"S_ISLNK", stat_S_ISLNK, METH_O, stat_S_ISLNK_doc},
{"S_ISSOCK", stat_S_ISSOCK, METH_O, stat_S_ISSOCK_doc},
{"S_ISDOOR", stat_S_ISDOOR, METH_O, stat_S_ISDOOR_doc},
{"S_ISPORT", stat_S_ISPORT, METH_O, stat_S_ISPORT_doc},
{"S_ISWHT", stat_S_ISWHT, METH_O, stat_S_ISWHT_doc},
{"S_IMODE", stat_S_IMODE, METH_O, stat_S_IMODE_doc},
{"S_IFMT", stat_S_IFMT, METH_O, stat_S_IFMT_doc},
{"filemode", stat_filemode, METH_O, stat_filemode_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc,
"S_IFMT_: file type bits\n\
S_IFDIR: directory\n\
S_IFCHR: character device\n\
S_IFBLK: block device\n\
S_IFREG: regular file\n\
S_IFIFO: fifo (named pipe)\n\
S_IFLNK: symbolic link\n\
S_IFSOCK: socket file\n\
S_IFDOOR: door\n\
S_IFPORT: event port\n\
S_IFWHT: whiteout\n\
\n"
"S_ISUID: set UID bit\n\
S_ISGID: set GID bit\n\
S_ENFMT: file locking enforcement\n\
S_ISVTX: sticky bit\n\
S_IREAD: Unix V7 synonym for S_IRUSR\n\
S_IWRITE: Unix V7 synonym for S_IWUSR\n\
S_IEXEC: Unix V7 synonym for S_IXUSR\n\
S_IRWXU: mask for owner permissions\n\
S_IRUSR: read by owner\n\
S_IWUSR: write by owner\n\
S_IXUSR: execute by owner\n\
S_IRWXG: mask for group permissions\n\
S_IRGRP: read by group\n\
S_IWGRP: write by group\n\
S_IXGRP: execute by group\n\
S_IRWXO: mask for others (not in group) permissions\n\
S_IROTH: read by others\n\
S_IWOTH: write by others\n\
S_IXOTH: execute by others\n\
\n"
"UF_NODUMP: do not dump file\n\
UF_IMMUTABLE: file may not be changed\n\
UF_APPEND: file may only be appended to\n\
UF_OPAQUE: directory is opaque when viewed through a union stack\n\
UF_NOUNLINK: file may not be renamed or deleted\n\
UF_COMPRESSED: OS X: file is hfs-compressed\n\
UF_HIDDEN: OS X: file should not be displayed\n\
SF_ARCHIVED: file may be archived\n\
SF_IMMUTABLE: file may not be changed\n\
SF_APPEND: file may only be appended to\n\
SF_NOUNLINK: file may not be renamed or deleted\n\
SF_SNAPSHOT: file is a snapshot file\n\
\n"
"ST_MODE\n\
ST_INO\n\
ST_DEV\n\
ST_NLINK\n\
ST_UID\n\
ST_GID\n\
ST_SIZE\n\
ST_ATIME\n\
ST_MTIME\n\
ST_CTIME\n\
\n"
"FILE_ATTRIBUTE_*: Windows file attribute constants\n\
(only present on Windows)\n\
");
static struct PyModuleDef statmodule = {
PyModuleDef_HEAD_INIT,
"_stat",
module_doc,
-1,
stat_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__stat(void)
{
PyObject *m;
m = PyModule_Create(&statmodule);
if (m == NULL)
return NULL;
if (PyModule_AddIntMacro(m, S_IFDIR)) return NULL;
if (PyModule_AddIntMacro(m, S_IFCHR)) return NULL;
if (PyModule_AddIntMacro(m, S_IFBLK)) return NULL;
if (PyModule_AddIntMacro(m, S_IFREG)) return NULL;
if (PyModule_AddIntMacro(m, S_IFIFO)) return NULL;
if (PyModule_AddIntMacro(m, S_IFLNK)) return NULL;
if (PyModule_AddIntMacro(m, S_IFSOCK)) return NULL;
if (PyModule_AddIntMacro(m, S_IFDOOR)) return NULL;
if (PyModule_AddIntMacro(m, S_IFPORT)) return NULL;
if (PyModule_AddIntMacro(m, S_IFWHT)) return NULL;
if (PyModule_AddIntMacro(m, S_ISUID)) return NULL;
if (PyModule_AddIntMacro(m, S_ISGID)) return NULL;
if (PyModule_AddIntMacro(m, S_ISVTX)) return NULL;
if (PyModule_AddIntMacro(m, S_ENFMT)) return NULL;
if (PyModule_AddIntMacro(m, S_IREAD)) return NULL;
if (PyModule_AddIntMacro(m, S_IWRITE)) return NULL;
if (PyModule_AddIntMacro(m, S_IEXEC)) return NULL;
if (PyModule_AddIntMacro(m, S_IRWXU)) return NULL;
if (PyModule_AddIntMacro(m, S_IRUSR)) return NULL;
if (PyModule_AddIntMacro(m, S_IWUSR)) return NULL;
if (PyModule_AddIntMacro(m, S_IXUSR)) return NULL;
if (PyModule_AddIntMacro(m, S_IRWXG)) return NULL;
if (PyModule_AddIntMacro(m, S_IRGRP)) return NULL;
if (PyModule_AddIntMacro(m, S_IWGRP)) return NULL;
if (PyModule_AddIntMacro(m, S_IXGRP)) return NULL;
if (PyModule_AddIntMacro(m, S_IRWXO)) return NULL;
if (PyModule_AddIntMacro(m, S_IROTH)) return NULL;
if (PyModule_AddIntMacro(m, S_IWOTH)) return NULL;
if (PyModule_AddIntMacro(m, S_IXOTH)) return NULL;
if (PyModule_AddIntMacro(m, UF_NODUMP)) return NULL;
if (PyModule_AddIntMacro(m, UF_IMMUTABLE)) return NULL;
if (PyModule_AddIntMacro(m, UF_APPEND)) return NULL;
if (PyModule_AddIntMacro(m, UF_OPAQUE)) return NULL;
if (PyModule_AddIntMacro(m, UF_NOUNLINK)) return NULL;
if (PyModule_AddIntMacro(m, UF_COMPRESSED)) return NULL;
if (PyModule_AddIntMacro(m, UF_HIDDEN)) return NULL;
if (PyModule_AddIntMacro(m, SF_ARCHIVED)) return NULL;
if (PyModule_AddIntMacro(m, SF_IMMUTABLE)) return NULL;
if (PyModule_AddIntMacro(m, SF_APPEND)) return NULL;
if (PyModule_AddIntMacro(m, SF_NOUNLINK)) return NULL;
if (PyModule_AddIntMacro(m, SF_SNAPSHOT)) return NULL;
if (PyModule_AddIntConstant(m, "ST_MODE", 0)) return NULL;
if (PyModule_AddIntConstant(m, "ST_INO", 1)) return NULL;
if (PyModule_AddIntConstant(m, "ST_DEV", 2)) return NULL;
if (PyModule_AddIntConstant(m, "ST_NLINK", 3)) return NULL;
if (PyModule_AddIntConstant(m, "ST_UID", 4)) return NULL;
if (PyModule_AddIntConstant(m, "ST_GID", 5)) return NULL;
if (PyModule_AddIntConstant(m, "ST_SIZE", 6)) return NULL;
if (PyModule_AddIntConstant(m, "ST_ATIME", 7)) return NULL;
if (PyModule_AddIntConstant(m, "ST_MTIME", 8)) return NULL;
if (PyModule_AddIntConstant(m, "ST_CTIME", 9)) return NULL;
#ifdef MS_WINDOWS
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_ARCHIVE)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_COMPRESSED)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_DEVICE)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_DIRECTORY)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_ENCRYPTED)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_HIDDEN)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_INTEGRITY_STREAM)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_NORMAL)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_NOT_CONTENT_INDEXED)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_NO_SCRUB_DATA)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_OFFLINE)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_READONLY)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_REPARSE_POINT)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_SPARSE_FILE)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_SYSTEM)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_TEMPORARY)) return NULL;
if (PyModule_AddIntMacro(m, FILE_ATTRIBUTE_VIRTUAL)) return NULL;
#endif
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__stat = {
"_stat",
PyInit__stat,
};
| 18,600 | 635 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_localemodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/str/langinfo.h"
#include "libc/str/locale.h"
#include "libc/str/unicode.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_locale");
PYTHON_PROVIDE("_locale.CHAR_MAX");
PYTHON_PROVIDE("_locale.Error");
PYTHON_PROVIDE("_locale.LC_ALL");
PYTHON_PROVIDE("_locale.LC_COLLATE");
PYTHON_PROVIDE("_locale.LC_CTYPE");
PYTHON_PROVIDE("_locale.LC_MESSAGES");
PYTHON_PROVIDE("_locale.LC_MONETARY");
PYTHON_PROVIDE("_locale.LC_NUMERIC");
PYTHON_PROVIDE("_locale.LC_TIME");
PYTHON_PROVIDE("_locale.localeconv");
PYTHON_PROVIDE("_locale.setlocale");
/***********************************************************
Copyright (C) 1997, 2002, 2003, 2007, 2008 Martin von Loewis
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies.
This software comes with no warranty. Use at your own risk.
******************************************************************/
PyDoc_STRVAR(locale__doc__, "Support for POSIX locales.");
static PyObject *Error;
/* support functions for formatting floating point numbers */
PyDoc_STRVAR(setlocale__doc__,
"(integer,string=None) -> string. Activates/queries locale processing.");
/* the grouping is terminated by either 0 or CHAR_MAX */
static PyObject*
copy_grouping(const char* s)
{
int i;
PyObject *result, *val = NULL;
if (s[0] == '\0') {
/* empty string: no grouping at all */
return PyList_New(0);
}
for (i = 0; s[i] != '\0' && s[i] != CHAR_MAX; i++)
; /* nothing */
result = PyList_New(i+1);
if (!result)
return NULL;
i = -1;
do {
i++;
val = PyLong_FromLong(s[i]);
if (val == NULL) {
Py_DECREF(result);
return NULL;
}
PyList_SET_ITEM(result, i, val);
} while (s[i] != '\0' && s[i] != CHAR_MAX);
return result;
}
static PyObject*
PyLocale_setlocale(PyObject* self, PyObject* args)
{
int category;
char *locale = NULL, *result;
PyObject *result_object;
if (!PyArg_ParseTuple(args, "i|z:setlocale", &category, &locale))
return NULL;
#if defined(MS_WINDOWS)
if (category < LC_MIN || category > LC_MAX)
{
PyErr_SetString(Error, "invalid locale category");
return NULL;
}
#endif
if (locale) {
/* set locale */
result = setlocale(category, locale);
if (!result) {
/* operation failed, no setting was changed */
PyErr_SetString(Error, "unsupported locale setting");
return NULL;
}
result_object = PyUnicode_DecodeLocale(result, NULL);
if (!result_object)
return NULL;
} else {
/* get locale */
result = setlocale(category, NULL);
if (!result) {
PyErr_SetString(Error, "locale query failed");
return NULL;
}
result_object = PyUnicode_DecodeLocale(result, NULL);
}
return result_object;
}
static int
locale_is_ascii(const char *str)
{
return (strlen(str) == 1 && ((unsigned char)str[0]) <= 127);
}
static int
locale_decode_monetary(PyObject *dict, struct lconv *lc)
{
int change_locale;
change_locale = (!locale_is_ascii(lc->int_curr_symbol)
|| !locale_is_ascii(lc->currency_symbol)
|| !locale_is_ascii(lc->mon_decimal_point)
|| !locale_is_ascii(lc->mon_thousands_sep));
/* Keep a copy of the LC_CTYPE locale */
char *oldloc = NULL, *loc = NULL;
if (change_locale) {
oldloc = setlocale(LC_CTYPE, NULL);
if (!oldloc) {
PyErr_SetString(PyExc_RuntimeWarning,
"failed to get LC_CTYPE locale");
return -1;
}
oldloc = _PyMem_Strdup(oldloc);
if (!oldloc) {
PyErr_NoMemory();
return -1;
}
loc = setlocale(LC_MONETARY, NULL);
if (loc != NULL && strcmp(loc, oldloc) == 0) {
loc = NULL;
}
if (loc != NULL) {
/* Only set the locale temporarily the LC_CTYPE locale
to the LC_MONETARY locale if the two locales are different and
at least one string is non-ASCII. */
setlocale(LC_CTYPE, loc);
}
}
int res = -1;
#define RESULT_STRING(ATTR) \
do { \
PyObject *obj; \
obj = PyUnicode_DecodeLocale(lc->ATTR, NULL); \
if (obj == NULL) { \
goto done; \
} \
if (PyDict_SetItemString(dict, Py_STRINGIFY(ATTR), obj) < 0) { \
Py_DECREF(obj); \
goto done; \
} \
Py_DECREF(obj); \
} while (0)
RESULT_STRING(int_curr_symbol);
RESULT_STRING(currency_symbol);
RESULT_STRING(mon_decimal_point);
RESULT_STRING(mon_thousands_sep);
#undef RESULT_STRING
res = 0;
done:
if (loc != NULL) {
setlocale(LC_CTYPE, oldloc);
}
PyMem_Free(oldloc);
return res;
}
PyDoc_STRVAR(localeconv__doc__,
"() -> dict. Returns numeric and monetary locale-specific parameters.");
static PyObject*
PyLocale_localeconv(PyObject* self)
{
PyObject* result;
struct lconv *l;
PyObject *x;
result = PyDict_New();
if (!result)
return NULL;
/* if LC_NUMERIC is different in the C library, use saved value */
l = localeconv();
/* hopefully, the localeconv result survives the C library calls
involved herein */
#define RESULT(key, obj)\
do { \
if (obj == NULL) \
goto failed; \
if (PyDict_SetItemString(result, key, obj) < 0) { \
Py_DECREF(obj); \
goto failed; \
} \
Py_DECREF(obj); \
} while (0)
#define RESULT_STRING(s)\
do { \
x = PyUnicode_DecodeLocale(l->s, NULL); \
RESULT(#s, x); \
} while (0)
#define RESULT_INT(i)\
do { \
x = PyLong_FromLong(l->i); \
RESULT(#i, x); \
} while (0)
/* Monetary information: LC_MONETARY encoding */
if (locale_decode_monetary(result, l) < 0) {
goto failed;
}
x = copy_grouping(l->mon_grouping);
RESULT("mon_grouping", x);
RESULT_STRING(positive_sign);
RESULT_STRING(negative_sign);
RESULT_INT(int_frac_digits);
RESULT_INT(frac_digits);
RESULT_INT(p_cs_precedes);
RESULT_INT(p_sep_by_space);
RESULT_INT(n_cs_precedes);
RESULT_INT(n_sep_by_space);
RESULT_INT(p_sign_posn);
RESULT_INT(n_sign_posn);
/* Numeric information: LC_NUMERIC encoding */
PyObject *decimal_point, *thousands_sep;
const char *grouping;
if (_Py_GetLocaleconvNumeric(&decimal_point,
&thousands_sep,
&grouping) < 0) {
goto failed;
}
if (PyDict_SetItemString(result, "decimal_point", decimal_point) < 0) {
Py_DECREF(decimal_point);
Py_DECREF(thousands_sep);
goto failed;
}
Py_DECREF(decimal_point);
if (PyDict_SetItemString(result, "thousands_sep", thousands_sep) < 0) {
Py_DECREF(thousands_sep);
goto failed;
}
Py_DECREF(thousands_sep);
x = copy_grouping(grouping);
RESULT("grouping", x);
return result;
failed:
Py_XDECREF(result);
return NULL;
#undef RESULT
#undef RESULT_STRING
#undef RESULT_INT
}
#if defined(HAVE_WCSCOLL)
PyDoc_STRVAR(strcoll__doc__,
"string,string -> int. Compares two strings according to the locale.");
static PyObject*
PyLocale_strcoll(PyObject* self, PyObject* args)
{
PyObject *os1, *os2, *result = NULL;
wchar_t *ws1 = NULL, *ws2 = NULL;
if (!PyArg_ParseTuple(args, "UU:strcoll", &os1, &os2))
return NULL;
/* Convert the unicode strings to wchar[]. */
ws1 = _PyUnicode_AsWideCharString(os1);
if (ws1 == NULL)
goto done;
ws2 = _PyUnicode_AsWideCharString(os2);
if (ws2 == NULL)
goto done;
/* Collate the strings. */
result = PyLong_FromLong(wcscoll(ws1, ws2));
done:
/* Deallocate everything. */
if (ws1) PyMem_FREE(ws1);
if (ws2) PyMem_FREE(ws2);
return result;
}
#endif
#ifdef HAVE_WCSXFRM
PyDoc_STRVAR(strxfrm__doc__,
"strxfrm(string) -> string.\n\
\n\
Return a string that can be used as a key for locale-aware comparisons.");
static PyObject*
PyLocale_strxfrm(PyObject* self, PyObject* args)
{
PyObject *str;
Py_ssize_t n1;
wchar_t *s = NULL, *buf = NULL;
size_t n2;
PyObject *result = NULL;
if (!PyArg_ParseTuple(args, "U:strxfrm", &str))
return NULL;
s = PyUnicode_AsWideCharString(str, &n1);
if (s == NULL)
goto exit;
if (wcslen(s) != (size_t)n1) {
PyErr_SetString(PyExc_ValueError,
"embedded null character");
goto exit;
}
/* assume no change in size, first */
n1 = n1 + 1;
buf = PyMem_New(wchar_t, n1);
if (!buf) {
PyErr_NoMemory();
goto exit;
}
n2 = wcsxfrm(buf, s, n1);
if (n2 >= (size_t)n1) {
/* more space needed */
wchar_t * new_buf = PyMem_Realloc(buf, (n2+1)*sizeof(wchar_t));
if (!new_buf) {
PyErr_NoMemory();
goto exit;
}
buf = new_buf;
n2 = wcsxfrm(buf, s, n2+1);
}
result = PyUnicode_FromWideChar(buf, n2);
exit:
if (buf)
PyMem_Free(buf);
if (s)
PyMem_Free(s);
return result;
}
#endif
#if defined(MS_WINDOWS)
static PyObject*
PyLocale_getdefaultlocale(PyObject* self)
{
char encoding[100];
char locale[100];
PyOS_snprintf(encoding, sizeof(encoding), "cp%d", GetACP());
if (GetLocaleInfo(LOCALE_USER_DEFAULT,
LOCALE_SISO639LANGNAME,
locale, sizeof(locale))) {
Py_ssize_t i = strlen(locale);
locale[i++] = '_';
if (GetLocaleInfo(LOCALE_USER_DEFAULT,
LOCALE_SISO3166CTRYNAME,
locale+i, (int)(sizeof(locale)-i)))
return Py_BuildValue("ss", locale, encoding);
}
/* If we end up here, this windows version didn't know about
ISO639/ISO3166 names (it's probably Windows 95). Return the
Windows language identifier instead (a hexadecimal number) */
locale[0] = '0';
locale[1] = 'x';
if (GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_IDEFAULTLANGUAGE,
locale+2, sizeof(locale)-2)) {
return Py_BuildValue("ss", locale, encoding);
}
/* cannot determine the language code (very unlikely) */
Py_INCREF(Py_None);
return Py_BuildValue("Os", Py_None, encoding);
}
#endif
#ifdef HAVE_LANGINFO_H
#define LANGINFO(X) {#X, X}
static struct langinfo_constant{
char* name;
int value;
} langinfo_constants[] =
{
/* These constants should exist on any langinfo implementation */
LANGINFO(DAY_1),
LANGINFO(DAY_2),
LANGINFO(DAY_3),
LANGINFO(DAY_4),
LANGINFO(DAY_5),
LANGINFO(DAY_6),
LANGINFO(DAY_7),
LANGINFO(ABDAY_1),
LANGINFO(ABDAY_2),
LANGINFO(ABDAY_3),
LANGINFO(ABDAY_4),
LANGINFO(ABDAY_5),
LANGINFO(ABDAY_6),
LANGINFO(ABDAY_7),
LANGINFO(MON_1),
LANGINFO(MON_2),
LANGINFO(MON_3),
LANGINFO(MON_4),
LANGINFO(MON_5),
LANGINFO(MON_6),
LANGINFO(MON_7),
LANGINFO(MON_8),
LANGINFO(MON_9),
LANGINFO(MON_10),
LANGINFO(MON_11),
LANGINFO(MON_12),
LANGINFO(ABMON_1),
LANGINFO(ABMON_2),
LANGINFO(ABMON_3),
LANGINFO(ABMON_4),
LANGINFO(ABMON_5),
LANGINFO(ABMON_6),
LANGINFO(ABMON_7),
LANGINFO(ABMON_8),
LANGINFO(ABMON_9),
LANGINFO(ABMON_10),
LANGINFO(ABMON_11),
LANGINFO(ABMON_12),
#ifdef RADIXCHAR
/* The following are not available with glibc 2.0 */
LANGINFO(RADIXCHAR),
LANGINFO(THOUSEP),
/* YESSTR and NOSTR are deprecated in glibc, since they are
a special case of message translation, which should be rather
done using gettext. So we don't expose it to Python in the
first place.
LANGINFO(YESSTR),
LANGINFO(NOSTR),
*/
LANGINFO(CRNCYSTR),
#endif
LANGINFO(D_T_FMT),
LANGINFO(D_FMT),
LANGINFO(T_FMT),
LANGINFO(AM_STR),
LANGINFO(PM_STR),
/* The following constants are available only with XPG4, but...
AIX 3.2. only has CODESET.
OpenBSD doesn't have CODESET but has T_FMT_AMPM, and doesn't have
a few of the others.
Solution: ifdef-test them all. */
#ifdef CODESET
LANGINFO(CODESET),
#endif
#ifdef T_FMT_AMPM
LANGINFO(T_FMT_AMPM),
#endif
#ifdef ERA
LANGINFO(ERA),
#endif
#ifdef ERA_D_FMT
LANGINFO(ERA_D_FMT),
#endif
#ifdef ERA_D_T_FMT
LANGINFO(ERA_D_T_FMT),
#endif
#ifdef ERA_T_FMT
LANGINFO(ERA_T_FMT),
#endif
#ifdef ALT_DIGITS
LANGINFO(ALT_DIGITS),
#endif
#ifdef YESEXPR
LANGINFO(YESEXPR),
#endif
#ifdef NOEXPR
LANGINFO(NOEXPR),
#endif
#ifdef _DATE_FMT
/* This is not available in all glibc versions that have CODESET. */
LANGINFO(_DATE_FMT),
#endif
{0, 0}
};
PyDoc_STRVAR(nl_langinfo__doc__,
"nl_langinfo(key) -> string\n"
"Return the value for the locale information associated with key.");
static PyObject*
PyLocale_nl_langinfo(PyObject* self, PyObject* args)
{
int item, i;
if (!PyArg_ParseTuple(args, "i:nl_langinfo", &item))
return NULL;
/* Check whether this is a supported constant. GNU libc sometimes
returns numeric values in the char* return value, which would
crash PyUnicode_FromString. */
for (i = 0; langinfo_constants[i].name; i++)
if (langinfo_constants[i].value == item) {
/* Check NULL as a workaround for GNU libc's returning NULL
instead of an empty string for nl_langinfo(ERA). */
const char *result = nl_langinfo(item);
result = result != NULL ? result : "";
return PyUnicode_DecodeLocale(result, NULL);
}
PyErr_SetString(PyExc_ValueError, "unsupported langinfo constant");
return NULL;
}
#endif /* HAVE_LANGINFO_H */
#ifdef HAVE_LIBINTL_H
PyDoc_STRVAR(gettext__doc__,
"gettext(msg) -> string\n"
"Return translation of msg.");
static PyObject*
PyIntl_gettext(PyObject* self, PyObject *args)
{
char *in;
if (!PyArg_ParseTuple(args, "s", &in))
return 0;
return PyUnicode_DecodeLocale(gettext(in), NULL);
}
PyDoc_STRVAR(dgettext__doc__,
"dgettext(domain, msg) -> string\n"
"Return translation of msg in domain.");
static PyObject*
PyIntl_dgettext(PyObject* self, PyObject *args)
{
char *domain, *in;
if (!PyArg_ParseTuple(args, "zs", &domain, &in))
return 0;
return PyUnicode_DecodeLocale(dgettext(domain, in), NULL);
}
PyDoc_STRVAR(dcgettext__doc__,
"dcgettext(domain, msg, category) -> string\n"
"Return translation of msg in domain and category.");
static PyObject*
PyIntl_dcgettext(PyObject *self, PyObject *args)
{
char *domain, *msgid;
int category;
if (!PyArg_ParseTuple(args, "zsi", &domain, &msgid, &category))
return 0;
return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL);
}
PyDoc_STRVAR(textdomain__doc__,
"textdomain(domain) -> string\n"
"Set the C library's textdmain to domain, returning the new domain.");
static PyObject*
PyIntl_textdomain(PyObject* self, PyObject* args)
{
char *domain;
if (!PyArg_ParseTuple(args, "z", &domain))
return 0;
domain = textdomain(domain);
if (!domain) {
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
return PyUnicode_DecodeLocale(domain, NULL);
}
PyDoc_STRVAR(bindtextdomain__doc__,
"bindtextdomain(domain, dir) -> string\n"
"Bind the C library's domain to dir.");
static PyObject*
PyIntl_bindtextdomain(PyObject* self,PyObject*args)
{
char *domain, *dirname, *current_dirname;
PyObject *dirname_obj, *dirname_bytes = NULL, *result;
if (!PyArg_ParseTuple(args, "sO", &domain, &dirname_obj))
return 0;
if (!strlen(domain)) {
PyErr_SetString(Error, "domain must be a non-empty string");
return 0;
}
if (dirname_obj != Py_None) {
if (!PyUnicode_FSConverter(dirname_obj, &dirname_bytes))
return NULL;
dirname = PyBytes_AsString(dirname_bytes);
} else {
dirname_bytes = NULL;
dirname = NULL;
}
current_dirname = bindtextdomain(domain, dirname);
if (current_dirname == NULL) {
Py_XDECREF(dirname_bytes);
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
result = PyUnicode_DecodeLocale(current_dirname, NULL);
Py_XDECREF(dirname_bytes);
return result;
}
#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
PyDoc_STRVAR(bind_textdomain_codeset__doc__,
"bind_textdomain_codeset(domain, codeset) -> string\n"
"Bind the C library's domain to codeset.");
static PyObject*
PyIntl_bind_textdomain_codeset(PyObject* self,PyObject*args)
{
char *domain,*codeset;
if (!PyArg_ParseTuple(args, "sz", &domain, &codeset))
return NULL;
codeset = bind_textdomain_codeset(domain, codeset);
if (codeset)
return PyUnicode_DecodeLocale(codeset, NULL);
Py_RETURN_NONE;
}
#endif
#endif
static struct PyMethodDef PyLocale_Methods[] = {
{"setlocale", (PyCFunction) PyLocale_setlocale,
METH_VARARGS, setlocale__doc__},
{"localeconv", (PyCFunction) PyLocale_localeconv,
METH_NOARGS, localeconv__doc__},
#ifdef HAVE_WCSCOLL
{"strcoll", (PyCFunction) PyLocale_strcoll,
METH_VARARGS, strcoll__doc__},
#endif
#ifdef HAVE_WCSXFRM
{"strxfrm", (PyCFunction) PyLocale_strxfrm,
METH_VARARGS, strxfrm__doc__},
#endif
#if defined(MS_WINDOWS)
{"_getdefaultlocale", (PyCFunction) PyLocale_getdefaultlocale, METH_NOARGS},
#endif
#ifdef HAVE_LANGINFO_H
{"nl_langinfo", (PyCFunction) PyLocale_nl_langinfo,
METH_VARARGS, nl_langinfo__doc__},
#endif
#ifdef HAVE_LIBINTL_H
{"gettext",(PyCFunction)PyIntl_gettext,METH_VARARGS,
gettext__doc__},
{"dgettext",(PyCFunction)PyIntl_dgettext,METH_VARARGS,
dgettext__doc__},
{"dcgettext",(PyCFunction)PyIntl_dcgettext,METH_VARARGS,
dcgettext__doc__},
{"textdomain",(PyCFunction)PyIntl_textdomain,METH_VARARGS,
textdomain__doc__},
{"bindtextdomain",(PyCFunction)PyIntl_bindtextdomain,METH_VARARGS,
bindtextdomain__doc__},
#ifdef HAVE_BIND_TEXTDOMAIN_CODESET
{"bind_textdomain_codeset",(PyCFunction)PyIntl_bind_textdomain_codeset,
METH_VARARGS, bind_textdomain_codeset__doc__},
#endif
#endif
{NULL, NULL}
};
static struct PyModuleDef _localemodule = {
PyModuleDef_HEAD_INIT,
"_locale",
locale__doc__,
-1,
PyLocale_Methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__locale(void)
{
PyObject *m;
#ifdef HAVE_LANGINFO_H
int i;
#endif
m = PyModule_Create(&_localemodule);
if (m == NULL)
return NULL;
PyModule_AddIntMacro(m, LC_CTYPE);
PyModule_AddIntMacro(m, LC_TIME);
PyModule_AddIntMacro(m, LC_COLLATE);
PyModule_AddIntMacro(m, LC_MONETARY);
#ifdef LC_MESSAGES
PyModule_AddIntMacro(m, LC_MESSAGES);
#endif /* LC_MESSAGES */
PyModule_AddIntMacro(m, LC_NUMERIC);
PyModule_AddIntMacro(m, LC_ALL);
PyModule_AddIntMacro(m, CHAR_MAX);
Error = PyErr_NewException("locale.Error", NULL, NULL);
if (Error == NULL) {
Py_DECREF(m);
return NULL;
}
PyModule_AddObject(m, "Error", Error);
#ifdef HAVE_LANGINFO_H
for (i = 0; langinfo_constants[i].name; i++) {
PyModule_AddIntConstant(m, langinfo_constants[i].name,
langinfo_constants[i].value);
}
#endif
if (PyErr_Occurred()) {
Py_DECREF(m);
return NULL;
}
return m;
}
/*
Local variables:
c-basic-offset: 4
indent-tabs-mode: nil
End:
*/
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__locale = {
"_locale",
PyInit__locale,
};
| 21,304 | 784 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_weakref.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/weakrefobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/clinic/_weakref.inc"
/* clang-format off */
PYTHON_PROVIDE("_weakref");
PYTHON_PROVIDE("_weakref.CallableProxyType");
PYTHON_PROVIDE("_weakref.ProxyType");
PYTHON_PROVIDE("_weakref.ReferenceType");
PYTHON_PROVIDE("_weakref._remove_dead_weakref");
PYTHON_PROVIDE("_weakref.getweakrefcount");
PYTHON_PROVIDE("_weakref.getweakrefs");
PYTHON_PROVIDE("_weakref.proxy");
PYTHON_PROVIDE("_weakref.ref");
#define GET_WEAKREFS_LISTPTR(o) \
((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
/*[clinic input]
module _weakref
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=ffec73b85846596d]*/
/*[clinic input]
_weakref.getweakrefcount -> Py_ssize_t
object: object
/
Return the number of weak references to 'object'.
[clinic start generated code]*/
static Py_ssize_t
_weakref_getweakrefcount_impl(PyObject *module, PyObject *object)
/*[clinic end generated code: output=301806d59558ff3e input=cedb69711b6a2507]*/
{
PyWeakReference **list;
if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(object)))
return 0;
list = GET_WEAKREFS_LISTPTR(object);
return _PyWeakref_GetWeakrefCount(*list);
}
static int
is_dead_weakref(PyObject *value)
{
if (!PyWeakref_Check(value)) {
PyErr_SetString(PyExc_TypeError, "not a weakref");
return -1;
}
return PyWeakref_GET_OBJECT(value) == Py_None;
}
/*[clinic input]
_weakref._remove_dead_weakref -> object
dct: object(subclass_of='&PyDict_Type')
key: object
/
Atomically remove key from dict if it points to a dead weakref.
[clinic start generated code]*/
static PyObject *
_weakref__remove_dead_weakref_impl(PyObject *module, PyObject *dct,
PyObject *key)
/*[clinic end generated code: output=d9ff53061fcb875c input=19fc91f257f96a1d]*/
{
if (_PyDict_DelItemIf(dct, key, is_dead_weakref) < 0) {
if (PyErr_ExceptionMatches(PyExc_KeyError))
/* This function is meant to allow safe weak-value dicts
with GC in another thread (see issue #28427), so it's
ok if the key doesn't exist anymore.
*/
PyErr_Clear();
else
return NULL;
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(weakref_getweakrefs__doc__,
"getweakrefs(object) -- return a list of all weak reference objects\n"
"that point to 'object'.");
static PyObject *
weakref_getweakrefs(PyObject *self, PyObject *object)
{
PyObject *result = NULL;
if (PyType_SUPPORTS_WEAKREFS(Py_TYPE(object))) {
PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
Py_ssize_t count = _PyWeakref_GetWeakrefCount(*list);
result = PyList_New(count);
if (result != NULL) {
PyWeakReference *current = *list;
Py_ssize_t i;
for (i = 0; i < count; ++i) {
PyList_SET_ITEM(result, i, (PyObject *) current);
Py_INCREF(current);
current = current->wr_next;
}
}
}
else {
result = PyList_New(0);
}
return result;
}
PyDoc_STRVAR(weakref_proxy__doc__,
"proxy(object[, callback]) -- create a proxy object that weakly\n"
"references 'object'. 'callback', if given, is called with a\n"
"reference to the proxy when 'object' is about to be finalized.");
static PyObject *
weakref_proxy(PyObject *self, PyObject *args)
{
PyObject *object;
PyObject *callback = NULL;
PyObject *result = NULL;
if (PyArg_UnpackTuple(args, "proxy", 1, 2, &object, &callback)) {
result = PyWeakref_NewProxy(object, callback);
}
return result;
}
static PyMethodDef
weakref_functions[] = {
_WEAKREF_GETWEAKREFCOUNT_METHODDEF
_WEAKREF__REMOVE_DEAD_WEAKREF_METHODDEF
{"getweakrefs", weakref_getweakrefs, METH_O,
weakref_getweakrefs__doc__},
{"proxy", weakref_proxy, METH_VARARGS,
weakref_proxy__doc__},
{NULL, NULL, 0, NULL}
};
static struct PyModuleDef weakrefmodule = {
PyModuleDef_HEAD_INIT,
"_weakref",
"Weak-reference support module.",
-1,
weakref_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__weakref(void)
{
PyObject *m;
m = PyModule_Create(&weakrefmodule);
if (m != NULL) {
Py_INCREF(&_PyWeakref_RefType);
PyModule_AddObject(m, "ref",
(PyObject *) &_PyWeakref_RefType);
Py_INCREF(&_PyWeakref_RefType);
PyModule_AddObject(m, "ReferenceType",
(PyObject *) &_PyWeakref_RefType);
Py_INCREF(&_PyWeakref_ProxyType);
PyModule_AddObject(m, "ProxyType",
(PyObject *) &_PyWeakref_ProxyType);
Py_INCREF(&_PyWeakref_CallableProxyType);
PyModule_AddObject(m, "CallableProxyType",
(PyObject *) &_PyWeakref_CallableProxyType);
}
return m;
}
| 6,200 | 198 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/hashlib.h | #ifndef COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_HASHLIB_H_
#define COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_HASHLIB_H_
/* clang-format off */
/* Common code for use by all hashlib related modules. */
/*
* Given a PyObject* obj, fill in the Py_buffer* viewp with the result
* of PyObject_GetBuffer. Sets an exception and issues the erraction
* on any errors, e.g. 'return NULL' or 'goto error'.
*/
#define GET_BUFFER_VIEW_OR_ERROR(obj, viewp, erraction) do { \
if (PyUnicode_Check((obj))) { \
PyErr_SetString(PyExc_TypeError, \
"Unicode-objects must be encoded before hashing");\
erraction; \
} \
if (!PyObject_CheckBuffer((obj))) { \
PyErr_SetString(PyExc_TypeError, \
"object supporting the buffer API required"); \
erraction; \
} \
if (PyObject_GetBuffer((obj), (viewp), PyBUF_SIMPLE) == -1) { \
erraction; \
} \
if ((viewp)->ndim > 1) { \
PyErr_SetString(PyExc_BufferError, \
"Buffer must be single dimension"); \
PyBuffer_Release((viewp)); \
erraction; \
} \
} while(0)
#define GET_BUFFER_VIEW_OR_ERROUT(obj, viewp) \
GET_BUFFER_VIEW_OR_ERROR(obj, viewp, return NULL)
/*
* Helper code to synchronize access to the hash object when the GIL is
* released around a CPU consuming hashlib operation. All code paths that
* access a mutable part of obj must be enclosed in an ENTER_HASHLIB /
* LEAVE_HASHLIB block or explicitly acquire and release the lock inside
* a PY_BEGIN / END_ALLOW_THREADS block if they wish to release the GIL for
* an operation.
*/
#ifdef WITH_THREAD
#include "third_party/python/Include/pythread.h"
#define ENTER_HASHLIB(obj) \
if ((obj)->lock) { \
if (!PyThread_acquire_lock((obj)->lock, 0)) { \
Py_BEGIN_ALLOW_THREADS \
PyThread_acquire_lock((obj)->lock, 1); \
Py_END_ALLOW_THREADS \
} \
}
#define LEAVE_HASHLIB(obj) \
if ((obj)->lock) { \
PyThread_release_lock((obj)->lock); \
}
#else
#define ENTER_HASHLIB(obj)
#define LEAVE_HASHLIB(obj)
#endif
/* TODO(gps): We should probably make this a module or EVPobject attribute
* to allow the user to optimize based on the platform they're using. */
#define HASHLIB_GIL_MINSIZE 2048
#endif /* COSMOPOLITAN_THIRD_PARTY_PYTHON_MODULES_HASHLIB_H_ */
| 2,519 | 69 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_getrecord.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/object.h"
#include "third_party/python/Modules/unicodedata.h"
#include "third_party/python/Modules/unicodedata_unidata.h"
/* clang-format off */
const _PyUnicode_Record *
_PyUnicode_GetRecord(Py_UCS4 c)
{
int k, i;
if (c >= 0x110000) {
i = 0;
} else {
k = _PyUnicode_RecordsShift;
i = _PyUnicode_RecordsIndex1[(c >> k)];
i = _PyUnicode_RecordsIndex2[(i << k) + (c & ((1 << k) - 1))];
}
return _PyUnicode_Records + i;
}
| 1,325 | 25 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_collectionsmodule.c | #include "libc/assert.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/odictobject.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_collections");
PYTHON_PROVIDE("_collections.OrderedDict");
PYTHON_PROVIDE("_collections._count_elements");
PYTHON_PROVIDE("_collections._deque_iterator");
PYTHON_PROVIDE("_collections._deque_reverse_iterator");
PYTHON_PROVIDE("_collections.defaultdict");
PYTHON_PROVIDE("_collections.deque");
/* collections module implementation of a deque() datatype
Written and maintained by Raymond D. Hettinger <[email protected]>
*/
/* The block length may be set to any number over 1. Larger numbers
* reduce the number of calls to the memory allocator, give faster
* indexing and rotation, and reduce the link to data overhead ratio.
* Making the block length a power of two speeds-up the modulo
* and division calculations in deque_item() and deque_ass_item().
*/
#define BLOCKLEN 64
#define CENTER ((BLOCKLEN - 1) / 2)
/* Data for deque objects is stored in a doubly-linked list of fixed
* length blocks. This assures that appends or pops never move any
* other data elements besides the one being appended or popped.
*
* Another advantage is that it completely avoids use of realloc(),
* resulting in more predictable performance.
*
* Textbook implementations of doubly-linked lists store one datum
* per link, but that gives them a 200% memory overhead (a prev and
* next link for each datum) and it costs one malloc() call per data
* element. By using fixed-length blocks, the link to data ratio is
* significantly improved and there are proportionally fewer calls
* to malloc() and free(). The data blocks of consecutive pointers
* also improve cache locality.
*
* The list of blocks is never empty, so d.leftblock and d.rightblock
* are never equal to NULL. The list is not circular.
*
* A deque d's first element is at d.leftblock[leftindex]
* and its last element is at d.rightblock[rightindex].
*
* Unlike Python slice indices, these indices are inclusive on both
* ends. This makes the algorithms for left and right operations
* more symmetrical and it simplifies the design.
*
* The indices, d.leftindex and d.rightindex are always in the range:
* 0 <= index < BLOCKLEN
*
* And their exact relationship is:
* (d.leftindex + d.len - 1) % BLOCKLEN == d.rightindex
*
* Whenever d.leftblock == d.rightblock, then:
* d.leftindex + d.len - 1 == d.rightindex
*
* However, when d.leftblock != d.rightblock, the d.leftindex and
* d.rightindex become indices into distinct blocks and either may
* be larger than the other.
*
* Empty deques have:
* d.len == 0
* d.leftblock == d.rightblock
* d.leftindex == CENTER + 1
* d.rightindex == CENTER
*
* Checking for d.len == 0 is the intended way to see whether d is empty.
*/
typedef struct BLOCK {
struct BLOCK *leftlink;
PyObject *data[BLOCKLEN];
struct BLOCK *rightlink;
} block;
typedef struct {
PyObject_VAR_HEAD
block *leftblock;
block *rightblock;
Py_ssize_t leftindex; /* 0 <= leftindex < BLOCKLEN */
Py_ssize_t rightindex; /* 0 <= rightindex < BLOCKLEN */
size_t state; /* incremented whenever the indices move */
Py_ssize_t maxlen; /* maxlen is -1 for unbounded deques */
PyObject *weakreflist;
} dequeobject;
static PyTypeObject deque_type;
/* For debug builds, add error checking to track the endpoints
* in the chain of links. The goal is to make sure that link
* assignments only take place at endpoints so that links already
* in use do not get overwritten.
*
* CHECK_END should happen before each assignment to a block's link field.
* MARK_END should happen whenever a link field becomes a new endpoint.
* This happens when new blocks are added or whenever an existing
* block is freed leaving another existing block as the new endpoint.
*/
#ifndef NDEBUG
#define MARK_END(link) link = NULL;
#define CHECK_END(link) assert(link == NULL);
#define CHECK_NOT_END(link) assert(link != NULL);
#else
#define MARK_END(link)
#define CHECK_END(link)
#define CHECK_NOT_END(link)
#endif
/* A simple freelisting scheme is used to minimize calls to the memory
allocator. It accommodates common use cases where new blocks are being
added at about the same rate as old blocks are being freed.
*/
#define MAXFREEBLOCKS 16
static Py_ssize_t numfreeblocks = 0;
static block *freeblocks[MAXFREEBLOCKS];
static block *
newblock(void) {
block *b;
if (numfreeblocks) {
numfreeblocks--;
return freeblocks[numfreeblocks];
}
b = PyMem_Malloc(sizeof(block));
if (b != NULL) {
return b;
}
PyErr_NoMemory();
return NULL;
}
static void
freeblock(block *b)
{
if (numfreeblocks < MAXFREEBLOCKS) {
freeblocks[numfreeblocks] = b;
numfreeblocks++;
} else {
PyMem_Free(b);
}
}
static PyObject *
deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
dequeobject *deque;
block *b;
/* create dequeobject structure */
deque = (dequeobject *)type->tp_alloc(type, 0);
if (deque == NULL)
return NULL;
b = newblock();
if (b == NULL) {
Py_DECREF(deque);
return NULL;
}
MARK_END(b->leftlink);
MARK_END(b->rightlink);
assert(BLOCKLEN >= 2);
Py_SIZE(deque) = 0;
deque->leftblock = b;
deque->rightblock = b;
deque->leftindex = CENTER + 1;
deque->rightindex = CENTER;
deque->state = 0;
deque->maxlen = -1;
deque->weakreflist = NULL;
return (PyObject *)deque;
}
static PyObject *
deque_pop(dequeobject *deque, PyObject *unused)
{
PyObject *item;
block *prevblock;
if (Py_SIZE(deque) == 0) {
PyErr_SetString(PyExc_IndexError, "pop from an empty deque");
return NULL;
}
item = deque->rightblock->data[deque->rightindex];
deque->rightindex--;
Py_SIZE(deque)--;
deque->state++;
if (deque->rightindex < 0) {
if (Py_SIZE(deque)) {
prevblock = deque->rightblock->leftlink;
assert(deque->leftblock != deque->rightblock);
freeblock(deque->rightblock);
CHECK_NOT_END(prevblock);
MARK_END(prevblock->rightlink);
deque->rightblock = prevblock;
deque->rightindex = BLOCKLEN - 1;
} else {
assert(deque->leftblock == deque->rightblock);
assert(deque->leftindex == deque->rightindex+1);
/* re-center instead of freeing a block */
deque->leftindex = CENTER + 1;
deque->rightindex = CENTER;
}
}
return item;
}
PyDoc_STRVAR(pop_doc, "Remove and return the rightmost element.");
static PyObject *
deque_popleft(dequeobject *deque, PyObject *unused)
{
PyObject *item;
block *prevblock;
if (Py_SIZE(deque) == 0) {
PyErr_SetString(PyExc_IndexError, "pop from an empty deque");
return NULL;
}
assert(deque->leftblock != NULL);
item = deque->leftblock->data[deque->leftindex];
deque->leftindex++;
Py_SIZE(deque)--;
deque->state++;
if (deque->leftindex == BLOCKLEN) {
if (Py_SIZE(deque)) {
assert(deque->leftblock != deque->rightblock);
prevblock = deque->leftblock->rightlink;
freeblock(deque->leftblock);
CHECK_NOT_END(prevblock);
MARK_END(prevblock->leftlink);
deque->leftblock = prevblock;
deque->leftindex = 0;
} else {
assert(deque->leftblock == deque->rightblock);
assert(deque->leftindex == deque->rightindex+1);
/* re-center instead of freeing a block */
deque->leftindex = CENTER + 1;
deque->rightindex = CENTER;
}
}
return item;
}
PyDoc_STRVAR(popleft_doc, "Remove and return the leftmost element.");
/* The deque's size limit is d.maxlen. The limit can be zero or positive.
* If there is no limit, then d.maxlen == -1.
*
* After an item is added to a deque, we check to see if the size has
* grown past the limit. If it has, we get the size back down to the limit
* by popping an item off of the opposite end. The methods that can
* trigger this are append(), appendleft(), extend(), and extendleft().
*
* The macro to check whether a deque needs to be trimmed uses a single
* unsigned test that returns true whenever 0 <= maxlen < Py_SIZE(deque).
*/
#define NEEDS_TRIM(deque, maxlen) ((size_t)(maxlen) < (size_t)(Py_SIZE(deque)))
static int
deque_append_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
{
if (deque->rightindex == BLOCKLEN - 1) {
block *b = newblock();
if (b == NULL)
return -1;
b->leftlink = deque->rightblock;
CHECK_END(deque->rightblock->rightlink);
deque->rightblock->rightlink = b;
deque->rightblock = b;
MARK_END(b->rightlink);
deque->rightindex = -1;
}
Py_SIZE(deque)++;
deque->rightindex++;
deque->rightblock->data[deque->rightindex] = item;
if (NEEDS_TRIM(deque, maxlen)) {
PyObject *olditem = deque_popleft(deque, NULL);
Py_DECREF(olditem);
} else {
deque->state++;
}
return 0;
}
static PyObject *
deque_append(dequeobject *deque, PyObject *item)
{
Py_INCREF(item);
if (deque_append_internal(deque, item, deque->maxlen) < 0)
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(append_doc, "Add an element to the right side of the deque.");
static int
deque_appendleft_internal(dequeobject *deque, PyObject *item, Py_ssize_t maxlen)
{
if (deque->leftindex == 0) {
block *b = newblock();
if (b == NULL)
return -1;
b->rightlink = deque->leftblock;
CHECK_END(deque->leftblock->leftlink);
deque->leftblock->leftlink = b;
deque->leftblock = b;
MARK_END(b->leftlink);
deque->leftindex = BLOCKLEN;
}
Py_SIZE(deque)++;
deque->leftindex--;
deque->leftblock->data[deque->leftindex] = item;
if (NEEDS_TRIM(deque, deque->maxlen)) {
PyObject *olditem = deque_pop(deque, NULL);
Py_DECREF(olditem);
} else {
deque->state++;
}
return 0;
}
static PyObject *
deque_appendleft(dequeobject *deque, PyObject *item)
{
Py_INCREF(item);
if (deque_appendleft_internal(deque, item, deque->maxlen) < 0)
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(appendleft_doc, "Add an element to the left side of the deque.");
static PyObject*
finalize_iterator(PyObject *it)
{
if (PyErr_Occurred()) {
if (PyErr_ExceptionMatches(PyExc_StopIteration))
PyErr_Clear();
else {
Py_DECREF(it);
return NULL;
}
}
Py_DECREF(it);
Py_RETURN_NONE;
}
/* Run an iterator to exhaustion. Shortcut for
the extend/extendleft methods when maxlen == 0. */
static PyObject*
consume_iterator(PyObject *it)
{
PyObject *(*iternext)(PyObject *);
PyObject *item;
iternext = *Py_TYPE(it)->tp_iternext;
while ((item = iternext(it)) != NULL) {
Py_DECREF(item);
}
return finalize_iterator(it);
}
static PyObject *
deque_extend(dequeobject *deque, PyObject *iterable)
{
PyObject *it, *item;
PyObject *(*iternext)(PyObject *);
Py_ssize_t maxlen = deque->maxlen;
/* Handle case where id(deque) == id(iterable) */
if ((PyObject *)deque == iterable) {
PyObject *result;
PyObject *s = PySequence_List(iterable);
if (s == NULL)
return NULL;
result = deque_extend(deque, s);
Py_DECREF(s);
return result;
}
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
if (maxlen == 0)
return consume_iterator(it);
/* Space saving heuristic. Start filling from the left */
if (Py_SIZE(deque) == 0) {
assert(deque->leftblock == deque->rightblock);
assert(deque->leftindex == deque->rightindex+1);
deque->leftindex = 1;
deque->rightindex = 0;
}
iternext = *Py_TYPE(it)->tp_iternext;
while ((item = iternext(it)) != NULL) {
if (deque->rightindex == BLOCKLEN - 1) {
block *b = newblock();
if (b == NULL) {
Py_DECREF(item);
Py_DECREF(it);
return NULL;
}
b->leftlink = deque->rightblock;
CHECK_END(deque->rightblock->rightlink);
deque->rightblock->rightlink = b;
deque->rightblock = b;
MARK_END(b->rightlink);
deque->rightindex = -1;
}
Py_SIZE(deque)++;
deque->rightindex++;
deque->rightblock->data[deque->rightindex] = item;
if (NEEDS_TRIM(deque, maxlen)) {
PyObject *olditem = deque_popleft(deque, NULL);
Py_DECREF(olditem);
} else {
deque->state++;
}
}
return finalize_iterator(it);
}
PyDoc_STRVAR(extend_doc,
"Extend the right side of the deque with elements from the iterable");
static PyObject *
deque_extendleft(dequeobject *deque, PyObject *iterable)
{
PyObject *it, *item;
PyObject *(*iternext)(PyObject *);
Py_ssize_t maxlen = deque->maxlen;
/* Handle case where id(deque) == id(iterable) */
if ((PyObject *)deque == iterable) {
PyObject *result;
PyObject *s = PySequence_List(iterable);
if (s == NULL)
return NULL;
result = deque_extendleft(deque, s);
Py_DECREF(s);
return result;
}
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
if (maxlen == 0)
return consume_iterator(it);
/* Space saving heuristic. Start filling from the right */
if (Py_SIZE(deque) == 0) {
assert(deque->leftblock == deque->rightblock);
assert(deque->leftindex == deque->rightindex+1);
deque->leftindex = BLOCKLEN - 1;
deque->rightindex = BLOCKLEN - 2;
}
iternext = *Py_TYPE(it)->tp_iternext;
while ((item = iternext(it)) != NULL) {
if (deque->leftindex == 0) {
block *b = newblock();
if (b == NULL) {
Py_DECREF(item);
Py_DECREF(it);
return NULL;
}
b->rightlink = deque->leftblock;
CHECK_END(deque->leftblock->leftlink);
deque->leftblock->leftlink = b;
deque->leftblock = b;
MARK_END(b->leftlink);
deque->leftindex = BLOCKLEN;
}
Py_SIZE(deque)++;
deque->leftindex--;
deque->leftblock->data[deque->leftindex] = item;
if (NEEDS_TRIM(deque, maxlen)) {
PyObject *olditem = deque_pop(deque, NULL);
Py_DECREF(olditem);
} else {
deque->state++;
}
}
return finalize_iterator(it);
}
PyDoc_STRVAR(extendleft_doc,
"Extend the left side of the deque with elements from the iterable");
static PyObject *
deque_inplace_concat(dequeobject *deque, PyObject *other)
{
PyObject *result;
result = deque_extend(deque, other);
if (result == NULL)
return result;
Py_INCREF(deque);
Py_DECREF(result);
return (PyObject *)deque;
}
static PyObject *
deque_copy(PyObject *deque)
{
PyObject *result;
dequeobject *old_deque = (dequeobject *)deque;
if (Py_TYPE(deque) == &deque_type) {
dequeobject *new_deque;
PyObject *rv;
new_deque = (dequeobject *)deque_new(&deque_type, (PyObject *)NULL, (PyObject *)NULL);
if (new_deque == NULL)
return NULL;
new_deque->maxlen = old_deque->maxlen;
/* Fast path for the deque_repeat() common case where len(deque) == 1 */
if (Py_SIZE(deque) == 1) {
PyObject *item = old_deque->leftblock->data[old_deque->leftindex];
rv = deque_append(new_deque, item);
} else {
rv = deque_extend(new_deque, deque);
}
if (rv != NULL) {
Py_DECREF(rv);
return (PyObject *)new_deque;
}
Py_DECREF(new_deque);
return NULL;
}
if (old_deque->maxlen < 0)
result = PyObject_CallFunctionObjArgs((PyObject *)(Py_TYPE(deque)),
deque, NULL);
else
result = PyObject_CallFunction((PyObject *)(Py_TYPE(deque)), "Oi",
deque, old_deque->maxlen, NULL);
if (result != NULL && !PyObject_TypeCheck(result, &deque_type)) {
PyErr_Format(PyExc_TypeError,
"%.200s() must return a deque, not %.200s",
Py_TYPE(deque)->tp_name, Py_TYPE(result)->tp_name);
Py_DECREF(result);
return NULL;
}
return result;
}
PyDoc_STRVAR(copy_doc, "Return a shallow copy of a deque.");
static PyObject *
deque_concat(dequeobject *deque, PyObject *other)
{
PyObject *new_deque, *result;
int rv;
rv = PyObject_IsInstance(other, (PyObject *)&deque_type);
if (rv <= 0) {
if (rv == 0) {
PyErr_Format(PyExc_TypeError,
"can only concatenate deque (not \"%.200s\") to deque",
other->ob_type->tp_name);
}
return NULL;
}
new_deque = deque_copy((PyObject *)deque);
if (new_deque == NULL)
return NULL;
result = deque_extend((dequeobject *)new_deque, other);
if (result == NULL) {
Py_DECREF(new_deque);
return NULL;
}
Py_DECREF(result);
return new_deque;
}
static int
deque_clear(dequeobject *deque)
{
block *b;
block *prevblock;
block *leftblock;
Py_ssize_t leftindex;
Py_ssize_t n, m;
PyObject *item;
PyObject **itemptr, **limit;
if (Py_SIZE(deque) == 0)
return 0;
/* During the process of clearing a deque, decrefs can cause the
deque to mutate. To avoid fatal confusion, we have to make the
deque empty before clearing the blocks and never refer to
anything via deque->ref while clearing. (This is the same
technique used for clearing lists, sets, and dicts.)
Making the deque empty requires allocating a new empty block. In
the unlikely event that memory is full, we fall back to an
alternate method that doesn't require a new block. Repeating
pops in a while-loop is slower, possibly re-entrant (and a clever
adversary could cause it to never terminate).
*/
b = newblock();
if (b == NULL) {
PyErr_Clear();
goto alternate_method;
}
/* Remember the old size, leftblock, and leftindex */
n = Py_SIZE(deque);
leftblock = deque->leftblock;
leftindex = deque->leftindex;
/* Set the deque to be empty using the newly allocated block */
MARK_END(b->leftlink);
MARK_END(b->rightlink);
Py_SIZE(deque) = 0;
deque->leftblock = b;
deque->rightblock = b;
deque->leftindex = CENTER + 1;
deque->rightindex = CENTER;
deque->state++;
/* Now the old size, leftblock, and leftindex are disconnected from
the empty deque and we can use them to decref the pointers.
*/
m = (BLOCKLEN - leftindex > n) ? n : BLOCKLEN - leftindex;
itemptr = &leftblock->data[leftindex];
limit = itemptr + m;
n -= m;
while (1) {
if (itemptr == limit) {
if (n == 0)
break;
CHECK_NOT_END(leftblock->rightlink);
prevblock = leftblock;
leftblock = leftblock->rightlink;
m = (n > BLOCKLEN) ? BLOCKLEN : n;
itemptr = leftblock->data;
limit = itemptr + m;
n -= m;
freeblock(prevblock);
}
item = *(itemptr++);
Py_DECREF(item);
}
CHECK_END(leftblock->rightlink);
freeblock(leftblock);
return 0;
alternate_method:
while (Py_SIZE(deque)) {
item = deque_pop(deque, NULL);
assert (item != NULL);
Py_DECREF(item);
}
return 0;
}
static PyObject *
deque_clearmethod(dequeobject *deque)
{
deque_clear(deque);
Py_RETURN_NONE;
}
PyDoc_STRVAR(clear_doc, "Remove all elements from the deque.");
static PyObject *
deque_inplace_repeat(dequeobject *deque, Py_ssize_t n)
{
Py_ssize_t i, m, size;
PyObject *seq;
PyObject *rv;
size = Py_SIZE(deque);
if (size == 0 || n == 1) {
Py_INCREF(deque);
return (PyObject *)deque;
}
if (n <= 0) {
deque_clear(deque);
Py_INCREF(deque);
return (PyObject *)deque;
}
if (size == 1) {
/* common case, repeating a single element */
PyObject *item = deque->leftblock->data[deque->leftindex];
if (deque->maxlen >= 0 && n > deque->maxlen)
n = deque->maxlen;
deque->state++;
for (i = 0 ; i < n-1 ; ) {
if (deque->rightindex == BLOCKLEN - 1) {
block *b = newblock();
if (b == NULL) {
Py_SIZE(deque) += i;
return NULL;
}
b->leftlink = deque->rightblock;
CHECK_END(deque->rightblock->rightlink);
deque->rightblock->rightlink = b;
deque->rightblock = b;
MARK_END(b->rightlink);
deque->rightindex = -1;
}
m = n - 1 - i;
if (m > BLOCKLEN - 1 - deque->rightindex)
m = BLOCKLEN - 1 - deque->rightindex;
i += m;
while (m--) {
deque->rightindex++;
Py_INCREF(item);
deque->rightblock->data[deque->rightindex] = item;
}
}
Py_SIZE(deque) += i;
Py_INCREF(deque);
return (PyObject *)deque;
}
if ((size_t)size > PY_SSIZE_T_MAX / (size_t)n) {
return PyErr_NoMemory();
}
seq = PySequence_List((PyObject *)deque);
if (seq == NULL)
return seq;
for (i = 0 ; i < n-1 ; i++) {
rv = deque_extend(deque, seq);
if (rv == NULL) {
Py_DECREF(seq);
return NULL;
}
Py_DECREF(rv);
}
Py_INCREF(deque);
Py_DECREF(seq);
return (PyObject *)deque;
}
static PyObject *
deque_repeat(dequeobject *deque, Py_ssize_t n)
{
dequeobject *new_deque;
PyObject *rv;
new_deque = (dequeobject *)deque_copy((PyObject *) deque);
if (new_deque == NULL)
return NULL;
rv = deque_inplace_repeat(new_deque, n);
Py_DECREF(new_deque);
return rv;
}
/* The rotate() method is part of the public API and is used internally
as a primitive for other methods.
Rotation by 1 or -1 is a common case, so any optimizations for high
volume rotations should take care not to penalize the common case.
Conceptually, a rotate by one is equivalent to a pop on one side and an
append on the other. However, a pop/append pair is unnecessarily slow
because it requires an incref/decref pair for an object located randomly
in memory. It is better to just move the object pointer from one block
to the next without changing the reference count.
When moving batches of pointers, it is tempting to use memcpy() but that
proved to be slower than a simple loop for a variety of reasons.
Memcpy() cannot know in advance that we're copying pointers instead of
bytes, that the source and destination are pointer aligned and
non-overlapping, that moving just one pointer is a common case, that we
never need to move more than BLOCKLEN pointers, and that at least one
pointer is always moved.
For high volume rotations, newblock() and freeblock() are never called
more than once. Previously emptied blocks are immediately reused as a
destination block. If a block is left-over at the end, it is freed.
*/
static int
_deque_rotate(dequeobject *deque, Py_ssize_t n)
{
block *b = NULL;
block *leftblock = deque->leftblock;
block *rightblock = deque->rightblock;
Py_ssize_t leftindex = deque->leftindex;
Py_ssize_t rightindex = deque->rightindex;
Py_ssize_t len=Py_SIZE(deque), halflen=len>>1;
int rv = -1;
if (len <= 1)
return 0;
if (n > halflen || n < -halflen) {
n %= len;
if (n > halflen)
n -= len;
else if (n < -halflen)
n += len;
}
assert(len > 1);
assert(-halflen <= n && n <= halflen);
deque->state++;
while (n > 0) {
if (leftindex == 0) {
if (b == NULL) {
b = newblock();
if (b == NULL)
goto done;
}
b->rightlink = leftblock;
CHECK_END(leftblock->leftlink);
leftblock->leftlink = b;
leftblock = b;
MARK_END(b->leftlink);
leftindex = BLOCKLEN;
b = NULL;
}
assert(leftindex > 0);
{
PyObject **src, **dest;
Py_ssize_t m = n;
if (m > rightindex + 1)
m = rightindex + 1;
if (m > leftindex)
m = leftindex;
assert (m > 0 && m <= len);
rightindex -= m;
leftindex -= m;
src = &rightblock->data[rightindex + 1];
dest = &leftblock->data[leftindex];
n -= m;
do {
*(dest++) = *(src++);
} while (--m);
}
if (rightindex < 0) {
assert(leftblock != rightblock);
assert(b == NULL);
b = rightblock;
CHECK_NOT_END(rightblock->leftlink);
rightblock = rightblock->leftlink;
MARK_END(rightblock->rightlink);
rightindex = BLOCKLEN - 1;
}
}
while (n < 0) {
if (rightindex == BLOCKLEN - 1) {
if (b == NULL) {
b = newblock();
if (b == NULL)
goto done;
}
b->leftlink = rightblock;
CHECK_END(rightblock->rightlink);
rightblock->rightlink = b;
rightblock = b;
MARK_END(b->rightlink);
rightindex = -1;
b = NULL;
}
assert (rightindex < BLOCKLEN - 1);
{
PyObject **src, **dest;
Py_ssize_t m = -n;
if (m > BLOCKLEN - leftindex)
m = BLOCKLEN - leftindex;
if (m > BLOCKLEN - 1 - rightindex)
m = BLOCKLEN - 1 - rightindex;
assert (m > 0 && m <= len);
src = &leftblock->data[leftindex];
dest = &rightblock->data[rightindex + 1];
leftindex += m;
rightindex += m;
n += m;
do {
*(dest++) = *(src++);
} while (--m);
}
if (leftindex == BLOCKLEN) {
assert(leftblock != rightblock);
assert(b == NULL);
b = leftblock;
CHECK_NOT_END(leftblock->rightlink);
leftblock = leftblock->rightlink;
MARK_END(leftblock->leftlink);
leftindex = 0;
}
}
rv = 0;
done:
if (b != NULL)
freeblock(b);
deque->leftblock = leftblock;
deque->rightblock = rightblock;
deque->leftindex = leftindex;
deque->rightindex = rightindex;
return rv;
}
static PyObject *
deque_rotate(dequeobject *deque, PyObject **args, Py_ssize_t nargs)
{
Py_ssize_t n=1;
if (!_PyArg_ParseStack(args, nargs, "|n:rotate", &n)) {
return NULL;
}
if (!_deque_rotate(deque, n))
Py_RETURN_NONE;
return NULL;
}
PyDoc_STRVAR(rotate_doc,
"Rotate the deque n steps to the right (default n=1). If n is negative, rotates left.");
static PyObject *
deque_reverse(dequeobject *deque, PyObject *unused)
{
block *leftblock = deque->leftblock;
block *rightblock = deque->rightblock;
Py_ssize_t leftindex = deque->leftindex;
Py_ssize_t rightindex = deque->rightindex;
Py_ssize_t n = Py_SIZE(deque) >> 1;
PyObject *tmp;
n++;
while (--n) {
/* Validate that pointers haven't met in the middle */
assert(leftblock != rightblock || leftindex < rightindex);
CHECK_NOT_END(leftblock);
CHECK_NOT_END(rightblock);
/* Swap */
tmp = leftblock->data[leftindex];
leftblock->data[leftindex] = rightblock->data[rightindex];
rightblock->data[rightindex] = tmp;
/* Advance left block/index pair */
leftindex++;
if (leftindex == BLOCKLEN) {
leftblock = leftblock->rightlink;
leftindex = 0;
}
/* Step backwards with the right block/index pair */
rightindex--;
if (rightindex < 0) {
rightblock = rightblock->leftlink;
rightindex = BLOCKLEN - 1;
}
}
Py_RETURN_NONE;
}
PyDoc_STRVAR(reverse_doc,
"D.reverse() -- reverse *IN PLACE*");
static PyObject *
deque_count(dequeobject *deque, PyObject *v)
{
block *b = deque->leftblock;
Py_ssize_t index = deque->leftindex;
Py_ssize_t n = Py_SIZE(deque);
Py_ssize_t count = 0;
size_t start_state = deque->state;
PyObject *item;
int cmp;
n++;
while (--n) {
CHECK_NOT_END(b);
item = b->data[index];
cmp = PyObject_RichCompareBool(item, v, Py_EQ);
if (cmp < 0)
return NULL;
count += cmp;
if (start_state != deque->state) {
PyErr_SetString(PyExc_RuntimeError,
"deque mutated during iteration");
return NULL;
}
/* Advance left block/index pair */
index++;
if (index == BLOCKLEN) {
b = b->rightlink;
index = 0;
}
}
return PyLong_FromSsize_t(count);
}
PyDoc_STRVAR(count_doc,
"D.count(value) -> integer -- return number of occurrences of value");
static int
deque_contains(dequeobject *deque, PyObject *v)
{
block *b = deque->leftblock;
Py_ssize_t index = deque->leftindex;
Py_ssize_t n = Py_SIZE(deque);
size_t start_state = deque->state;
PyObject *item;
int cmp;
n++;
while (--n) {
CHECK_NOT_END(b);
item = b->data[index];
cmp = PyObject_RichCompareBool(item, v, Py_EQ);
if (cmp) {
return cmp;
}
if (start_state != deque->state) {
PyErr_SetString(PyExc_RuntimeError,
"deque mutated during iteration");
return -1;
}
index++;
if (index == BLOCKLEN) {
b = b->rightlink;
index = 0;
}
}
return 0;
}
static Py_ssize_t
deque_len(dequeobject *deque)
{
return Py_SIZE(deque);
}
static PyObject *
deque_index(dequeobject *deque, PyObject **args, Py_ssize_t nargs)
{
Py_ssize_t i, n, start=0, stop=Py_SIZE(deque);
PyObject *v, *item;
block *b = deque->leftblock;
Py_ssize_t index = deque->leftindex;
size_t start_state = deque->state;
int cmp;
if (!_PyArg_ParseStack(args, nargs, "O|O&O&:index", &v,
_PyEval_SliceIndex, &start,
_PyEval_SliceIndex, &stop)) {
return NULL;
}
if (start < 0) {
start += Py_SIZE(deque);
if (start < 0)
start = 0;
}
if (stop < 0) {
stop += Py_SIZE(deque);
if (stop < 0)
stop = 0;
}
if (stop > Py_SIZE(deque))
stop = Py_SIZE(deque);
if (start > stop)
start = stop;
assert(0 <= start && start <= stop && stop <= Py_SIZE(deque));
/* XXX Replace this loop with faster code from deque_item() */
for (i=0 ; i<start ; i++) {
index++;
if (index == BLOCKLEN) {
b = b->rightlink;
index = 0;
}
}
n = stop - i + 1;
while (--n) {
CHECK_NOT_END(b);
item = b->data[index];
cmp = PyObject_RichCompareBool(item, v, Py_EQ);
if (cmp > 0)
return PyLong_FromSsize_t(stop - n);
if (cmp < 0)
return NULL;
if (start_state != deque->state) {
PyErr_SetString(PyExc_RuntimeError,
"deque mutated during iteration");
return NULL;
}
index++;
if (index == BLOCKLEN) {
b = b->rightlink;
index = 0;
}
}
PyErr_Format(PyExc_ValueError, "%R is not in deque", v);
return NULL;
}
PyDoc_STRVAR(index_doc,
"D.index(value, [start, [stop]]) -> integer -- return first index of value.\n"
"Raises ValueError if the value is not present.");
/* insert(), remove(), and delitem() are implemented in terms of
rotate() for simplicity and reasonable performance near the end
points. If for some reason these methods become popular, it is not
hard to re-implement this using direct data movement (similar to
the code used in list slice assignments) and achieve a performance
boost (by moving each pointer only once instead of twice).
*/
static PyObject *
deque_insert(dequeobject *deque, PyObject **args, Py_ssize_t nargs)
{
Py_ssize_t index;
Py_ssize_t n = Py_SIZE(deque);
PyObject *value;
PyObject *rv;
if (!_PyArg_ParseStack(args, nargs, "nO:insert", &index, &value)) {
return NULL;
}
if (deque->maxlen == Py_SIZE(deque)) {
PyErr_SetString(PyExc_IndexError, "deque already at its maximum size");
return NULL;
}
if (index >= n)
return deque_append(deque, value);
if (index <= -n || index == 0)
return deque_appendleft(deque, value);
if (_deque_rotate(deque, -index))
return NULL;
if (index < 0)
rv = deque_append(deque, value);
else
rv = deque_appendleft(deque, value);
if (rv == NULL)
return NULL;
Py_DECREF(rv);
if (_deque_rotate(deque, index))
return NULL;
Py_RETURN_NONE;
}
PyDoc_STRVAR(insert_doc,
"D.insert(index, object) -- insert object before index");
static PyObject *
deque_remove(dequeobject *deque, PyObject *value)
{
Py_ssize_t i, n=Py_SIZE(deque);
for (i=0 ; i<n ; i++) {
PyObject *item = deque->leftblock->data[deque->leftindex];
int cmp = PyObject_RichCompareBool(item, value, Py_EQ);
if (Py_SIZE(deque) != n) {
PyErr_SetString(PyExc_IndexError,
"deque mutated during remove().");
return NULL;
}
if (cmp > 0) {
PyObject *tgt = deque_popleft(deque, NULL);
assert (tgt != NULL);
if (_deque_rotate(deque, i))
return NULL;
Py_DECREF(tgt);
Py_RETURN_NONE;
}
else if (cmp < 0) {
_deque_rotate(deque, i);
return NULL;
}
_deque_rotate(deque, -1);
}
PyErr_SetString(PyExc_ValueError, "deque.remove(x): x not in deque");
return NULL;
}
PyDoc_STRVAR(remove_doc,
"D.remove(value) -- remove first occurrence of value.");
static int
valid_index(Py_ssize_t i, Py_ssize_t limit)
{
/* The cast to size_t lets us use just a single comparison
to check whether i is in the range: 0 <= i < limit */
return (size_t) i < (size_t) limit;
}
static PyObject *
deque_item(dequeobject *deque, Py_ssize_t i)
{
block *b;
PyObject *item;
Py_ssize_t n, index=i;
if (!valid_index(i, Py_SIZE(deque))) {
PyErr_SetString(PyExc_IndexError, "deque index out of range");
return NULL;
}
if (i == 0) {
i = deque->leftindex;
b = deque->leftblock;
} else if (i == Py_SIZE(deque) - 1) {
i = deque->rightindex;
b = deque->rightblock;
} else {
i += deque->leftindex;
n = (Py_ssize_t)((size_t) i / BLOCKLEN);
i = (Py_ssize_t)((size_t) i % BLOCKLEN);
if (index < (Py_SIZE(deque) >> 1)) {
b = deque->leftblock;
n++;
while (--n)
b = b->rightlink;
} else {
n = (Py_ssize_t)(
((size_t)(deque->leftindex + Py_SIZE(deque) - 1))
/ BLOCKLEN - n);
b = deque->rightblock;
n++;
while (--n)
b = b->leftlink;
}
}
item = b->data[i];
Py_INCREF(item);
return item;
}
static int
deque_del_item(dequeobject *deque, Py_ssize_t i)
{
PyObject *item;
int rv;
assert (i >= 0 && i < Py_SIZE(deque));
if (_deque_rotate(deque, -i))
return -1;
item = deque_popleft(deque, NULL);
rv = _deque_rotate(deque, i);
assert (item != NULL);
Py_DECREF(item);
return rv;
}
static int
deque_ass_item(dequeobject *deque, Py_ssize_t i, PyObject *v)
{
PyObject *old_value;
block *b;
Py_ssize_t n, len=Py_SIZE(deque), halflen=(len+1)>>1, index=i;
if (!valid_index(i, len)) {
PyErr_SetString(PyExc_IndexError, "deque index out of range");
return -1;
}
if (v == NULL)
return deque_del_item(deque, i);
i += deque->leftindex;
n = (Py_ssize_t)((size_t) i / BLOCKLEN);
i = (Py_ssize_t)((size_t) i % BLOCKLEN);
if (index <= halflen) {
b = deque->leftblock;
n++;
while (--n)
b = b->rightlink;
} else {
n = (Py_ssize_t)(
((size_t)(deque->leftindex + Py_SIZE(deque) - 1))
/ BLOCKLEN - n);
b = deque->rightblock;
n++;
while (--n)
b = b->leftlink;
}
Py_INCREF(v);
old_value = b->data[i];
b->data[i] = v;
Py_DECREF(old_value);
return 0;
}
static void
deque_dealloc(dequeobject *deque)
{
PyObject_GC_UnTrack(deque);
if (deque->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) deque);
if (deque->leftblock != NULL) {
deque_clear(deque);
assert(deque->leftblock != NULL);
freeblock(deque->leftblock);
}
deque->leftblock = NULL;
deque->rightblock = NULL;
Py_TYPE(deque)->tp_free(deque);
}
static int
deque_traverse(dequeobject *deque, visitproc visit, void *arg)
{
block *b;
PyObject *item;
Py_ssize_t index;
Py_ssize_t indexlo = deque->leftindex;
Py_ssize_t indexhigh;
for (b = deque->leftblock; b != deque->rightblock; b = b->rightlink) {
for (index = indexlo; index < BLOCKLEN ; index++) {
item = b->data[index];
Py_VISIT(item);
}
indexlo = 0;
}
indexhigh = deque->rightindex;
for (index = indexlo; index <= indexhigh; index++) {
item = b->data[index];
Py_VISIT(item);
}
return 0;
}
static PyObject *
deque_reduce(dequeobject *deque, PyObject *Py_UNUSED(ignored))
{
PyObject *dict, *it;
_Py_IDENTIFIER(__dict__);
dict = _PyObject_GetAttrId((PyObject *)deque, &PyId___dict__);
if (dict == NULL) {
if (!PyErr_ExceptionMatches(PyExc_AttributeError)) {
return NULL;
}
PyErr_Clear();
dict = Py_None;
Py_INCREF(dict);
}
it = PyObject_GetIter((PyObject *)deque);
if (it == NULL) {
Py_DECREF(dict);
return NULL;
}
if (deque->maxlen < 0) {
return Py_BuildValue("O()NN", Py_TYPE(deque), dict, it);
}
else {
return Py_BuildValue("O(()n)NN", Py_TYPE(deque), deque->maxlen, dict, it);
}
}
PyDoc_STRVAR(reduce_doc, "Return state information for pickling.");
static PyObject *
deque_repr(PyObject *deque)
{
PyObject *aslist, *result;
int i;
i = Py_ReprEnter(deque);
if (i != 0) {
if (i < 0)
return NULL;
return PyUnicode_FromString("[...]");
}
aslist = PySequence_List(deque);
if (aslist == NULL) {
Py_ReprLeave(deque);
return NULL;
}
if (((dequeobject *)deque)->maxlen >= 0)
result = PyUnicode_FromFormat("deque(%R, maxlen=%zd)",
aslist, ((dequeobject *)deque)->maxlen);
else
result = PyUnicode_FromFormat("deque(%R)", aslist);
Py_ReprLeave(deque);
Py_DECREF(aslist);
return result;
}
static PyObject *
deque_richcompare(PyObject *v, PyObject *w, int op)
{
PyObject *it1=NULL, *it2=NULL, *x, *y;
Py_ssize_t vs, ws;
int b, cmp=-1;
if (!PyObject_TypeCheck(v, &deque_type) ||
!PyObject_TypeCheck(w, &deque_type)) {
Py_RETURN_NOTIMPLEMENTED;
}
/* Shortcuts */
vs = Py_SIZE((dequeobject *)v);
ws = Py_SIZE((dequeobject *)w);
if (op == Py_EQ) {
if (v == w)
Py_RETURN_TRUE;
if (vs != ws)
Py_RETURN_FALSE;
}
if (op == Py_NE) {
if (v == w)
Py_RETURN_FALSE;
if (vs != ws)
Py_RETURN_TRUE;
}
/* Search for the first index where items are different */
it1 = PyObject_GetIter(v);
if (it1 == NULL)
goto done;
it2 = PyObject_GetIter(w);
if (it2 == NULL)
goto done;
for (;;) {
x = PyIter_Next(it1);
if (x == NULL && PyErr_Occurred())
goto done;
y = PyIter_Next(it2);
if (x == NULL || y == NULL)
break;
b = PyObject_RichCompareBool(x, y, Py_EQ);
if (b == 0) {
cmp = PyObject_RichCompareBool(x, y, op);
Py_DECREF(x);
Py_DECREF(y);
goto done;
}
Py_DECREF(x);
Py_DECREF(y);
if (b < 0)
goto done;
}
/* We reached the end of one deque or both */
Py_XDECREF(x);
Py_XDECREF(y);
if (PyErr_Occurred())
goto done;
switch (op) {
case Py_LT: cmp = y != NULL; break; /* if w was longer */
case Py_LE: cmp = x == NULL; break; /* if v was not longer */
case Py_EQ: cmp = x == y; break; /* if we reached the end of both */
case Py_NE: cmp = x != y; break; /* if one deque continues */
case Py_GT: cmp = x != NULL; break; /* if v was longer */
case Py_GE: cmp = y == NULL; break; /* if w was not longer */
}
done:
Py_XDECREF(it1);
Py_XDECREF(it2);
if (cmp == 1)
Py_RETURN_TRUE;
if (cmp == 0)
Py_RETURN_FALSE;
return NULL;
}
static int
deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs)
{
PyObject *iterable = NULL;
PyObject *maxlenobj = NULL;
Py_ssize_t maxlen = -1;
char *kwlist[] = {"iterable", "maxlen", 0};
if (kwdargs == NULL) {
if (!PyArg_UnpackTuple(args, "deque()", 0, 2, &iterable, &maxlenobj))
return -1;
} else {
if (!PyArg_ParseTupleAndKeywords(args, kwdargs, "|OO:deque", kwlist,
&iterable, &maxlenobj))
return -1;
}
if (maxlenobj != NULL && maxlenobj != Py_None) {
maxlen = PyLong_AsSsize_t(maxlenobj);
if (maxlen == -1 && PyErr_Occurred())
return -1;
if (maxlen < 0) {
PyErr_SetString(PyExc_ValueError, "maxlen must be non-negative");
return -1;
}
}
deque->maxlen = maxlen;
if (Py_SIZE(deque) > 0)
deque_clear(deque);
if (iterable != NULL) {
PyObject *rv = deque_extend(deque, iterable);
if (rv == NULL)
return -1;
Py_DECREF(rv);
}
return 0;
}
static PyObject *
deque_sizeof(dequeobject *deque, void *unused)
{
Py_ssize_t res;
Py_ssize_t blocks;
res = _PyObject_SIZE(Py_TYPE(deque));
blocks = (size_t)(deque->leftindex + Py_SIZE(deque) + BLOCKLEN - 1) / BLOCKLEN;
assert(deque->leftindex + Py_SIZE(deque) - 1 ==
(blocks - 1) * BLOCKLEN + deque->rightindex);
res += blocks * sizeof(block);
return PyLong_FromSsize_t(res);
}
PyDoc_STRVAR(sizeof_doc,
"D.__sizeof__() -- size of D in memory, in bytes");
static int
deque_bool(dequeobject *deque)
{
return Py_SIZE(deque) != 0;
}
static PyObject *
deque_get_maxlen(dequeobject *deque, void *Py_UNUSED(ignored))
{
if (deque->maxlen < 0)
Py_RETURN_NONE;
return PyLong_FromSsize_t(deque->maxlen);
}
/* deque object ********************************************************/
static PyGetSetDef deque_getset[] = {
{"maxlen", (getter)deque_get_maxlen, (setter)NULL,
"maximum size of a deque or None if unbounded"},
{0}
};
static PySequenceMethods deque_as_sequence = {
(lenfunc)deque_len, /* sq_length */
(binaryfunc)deque_concat, /* sq_concat */
(ssizeargfunc)deque_repeat, /* sq_repeat */
(ssizeargfunc)deque_item, /* sq_item */
0, /* sq_slice */
(ssizeobjargproc)deque_ass_item, /* sq_ass_item */
0, /* sq_ass_slice */
(objobjproc)deque_contains, /* sq_contains */
(binaryfunc)deque_inplace_concat, /* sq_inplace_concat */
(ssizeargfunc)deque_inplace_repeat, /* sq_inplace_repeat */
};
static PyNumberMethods deque_as_number = {
0, /* nb_add */
0, /* nb_subtract */
0, /* nb_multiply */
0, /* nb_remainder */
0, /* nb_divmod */
0, /* nb_power */
0, /* nb_negative */
0, /* nb_positive */
0, /* nb_absolute */
(inquiry)deque_bool, /* nb_bool */
0, /* nb_invert */
};
static PyObject *deque_iter(dequeobject *deque);
static PyObject *deque_reviter(dequeobject *deque);
PyDoc_STRVAR(reversed_doc,
"D.__reversed__() -- return a reverse iterator over the deque");
static PyMethodDef deque_methods[] = {
{"append", (PyCFunction)deque_append,
METH_O, append_doc},
{"appendleft", (PyCFunction)deque_appendleft,
METH_O, appendleft_doc},
{"clear", (PyCFunction)deque_clearmethod,
METH_NOARGS, clear_doc},
{"__copy__", (PyCFunction)deque_copy,
METH_NOARGS, copy_doc},
{"copy", (PyCFunction)deque_copy,
METH_NOARGS, copy_doc},
{"count", (PyCFunction)deque_count,
METH_O, count_doc},
{"extend", (PyCFunction)deque_extend,
METH_O, extend_doc},
{"extendleft", (PyCFunction)deque_extendleft,
METH_O, extendleft_doc},
{"index", (PyCFunction)deque_index,
METH_FASTCALL, index_doc},
{"insert", (PyCFunction)deque_insert,
METH_FASTCALL, insert_doc},
{"pop", (PyCFunction)deque_pop,
METH_NOARGS, pop_doc},
{"popleft", (PyCFunction)deque_popleft,
METH_NOARGS, popleft_doc},
{"__reduce__", (PyCFunction)deque_reduce,
METH_NOARGS, reduce_doc},
{"remove", (PyCFunction)deque_remove,
METH_O, remove_doc},
{"__reversed__", (PyCFunction)deque_reviter,
METH_NOARGS, reversed_doc},
{"reverse", (PyCFunction)deque_reverse,
METH_NOARGS, reverse_doc},
{"rotate", (PyCFunction)deque_rotate,
METH_FASTCALL, rotate_doc},
{"__sizeof__", (PyCFunction)deque_sizeof,
METH_NOARGS, sizeof_doc},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(deque_doc,
"deque([iterable[, maxlen]]) --> deque object\n\
\n\
A list-like sequence optimized for data accesses near its endpoints.");
static PyTypeObject deque_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"collections.deque", /* tp_name */
sizeof(dequeobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)deque_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
deque_repr, /* tp_repr */
&deque_as_number, /* tp_as_number */
&deque_as_sequence, /* tp_as_sequence */
0, /* tp_as_mapping */
PyObject_HashNotImplemented, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
/* tp_flags */
deque_doc, /* tp_doc */
(traverseproc)deque_traverse, /* tp_traverse */
(inquiry)deque_clear, /* tp_clear */
(richcmpfunc)deque_richcompare, /* tp_richcompare */
offsetof(dequeobject, weakreflist), /* tp_weaklistoffset*/
(getiterfunc)deque_iter, /* tp_iter */
0, /* tp_iternext */
deque_methods, /* tp_methods */
0, /* tp_members */
deque_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)deque_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
deque_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/*********************** Deque Iterator **************************/
typedef struct {
PyObject_HEAD
block *b;
Py_ssize_t index;
dequeobject *deque;
size_t state; /* state when the iterator is created */
Py_ssize_t counter; /* number of items remaining for iteration */
} dequeiterobject;
static PyTypeObject dequeiter_type;
static PyObject *
deque_iter(dequeobject *deque)
{
dequeiterobject *it;
it = PyObject_GC_New(dequeiterobject, &dequeiter_type);
if (it == NULL)
return NULL;
it->b = deque->leftblock;
it->index = deque->leftindex;
Py_INCREF(deque);
it->deque = deque;
it->state = deque->state;
it->counter = Py_SIZE(deque);
PyObject_GC_Track(it);
return (PyObject *)it;
}
static int
dequeiter_traverse(dequeiterobject *dio, visitproc visit, void *arg)
{
Py_VISIT(dio->deque);
return 0;
}
static void
dequeiter_dealloc(dequeiterobject *dio)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(dio);
Py_XDECREF(dio->deque);
PyObject_GC_Del(dio);
}
static PyObject *
dequeiter_next(dequeiterobject *it)
{
PyObject *item;
if (it->deque->state != it->state) {
it->counter = 0;
PyErr_SetString(PyExc_RuntimeError,
"deque mutated during iteration");
return NULL;
}
if (it->counter == 0)
return NULL;
assert (!(it->b == it->deque->rightblock &&
it->index > it->deque->rightindex));
item = it->b->data[it->index];
it->index++;
it->counter--;
if (it->index == BLOCKLEN && it->counter > 0) {
CHECK_NOT_END(it->b->rightlink);
it->b = it->b->rightlink;
it->index = 0;
}
Py_INCREF(item);
return item;
}
static PyObject *
dequeiter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
Py_ssize_t i, index=0;
PyObject *deque;
dequeiterobject *it;
if (!PyArg_ParseTuple(args, "O!|n", &deque_type, &deque, &index))
return NULL;
assert(type == &dequeiter_type);
it = (dequeiterobject*)deque_iter((dequeobject *)deque);
if (!it)
return NULL;
/* consume items from the queue */
for(i=0; i<index; i++) {
PyObject *item = dequeiter_next(it);
if (item) {
Py_DECREF(item);
} else {
if (it->counter) {
Py_DECREF(it);
return NULL;
} else
break;
}
}
return (PyObject*)it;
}
static PyObject *
dequeiter_len(dequeiterobject *it)
{
return PyLong_FromSsize_t(it->counter);
}
PyDoc_STRVAR(length_hint_doc, "Private method returning an estimate of len(list(it)).");
static PyObject *
dequeiter_reduce(dequeiterobject *it)
{
return Py_BuildValue("O(On)", Py_TYPE(it), it->deque, Py_SIZE(it->deque) - it->counter);
}
static PyMethodDef dequeiter_methods[] = {
{"__length_hint__", (PyCFunction)dequeiter_len, METH_NOARGS, length_hint_doc},
{"__reduce__", (PyCFunction)dequeiter_reduce, METH_NOARGS, reduce_doc},
{NULL, NULL} /* sentinel */
};
static PyTypeObject dequeiter_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_collections._deque_iterator", /* tp_name */
sizeof(dequeiterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)dequeiter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc)dequeiter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)dequeiter_next, /* tp_iternext */
dequeiter_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
dequeiter_new, /* tp_new */
0,
};
/*********************** Deque Reverse Iterator **************************/
static PyTypeObject dequereviter_type;
static PyObject *
deque_reviter(dequeobject *deque)
{
dequeiterobject *it;
it = PyObject_GC_New(dequeiterobject, &dequereviter_type);
if (it == NULL)
return NULL;
it->b = deque->rightblock;
it->index = deque->rightindex;
Py_INCREF(deque);
it->deque = deque;
it->state = deque->state;
it->counter = Py_SIZE(deque);
PyObject_GC_Track(it);
return (PyObject *)it;
}
static PyObject *
dequereviter_next(dequeiterobject *it)
{
PyObject *item;
if (it->counter == 0)
return NULL;
if (it->deque->state != it->state) {
it->counter = 0;
PyErr_SetString(PyExc_RuntimeError,
"deque mutated during iteration");
return NULL;
}
assert (!(it->b == it->deque->leftblock &&
it->index < it->deque->leftindex));
item = it->b->data[it->index];
it->index--;
it->counter--;
if (it->index < 0 && it->counter > 0) {
CHECK_NOT_END(it->b->leftlink);
it->b = it->b->leftlink;
it->index = BLOCKLEN - 1;
}
Py_INCREF(item);
return item;
}
static PyObject *
dequereviter_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
Py_ssize_t i, index=0;
PyObject *deque;
dequeiterobject *it;
if (!PyArg_ParseTuple(args, "O!|n", &deque_type, &deque, &index))
return NULL;
assert(type == &dequereviter_type);
it = (dequeiterobject*)deque_reviter((dequeobject *)deque);
if (!it)
return NULL;
/* consume items from the queue */
for(i=0; i<index; i++) {
PyObject *item = dequereviter_next(it);
if (item) {
Py_DECREF(item);
} else {
if (it->counter) {
Py_DECREF(it);
return NULL;
} else
break;
}
}
return (PyObject*)it;
}
static PyTypeObject dequereviter_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_collections._deque_reverse_iterator", /* tp_name */
sizeof(dequeiterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)dequeiter_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc)dequeiter_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)dequereviter_next, /* tp_iternext */
dequeiter_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
dequereviter_new, /* tp_new */
0,
};
/* defaultdict type *********************************************************/
typedef struct {
PyDictObject dict;
PyObject *default_factory;
} defdictobject;
static PyTypeObject defdict_type; /* Forward */
PyDoc_STRVAR(defdict_missing_doc,
"__missing__(key) # Called by __getitem__ for missing key; pseudo-code:\n\
if self.default_factory is None: raise KeyError((key,))\n\
self[key] = value = self.default_factory()\n\
return value\n\
");
static PyObject *
defdict_missing(defdictobject *dd, PyObject *key)
{
PyObject *factory = dd->default_factory;
PyObject *value;
if (factory == NULL || factory == Py_None) {
/* XXX Call dict.__missing__(key) */
PyObject *tup;
tup = PyTuple_Pack(1, key);
if (!tup) return NULL;
PyErr_SetObject(PyExc_KeyError, tup);
Py_DECREF(tup);
return NULL;
}
value = PyEval_CallObject(factory, NULL);
if (value == NULL)
return value;
if (PyObject_SetItem((PyObject *)dd, key, value) < 0) {
Py_DECREF(value);
return NULL;
}
return value;
}
PyDoc_STRVAR(defdict_copy_doc, "D.copy() -> a shallow copy of D.");
static PyObject *
defdict_copy(defdictobject *dd)
{
/* This calls the object's class. That only works for subclasses
whose class constructor has the same signature. Subclasses that
define a different constructor signature must override copy().
*/
if (dd->default_factory == NULL)
return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd), Py_None, dd, NULL);
return PyObject_CallFunctionObjArgs((PyObject*)Py_TYPE(dd),
dd->default_factory, dd, NULL);
}
static PyObject *
defdict_reduce(defdictobject *dd)
{
/* __reduce__ must return a 5-tuple as follows:
- factory function
- tuple of args for the factory function
- additional state (here None)
- sequence iterator (here None)
- dictionary iterator (yielding successive (key, value) pairs
This API is used by pickle.py and copy.py.
For this to be useful with pickle.py, the default_factory
must be picklable; e.g., None, a built-in, or a global
function in a module or package.
Both shallow and deep copying are supported, but for deep
copying, the default_factory must be deep-copyable; e.g. None,
or a built-in (functions are not copyable at this time).
This only works for subclasses as long as their constructor
signature is compatible; the first argument must be the
optional default_factory, defaulting to None.
*/
PyObject *args;
PyObject *items;
PyObject *iter;
PyObject *result;
_Py_IDENTIFIER(items);
if (dd->default_factory == NULL || dd->default_factory == Py_None)
args = PyTuple_New(0);
else
args = PyTuple_Pack(1, dd->default_factory);
if (args == NULL)
return NULL;
items = _PyObject_CallMethodId((PyObject *)dd, &PyId_items, NULL);
if (items == NULL) {
Py_DECREF(args);
return NULL;
}
iter = PyObject_GetIter(items);
if (iter == NULL) {
Py_DECREF(items);
Py_DECREF(args);
return NULL;
}
result = PyTuple_Pack(5, Py_TYPE(dd), args,
Py_None, Py_None, iter);
Py_DECREF(iter);
Py_DECREF(items);
Py_DECREF(args);
return result;
}
static PyMethodDef defdict_methods[] = {
{"__missing__", (PyCFunction)defdict_missing, METH_O,
defdict_missing_doc},
{"copy", (PyCFunction)defdict_copy, METH_NOARGS,
defdict_copy_doc},
{"__copy__", (PyCFunction)defdict_copy, METH_NOARGS,
defdict_copy_doc},
{"__reduce__", (PyCFunction)defdict_reduce, METH_NOARGS,
reduce_doc},
{NULL}
};
static PyMemberDef defdict_members[] = {
{"default_factory", T_OBJECT,
offsetof(defdictobject, default_factory), 0,
PyDoc_STR("Factory for default value called by __missing__().")},
{NULL}
};
static void
defdict_dealloc(defdictobject *dd)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(dd);
Py_CLEAR(dd->default_factory);
PyDict_Type.tp_dealloc((PyObject *)dd);
}
static PyObject *
defdict_repr(defdictobject *dd)
{
PyObject *baserepr;
PyObject *defrepr;
PyObject *result;
baserepr = PyDict_Type.tp_repr((PyObject *)dd);
if (baserepr == NULL)
return NULL;
if (dd->default_factory == NULL)
defrepr = PyUnicode_FromString("None");
else
{
int status = Py_ReprEnter(dd->default_factory);
if (status != 0) {
if (status < 0) {
Py_DECREF(baserepr);
return NULL;
}
defrepr = PyUnicode_FromString("...");
}
else
defrepr = PyObject_Repr(dd->default_factory);
Py_ReprLeave(dd->default_factory);
}
if (defrepr == NULL) {
Py_DECREF(baserepr);
return NULL;
}
result = PyUnicode_FromFormat("defaultdict(%U, %U)",
defrepr, baserepr);
Py_DECREF(defrepr);
Py_DECREF(baserepr);
return result;
}
static int
defdict_traverse(PyObject *self, visitproc visit, void *arg)
{
Py_VISIT(((defdictobject *)self)->default_factory);
return PyDict_Type.tp_traverse(self, visit, arg);
}
static int
defdict_tp_clear(defdictobject *dd)
{
Py_CLEAR(dd->default_factory);
return PyDict_Type.tp_clear((PyObject *)dd);
}
static int
defdict_init(PyObject *self, PyObject *args, PyObject *kwds)
{
defdictobject *dd = (defdictobject *)self;
PyObject *olddefault = dd->default_factory;
PyObject *newdefault = NULL;
PyObject *newargs;
int result;
if (args == NULL || !PyTuple_Check(args))
newargs = PyTuple_New(0);
else {
Py_ssize_t n = PyTuple_GET_SIZE(args);
if (n > 0) {
newdefault = PyTuple_GET_ITEM(args, 0);
if (!PyCallable_Check(newdefault) && newdefault != Py_None) {
PyErr_SetString(PyExc_TypeError,
"first argument must be callable or None");
return -1;
}
}
newargs = PySequence_GetSlice(args, 1, n);
}
if (newargs == NULL)
return -1;
Py_XINCREF(newdefault);
dd->default_factory = newdefault;
result = PyDict_Type.tp_init(self, newargs, kwds);
Py_DECREF(newargs);
Py_XDECREF(olddefault);
return result;
}
PyDoc_STRVAR(defdict_doc,
"defaultdict(default_factory[, ...]) --> dict with default factory\n\
\n\
The default factory is called without arguments to produce\n\
a new value when a key is not present, in __getitem__ only.\n\
A defaultdict compares equal to a dict with the same items.\n\
All remaining arguments are treated the same as if they were\n\
passed to the dict constructor, including keyword arguments.\n\
");
/* See comment in xxsubtype.c */
#define DEFERRED_ADDRESS(ADDR) 0
static PyTypeObject defdict_type = {
PyVarObject_HEAD_INIT(DEFERRED_ADDRESS(&PyType_Type), 0)
"collections.defaultdict", /* tp_name */
sizeof(defdictobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)defdict_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)defdict_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HAVE_GC,
/* tp_flags */
defdict_doc, /* tp_doc */
defdict_traverse, /* tp_traverse */
(inquiry)defdict_tp_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset*/
0, /* tp_iter */
0, /* tp_iternext */
defdict_methods, /* tp_methods */
defdict_members, /* tp_members */
0, /* tp_getset */
DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
defdict_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
0, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* helper function for Counter *********************************************/
PyDoc_STRVAR(_count_elements_doc,
"_count_elements(mapping, iterable) -> None\n\
\n\
Count elements in the iterable, updating the mapping");
static PyObject *
_count_elements(PyObject *self, PyObject *args)
{
_Py_IDENTIFIER(get);
_Py_IDENTIFIER(__setitem__);
PyObject *it, *iterable, *mapping, *oldval;
PyObject *newval = NULL;
PyObject *key = NULL;
PyObject *zero = NULL;
PyObject *one = NULL;
PyObject *bound_get = NULL;
PyObject *mapping_get;
PyObject *dict_get;
PyObject *mapping_setitem;
PyObject *dict_setitem;
if (!PyArg_UnpackTuple(args, "_count_elements", 2, 2, &mapping, &iterable))
return NULL;
it = PyObject_GetIter(iterable);
if (it == NULL)
return NULL;
one = PyLong_FromLong(1);
if (one == NULL)
goto done;
/* Only take the fast path when get() and __setitem__()
* have not been overridden.
*/
mapping_get = _PyType_LookupId(Py_TYPE(mapping), &PyId_get);
dict_get = _PyType_LookupId(&PyDict_Type, &PyId_get);
mapping_setitem = _PyType_LookupId(Py_TYPE(mapping), &PyId___setitem__);
dict_setitem = _PyType_LookupId(&PyDict_Type, &PyId___setitem__);
if (mapping_get != NULL && mapping_get == dict_get &&
mapping_setitem != NULL && mapping_setitem == dict_setitem &&
PyDict_Check(mapping))
{
while (1) {
/* Fast path advantages:
1. Eliminate double hashing
(by re-using the same hash for both the get and set)
2. Avoid argument overhead of PyObject_CallFunctionObjArgs
(argument tuple creation and parsing)
3. Avoid indirection through a bound method object
(creates another argument tuple)
4. Avoid initial increment from zero
(reuse an existing one-object instead)
*/
Py_hash_t hash;
key = PyIter_Next(it);
if (key == NULL)
break;
if (!PyUnicode_CheckExact(key) ||
(hash = ((PyASCIIObject *) key)->hash) == -1)
{
hash = PyObject_Hash(key);
if (hash == -1)
goto done;
}
oldval = _PyDict_GetItem_KnownHash(mapping, key, hash);
if (oldval == NULL) {
if (PyErr_Occurred())
goto done;
if (_PyDict_SetItem_KnownHash(mapping, key, one, hash) < 0)
goto done;
} else {
newval = PyNumber_Add(oldval, one);
if (newval == NULL)
goto done;
if (_PyDict_SetItem_KnownHash(mapping, key, newval, hash) < 0)
goto done;
Py_CLEAR(newval);
}
Py_DECREF(key);
}
} else {
bound_get = _PyObject_GetAttrId(mapping, &PyId_get);
if (bound_get == NULL)
goto done;
zero = PyLong_FromLong(0);
if (zero == NULL)
goto done;
while (1) {
key = PyIter_Next(it);
if (key == NULL)
break;
oldval = PyObject_CallFunctionObjArgs(bound_get, key, zero, NULL);
if (oldval == NULL)
break;
newval = PyNumber_Add(oldval, one);
Py_DECREF(oldval);
if (newval == NULL)
break;
if (PyObject_SetItem(mapping, key, newval) < 0)
break;
Py_CLEAR(newval);
Py_DECREF(key);
}
}
done:
Py_DECREF(it);
Py_XDECREF(key);
Py_XDECREF(newval);
Py_XDECREF(bound_get);
Py_XDECREF(zero);
Py_XDECREF(one);
if (PyErr_Occurred())
return NULL;
Py_RETURN_NONE;
}
/* module level code ********************************************************/
PyDoc_STRVAR(module_doc,
"High performance data structures.\n\
- deque: ordered collection accessible from endpoints only\n\
- defaultdict: dict subclass with a default value factory\n\
");
static struct PyMethodDef module_functions[] = {
{"_count_elements", _count_elements, METH_VARARGS, _count_elements_doc},
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef _collectionsmodule = {
PyModuleDef_HEAD_INIT,
"_collections",
module_doc,
-1,
module_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__collections(void)
{
PyObject *m;
m = PyModule_Create(&_collectionsmodule);
if (m == NULL)
return NULL;
if (PyType_Ready(&deque_type) < 0)
return NULL;
Py_INCREF(&deque_type);
PyModule_AddObject(m, "deque", (PyObject *)&deque_type);
defdict_type.tp_base = &PyDict_Type;
if (PyType_Ready(&defdict_type) < 0)
return NULL;
Py_INCREF(&defdict_type);
PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type);
Py_INCREF(&PyODict_Type);
PyModule_AddObject(m, "OrderedDict", (PyObject *)&PyODict_Type);
if (PyType_Ready(&dequeiter_type) < 0)
return NULL;
Py_INCREF(&dequeiter_type);
PyModule_AddObject(m, "_deque_iterator", (PyObject *)&dequeiter_type);
if (PyType_Ready(&dequereviter_type) < 0)
return NULL;
Py_INCREF(&dequereviter_type);
PyModule_AddObject(m, "_deque_reverse_iterator", (PyObject *)&dequereviter_type);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__collections = {
"_collections",
PyInit__collections,
};
| 76,171 | 2,462 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/posixmodule.h | #ifndef Py_POSIXMODULE_H
#define Py_POSIXMODULE_H
#include "libc/calls/weirdtypes.h"
#include "third_party/python/Include/object.h"
COSMOPOLITAN_C_START_
#ifndef Py_LIMITED_API
#ifndef MS_WINDOWS
PyObject *_PyLong_FromUid(uid_t);
PyObject *_PyLong_FromGid(gid_t);
int _Py_Uid_Converter(PyObject *, void *);
int _Py_Gid_Converter(PyObject *, void *);
#endif /* MS_WINDOWS */
#endif
COSMOPOLITAN_C_END_
#endif /* !Py_POSIXMODULE_H */
| 434 | 18 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/getbuildinfo.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
/* clang-format off */
#define GITVERSION "3.6"
#define GITTAG "3.6"
#define GITBRANCH "cosmo"
const char *
Py_GetBuildInfo(void)
{
if (IsXnu()) {
return "ð Actually Portable Python";
} else {
return "Actually Portable Python";
}
}
const char *
_Py_gitversion(void)
{
return GITVERSION;
}
const char *
_Py_gitidentifier(void)
{
const char *gittag, *gitid;
gittag = GITTAG;
if ((*gittag) && strcmp(gittag, "undefined") != 0)
gitid = gittag;
else
gitid = GITBRANCH;
return gitid;
}
| 1,472 | 42 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_typerecords.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const _PyUnicode_TypeRecord _PyUnicode_TypeRecords[503] = {
{ 0, 0, 0, 0, 0, 0},
{ 0, 0, 0, 0, 0, 0},
{ 0, 0, 0, 0, 0, 32},
{ 0, 0, 0, 0, 0, 48},
{ 0, 0, 0, 0, 0, 1056},
{ 0, 0, 0, 0, 0, 1024},
{ 0, 0, 0, 0, 0, 5120},
{ 0, 0, 0, 0, 0, 3590},
{ 0, 0, 0, 1, 1, 3590},
{ 0, 0, 0, 2, 2, 3590},
{ 0, 0, 0, 3, 3, 3590},
{ 0, 0, 0, 4, 4, 3590},
{ 0, 0, 0, 5, 5, 3590},
{ 0, 0, 0, 6, 6, 3590},
{ 0, 0, 0, 7, 7, 3590},
{ 0, 0, 0, 8, 8, 3590},
{ 0, 0, 0, 9, 9, 3590},
{ 0, 32, 0, 0, 0, 10113},
{ 0, 0, 0, 0, 0, 1536},
{-32, 0, -32, 0, 0, 9993},
{ 0, 0, 0, 0, 0, 9993},
{ 0, 0, 0, 0, 0, 4096},
{ 0, 0, 0, 0, 2, 3076},
{ 0, 0, 0, 0, 3, 3076},
{16777218, 17825792, 16777218, 0, 0, 26377},
{ 0, 0, 0, 0, 0, 5632},
{ 0, 0, 0, 0, 1, 3076},
{ 0, 0, 0, 0, 0, 3072},
{33554438, 18874371, 33554440, 0, 0, 26377},
{121, 0, 121, 0, 0, 9993},
{ 0, 1, 0, 0, 0, 10113},
{ -1, 0, -1, 0, 0, 9993},
{16777228, 33554442, 16777228, 0, 0, 26497},
{-232, 0, -232, 0, 0, 9993},
{33554448, 18874381, 33554448, 0, 0, 26377},
{ 0, -121, 0, 0, 0, 10113},
{16777236, 17825810, 16777236, 0, 0, 26377},
{195, 0, 195, 0, 0, 9993},
{ 0, 210, 0, 0, 0, 10113},
{ 0, 206, 0, 0, 0, 10113},
{ 0, 205, 0, 0, 0, 10113},
{ 0, 79, 0, 0, 0, 10113},
{ 0, 202, 0, 0, 0, 10113},
{ 0, 203, 0, 0, 0, 10113},
{ 0, 207, 0, 0, 0, 10113},
{ 97, 0, 97, 0, 0, 9993},
{ 0, 211, 0, 0, 0, 10113},
{ 0, 209, 0, 0, 0, 10113},
{163, 0, 163, 0, 0, 9993},
{ 0, 213, 0, 0, 0, 10113},
{130, 0, 130, 0, 0, 9993},
{ 0, 214, 0, 0, 0, 10113},
{ 0, 218, 0, 0, 0, 10113},
{ 0, 217, 0, 0, 0, 10113},
{ 0, 219, 0, 0, 0, 10113},
{ 0, 0, 0, 0, 0, 1793},
{ 56, 0, 56, 0, 0, 9993},
{ 0, 2, 1, 0, 0, 10113},
{ -1, 1, 0, 0, 0, 10049},
{ -2, 0, -1, 0, 0, 9993},
{-79, 0, -79, 0, 0, 9993},
{33554456, 18874389, 33554456, 0, 0, 26377},
{ 0, -97, 0, 0, 0, 10113},
{ 0, -56, 0, 0, 0, 10113},
{ 0, -130, 0, 0, 0, 10113},
{ 0, 10795, 0, 0, 0, 10113},
{ 0, -163, 0, 0, 0, 10113},
{ 0, 10792, 0, 0, 0, 10113},
{10815, 0, 10815, 0, 0, 9993},
{ 0, -195, 0, 0, 0, 10113},
{ 0, 69, 0, 0, 0, 10113},
{ 0, 71, 0, 0, 0, 10113},
{10783, 0, 10783, 0, 0, 9993},
{10780, 0, 10780, 0, 0, 9993},
{10782, 0, 10782, 0, 0, 9993},
{-210, 0, -210, 0, 0, 9993},
{-206, 0, -206, 0, 0, 9993},
{-205, 0, -205, 0, 0, 9993},
{-202, 0, -202, 0, 0, 9993},
{-203, 0, -203, 0, 0, 9993},
{42319, 0, 42319, 0, 0, 9993},
{42315, 0, 42315, 0, 0, 9993},
{-207, 0, -207, 0, 0, 9993},
{42280, 0, 42280, 0, 0, 9993},
{42308, 0, 42308, 0, 0, 9993},
{-209, 0, -209, 0, 0, 9993},
{-211, 0, -211, 0, 0, 9993},
{10743, 0, 10743, 0, 0, 9993},
{42305, 0, 42305, 0, 0, 9993},
{10749, 0, 10749, 0, 0, 9993},
{-213, 0, -213, 0, 0, 9993},
{-214, 0, -214, 0, 0, 9993},
{10727, 0, 10727, 0, 0, 9993},
{-218, 0, -218, 0, 0, 9993},
{42307, 0, 42307, 0, 0, 9993},
{42282, 0, 42282, 0, 0, 9993},
{-69, 0, -69, 0, 0, 9993},
{-217, 0, -217, 0, 0, 9993},
{-71, 0, -71, 0, 0, 9993},
{-219, 0, -219, 0, 0, 9993},
{42261, 0, 42261, 0, 0, 9993},
{42258, 0, 42258, 0, 0, 9993},
{ 0, 0, 0, 0, 0, 14089},
{ 0, 0, 0, 0, 0, 5889},
{16777244, 17825818, 16777244, 0, 0, 30216},
{ 0, 0, 0, 0, 0, 13321},
{ 0, 116, 0, 0, 0, 10113},
{ 0, 38, 0, 0, 0, 10113},
{ 0, 37, 0, 0, 0, 10113},
{ 0, 64, 0, 0, 0, 10113},
{ 0, 63, 0, 0, 0, 10113},
{50331681, 19922973, 50331681, 0, 0, 26377},
{-38, 0, -38, 0, 0, 9993},
{-37, 0, -37, 0, 0, 9993},
{50331688, 19922980, 50331688, 0, 0, 26377},
{16777261, 17825835, 16777261, 0, 0, 26377},
{-64, 0, -64, 0, 0, 9993},
{-63, 0, -63, 0, 0, 9993},
{ 0, 8, 0, 0, 0, 10113},
{16777264, 17825838, 16777264, 0, 0, 26377},
{16777267, 17825841, 16777267, 0, 0, 26377},
{ 0, 0, 0, 0, 0, 10113},
{16777270, 17825844, 16777270, 0, 0, 26377},
{16777273, 17825847, 16777273, 0, 0, 26377},
{ -8, 0, -8, 0, 0, 9993},
{16777276, 17825850, 16777276, 0, 0, 26377},
{16777279, 17825853, 16777279, 0, 0, 26377},
{ 7, 0, 7, 0, 0, 9993},
{-116, 0, -116, 0, 0, 9993},
{ 0, -60, 0, 0, 0, 10113},
{16777282, 17825856, 16777282, 0, 0, 26377},
{ 0, -7, 0, 0, 0, 10113},
{ 0, 80, 0, 0, 0, 10113},
{-80, 0, -80, 0, 0, 9993},
{ 0, 15, 0, 0, 0, 10113},
{-15, 0, -15, 0, 0, 9993},
{ 0, 48, 0, 0, 0, 10113},
{-48, 0, -48, 0, 0, 9993},
{33554502, 18874435, 33554504, 0, 0, 26377},
{ 0, 0, 0, 0, 0, 1537},
{ 0, 7264, 0, 0, 0, 10113},
{3008, 0, 0, 0, 0, 9993},
{ 0, 0, 0, 0, 1, 3588},
{ 0, 0, 0, 0, 2, 3588},
{ 0, 0, 0, 0, 3, 3588},
{ 0, 0, 0, 0, 4, 3588},
{ 0, 0, 0, 0, 5, 3588},
{ 0, 0, 0, 0, 6, 3588},
{ 0, 0, 0, 0, 7, 3588},
{ 0, 0, 0, 0, 8, 3588},
{ 0, 0, 0, 0, 9, 3588},
{16777292, 17825866, 16777292, 0, 0, 26497},
{16777295, 17825869, 16777295, 0, 0, 26497},
{16777298, 17825872, 16777298, 0, 0, 26497},
{16777301, 17825875, 16777301, 0, 0, 26497},
{16777304, 17825878, 16777304, 0, 0, 26497},
{16777307, 17825881, 16777307, 0, 0, 26497},
{16777310, 17825884, 16777310, 0, 0, 26497},
{16777313, 17825887, 16777313, 0, 0, 26497},
{16777316, 17825890, 16777316, 0, 0, 26497},
{16777319, 17825893, 16777319, 0, 0, 26497},
{16777322, 17825896, 16777322, 0, 0, 26497},
{16777325, 17825899, 16777325, 0, 0, 26497},
{16777328, 17825902, 16777328, 0, 0, 26497},
{16777331, 17825905, 16777331, 0, 0, 26497},
{16777334, 17825908, 16777334, 0, 0, 26497},
{16777337, 17825911, 16777337, 0, 0, 26497},
{16777340, 17825914, 16777340, 0, 0, 26497},
{16777343, 17825917, 16777343, 0, 0, 26497},
{16777346, 17825920, 16777346, 0, 0, 26497},
{16777349, 17825923, 16777349, 0, 0, 26497},
{16777352, 17825926, 16777352, 0, 0, 26497},
{16777355, 17825929, 16777355, 0, 0, 26497},
{16777358, 17825932, 16777358, 0, 0, 26497},
{16777361, 17825935, 16777361, 0, 0, 26497},
{16777364, 17825938, 16777364, 0, 0, 26497},
{16777367, 17825941, 16777367, 0, 0, 26497},
{16777370, 17825944, 16777370, 0, 0, 26497},
{16777373, 17825947, 16777373, 0, 0, 26497},
{16777376, 17825950, 16777376, 0, 0, 26497},
{16777379, 17825953, 16777379, 0, 0, 26497},
{16777382, 17825956, 16777382, 0, 0, 26497},
{16777385, 17825959, 16777385, 0, 0, 26497},
{16777388, 17825962, 16777388, 0, 0, 26497},
{16777391, 17825965, 16777391, 0, 0, 26497},
{16777394, 17825968, 16777394, 0, 0, 26497},
{16777397, 17825971, 16777397, 0, 0, 26497},
{16777400, 17825974, 16777400, 0, 0, 26497},
{16777403, 17825977, 16777403, 0, 0, 26497},
{16777406, 17825980, 16777406, 0, 0, 26497},
{16777409, 17825983, 16777409, 0, 0, 26497},
{16777412, 17825986, 16777412, 0, 0, 26497},
{16777415, 17825989, 16777415, 0, 0, 26497},
{16777418, 17825992, 16777418, 0, 0, 26497},
{16777421, 17825995, 16777421, 0, 0, 26497},
{16777424, 17825998, 16777424, 0, 0, 26497},
{16777427, 17826001, 16777427, 0, 0, 26497},
{16777430, 17826004, 16777430, 0, 0, 26497},
{16777433, 17826007, 16777433, 0, 0, 26497},
{16777436, 17826010, 16777436, 0, 0, 26497},
{16777439, 17826013, 16777439, 0, 0, 26497},
{16777442, 17826016, 16777442, 0, 0, 26497},
{16777445, 17826019, 16777445, 0, 0, 26497},
{16777448, 17826022, 16777448, 0, 0, 26497},
{16777451, 17826025, 16777451, 0, 0, 26497},
{16777454, 17826028, 16777454, 0, 0, 26497},
{16777457, 17826031, 16777457, 0, 0, 26497},
{16777460, 17826034, 16777460, 0, 0, 26497},
{16777463, 17826037, 16777463, 0, 0, 26497},
{16777466, 17826040, 16777466, 0, 0, 26497},
{16777469, 17826043, 16777469, 0, 0, 26497},
{16777472, 17826046, 16777472, 0, 0, 26497},
{16777475, 17826049, 16777475, 0, 0, 26497},
{16777478, 17826052, 16777478, 0, 0, 26497},
{16777481, 17826055, 16777481, 0, 0, 26497},
{16777484, 17826058, 16777484, 0, 0, 26497},
{16777487, 17826061, 16777487, 0, 0, 26497},
{16777490, 17826064, 16777490, 0, 0, 26497},
{16777493, 17826067, 16777493, 0, 0, 26497},
{16777496, 17826070, 16777496, 0, 0, 26497},
{16777499, 17826073, 16777499, 0, 0, 26497},
{16777502, 17826076, 16777502, 0, 0, 26497},
{16777505, 17826079, 16777505, 0, 0, 26497},
{16777508, 17826082, 16777508, 0, 0, 26497},
{16777511, 17826085, 16777511, 0, 0, 26497},
{16777514, 17826088, 16777514, 0, 0, 26497},
{16777517, 17826091, 16777517, 0, 0, 26497},
{16777520, 17826094, 16777520, 0, 0, 26497},
{16777523, 17826097, 16777523, 0, 0, 26497},
{16777526, 17826100, 16777526, 0, 0, 26497},
{16777529, 17826103, 16777529, 0, 0, 26497},
{16777532, 17826106, 16777532, 0, 0, 26497},
{16777535, 17826109, 16777535, 0, 0, 26497},
{16777538, 17826112, 16777538, 0, 0, 26497},
{16777541, 17826115, 16777541, 0, 0, 26497},
{16777544, 17826118, 16777544, 0, 0, 26497},
{16777547, 17826121, 16777547, 0, 0, 26497},
{16777550, 17826124, 16777550, 0, 0, 26377},
{16777553, 17826127, 16777553, 0, 0, 26377},
{16777556, 17826130, 16777556, 0, 0, 26377},
{16777559, 17826133, 16777559, 0, 0, 26377},
{16777562, 17826136, 16777562, 0, 0, 26377},
{16777565, 17826139, 16777565, 0, 0, 26377},
{ 0, 0, 0, 0, 0, 3840},
{ 0, 0, 0, 0, 0, 5888},
{16777568, 17826142, 16777568, 0, 0, 26377},
{16777571, 17826145, 16777571, 0, 0, 26377},
{16777574, 17826148, 16777574, 0, 0, 26377},
{16777577, 17826151, 16777577, 0, 0, 26377},
{16777580, 17826154, 16777580, 0, 0, 26377},
{16777583, 17826157, 16777583, 0, 0, 26377},
{16777586, 17826160, 16777586, 0, 0, 26377},
{16777589, 17826163, 16777589, 0, 0, 26377},
{16777592, 17826166, 16777592, 0, 0, 26377},
{ 0, -3008, 0, 0, 0, 10113},
{35332, 0, 35332, 0, 0, 9993},
{3814, 0, 3814, 0, 0, 9993},
{35384, 0, 35384, 0, 0, 9993},
{33554812, 18874745, 33554812, 0, 0, 26377},
{33554817, 18874750, 33554817, 0, 0, 26377},
{33554822, 18874755, 33554822, 0, 0, 26377},
{33554827, 18874760, 33554827, 0, 0, 26377},
{33554832, 18874765, 33554832, 0, 0, 26377},
{16777620, 17826194, 16777620, 0, 0, 26377},
{16777624, 18874773, 16777624, 0, 0, 26497},
{ 8, 0, 8, 0, 0, 9993},
{ 0, -8, 0, 0, 0, 10113},
{33554844, 18874777, 33554844, 0, 0, 26377},
{50332066, 19923358, 50332066, 0, 0, 26377},
{50332073, 19923365, 50332073, 0, 0, 26377},
{50332080, 19923372, 50332080, 0, 0, 26377},
{ 74, 0, 74, 0, 0, 9993},
{ 86, 0, 86, 0, 0, 9993},
{100, 0, 100, 0, 0, 9993},
{128, 0, 128, 0, 0, 9993},
{112, 0, 112, 0, 0, 9993},
{126, 0, 126, 0, 0, 9993},
{33554870, 18874803, 16777656, 0, 0, 26377},
{33554876, 18874809, 16777662, 0, 0, 26377},
{33554882, 18874815, 16777668, 0, 0, 26377},
{33554888, 18874821, 16777674, 0, 0, 26377},
{33554894, 18874827, 16777680, 0, 0, 26377},
{33554900, 18874833, 16777686, 0, 0, 26377},
{33554906, 18874839, 16777692, 0, 0, 26377},
{33554912, 18874845, 16777698, 0, 0, 26377},
{33554918, 18874851, 16777704, 0, 0, 26433},
{33554924, 18874857, 16777710, 0, 0, 26433},
{33554930, 18874863, 16777716, 0, 0, 26433},
{33554936, 18874869, 16777722, 0, 0, 26433},
{33554942, 18874875, 16777728, 0, 0, 26433},
{33554948, 18874881, 16777734, 0, 0, 26433},
{33554954, 18874887, 16777740, 0, 0, 26433},
{33554960, 18874893, 16777746, 0, 0, 26433},
{33554966, 18874899, 16777752, 0, 0, 26377},
{33554972, 18874905, 16777758, 0, 0, 26377},
{33554978, 18874911, 16777764, 0, 0, 26377},
{33554984, 18874917, 16777770, 0, 0, 26377},
{33554990, 18874923, 16777776, 0, 0, 26377},
{33554996, 18874929, 16777782, 0, 0, 26377},
{33555002, 18874935, 16777788, 0, 0, 26377},
{33555008, 18874941, 16777794, 0, 0, 26377},
{33555014, 18874947, 16777800, 0, 0, 26433},
{33555020, 18874953, 16777806, 0, 0, 26433},
{33555026, 18874959, 16777812, 0, 0, 26433},
{33555032, 18874965, 16777818, 0, 0, 26433},
{33555038, 18874971, 16777824, 0, 0, 26433},
{33555044, 18874977, 16777830, 0, 0, 26433},
{33555050, 18874983, 16777836, 0, 0, 26433},
{33555056, 18874989, 16777842, 0, 0, 26433},
{33555062, 18874995, 16777848, 0, 0, 26377},
{33555068, 18875001, 16777854, 0, 0, 26377},
{33555074, 18875007, 16777860, 0, 0, 26377},
{33555080, 18875013, 16777866, 0, 0, 26377},
{33555086, 18875019, 16777872, 0, 0, 26377},
{33555092, 18875025, 16777878, 0, 0, 26377},
{33555098, 18875031, 16777884, 0, 0, 26377},
{33555104, 18875037, 16777890, 0, 0, 26377},
{33555110, 18875043, 16777896, 0, 0, 26433},
{33555116, 18875049, 16777902, 0, 0, 26433},
{33555122, 18875055, 16777908, 0, 0, 26433},
{33555128, 18875061, 16777914, 0, 0, 26433},
{33555134, 18875067, 16777920, 0, 0, 26433},
{33555140, 18875073, 16777926, 0, 0, 26433},
{33555146, 18875079, 16777932, 0, 0, 26433},
{33555152, 18875085, 16777938, 0, 0, 26433},
{33555158, 18875091, 33555160, 0, 0, 26377},
{33555165, 18875098, 16777951, 0, 0, 26377},
{33555171, 18875104, 33555173, 0, 0, 26377},
{33555178, 18875111, 33555178, 0, 0, 26377},
{50332400, 19923692, 50332403, 0, 0, 26377},
{ 0, -74, 0, 0, 0, 10113},
{33555193, 18875126, 16777979, 0, 0, 26433},
{16777982, 17826556, 16777982, 0, 0, 26377},
{33555202, 18875135, 33555204, 0, 0, 26377},
{33555209, 18875142, 16777995, 0, 0, 26377},
{33555215, 18875148, 33555217, 0, 0, 26377},
{33555222, 18875155, 33555222, 0, 0, 26377},
{50332444, 19923736, 50332447, 0, 0, 26377},
{ 0, -86, 0, 0, 0, 10113},
{33555237, 18875170, 16778023, 0, 0, 26433},
{50332460, 19923752, 50332460, 0, 0, 26377},
{50332467, 19923759, 50332467, 0, 0, 26377},
{33555257, 18875190, 33555257, 0, 0, 26377},
{50332479, 19923771, 50332479, 0, 0, 26377},
{ 0, -100, 0, 0, 0, 10113},
{50332486, 19923778, 50332486, 0, 0, 26377},
{50332493, 19923785, 50332493, 0, 0, 26377},
{33555283, 18875216, 33555283, 0, 0, 26377},
{33555288, 18875221, 33555288, 0, 0, 26377},
{50332510, 19923802, 50332510, 0, 0, 26377},
{ 0, -112, 0, 0, 0, 10113},
{33555300, 18875233, 33555302, 0, 0, 26377},
{33555307, 18875240, 16778093, 0, 0, 26377},
{33555313, 18875246, 33555315, 0, 0, 26377},
{33555320, 18875253, 33555320, 0, 0, 26377},
{50332542, 19923834, 50332545, 0, 0, 26377},
{ 0, -128, 0, 0, 0, 10113},
{ 0, -126, 0, 0, 0, 10113},
{33555335, 18875268, 16778121, 0, 0, 26433},
{ 0, 0, 0, 0, 0, 3076},
{ 0, 0, 0, 0, 4, 3076},
{ 0, 0, 0, 0, 5, 3076},
{ 0, 0, 0, 0, 6, 3076},
{ 0, 0, 0, 0, 7, 3076},
{ 0, 0, 0, 0, 8, 3076},
{ 0, 0, 0, 0, 9, 3076},
{ 0, 0, 0, 0, 0, 1792},
{ 0, -7517, 0, 0, 0, 10113},
{ 0, -8383, 0, 0, 0, 10113},
{ 0, -8262, 0, 0, 0, 10113},
{ 0, 28, 0, 0, 0, 10113},
{-28, 0, -28, 0, 0, 9993},
{ 0, 16, 0, 0, 0, 12160},
{-16, 0, -16, 0, 0, 12040},
{ 0, 26, 0, 0, 0, 9344},
{-26, 0, -26, 0, 0, 9224},
{ 0, -10743, 0, 0, 0, 10113},
{ 0, -3814, 0, 0, 0, 10113},
{ 0, -10727, 0, 0, 0, 10113},
{-10795, 0, -10795, 0, 0, 9993},
{-10792, 0, -10792, 0, 0, 9993},
{ 0, -10780, 0, 0, 0, 10113},
{ 0, -10749, 0, 0, 0, 10113},
{ 0, -10783, 0, 0, 0, 10113},
{ 0, -10782, 0, 0, 0, 10113},
{ 0, -10815, 0, 0, 0, 10113},
{-7264, 0, -7264, 0, 0, 9993},
{ 0, 0, 0, 0, 0, 5121},
{ 0, 0, 0, 0, 0, 3841},
{ 0, -35332, 0, 0, 0, 10113},
{ 0, -42280, 0, 0, 0, 10113},
{ 48, 0, 48, 0, 0, 9993},
{ 0, -42308, 0, 0, 0, 10113},
{ 0, -42319, 0, 0, 0, 10113},
{ 0, -42315, 0, 0, 0, 10113},
{ 0, -42305, 0, 0, 0, 10113},
{ 0, -42258, 0, 0, 0, 10113},
{ 0, -42282, 0, 0, 0, 10113},
{ 0, -42261, 0, 0, 0, 10113},
{ 0, 928, 0, 0, 0, 10113},
{ 0, -48, 0, 0, 0, 10113},
{ 0, -42307, 0, 0, 0, 10113},
{ 0, -35384, 0, 0, 0, 10113},
{-928, 0, -928, 0, 0, 9993},
{16778124, 17826698, 16778124, 0, 0, 26377},
{16778127, 17826701, 16778127, 0, 0, 26377},
{16778130, 17826704, 16778130, 0, 0, 26377},
{16778133, 17826707, 16778133, 0, 0, 26377},
{16778136, 17826710, 16778136, 0, 0, 26377},
{16778139, 17826713, 16778139, 0, 0, 26377},
{16778142, 17826716, 16778142, 0, 0, 26377},
{16778145, 17826719, 16778145, 0, 0, 26377},
{16778148, 17826722, 16778148, 0, 0, 26377},
{16778151, 17826725, 16778151, 0, 0, 26377},
{16778154, 17826728, 16778154, 0, 0, 26377},
{16778157, 17826731, 16778157, 0, 0, 26377},
{16778160, 17826734, 16778160, 0, 0, 26377},
{16778163, 17826737, 16778163, 0, 0, 26377},
{16778166, 17826740, 16778166, 0, 0, 26377},
{16778169, 17826743, 16778169, 0, 0, 26377},
{16778172, 17826746, 16778172, 0, 0, 26377},
{16778175, 17826749, 16778175, 0, 0, 26377},
{16778178, 17826752, 16778178, 0, 0, 26377},
{16778181, 17826755, 16778181, 0, 0, 26377},
{16778184, 17826758, 16778184, 0, 0, 26377},
{16778187, 17826761, 16778187, 0, 0, 26377},
{16778190, 17826764, 16778190, 0, 0, 26377},
{16778193, 17826767, 16778193, 0, 0, 26377},
{16778196, 17826770, 16778196, 0, 0, 26377},
{16778199, 17826773, 16778199, 0, 0, 26377},
{16778202, 17826776, 16778202, 0, 0, 26377},
{16778205, 17826779, 16778205, 0, 0, 26377},
{16778208, 17826782, 16778208, 0, 0, 26377},
{16778211, 17826785, 16778211, 0, 0, 26377},
{16778214, 17826788, 16778214, 0, 0, 26377},
{16778217, 17826791, 16778217, 0, 0, 26377},
{16778220, 17826794, 16778220, 0, 0, 26377},
{16778223, 17826797, 16778223, 0, 0, 26377},
{16778226, 17826800, 16778226, 0, 0, 26377},
{16778229, 17826803, 16778229, 0, 0, 26377},
{16778232, 17826806, 16778232, 0, 0, 26377},
{16778235, 17826809, 16778235, 0, 0, 26377},
{16778238, 17826812, 16778238, 0, 0, 26377},
{16778241, 17826815, 16778241, 0, 0, 26377},
{16778244, 17826818, 16778244, 0, 0, 26377},
{16778247, 17826821, 16778247, 0, 0, 26377},
{16778250, 17826824, 16778250, 0, 0, 26377},
{16778253, 17826827, 16778253, 0, 0, 26377},
{16778256, 17826830, 16778256, 0, 0, 26377},
{16778259, 17826833, 16778259, 0, 0, 26377},
{16778262, 17826836, 16778262, 0, 0, 26377},
{16778265, 17826839, 16778265, 0, 0, 26377},
{16778268, 17826842, 16778268, 0, 0, 26377},
{16778271, 17826845, 16778271, 0, 0, 26377},
{16778274, 17826848, 16778274, 0, 0, 26377},
{16778277, 17826851, 16778277, 0, 0, 26377},
{16778280, 17826854, 16778280, 0, 0, 26377},
{16778283, 17826857, 16778283, 0, 0, 26377},
{16778286, 17826860, 16778286, 0, 0, 26377},
{16778289, 17826863, 16778289, 0, 0, 26377},
{16778292, 17826866, 16778292, 0, 0, 26377},
{16778295, 17826869, 16778295, 0, 0, 26377},
{16778298, 17826872, 16778298, 0, 0, 26377},
{16778301, 17826875, 16778301, 0, 0, 26377},
{16778304, 17826878, 16778304, 0, 0, 26377},
{16778307, 17826881, 16778307, 0, 0, 26377},
{16778310, 17826884, 16778310, 0, 0, 26377},
{16778313, 17826887, 16778313, 0, 0, 26377},
{16778316, 17826890, 16778316, 0, 0, 26377},
{16778319, 17826893, 16778319, 0, 0, 26377},
{16778322, 17826896, 16778322, 0, 0, 26377},
{16778325, 17826899, 16778325, 0, 0, 26377},
{16778328, 17826902, 16778328, 0, 0, 26377},
{16778331, 17826905, 16778331, 0, 0, 26377},
{16778334, 17826908, 16778334, 0, 0, 26377},
{16778337, 17826911, 16778337, 0, 0, 26377},
{16778340, 17826914, 16778340, 0, 0, 26377},
{16778343, 17826917, 16778343, 0, 0, 26377},
{16778346, 17826920, 16778346, 0, 0, 26377},
{16778349, 17826923, 16778349, 0, 0, 26377},
{16778352, 17826926, 16778352, 0, 0, 26377},
{16778355, 17826929, 16778355, 0, 0, 26377},
{16778358, 17826932, 16778358, 0, 0, 26377},
{16778361, 17826935, 16778361, 0, 0, 26377},
{33555581, 18875514, 33555583, 0, 0, 26377},
{33555588, 18875521, 33555590, 0, 0, 26377},
{33555595, 18875528, 33555597, 0, 0, 26377},
{50332819, 19924111, 50332822, 0, 0, 26377},
{50332829, 19924121, 50332832, 0, 0, 26377},
{33555622, 18875555, 33555624, 0, 0, 26377},
{33555629, 18875562, 33555631, 0, 0, 26377},
{33555636, 18875569, 33555638, 0, 0, 26377},
{33555643, 18875576, 33555645, 0, 0, 26377},
{33555650, 18875583, 33555652, 0, 0, 26377},
{33555657, 18875590, 33555659, 0, 0, 26377},
{33555664, 18875597, 33555666, 0, 0, 26377},
{ 0, 0, 0, 0, 0, 1025},
{ 0, 0, 0, 0, 0, 5633},
{ 0, 40, 0, 0, 0, 10113},
{-40, 0, -40, 0, 0, 9993},
{ 0, 34, 0, 0, 0, 10113},
{-34, 0, -34, 0, 0, 9993},
{ 0, 0, 0, 0, 0, 9344},
};
unsigned short _PyUnicode_TypeRecordsIndex1[8704];
static const unsigned short _PyUnicode_TypeRecordsIndex1_rodata[370+1][2] = { /* 8.50184% profit */
{ 1, 0x00},
{ 1, 0x01},
{ 1, 0x02},
{ 1, 0x03},
{ 1, 0x04},
{ 1, 0x05},
{ 1, 0x06},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x11},
{ 1, 0x12},
{ 1, 0x13},
{ 1, 0x14},
{ 1, 0x15},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x18},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x1b},
{ 1, 0x1c},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 2, 0x22},
{ 1, 0x23},
{ 1, 0x24},
{ 1, 0x25},
{ 1, 0x26},
{ 1, 0x27},
{ 3, 0x22},
{ 1, 0x28},
{ 1, 0x29},
{ 1, 0x2a},
{ 1, 0x2b},
{ 1, 0x2c},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x2f},
{ 1, 0x30},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x33},
{ 1, 0x34},
{ 1, 0x35},
{ 1, 0x36},
{ 1, 0x37},
{ 1, 0x38},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x3c},
{ 1, 0x3d},
{ 1, 0x3e},
{ 1, 0x3f},
{ 4, 0x40},
{ 1, 0x41},
{ 1, 0x42},
{ 4, 0x40},
{ 1, 0x43},
{ 1, 0x44},
{ 6, 0x40},
{ 1, 0x45},
{ 1, 0x46},
{ 1, 0x47},
{ 1, 0x48},
{ 1, 0x49},
{ 1, 0x4a},
{ 1, 0x4b},
{ 1, 0x4c},
{ 1, 0x40},
{ 1, 0x4d},
{ 1, 0x4e},
{ 1, 0x4f},
{ 1, 0x50},
{ 1, 0x51},
{ 1, 0x52},
{ 1, 0x53},
{ 2, 0x40},
{ 1, 0x54},
{ 1, 0x55},
{ 6, 0x22},
{ 1, 0x56},
{ 5, 0x22},
{ 1, 0x57},
{ 36, 0x22},
{ 1, 0x58},
{ 1, 0x59},
{ 1, 0x5a},
{ 1, 0x5b},
{ 3, 0x22},
{ 1, 0x5c},
{ 3, 0x22},
{ 1, 0x5d},
{ 1, 0x5e},
{ 5, 0x22},
{ 1, 0x5f},
{ 3, 0x22},
{ 1, 0x60},
{ 10, 0x22},
{ 1, 0x61},
{ 1, 0x62},
{ 1, 0x63},
{ 6, 0x22},
{ 1, 0x64},
{ 1, 0x65},
{ 8, 0x22},
{ 1, 0x66},
{ 14, 0x22},
{ 1, 0x67},
{ 8, 0x22},
{ 1, 0x68},
{ 4, 0x22},
{ 1, 0x64},
{ 20, 0x22},
{ 1, 0x67},
{ 6, 0x22},
{ 1, 0x69},
{ 16, 0x22},
{ 1, 0x6a},
{ 1, 0x6b},
{ 17, 0x22},
{ 1, 0x6c},
{ 1, 0x6d},
{ 17, 0x22},
{ 1, 0x6e},
{ 1, 0x6f},
{ 8, 0x22},
{ 1, 0x70},
{ 2, 0x22},
{ 1, 0x71},
{ 1, 0x72},
{ 1, 0x73},
{ 1, 0x74},
{ 1, 0x75},
{ 1, 0x76},
{ 1, 0x77},
{ 1, 0x78},
{ 1, 0x79},
{ 1, 0x7a},
{ 1, 0x7b},
{ 1, 0x7c},
{ 87, 0x22},
{ 1, 0x7d},
{ 66, 0x7e},
{ 1, 0x7f},
{ 1, 0x80},
{ 1, 0x81},
{ 1, 0x82},
{ 1, 0x83},
{ 1, 0x84},
{ 1, 0x85},
{ 1, 0x22},
{ 1, 0x86},
{ 1, 0x87},
{ 1, 0x88},
{ 1, 0x89},
{ 1, 0x8a},
{ 1, 0x8b},
{ 1, 0x8c},
{ 1, 0x8d},
{ 1, 0x8e},
{ 1, 0x8f},
{ 1, 0x90},
{ 1, 0x91},
{ 1, 0x92},
{ 1, 0x93},
{ 1, 0x94},
{ 1, 0x95},
{ 1, 0x96},
{ 1, 0x90},
{ 2, 0x22},
{ 1, 0x97},
{ 1, 0x90},
{ 1, 0x98},
{ 1, 0x99},
{ 1, 0x9a},
{ 1, 0x9b},
{ 1, 0x9c},
{ 1, 0x9d},
{ 1, 0x9e},
{ 1, 0x9f},
{ 1, 0xa0},
{ 1, 0xa1},
{ 1, 0xa2},
{ 1, 0x90},
{ 1, 0xa3},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa6},
{ 1, 0xa7},
{ 1, 0xa8},
{ 1, 0xa9},
{ 1, 0xaa},
{ 1, 0xab},
{ 1, 0xac},
{ 1, 0xad},
{ 1, 0x90},
{ 1, 0xae},
{ 1, 0xaf},
{ 1, 0x90},
{ 1, 0xb0},
{ 1, 0xb1},
{ 1, 0xb2},
{ 1, 0xb3},
{ 1, 0x90},
{ 1, 0xb4},
{ 1, 0xb5},
{ 1, 0xb6},
{ 1, 0xb7},
{ 1, 0xb8},
{ 1, 0xb9},
{ 2, 0x90},
{ 1, 0xba},
{ 1, 0xbb},
{ 1, 0xbc},
{ 1, 0xbd},
{ 1, 0x90},
{ 1, 0xbe},
{ 1, 0x90},
{ 1, 0xbf},
{ 7, 0x22},
{ 1, 0xc0},
{ 1, 0xc1},
{ 1, 0x22},
{ 1, 0xc2},
{ 21, 0x90},
{ 8, 0x22},
{ 1, 0xc3},
{ 31, 0x90},
{ 4, 0x22},
{ 1, 0xc4},
{ 67, 0x90},
{ 4, 0x22},
{ 1, 0xc5},
{ 1, 0xc6},
{ 1, 0xc7},
{ 1, 0xc8},
{ 4, 0x90},
{ 1, 0xc9},
{ 1, 0xca},
{ 1, 0xcb},
{ 1, 0xcc},
{ 47, 0x22},
{ 1, 0xcd},
{ 9, 0x22},
{ 1, 0xce},
{ 1, 0xcf},
{ 69, 0x90},
{ 2, 0x22},
{ 1, 0xd0},
{ 2, 0x22},
{ 1, 0xd1},
{ 18, 0x90},
{ 1, 0xd2},
{ 1, 0xd3},
{ 38, 0x90},
{ 1, 0x40},
{ 1, 0xd4},
{ 1, 0xd5},
{ 1, 0xd6},
{ 1, 0xd7},
{ 1, 0xd8},
{ 1, 0xd9},
{ 1, 0x90},
{ 1, 0xda},
{ 1, 0xdb},
{ 1, 0xdc},
{ 1, 0xdd},
{ 1, 0xde},
{ 1, 0xdf},
{ 1, 0xe0},
{ 1, 0xe1},
{ 4, 0x40},
{ 1, 0xe2},
{ 1, 0xe3},
{ 10, 0x90},
{ 1, 0xe4},
{ 1, 0x90},
{ 1, 0xe5},
{ 2, 0x90},
{ 1, 0xe6},
{ 10, 0x90},
{ 1, 0x22},
{ 1, 0xe7},
{ 1, 0xe8},
{ 5, 0x90},
{ 1, 0xe9},
{ 1, 0xea},
{ 1, 0xeb},
{ 1, 0x90},
{ 1, 0xec},
{ 1, 0xed},
{ 2, 0x90},
{ 1, 0xee},
{ 1, 0xef},
{ 1, 0xf0},
{ 1, 0xf1},
{ 1, 0xf2},
{ 1, 0x90},
{ 1, 0x40},
{ 1, 0xf3},
{ 5, 0x40},
{ 1, 0xf4},
{ 1, 0xf5},
{ 1, 0xf6},
{ 1, 0xf7},
{ 1, 0xf8},
{ 1, 0xf9},
{ 1, 0xfa},
{ 1, 0xfb},
{ 1, 0xfc},
{ 1, 0x40},
{ 1, 0xfd},
{ 8, 0x90},
{ 1, 0xfe},
{ 1, 0xff},
{ 1, 0x100},
{ 15, 0x22},
{ 1, 0x56},
{ 1, 0x101},
{ 1, 0x22},
{ 1, 0x102},
{ 1, 0x103},
{ 48, 0x22},
{ 1, 0x104},
{ 11, 0x22},
{ 1, 0x105},
{ 34, 0x22},
{ 1, 0x106},
{ 77, 0x22},
{ 1, 0x107},
{136, 0x22},
{ 1, 0x108},
{ 32, 0x22},
{ 1, 0x109},
{ 1, 0x22},
{ 1, 0x10a},
{ 44, 0x22},
{ 1, 0x10b},
{ 57, 0x22},
{ 1, 0x10c},
{ 24, 0x90},
{ 1, 0x22},
{ 1, 0x104},
{ 2, 0x22},
{ 1, 0x10d},
{ 11, 0x90},
{ 38, 0x22},
{ 1, 0x10e},
{5593, 0x90},
{ 1, 0x10f},
{ 1, 0x90},
{ 1, 0x110},
{ 1, 0x111},
{508, 0x90},
{511, 0x7e},
{ 1, 0x112},
{511, 0x7e},
{ 1, 0x112},
{0},
};
static textstartup void _PyUnicode_TypeRecordsIndex1_init(void) {
int i, j, k;
for (k = i = 0; i < 370; ++i) {
for (j = 0; j < _PyUnicode_TypeRecordsIndex1_rodata[i][0]; ++j) {
_PyUnicode_TypeRecordsIndex1[k++] = _PyUnicode_TypeRecordsIndex1_rodata[i][1];
}
}
}
const void *const _PyUnicode_TypeRecordsIndex1_ctor[] initarray = {
_PyUnicode_TypeRecordsIndex1_init,
};
unsigned short _PyUnicode_TypeRecordsIndex2[35200];
static const unsigned short _PyUnicode_TypeRecordsIndex2_rodata[4889+1][2] = { /* 27.7784% profit */
{ 9, 0x01},
{ 1, 0x02},
{ 4, 0x03},
{ 14, 0x01},
{ 3, 0x03},
{ 1, 0x02},
{ 1, 0x04},
{ 6, 0x05},
{ 1, 0x06},
{ 6, 0x05},
{ 1, 0x06},
{ 1, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x06},
{ 6, 0x05},
{ 26, 0x11},
{ 3, 0x05},
{ 1, 0x06},
{ 1, 0x12},
{ 1, 0x06},
{ 26, 0x13},
{ 4, 0x05},
{ 6, 0x01},
{ 1, 0x03},
{ 26, 0x01},
{ 1, 0x02},
{ 7, 0x05},
{ 1, 0x06},
{ 1, 0x05},
{ 1, 0x14},
{ 2, 0x05},
{ 1, 0x15},
{ 1, 0x05},
{ 1, 0x06},
{ 2, 0x05},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x06},
{ 1, 0x18},
{ 1, 0x05},
{ 1, 0x19},
{ 1, 0x06},
{ 1, 0x1a},
{ 1, 0x14},
{ 1, 0x05},
{ 3, 0x1b},
{ 1, 0x05},
{ 23, 0x11},
{ 1, 0x05},
{ 7, 0x11},
{ 1, 0x1c},
{ 23, 0x13},
{ 1, 0x05},
{ 7, 0x13},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x22},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x23},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x24},
{ 1, 0x25},
{ 1, 0x26},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x27},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x28},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 1, 0x29},
{ 1, 0x2a},
{ 1, 0x2b},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x28},
{ 1, 0x2c},
{ 1, 0x2d},
{ 1, 0x2e},
{ 1, 0x2f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x30},
{ 1, 0x14},
{ 1, 0x2e},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x33},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x34},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x34},
{ 2, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x34},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x35},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x36},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 1, 0x37},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 1, 0x38},
{ 4, 0x37},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x3c},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x3d},
{ 1, 0x39},
{ 1, 0x3a},
{ 1, 0x3b},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x3e},
{ 1, 0x3f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x40},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 6, 0x14},
{ 1, 0x41},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x42},
{ 1, 0x43},
{ 2, 0x44},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x45},
{ 1, 0x46},
{ 1, 0x47},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x48},
{ 1, 0x49},
{ 1, 0x4a},
{ 1, 0x4b},
{ 1, 0x4c},
{ 1, 0x14},
{ 2, 0x4d},
{ 1, 0x14},
{ 1, 0x4e},
{ 1, 0x14},
{ 1, 0x4f},
{ 1, 0x50},
{ 3, 0x14},
{ 1, 0x4d},
{ 1, 0x51},
{ 1, 0x14},
{ 1, 0x52},
{ 1, 0x14},
{ 1, 0x53},
{ 1, 0x54},
{ 1, 0x14},
{ 1, 0x55},
{ 1, 0x56},
{ 1, 0x54},
{ 1, 0x57},
{ 1, 0x58},
{ 2, 0x14},
{ 1, 0x56},
{ 1, 0x14},
{ 1, 0x59},
{ 1, 0x5a},
{ 2, 0x14},
{ 1, 0x5b},
{ 7, 0x14},
{ 1, 0x5c},
{ 2, 0x14},
{ 1, 0x5d},
{ 1, 0x14},
{ 1, 0x5e},
{ 1, 0x5d},
{ 3, 0x14},
{ 1, 0x5f},
{ 1, 0x5d},
{ 1, 0x60},
{ 2, 0x61},
{ 1, 0x62},
{ 5, 0x14},
{ 1, 0x63},
{ 1, 0x14},
{ 1, 0x37},
{ 8, 0x14},
{ 1, 0x64},
{ 1, 0x65},
{ 17, 0x14},
{ 9, 0x66},
{ 7, 0x67},
{ 2, 0x66},
{ 4, 0x06},
{ 12, 0x67},
{ 14, 0x06},
{ 5, 0x66},
{ 7, 0x06},
{ 1, 0x67},
{ 1, 0x06},
{ 1, 0x67},
{ 17, 0x06},
{ 69, 0x19},
{ 1, 0x68},
{ 42, 0x19},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x67},
{ 1, 0x06},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x00},
{ 1, 0x69},
{ 3, 0x32},
{ 1, 0x05},
{ 1, 0x6a},
{ 4, 0x00},
{ 2, 0x06},
{ 1, 0x6b},
{ 1, 0x19},
{ 3, 0x6c},
{ 1, 0x00},
{ 1, 0x6d},
{ 1, 0x00},
{ 2, 0x6e},
{ 1, 0x6f},
{ 17, 0x11},
{ 1, 0x00},
{ 9, 0x11},
{ 1, 0x70},
{ 3, 0x71},
{ 1, 0x72},
{ 17, 0x13},
{ 1, 0x73},
{ 9, 0x13},
{ 1, 0x74},
{ 2, 0x75},
{ 1, 0x76},
{ 1, 0x77},
{ 1, 0x78},
{ 3, 0x79},
{ 1, 0x7a},
{ 1, 0x7b},
{ 1, 0x7c},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x7d},
{ 1, 0x7e},
{ 1, 0x7f},
{ 1, 0x80},
{ 1, 0x81},
{ 1, 0x82},
{ 1, 0x05},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x83},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 3, 0x40},
{ 16, 0x84},
{ 32, 0x11},
{ 32, 0x13},
{ 16, 0x85},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x05},
{ 5, 0x19},
{ 2, 0x06},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x86},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x87},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x00},
{ 38, 0x88},
{ 2, 0x00},
{ 1, 0x67},
{ 5, 0x05},
{ 1, 0x06},
{ 1, 0x14},
{ 38, 0x89},
{ 1, 0x8a},
{ 1, 0x14},
{ 2, 0x05},
{ 2, 0x00},
{ 3, 0x05},
{ 1, 0x00},
{ 45, 0x19},
{ 1, 0x05},
{ 1, 0x19},
{ 1, 0x05},
{ 2, 0x19},
{ 1, 0x05},
{ 2, 0x19},
{ 1, 0x05},
{ 1, 0x19},
{ 8, 0x00},
{ 27, 0x37},
{ 4, 0x00},
{ 4, 0x37},
{ 1, 0x05},
{ 1, 0x06},
{ 11, 0x00},
{ 6, 0x15},
{ 10, 0x05},
{ 11, 0x19},
{ 1, 0x05},
{ 1, 0x15},
{ 1, 0x00},
{ 2, 0x05},
{ 32, 0x37},
{ 1, 0x67},
{ 10, 0x37},
{ 21, 0x19},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x05},
{ 2, 0x37},
{ 1, 0x19},
{ 99, 0x37},
{ 1, 0x05},
{ 1, 0x37},
{ 7, 0x19},
{ 1, 0x15},
{ 1, 0x05},
{ 6, 0x19},
{ 2, 0x67},
{ 2, 0x19},
{ 1, 0x05},
{ 4, 0x19},
{ 2, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 3, 0x37},
{ 2, 0x05},
{ 1, 0x37},
{ 14, 0x05},
{ 1, 0x00},
{ 1, 0x15},
{ 1, 0x37},
{ 1, 0x19},
{ 30, 0x37},
{ 27, 0x19},
{ 2, 0x00},
{ 89, 0x37},
{ 11, 0x19},
{ 1, 0x37},
{ 14, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 33, 0x37},
{ 9, 0x19},
{ 2, 0x67},
{ 4, 0x05},
{ 1, 0x67},
{ 2, 0x00},
{ 1, 0x19},
{ 2, 0x05},
{ 22, 0x37},
{ 4, 0x19},
{ 1, 0x67},
{ 9, 0x19},
{ 1, 0x67},
{ 3, 0x19},
{ 1, 0x67},
{ 5, 0x19},
{ 2, 0x00},
{ 15, 0x05},
{ 1, 0x00},
{ 25, 0x37},
{ 3, 0x19},
{ 2, 0x00},
{ 1, 0x05},
{ 1, 0x00},
{ 11, 0x37},
{ 53, 0x00},
{ 21, 0x37},
{ 1, 0x00},
{ 18, 0x37},
{ 11, 0x00},
{ 15, 0x19},
{ 1, 0x15},
{ 32, 0x19},
{ 1, 0x12},
{ 54, 0x37},
{ 1, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 3, 0x12},
{ 8, 0x19},
{ 4, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x37},
{ 7, 0x19},
{ 10, 0x37},
{ 2, 0x19},
{ 2, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x05},
{ 1, 0x67},
{ 15, 0x37},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x00},
{ 8, 0x37},
{ 2, 0x00},
{ 2, 0x37},
{ 2, 0x00},
{ 22, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 3, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 3, 0x12},
{ 4, 0x19},
{ 2, 0x00},
{ 2, 0x12},
{ 2, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 8, 0x00},
{ 1, 0x12},
{ 4, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x37},
{ 2, 0x05},
{ 6, 0x1b},
{ 2, 0x05},
{ 1, 0x37},
{ 1, 0x05},
{ 1, 0x19},
{ 2, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 1, 0x00},
{ 6, 0x37},
{ 4, 0x00},
{ 2, 0x37},
{ 2, 0x00},
{ 22, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x00},
{ 3, 0x12},
{ 2, 0x19},
{ 4, 0x00},
{ 2, 0x19},
{ 2, 0x00},
{ 3, 0x19},
{ 3, 0x00},
{ 1, 0x19},
{ 7, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 7, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x19},
{ 3, 0x37},
{ 1, 0x19},
{ 1, 0x05},
{ 10, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 1, 0x00},
{ 9, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 22, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 3, 0x12},
{ 5, 0x19},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 1, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 2, 0x00},
{ 1, 0x37},
{ 15, 0x00},
{ 2, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x05},
{ 7, 0x00},
{ 1, 0x37},
{ 6, 0x19},
{ 1, 0x00},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x00},
{ 8, 0x37},
{ 2, 0x00},
{ 2, 0x37},
{ 2, 0x00},
{ 22, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 4, 0x19},
{ 2, 0x00},
{ 2, 0x12},
{ 2, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 7, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 4, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x05},
{ 1, 0x37},
{ 6, 0x1b},
{ 10, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x00},
{ 6, 0x37},
{ 3, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 3, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 3, 0x00},
{ 2, 0x37},
{ 3, 0x00},
{ 3, 0x37},
{ 3, 0x00},
{ 12, 0x37},
{ 4, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 3, 0x00},
{ 3, 0x12},
{ 1, 0x00},
{ 3, 0x12},
{ 1, 0x19},
{ 2, 0x00},
{ 1, 0x37},
{ 6, 0x00},
{ 1, 0x12},
{ 14, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 3, 0x1b},
{ 8, 0x05},
{ 5, 0x00},
{ 1, 0x19},
{ 3, 0x12},
{ 1, 0x19},
{ 8, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 23, 0x37},
{ 1, 0x00},
{ 16, 0x37},
{ 3, 0x00},
{ 1, 0x37},
{ 3, 0x19},
{ 4, 0x12},
{ 1, 0x00},
{ 3, 0x19},
{ 1, 0x00},
{ 4, 0x19},
{ 7, 0x00},
{ 2, 0x19},
{ 1, 0x00},
{ 3, 0x37},
{ 5, 0x00},
{ 2, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 7, 0x00},
{ 1, 0x05},
{ 7, 0x1b},
{ 1, 0x05},
{ 1, 0x37},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x05},
{ 8, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 23, 0x37},
{ 1, 0x00},
{ 10, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x19},
{ 5, 0x12},
{ 1, 0x00},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x00},
{ 2, 0x12},
{ 2, 0x19},
{ 7, 0x00},
{ 2, 0x12},
{ 7, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x00},
{ 2, 0x37},
{ 13, 0x00},
{ 2, 0x19},
{ 2, 0x12},
{ 9, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 41, 0x37},
{ 2, 0x19},
{ 1, 0x37},
{ 3, 0x12},
{ 4, 0x19},
{ 1, 0x00},
{ 3, 0x12},
{ 1, 0x00},
{ 3, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x05},
{ 4, 0x00},
{ 3, 0x37},
{ 1, 0x12},
{ 7, 0x1b},
{ 3, 0x37},
{ 2, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 9, 0x1b},
{ 1, 0x05},
{ 6, 0x37},
{ 1, 0x00},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x00},
{ 18, 0x37},
{ 3, 0x00},
{ 24, 0x37},
{ 1, 0x00},
{ 9, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 7, 0x37},
{ 3, 0x00},
{ 1, 0x19},
{ 4, 0x00},
{ 3, 0x12},
{ 3, 0x19},
{ 1, 0x00},
{ 1, 0x19},
{ 1, 0x00},
{ 8, 0x12},
{ 6, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x00},
{ 2, 0x12},
{ 1, 0x05},
{ 12, 0x00},
{ 48, 0x37},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x8b},
{ 7, 0x19},
{ 4, 0x00},
{ 1, 0x05},
{ 6, 0x37},
{ 1, 0x67},
{ 8, 0x19},
{ 1, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x05},
{ 37, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 1, 0x00},
{ 24, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 10, 0x37},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x8b},
{ 9, 0x19},
{ 1, 0x37},
{ 2, 0x00},
{ 5, 0x37},
{ 1, 0x00},
{ 1, 0x67},
{ 1, 0x00},
{ 6, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x00},
{ 4, 0x37},
{ 32, 0x00},
{ 1, 0x37},
{ 23, 0x05},
{ 2, 0x19},
{ 6, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 10, 0x1b},
{ 1, 0x05},
{ 1, 0x19},
{ 1, 0x05},
{ 1, 0x19},
{ 1, 0x05},
{ 1, 0x19},
{ 4, 0x05},
{ 2, 0x12},
{ 8, 0x37},
{ 1, 0x00},
{ 36, 0x37},
{ 4, 0x00},
{ 14, 0x19},
{ 1, 0x12},
{ 5, 0x19},
{ 1, 0x05},
{ 2, 0x19},
{ 5, 0x37},
{ 11, 0x19},
{ 1, 0x00},
{ 36, 0x19},
{ 1, 0x00},
{ 8, 0x05},
{ 1, 0x19},
{ 6, 0x05},
{ 1, 0x00},
{ 13, 0x05},
{ 37, 0x00},
{ 43, 0x37},
{ 2, 0x12},
{ 4, 0x19},
{ 1, 0x12},
{ 6, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 1, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x05},
{ 6, 0x37},
{ 2, 0x12},
{ 2, 0x19},
{ 4, 0x37},
{ 3, 0x19},
{ 1, 0x37},
{ 3, 0x12},
{ 2, 0x37},
{ 7, 0x12},
{ 3, 0x37},
{ 4, 0x19},
{ 13, 0x37},
{ 1, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 6, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 3, 0x12},
{ 1, 0x19},
{ 2, 0x05},
{ 38, 0x8c},
{ 1, 0x00},
{ 1, 0x8c},
{ 5, 0x00},
{ 1, 0x8c},
{ 2, 0x00},
{ 43, 0x8d},
{ 1, 0x05},
{ 1, 0x67},
{ 3, 0x8d},
{201, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 41, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 33, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 15, 0x37},
{ 1, 0x00},
{ 57, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 2, 0x00},
{ 67, 0x37},
{ 2, 0x00},
{ 3, 0x19},
{ 9, 0x05},
{ 1, 0x8e},
{ 1, 0x8f},
{ 1, 0x90},
{ 1, 0x91},
{ 1, 0x92},
{ 1, 0x93},
{ 1, 0x94},
{ 1, 0x95},
{ 1, 0x96},
{ 11, 0x1b},
{ 3, 0x00},
{ 16, 0x37},
{ 10, 0x05},
{ 6, 0x00},
{ 1, 0x97},
{ 1, 0x98},
{ 1, 0x99},
{ 1, 0x9a},
{ 1, 0x9b},
{ 1, 0x9c},
{ 1, 0x9d},
{ 1, 0x9e},
{ 1, 0x9f},
{ 1, 0xa0},
{ 1, 0xa1},
{ 1, 0xa2},
{ 1, 0xa3},
{ 1, 0xa4},
{ 1, 0xa5},
{ 1, 0xa6},
{ 1, 0xa7},
{ 1, 0xa8},
{ 1, 0xa9},
{ 1, 0xaa},
{ 1, 0xab},
{ 1, 0xac},
{ 1, 0xad},
{ 1, 0xae},
{ 1, 0xaf},
{ 1, 0xb0},
{ 1, 0xb1},
{ 1, 0xb2},
{ 1, 0xb3},
{ 1, 0xb4},
{ 1, 0xb5},
{ 1, 0xb6},
{ 1, 0xb7},
{ 1, 0xb8},
{ 1, 0xb9},
{ 1, 0xba},
{ 1, 0xbb},
{ 1, 0xbc},
{ 1, 0xbd},
{ 1, 0xbe},
{ 1, 0xbf},
{ 1, 0xc0},
{ 1, 0xc1},
{ 1, 0xc2},
{ 1, 0xc3},
{ 1, 0xc4},
{ 1, 0xc5},
{ 1, 0xc6},
{ 1, 0xc7},
{ 1, 0xc8},
{ 1, 0xc9},
{ 1, 0xca},
{ 1, 0xcb},
{ 1, 0xcc},
{ 1, 0xcd},
{ 1, 0xce},
{ 1, 0xcf},
{ 1, 0xd0},
{ 1, 0xd1},
{ 1, 0xd2},
{ 1, 0xd3},
{ 1, 0xd4},
{ 1, 0xd5},
{ 1, 0xd6},
{ 1, 0xd7},
{ 1, 0xd8},
{ 1, 0xd9},
{ 1, 0xda},
{ 1, 0xdb},
{ 1, 0xdc},
{ 1, 0xdd},
{ 1, 0xde},
{ 1, 0xdf},
{ 1, 0xe0},
{ 1, 0xe1},
{ 1, 0xe2},
{ 1, 0xe3},
{ 1, 0xe4},
{ 1, 0xe5},
{ 1, 0xe6},
{ 1, 0xe7},
{ 1, 0xe8},
{ 1, 0xe9},
{ 1, 0xea},
{ 1, 0xeb},
{ 1, 0xec},
{ 2, 0x00},
{ 1, 0xed},
{ 1, 0xee},
{ 1, 0xef},
{ 1, 0xf0},
{ 1, 0xf1},
{ 1, 0xf2},
{ 2, 0x00},
{ 1, 0x05},
{236, 0x37},
{ 2, 0x05},
{ 17, 0x37},
{ 1, 0x02},
{ 26, 0x37},
{ 2, 0x05},
{ 3, 0x00},
{ 75, 0x37},
{ 3, 0x05},
{ 3, 0xf3},
{ 8, 0x37},
{ 7, 0x00},
{ 13, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 3, 0x19},
{ 11, 0x00},
{ 18, 0x37},
{ 3, 0x19},
{ 2, 0x05},
{ 9, 0x00},
{ 18, 0x37},
{ 2, 0x19},
{ 12, 0x00},
{ 13, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 2, 0x19},
{ 12, 0x00},
{ 52, 0x37},
{ 2, 0x19},
{ 1, 0x12},
{ 7, 0x19},
{ 8, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 11, 0x19},
{ 3, 0x05},
{ 1, 0x67},
{ 4, 0x05},
{ 1, 0x37},
{ 1, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 10, 0x1b},
{ 6, 0x00},
{ 11, 0x05},
{ 3, 0x19},
{ 1, 0x15},
{ 1, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 35, 0x37},
{ 1, 0x67},
{ 53, 0x37},
{ 7, 0x00},
{ 5, 0x37},
{ 2, 0xf4},
{ 34, 0x37},
{ 1, 0x19},
{ 1, 0x37},
{ 5, 0x00},
{ 70, 0x37},
{ 10, 0x00},
{ 31, 0x37},
{ 1, 0x00},
{ 3, 0x19},
{ 4, 0x12},
{ 2, 0x19},
{ 3, 0x12},
{ 4, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 6, 0x12},
{ 3, 0x19},
{ 4, 0x00},
{ 1, 0x05},
{ 3, 0x00},
{ 2, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 30, 0x37},
{ 2, 0x00},
{ 5, 0x37},
{ 11, 0x00},
{ 44, 0x37},
{ 4, 0x00},
{ 26, 0x37},
{ 6, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x8e},
{ 3, 0x00},
{ 34, 0x05},
{ 23, 0x37},
{ 2, 0x19},
{ 2, 0x12},
{ 1, 0x19},
{ 2, 0x00},
{ 2, 0x05},
{ 53, 0x37},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 7, 0x19},
{ 1, 0x00},
{ 1, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 8, 0x19},
{ 6, 0x12},
{ 10, 0x19},
{ 2, 0x00},
{ 1, 0x19},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 7, 0x05},
{ 1, 0x67},
{ 6, 0x05},
{ 2, 0x00},
{ 14, 0x19},
{ 1, 0x06},
{ 2, 0x19},
{ 63, 0x00},
{ 4, 0x19},
{ 1, 0x12},
{ 47, 0x37},
{ 1, 0x19},
{ 1, 0x12},
{ 5, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 5, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 7, 0x37},
{ 4, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 17, 0x05},
{ 9, 0x19},
{ 9, 0x05},
{ 3, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 30, 0x37},
{ 1, 0x12},
{ 4, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 1, 0x12},
{ 3, 0x19},
{ 2, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 44, 0x37},
{ 1, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 3, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 3, 0x19},
{ 2, 0x12},
{ 8, 0x00},
{ 4, 0x05},
{ 36, 0x37},
{ 8, 0x12},
{ 8, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 3, 0x00},
{ 5, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 3, 0x00},
{ 3, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 30, 0x37},
{ 6, 0x67},
{ 2, 0x05},
{ 1, 0xf5},
{ 1, 0xf6},
{ 1, 0xf7},
{ 1, 0xf8},
{ 1, 0xf9},
{ 1, 0xfa},
{ 1, 0xfb},
{ 1, 0xfc},
{ 1, 0xfd},
{ 7, 0x00},
{ 43, 0xfe},
{ 2, 0x00},
{ 3, 0xfe},
{ 8, 0x05},
{ 8, 0x00},
{ 3, 0x19},
{ 1, 0x05},
{ 13, 0x19},
{ 1, 0x12},
{ 7, 0x19},
{ 4, 0x37},
{ 1, 0x19},
{ 6, 0x37},
{ 1, 0x19},
{ 2, 0x37},
{ 1, 0x12},
{ 2, 0x19},
{ 1, 0x37},
{ 5, 0x00},
{ 44, 0x14},
{ 63, 0x66},
{ 13, 0x14},
{ 1, 0x66},
{ 1, 0xff},
{ 3, 0x14},
{ 1, 0x100},
{ 16, 0x14},
{ 1, 0x101},
{ 12, 0x14},
{ 37, 0x66},
{ 58, 0x19},
{ 1, 0x00},
{ 5, 0x19},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x102},
{ 1, 0x103},
{ 1, 0x104},
{ 1, 0x105},
{ 1, 0x106},
{ 1, 0x107},
{ 2, 0x14},
{ 1, 0x108},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 8, 0x109},
{ 8, 0x10a},
{ 6, 0x109},
{ 2, 0x00},
{ 6, 0x10a},
{ 2, 0x00},
{ 8, 0x109},
{ 8, 0x10a},
{ 8, 0x109},
{ 8, 0x10a},
{ 6, 0x109},
{ 2, 0x00},
{ 6, 0x10a},
{ 2, 0x00},
{ 1, 0x10b},
{ 1, 0x109},
{ 1, 0x10c},
{ 1, 0x109},
{ 1, 0x10d},
{ 1, 0x109},
{ 1, 0x10e},
{ 1, 0x109},
{ 1, 0x00},
{ 1, 0x10a},
{ 1, 0x00},
{ 1, 0x10a},
{ 1, 0x00},
{ 1, 0x10a},
{ 1, 0x00},
{ 1, 0x10a},
{ 8, 0x109},
{ 8, 0x10a},
{ 2, 0x10f},
{ 4, 0x110},
{ 2, 0x111},
{ 2, 0x112},
{ 2, 0x113},
{ 2, 0x114},
{ 2, 0x00},
{ 1, 0x115},
{ 1, 0x116},
{ 1, 0x117},
{ 1, 0x118},
{ 1, 0x119},
{ 1, 0x11a},
{ 1, 0x11b},
{ 1, 0x11c},
{ 1, 0x11d},
{ 1, 0x11e},
{ 1, 0x11f},
{ 1, 0x120},
{ 1, 0x121},
{ 1, 0x122},
{ 1, 0x123},
{ 1, 0x124},
{ 1, 0x125},
{ 1, 0x126},
{ 1, 0x127},
{ 1, 0x128},
{ 1, 0x129},
{ 1, 0x12a},
{ 1, 0x12b},
{ 1, 0x12c},
{ 1, 0x12d},
{ 1, 0x12e},
{ 1, 0x12f},
{ 1, 0x130},
{ 1, 0x131},
{ 1, 0x132},
{ 1, 0x133},
{ 1, 0x134},
{ 1, 0x135},
{ 1, 0x136},
{ 1, 0x137},
{ 1, 0x138},
{ 1, 0x139},
{ 1, 0x13a},
{ 1, 0x13b},
{ 1, 0x13c},
{ 1, 0x13d},
{ 1, 0x13e},
{ 1, 0x13f},
{ 1, 0x140},
{ 1, 0x141},
{ 1, 0x142},
{ 1, 0x143},
{ 1, 0x144},
{ 2, 0x109},
{ 1, 0x145},
{ 1, 0x146},
{ 1, 0x147},
{ 1, 0x00},
{ 1, 0x148},
{ 1, 0x149},
{ 2, 0x10a},
{ 2, 0x14a},
{ 1, 0x14b},
{ 1, 0x06},
{ 1, 0x14c},
{ 3, 0x06},
{ 1, 0x14d},
{ 1, 0x14e},
{ 1, 0x14f},
{ 1, 0x00},
{ 1, 0x150},
{ 1, 0x151},
{ 4, 0x152},
{ 1, 0x153},
{ 3, 0x06},
{ 2, 0x109},
{ 1, 0x154},
{ 1, 0x155},
{ 2, 0x00},
{ 1, 0x156},
{ 1, 0x157},
{ 2, 0x10a},
{ 2, 0x158},
{ 1, 0x00},
{ 3, 0x06},
{ 2, 0x109},
{ 1, 0x159},
{ 1, 0x15a},
{ 1, 0x15b},
{ 1, 0x7f},
{ 1, 0x15c},
{ 1, 0x15d},
{ 2, 0x10a},
{ 2, 0x15e},
{ 1, 0x83},
{ 3, 0x06},
{ 2, 0x00},
{ 1, 0x15f},
{ 1, 0x160},
{ 1, 0x161},
{ 1, 0x00},
{ 1, 0x162},
{ 1, 0x163},
{ 2, 0x164},
{ 2, 0x165},
{ 1, 0x166},
{ 2, 0x06},
{ 1, 0x00},
{ 11, 0x02},
{ 5, 0x15},
{ 8, 0x05},
{ 2, 0x06},
{ 10, 0x05},
{ 1, 0x06},
{ 2, 0x05},
{ 1, 0x06},
{ 2, 0x03},
{ 5, 0x15},
{ 1, 0x02},
{ 15, 0x05},
{ 2, 0x12},
{ 19, 0x05},
{ 1, 0x12},
{ 10, 0x05},
{ 1, 0x02},
{ 5, 0x15},
{ 1, 0x00},
{ 10, 0x15},
{ 1, 0x167},
{ 1, 0x66},
{ 2, 0x00},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 5, 0x05},
{ 1, 0x66},
{ 1, 0x167},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 5, 0x05},
{ 1, 0x00},
{ 13, 0x66},
{ 3, 0x00},
{ 32, 0x05},
{ 16, 0x00},
{ 13, 0x19},
{ 4, 0x06},
{ 1, 0x19},
{ 3, 0x06},
{ 12, 0x19},
{ 15, 0x00},
{ 2, 0x05},
{ 1, 0x79},
{ 4, 0x05},
{ 1, 0x79},
{ 2, 0x05},
{ 1, 0x14},
{ 3, 0x79},
{ 2, 0x14},
{ 3, 0x79},
{ 1, 0x14},
{ 1, 0x05},
{ 1, 0x79},
{ 2, 0x05},
{ 1, 0x16e},
{ 5, 0x79},
{ 6, 0x05},
{ 1, 0x79},
{ 1, 0x05},
{ 1, 0x16f},
{ 1, 0x05},
{ 1, 0x79},
{ 1, 0x05},
{ 1, 0x170},
{ 1, 0x171},
{ 2, 0x79},
{ 1, 0x16e},
{ 1, 0x14},
{ 2, 0x79},
{ 1, 0x172},
{ 1, 0x79},
{ 1, 0x14},
{ 4, 0x37},
{ 1, 0x14},
{ 2, 0x05},
{ 2, 0x14},
{ 2, 0x79},
{ 5, 0x05},
{ 1, 0x79},
{ 4, 0x14},
{ 4, 0x05},
{ 1, 0x173},
{ 1, 0x05},
{ 16, 0x1b},
{ 16, 0x174},
{ 16, 0x175},
{ 3, 0xf3},
{ 1, 0x1e},
{ 1, 0x1f},
{ 4, 0xf3},
{ 1, 0x1b},
{ 2, 0x05},
{ 4, 0x00},
{279, 0x05},
{ 25, 0x00},
{ 11, 0x05},
{ 21, 0x00},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 11, 0x1b},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 11, 0x1b},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 11, 0x1b},
{ 26, 0x05},
{ 26, 0x176},
{ 26, 0x177},
{ 1, 0x167},
{ 10, 0x1b},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 1, 0x1b},
{ 1, 0x167},
{118, 0x05},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 1, 0x1b},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 1, 0x1b},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 1, 0x1b},
{224, 0x05},
{ 2, 0x00},
{ 32, 0x05},
{ 1, 0x00},
{105, 0x05},
{ 47, 0x88},
{ 1, 0x00},
{ 47, 0x89},
{ 1, 0x00},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x178},
{ 1, 0x179},
{ 1, 0x17a},
{ 1, 0x17b},
{ 1, 0x17c},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x17d},
{ 1, 0x17e},
{ 1, 0x17f},
{ 1, 0x180},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 5, 0x14},
{ 2, 0x66},
{ 2, 0x181},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x14},
{ 6, 0x05},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 3, 0x19},
{ 1, 0x1e},
{ 1, 0x1f},
{ 5, 0x00},
{ 4, 0x05},
{ 1, 0x1b},
{ 2, 0x05},
{ 38, 0x182},
{ 1, 0x00},
{ 1, 0x182},
{ 5, 0x00},
{ 1, 0x182},
{ 2, 0x00},
{ 56, 0x37},
{ 7, 0x00},
{ 1, 0x67},
{ 1, 0x05},
{ 14, 0x00},
{ 1, 0x19},
{ 23, 0x37},
{ 9, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 32, 0x19},
{ 47, 0x05},
{ 1, 0x183},
{ 35, 0x05},
{ 45, 0x00},
{ 26, 0x05},
{ 1, 0x00},
{ 89, 0x05},
{ 12, 0x00},
{ 86, 0x05},
{ 26, 0x00},
{ 12, 0x05},
{ 4, 0x00},
{ 1, 0x02},
{ 4, 0x05},
{ 1, 0x67},
{ 1, 0x37},
{ 1, 0xf3},
{ 25, 0x05},
{ 9, 0xf3},
{ 4, 0x19},
{ 2, 0x12},
{ 1, 0x05},
{ 5, 0x67},
{ 2, 0x05},
{ 3, 0xf3},
{ 1, 0x67},
{ 1, 0x37},
{ 3, 0x05},
{ 1, 0x00},
{ 86, 0x37},
{ 2, 0x00},
{ 2, 0x19},
{ 2, 0x06},
{ 2, 0x67},
{ 1, 0x37},
{ 1, 0x05},
{ 90, 0x37},
{ 1, 0x05},
{ 3, 0x67},
{ 1, 0x37},
{ 5, 0x00},
{ 43, 0x37},
{ 1, 0x00},
{ 94, 0x37},
{ 1, 0x00},
{ 2, 0x05},
{ 4, 0x1b},
{ 10, 0x05},
{ 32, 0x37},
{ 36, 0x05},
{ 12, 0x00},
{ 16, 0x37},
{ 31, 0x05},
{ 1, 0x00},
{ 10, 0x1b},
{ 30, 0x05},
{ 8, 0x1b},
{ 1, 0x05},
{ 15, 0x1b},
{ 32, 0x05},
{ 10, 0x1b},
{ 39, 0x05},
{ 15, 0x1b},
{ 64, 0x05},
{ 5, 0x37},
{ 1, 0x184},
{125, 0x37},
{ 1, 0x184},
{166, 0x37},
{ 1, 0x184},
{162, 0x37},
{ 1, 0x184},
{114, 0x37},
{ 64, 0x05},
{ 1, 0x184},
{ 2, 0x37},
{ 1, 0x184},
{ 3, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{ 83, 0x37},
{ 1, 0x184},
{ 46, 0x37},
{ 1, 0x184},
{ 7, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{ 40, 0x37},
{ 2, 0x184},
{ 30, 0x37},
{ 1, 0x184},
{ 8, 0x37},
{ 1, 0x184},
{ 36, 0x37},
{ 1, 0x184},
{ 98, 0x37},
{ 1, 0x184},
{ 19, 0x37},
{ 1, 0x184},
{ 65, 0x37},
{ 1, 0x184},
{ 34, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{ 83, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 3, 0x184},
{ 6, 0x37},
{ 1, 0x184},
{116, 0x37},
{ 4, 0x184},
{150, 0x37},
{ 1, 0x184},
{149, 0x37},
{ 1, 0x184},
{ 7, 0x37},
{ 1, 0x184},
{128, 0x37},
{ 1, 0x184},
{131, 0x37},
{ 2, 0x184},
{ 12, 0x37},
{ 3, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{237, 0x37},
{ 1, 0x184},
{ 77, 0x37},
{ 1, 0x184},
{133, 0x37},
{ 1, 0x184},
{ 51, 0x37},
{ 1, 0x184},
{143, 0x37},
{ 1, 0x184},
{149, 0x37},
{ 1, 0x184},
{129, 0x37},
{ 1, 0x184},
{ 4, 0x37},
{ 1, 0x184},
{124, 0x37},
{ 1, 0x184},
{112, 0x37},
{ 1, 0x184},
{ 36, 0x37},
{ 1, 0x184},
{ 5, 0x37},
{ 1, 0x184},
{ 43, 0x37},
{ 1, 0x184},
{125, 0x37},
{ 1, 0x184},
{134, 0x37},
{ 3, 0x00},
{ 21, 0x37},
{ 1, 0x67},
{119, 0x37},
{ 3, 0x00},
{ 55, 0x05},
{ 9, 0x00},
{ 40, 0x37},
{ 6, 0x67},
{ 2, 0x05},
{ 12, 0x37},
{ 1, 0x67},
{ 3, 0x05},
{ 16, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x37},
{ 20, 0x00},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x37},
{ 1, 0x19},
{ 3, 0x06},
{ 1, 0x05},
{ 10, 0x19},
{ 1, 0x05},
{ 1, 0x67},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x66},
{ 2, 0x19},
{ 70, 0x37},
{ 10, 0xf3},
{ 2, 0x19},
{ 6, 0x05},
{ 8, 0x00},
{ 23, 0x06},
{ 9, 0x67},
{ 2, 0x06},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x66},
{ 8, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x185},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x67},
{ 2, 0x06},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x186},
{ 1, 0x14},
{ 1, 0x37},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x187},
{ 1, 0x14},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x188},
{ 1, 0x189},
{ 1, 0x18a},
{ 1, 0x18b},
{ 1, 0x188},
{ 1, 0x14},
{ 1, 0x18c},
{ 1, 0x18d},
{ 1, 0x18e},
{ 1, 0x18f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 2, 0x00},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x190},
{ 1, 0x191},
{ 1, 0x192},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x1e},
{ 1, 0x1f},
{ 42, 0x00},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x37},
{ 2, 0x66},
{ 1, 0x14},
{ 7, 0x37},
{ 1, 0x19},
{ 3, 0x37},
{ 1, 0x19},
{ 4, 0x37},
{ 1, 0x19},
{ 23, 0x37},
{ 2, 0x12},
{ 2, 0x19},
{ 1, 0x12},
{ 4, 0x05},
{ 1, 0x19},
{ 3, 0x00},
{ 6, 0x1b},
{ 4, 0x05},
{ 6, 0x00},
{ 52, 0x37},
{ 4, 0x05},
{ 8, 0x00},
{ 2, 0x12},
{ 50, 0x37},
{ 16, 0x12},
{ 2, 0x19},
{ 8, 0x00},
{ 2, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 18, 0x19},
{ 6, 0x37},
{ 3, 0x05},
{ 1, 0x37},
{ 1, 0x05},
{ 2, 0x37},
{ 1, 0x19},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 28, 0x37},
{ 8, 0x19},
{ 2, 0x05},
{ 23, 0x37},
{ 11, 0x19},
{ 2, 0x12},
{ 11, 0x00},
{ 1, 0x05},
{ 29, 0x37},
{ 3, 0x00},
{ 3, 0x19},
{ 1, 0x12},
{ 47, 0x37},
{ 1, 0x19},
{ 2, 0x12},
{ 4, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 3, 0x12},
{ 13, 0x05},
{ 1, 0x00},
{ 1, 0x67},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x00},
{ 2, 0x05},
{ 5, 0x37},
{ 1, 0x19},
{ 1, 0x67},
{ 9, 0x37},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 5, 0x37},
{ 1, 0x00},
{ 41, 0x37},
{ 6, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 9, 0x00},
{ 3, 0x37},
{ 1, 0x19},
{ 8, 0x37},
{ 1, 0x19},
{ 1, 0x12},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x00},
{ 4, 0x05},
{ 16, 0x37},
{ 1, 0x67},
{ 6, 0x37},
{ 3, 0x05},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 50, 0x37},
{ 1, 0x19},
{ 1, 0x37},
{ 3, 0x19},
{ 2, 0x37},
{ 2, 0x19},
{ 5, 0x37},
{ 2, 0x19},
{ 1, 0x37},
{ 1, 0x19},
{ 1, 0x37},
{ 24, 0x00},
{ 2, 0x37},
{ 1, 0x67},
{ 2, 0x05},
{ 11, 0x37},
{ 1, 0x12},
{ 2, 0x19},
{ 2, 0x12},
{ 2, 0x05},
{ 1, 0x37},
{ 2, 0x67},
{ 1, 0x12},
{ 1, 0x19},
{ 10, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 6, 0x37},
{ 9, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 35, 0x14},
{ 1, 0x193},
{ 7, 0x14},
{ 1, 0x06},
{ 4, 0x66},
{ 9, 0x14},
{ 1, 0x67},
{ 2, 0x06},
{ 4, 0x00},
{ 1, 0x194},
{ 1, 0x195},
{ 1, 0x196},
{ 1, 0x197},
{ 1, 0x198},
{ 1, 0x199},
{ 1, 0x19a},
{ 1, 0x19b},
{ 1, 0x19c},
{ 1, 0x19d},
{ 1, 0x19e},
{ 1, 0x19f},
{ 1, 0x1a0},
{ 1, 0x1a1},
{ 1, 0x1a2},
{ 1, 0x1a3},
{ 1, 0x1a4},
{ 1, 0x1a5},
{ 1, 0x1a6},
{ 1, 0x1a7},
{ 1, 0x1a8},
{ 1, 0x1a9},
{ 1, 0x1aa},
{ 1, 0x1ab},
{ 1, 0x1ac},
{ 1, 0x1ad},
{ 1, 0x1ae},
{ 1, 0x1af},
{ 1, 0x1b0},
{ 1, 0x1b1},
{ 1, 0x1b2},
{ 1, 0x1b3},
{ 1, 0x1b4},
{ 1, 0x1b5},
{ 1, 0x1b6},
{ 1, 0x1b7},
{ 1, 0x1b8},
{ 1, 0x1b9},
{ 1, 0x1ba},
{ 1, 0x1bb},
{ 1, 0x1bc},
{ 1, 0x1bd},
{ 1, 0x1be},
{ 1, 0x1bf},
{ 1, 0x1c0},
{ 1, 0x1c1},
{ 1, 0x1c2},
{ 1, 0x1c3},
{ 1, 0x1c4},
{ 1, 0x1c5},
{ 1, 0x1c6},
{ 1, 0x1c7},
{ 1, 0x1c8},
{ 1, 0x1c9},
{ 1, 0x1ca},
{ 1, 0x1cb},
{ 1, 0x1cc},
{ 1, 0x1cd},
{ 1, 0x1ce},
{ 1, 0x1cf},
{ 1, 0x1d0},
{ 1, 0x1d1},
{ 1, 0x1d2},
{ 1, 0x1d3},
{ 1, 0x1d4},
{ 1, 0x1d5},
{ 1, 0x1d6},
{ 1, 0x1d7},
{ 1, 0x1d8},
{ 1, 0x1d9},
{ 1, 0x1da},
{ 1, 0x1db},
{ 1, 0x1dc},
{ 1, 0x1dd},
{ 1, 0x1de},
{ 1, 0x1df},
{ 1, 0x1e0},
{ 1, 0x1e1},
{ 1, 0x1e2},
{ 1, 0x1e3},
{ 35, 0x37},
{ 2, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 1, 0x05},
{ 1, 0x12},
{ 1, 0x19},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 36, 0x37},
{ 12, 0x00},
{ 23, 0x37},
{ 4, 0x00},
{ 49, 0x37},
{ 4, 0x00},
{128, 0x01},
{107, 0x37},
{ 1, 0x184},
{ 7, 0x37},
{ 1, 0x184},
{ 4, 0x37},
{ 1, 0x184},
{ 57, 0x37},
{ 1, 0x184},
{ 30, 0x37},
{ 1, 0x184},
{ 1, 0x37},
{ 1, 0x184},
{ 41, 0x37},
{ 1, 0x184},
{112, 0x37},
{ 2, 0x00},
{106, 0x37},
{ 38, 0x00},
{ 1, 0x1e4},
{ 1, 0x1e5},
{ 1, 0x1e6},
{ 1, 0x1e7},
{ 1, 0x1e8},
{ 1, 0x1e9},
{ 1, 0x1ea},
{ 12, 0x00},
{ 1, 0x1eb},
{ 1, 0x1ec},
{ 1, 0x1ed},
{ 1, 0x1ee},
{ 1, 0x1ef},
{ 5, 0x00},
{ 1, 0x37},
{ 1, 0x19},
{ 10, 0x37},
{ 1, 0x05},
{ 13, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{108, 0x37},
{ 16, 0x06},
{ 17, 0x00},
{139, 0x37},
{ 6, 0x1f0},
{ 90, 0x37},
{ 2, 0x05},
{ 16, 0x00},
{ 64, 0x37},
{ 2, 0x00},
{ 54, 0x37},
{ 40, 0x00},
{ 10, 0x37},
{ 2, 0x1f0},
{ 2, 0x05},
{ 2, 0x00},
{ 16, 0x19},
{ 3, 0x05},
{ 1, 0x06},
{ 6, 0x05},
{ 6, 0x00},
{ 16, 0x19},
{ 3, 0x05},
{ 2, 0x12},
{ 24, 0x05},
{ 3, 0x12},
{ 2, 0x05},
{ 1, 0x06},
{ 1, 0x00},
{ 1, 0x05},
{ 1, 0x06},
{ 17, 0x05},
{ 1, 0x00},
{ 4, 0x05},
{ 4, 0x00},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{ 1, 0x00},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{ 1, 0x37},
{ 1, 0x1f0},
{126, 0x37},
{ 2, 0x00},
{ 1, 0x15},
{ 1, 0x00},
{ 6, 0x05},
{ 1, 0x06},
{ 6, 0x05},
{ 1, 0x06},
{ 1, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x06},
{ 6, 0x05},
{ 26, 0x11},
{ 3, 0x05},
{ 1, 0x06},
{ 1, 0x12},
{ 1, 0x06},
{ 26, 0x13},
{ 11, 0x05},
{ 10, 0x37},
{ 1, 0x67},
{ 45, 0x37},
{ 2, 0x1f1},
{ 31, 0x37},
{ 3, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 3, 0x37},
{ 3, 0x00},
{ 3, 0x05},
{ 1, 0x06},
{ 3, 0x05},
{ 1, 0x00},
{ 7, 0x05},
{ 10, 0x00},
{ 3, 0x15},
{ 2, 0x05},
{ 2, 0x00},
{ 12, 0x37},
{ 1, 0x00},
{ 26, 0x37},
{ 1, 0x00},
{ 19, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 15, 0x37},
{ 2, 0x00},
{ 14, 0x37},
{ 34, 0x00},
{123, 0x37},
{ 5, 0x00},
{ 3, 0x05},
{ 4, 0x00},
{ 45, 0x1b},
{ 3, 0x00},
{ 9, 0x05},
{ 53, 0xf3},
{ 4, 0x1b},
{ 17, 0x05},
{ 2, 0x1b},
{ 3, 0x05},
{ 1, 0x00},
{ 13, 0x05},
{ 3, 0x00},
{ 1, 0x05},
{ 47, 0x00},
{ 45, 0x05},
{ 1, 0x19},
{130, 0x00},
{ 29, 0x37},
{ 3, 0x00},
{ 49, 0x37},
{ 15, 0x00},
{ 1, 0x19},
{ 27, 0x1b},
{ 4, 0x00},
{ 32, 0x37},
{ 4, 0x1b},
{ 9, 0x00},
{ 20, 0x37},
{ 1, 0xf3},
{ 8, 0x37},
{ 1, 0xf3},
{ 5, 0x00},
{ 38, 0x37},
{ 5, 0x19},
{ 5, 0x00},
{ 30, 0x37},
{ 1, 0x00},
{ 1, 0x05},
{ 36, 0x37},
{ 4, 0x00},
{ 8, 0x37},
{ 1, 0x05},
{ 5, 0xf3},
{ 42, 0x00},
{ 40, 0x1f2},
{ 40, 0x1f3},
{ 78, 0x37},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 36, 0x1f2},
{ 4, 0x00},
{ 36, 0x1f3},
{ 4, 0x00},
{ 40, 0x37},
{ 8, 0x00},
{ 52, 0x37},
{ 11, 0x00},
{ 1, 0x05},
{ 16, 0x00},
{ 55, 0x37},
{ 9, 0x00},
{ 22, 0x37},
{ 10, 0x00},
{ 8, 0x37},
{ 24, 0x00},
{ 6, 0x37},
{ 2, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 44, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 3, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 23, 0x37},
{ 1, 0x00},
{ 1, 0x05},
{ 8, 0x1b},
{ 23, 0x37},
{ 2, 0x05},
{ 7, 0x1b},
{ 31, 0x37},
{ 8, 0x00},
{ 9, 0x1b},
{ 48, 0x00},
{ 19, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 5, 0x00},
{ 5, 0x1b},
{ 22, 0x37},
{ 6, 0x1b},
{ 3, 0x00},
{ 1, 0x05},
{ 26, 0x37},
{ 5, 0x00},
{ 1, 0x05},
{ 64, 0x00},
{ 56, 0x37},
{ 4, 0x00},
{ 2, 0x1b},
{ 2, 0x37},
{ 16, 0x1b},
{ 2, 0x00},
{ 46, 0x1b},
{ 1, 0x37},
{ 3, 0x19},
{ 1, 0x00},
{ 2, 0x19},
{ 5, 0x00},
{ 4, 0x19},
{ 4, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 29, 0x37},
{ 2, 0x00},
{ 3, 0x19},
{ 4, 0x00},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 5, 0x1b},
{ 7, 0x00},
{ 9, 0x05},
{ 7, 0x00},
{ 29, 0x37},
{ 2, 0x1b},
{ 1, 0x05},
{ 29, 0x37},
{ 3, 0x1b},
{ 32, 0x00},
{ 8, 0x37},
{ 1, 0x05},
{ 28, 0x37},
{ 2, 0x19},
{ 4, 0x00},
{ 5, 0x1b},
{ 7, 0x05},
{ 9, 0x00},
{ 54, 0x37},
{ 3, 0x00},
{ 7, 0x05},
{ 22, 0x37},
{ 2, 0x00},
{ 8, 0x1b},
{ 19, 0x37},
{ 5, 0x00},
{ 8, 0x1b},
{ 18, 0x37},
{ 7, 0x00},
{ 4, 0x05},
{ 12, 0x00},
{ 7, 0x1b},
{ 80, 0x00},
{ 73, 0x37},
{ 55, 0x00},
{ 51, 0x6d},
{ 13, 0x00},
{ 51, 0x74},
{ 7, 0x00},
{ 6, 0x1b},
{ 36, 0x37},
{ 4, 0x19},
{ 8, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{166, 0x00},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 22, 0x1b},
{ 1, 0x00},
{ 42, 0x37},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x05},
{ 2, 0x00},
{ 2, 0x37},
{ 78, 0x00},
{ 29, 0x37},
{ 10, 0x1b},
{ 1, 0x37},
{ 8, 0x00},
{ 22, 0x37},
{ 11, 0x19},
{ 4, 0x1b},
{ 5, 0x05},
{ 86, 0x00},
{ 21, 0x37},
{ 7, 0x1b},
{ 20, 0x00},
{ 23, 0x37},
{ 9, 0x00},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 53, 0x37},
{ 15, 0x19},
{ 7, 0x05},
{ 4, 0x00},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 11, 0x1b},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 15, 0x00},
{ 3, 0x19},
{ 1, 0x12},
{ 45, 0x37},
{ 3, 0x12},
{ 4, 0x19},
{ 2, 0x12},
{ 2, 0x19},
{ 2, 0x05},
{ 1, 0x15},
{ 4, 0x05},
{ 11, 0x00},
{ 1, 0x15},
{ 2, 0x00},
{ 25, 0x37},
{ 7, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 3, 0x19},
{ 36, 0x37},
{ 5, 0x19},
{ 1, 0x12},
{ 8, 0x19},
{ 1, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x05},
{ 1, 0x37},
{ 2, 0x12},
{ 1, 0x37},
{ 8, 0x00},
{ 35, 0x37},
{ 1, 0x19},
{ 2, 0x05},
{ 1, 0x37},
{ 9, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 48, 0x37},
{ 3, 0x12},
{ 9, 0x19},
{ 2, 0x12},
{ 4, 0x37},
{ 4, 0x05},
{ 4, 0x19},
{ 1, 0x05},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x37},
{ 1, 0x05},
{ 1, 0x37},
{ 3, 0x05},
{ 1, 0x00},
{ 20, 0x1b},
{ 11, 0x00},
{ 18, 0x37},
{ 1, 0x00},
{ 25, 0x37},
{ 3, 0x12},
{ 3, 0x19},
{ 2, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 6, 0x05},
{ 1, 0x19},
{ 65, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 15, 0x37},
{ 1, 0x00},
{ 10, 0x37},
{ 1, 0x05},
{ 6, 0x00},
{ 47, 0x37},
{ 1, 0x19},
{ 3, 0x12},
{ 8, 0x19},
{ 5, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 2, 0x19},
{ 2, 0x12},
{ 1, 0x00},
{ 8, 0x37},
{ 2, 0x00},
{ 2, 0x37},
{ 2, 0x00},
{ 22, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x37},
{ 2, 0x12},
{ 1, 0x19},
{ 4, 0x12},
{ 2, 0x00},
{ 2, 0x12},
{ 2, 0x00},
{ 3, 0x12},
{ 2, 0x00},
{ 1, 0x37},
{ 6, 0x00},
{ 1, 0x12},
{ 5, 0x00},
{ 5, 0x37},
{ 2, 0x12},
{ 2, 0x00},
{ 7, 0x19},
{ 3, 0x00},
{ 5, 0x19},
{ 11, 0x00},
{ 53, 0x37},
{ 3, 0x12},
{ 8, 0x19},
{ 2, 0x12},
{ 3, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 4, 0x37},
{ 5, 0x05},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x05},
{ 1, 0x00},
{ 1, 0x05},
{ 1, 0x19},
{ 3, 0x37},
{ 30, 0x00},
{ 48, 0x37},
{ 3, 0x12},
{ 6, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 4, 0x12},
{ 2, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 2, 0x37},
{ 1, 0x05},
{ 1, 0x37},
{ 8, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 38, 0x00},
{ 47, 0x37},
{ 3, 0x12},
{ 4, 0x19},
{ 2, 0x00},
{ 4, 0x12},
{ 2, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 23, 0x05},
{ 4, 0x37},
{ 2, 0x19},
{ 34, 0x00},
{ 48, 0x37},
{ 3, 0x12},
{ 8, 0x19},
{ 2, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 3, 0x05},
{ 1, 0x37},
{ 11, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 13, 0x05},
{ 19, 0x00},
{ 43, 0x37},
{ 1, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 2, 0x12},
{ 6, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 7, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 54, 0x00},
{ 27, 0x37},
{ 2, 0x00},
{ 3, 0x19},
{ 2, 0x12},
{ 4, 0x19},
{ 1, 0x12},
{ 5, 0x19},
{ 4, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 2, 0x1b},
{ 4, 0x05},
{ 64, 0x00},
{ 44, 0x37},
{ 3, 0x12},
{ 9, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 1, 0x05},
{100, 0x00},
{ 32, 0x11},
{ 32, 0x13},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 9, 0x1b},
{ 12, 0x00},
{ 8, 0x37},
{ 2, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 8, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 24, 0x37},
{ 6, 0x12},
{ 1, 0x00},
{ 2, 0x12},
{ 2, 0x00},
{ 2, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x37},
{ 1, 0x12},
{ 1, 0x19},
{ 3, 0x05},
{ 9, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 70, 0x00},
{ 8, 0x37},
{ 2, 0x00},
{ 39, 0x37},
{ 3, 0x12},
{ 4, 0x19},
{ 2, 0x00},
{ 2, 0x19},
{ 4, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 1, 0x05},
{ 1, 0x37},
{ 1, 0x12},
{ 27, 0x00},
{ 1, 0x37},
{ 10, 0x19},
{ 40, 0x37},
{ 6, 0x19},
{ 1, 0x12},
{ 1, 0x37},
{ 4, 0x19},
{ 8, 0x05},
{ 1, 0x19},
{ 8, 0x00},
{ 1, 0x37},
{ 6, 0x19},
{ 2, 0x12},
{ 3, 0x19},
{ 46, 0x37},
{ 13, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 3, 0x05},
{ 1, 0x37},
{ 5, 0x05},
{ 29, 0x00},
{ 57, 0x37},
{ 7, 0x00},
{ 9, 0x37},
{ 1, 0x00},
{ 37, 0x37},
{ 1, 0x12},
{ 7, 0x19},
{ 1, 0x00},
{ 6, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 5, 0x05},
{ 10, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 19, 0x1b},
{ 3, 0x00},
{ 2, 0x05},
{ 30, 0x37},
{ 2, 0x00},
{ 22, 0x19},
{ 1, 0x00},
{ 1, 0x12},
{ 7, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 1, 0x12},
{ 2, 0x19},
{ 73, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 38, 0x37},
{ 6, 0x19},
{ 3, 0x00},
{ 1, 0x19},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x00},
{ 7, 0x19},
{ 1, 0x37},
{ 1, 0x19},
{ 8, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 6, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 32, 0x37},
{ 5, 0x12},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x00},
{ 2, 0x12},
{ 1, 0x19},
{ 1, 0x12},
{ 1, 0x19},
{ 1, 0x37},
{ 7, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{182, 0x00},
{ 19, 0x37},
{ 2, 0x19},
{ 2, 0x12},
{ 2, 0x05},
{ 55, 0x00},
{ 1, 0x37},
{ 15, 0x00},
{ 21, 0x1b},
{ 29, 0x05},
{ 13, 0x00},
{ 1, 0x05},
{ 26, 0x37},
{102, 0x00},
{111, 0xf3},
{ 1, 0x00},
{ 5, 0x05},
{ 11, 0x00},
{ 68, 0x37},
{ 60, 0x00},
{ 47, 0x37},
{ 1, 0x00},
{ 9, 0x15},
{ 71, 0x00},
{ 71, 0x37},
{ 57, 0x00},
{ 57, 0x37},
{ 7, 0x00},
{ 31, 0x37},
{ 1, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x00},
{ 2, 0x05},
{ 96, 0x00},
{ 30, 0x37},
{ 2, 0x00},
{ 5, 0x19},
{ 1, 0x05},
{ 10, 0x00},
{ 48, 0x37},
{ 7, 0x19},
{ 9, 0x05},
{ 4, 0x67},
{ 2, 0x05},
{ 10, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x00},
{ 7, 0x1b},
{ 1, 0x00},
{ 21, 0x37},
{ 5, 0x00},
{ 19, 0x37},
{176, 0x00},
{ 32, 0x11},
{ 32, 0x13},
{ 23, 0x1b},
{ 4, 0x05},
{101, 0x00},
{ 75, 0x37},
{ 4, 0x00},
{ 1, 0x19},
{ 1, 0x37},
{ 55, 0x12},
{ 7, 0x00},
{ 4, 0x19},
{ 13, 0x67},
{ 64, 0x00},
{ 2, 0x67},
{ 1, 0x05},
{ 1, 0x67},
{ 1, 0x19},
{ 11, 0x00},
{ 2, 0x12},
{ 14, 0x00},
{120, 0x37},
{ 8, 0x00},
{ 86, 0x37},
{ 42, 0x00},
{ 9, 0x37},
{119, 0x00},
{ 31, 0x37},
{ 49, 0x00},
{ 3, 0x37},
{ 17, 0x00},
{ 4, 0x37},
{ 8, 0x00},
{140, 0x37},
{ 4, 0x00},
{107, 0x37},
{ 5, 0x00},
{ 13, 0x37},
{ 3, 0x00},
{ 9, 0x37},
{ 7, 0x00},
{ 10, 0x37},
{ 2, 0x00},
{ 1, 0x05},
{ 2, 0x19},
{ 1, 0x05},
{ 4, 0x15},
{ 92, 0x00},
{118, 0x05},
{ 10, 0x00},
{ 39, 0x05},
{ 2, 0x00},
{ 60, 0x05},
{ 2, 0x12},
{ 3, 0x19},
{ 3, 0x05},
{ 6, 0x12},
{ 8, 0x15},
{ 8, 0x19},
{ 2, 0x05},
{ 7, 0x19},
{ 30, 0x05},
{ 4, 0x19},
{ 59, 0x05},
{ 23, 0x00},
{ 66, 0x05},
{ 3, 0x19},
{ 1, 0x05},
{154, 0x00},
{ 20, 0x1b},
{ 12, 0x00},
{ 87, 0x05},
{ 9, 0x00},
{ 25, 0x1b},
{ 7, 0x00},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 7, 0x14},
{ 1, 0x00},
{ 18, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 1, 0x79},
{ 1, 0x00},
{ 2, 0x79},
{ 2, 0x00},
{ 1, 0x79},
{ 2, 0x00},
{ 2, 0x79},
{ 2, 0x00},
{ 4, 0x79},
{ 1, 0x00},
{ 8, 0x79},
{ 4, 0x14},
{ 1, 0x00},
{ 1, 0x14},
{ 1, 0x00},
{ 7, 0x14},
{ 1, 0x00},
{ 11, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 2, 0x79},
{ 1, 0x00},
{ 4, 0x79},
{ 2, 0x00},
{ 8, 0x79},
{ 1, 0x00},
{ 7, 0x79},
{ 1, 0x00},
{ 26, 0x14},
{ 2, 0x79},
{ 1, 0x00},
{ 4, 0x79},
{ 1, 0x00},
{ 5, 0x79},
{ 1, 0x00},
{ 1, 0x79},
{ 3, 0x00},
{ 7, 0x79},
{ 1, 0x00},
{ 26, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 26, 0x14},
{ 26, 0x79},
{ 28, 0x14},
{ 2, 0x00},
{ 25, 0x79},
{ 1, 0x05},
{ 25, 0x14},
{ 1, 0x05},
{ 6, 0x14},
{ 25, 0x79},
{ 1, 0x05},
{ 25, 0x14},
{ 1, 0x05},
{ 6, 0x14},
{ 25, 0x79},
{ 1, 0x05},
{ 25, 0x14},
{ 1, 0x05},
{ 6, 0x14},
{ 25, 0x79},
{ 1, 0x05},
{ 25, 0x14},
{ 1, 0x05},
{ 6, 0x14},
{ 25, 0x79},
{ 1, 0x05},
{ 25, 0x14},
{ 1, 0x05},
{ 6, 0x14},
{ 1, 0x79},
{ 1, 0x14},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 55, 0x19},
{ 4, 0x05},
{ 50, 0x19},
{ 8, 0x05},
{ 1, 0x19},
{ 14, 0x05},
{ 1, 0x19},
{ 7, 0x05},
{ 15, 0x00},
{ 5, 0x19},
{ 1, 0x00},
{ 15, 0x19},
{ 80, 0x00},
{ 7, 0x19},
{ 1, 0x00},
{ 17, 0x19},
{ 2, 0x00},
{ 7, 0x19},
{ 1, 0x00},
{ 2, 0x19},
{ 1, 0x00},
{ 5, 0x19},
{ 85, 0x00},
{ 45, 0x37},
{ 3, 0x00},
{ 7, 0x19},
{ 7, 0x67},
{ 2, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x00},
{ 1, 0x37},
{ 1, 0x05},
{112, 0x00},
{ 44, 0x37},
{ 4, 0x19},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 5, 0x00},
{ 1, 0x05},
{ 69, 0x37},
{ 2, 0x00},
{ 9, 0x1b},
{ 7, 0x19},
{ 41, 0x00},
{ 34, 0x1f4},
{ 34, 0x1f5},
{ 7, 0x19},
{ 1, 0x67},
{ 4, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 4, 0x00},
{ 2, 0x05},
{145, 0x00},
{ 59, 0x1b},
{ 1, 0x05},
{ 3, 0x1b},
{ 1, 0x05},
{ 4, 0x1b},
{ 76, 0x00},
{ 45, 0x1b},
{ 1, 0x05},
{ 15, 0x1b},
{ 66, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 27, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 10, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 6, 0x00},
{ 1, 0x37},
{ 4, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 2, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 2, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 7, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 4, 0x37},
{ 1, 0x00},
{ 1, 0x37},
{ 1, 0x00},
{ 10, 0x37},
{ 1, 0x00},
{ 17, 0x37},
{ 5, 0x00},
{ 3, 0x37},
{ 1, 0x00},
{ 5, 0x37},
{ 1, 0x00},
{ 17, 0x37},
{ 52, 0x00},
{ 2, 0x05},
{ 14, 0x00},
{ 44, 0x05},
{ 4, 0x00},
{100, 0x05},
{ 12, 0x00},
{ 15, 0x05},
{ 2, 0x00},
{ 15, 0x05},
{ 1, 0x00},
{ 15, 0x05},
{ 1, 0x00},
{ 37, 0x05},
{ 10, 0x00},
{ 2, 0x167},
{ 1, 0x1a},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x168},
{ 1, 0x169},
{ 1, 0x16a},
{ 1, 0x16b},
{ 1, 0x16c},
{ 1, 0x16d},
{ 2, 0x1b},
{ 35, 0x05},
{ 26, 0x1f6},
{ 6, 0x05},
{ 26, 0x1f6},
{ 6, 0x05},
{ 26, 0x1f6},
{ 36, 0x05},
{ 56, 0x00},
{ 29, 0x05},
{ 13, 0x00},
{ 44, 0x05},
{ 4, 0x00},
{ 9, 0x05},
{ 7, 0x00},
{ 2, 0x05},
{ 14, 0x00},
{ 6, 0x05},
{ 26, 0x00},
{123, 0x05},
{ 5, 0x06},
{ 88, 0x05},
{ 8, 0x00},
{ 13, 0x05},
{ 3, 0x00},
{ 13, 0x05},
{ 3, 0x00},
{116, 0x05},
{ 12, 0x00},
{ 89, 0x05},
{ 7, 0x00},
{ 12, 0x05},
{ 20, 0x00},
{ 12, 0x05},
{ 4, 0x00},
{ 56, 0x05},
{ 8, 0x00},
{ 10, 0x05},
{ 6, 0x00},
{ 40, 0x05},
{ 8, 0x00},
{ 30, 0x05},
{ 2, 0x00},
{ 2, 0x05},
{ 78, 0x00},
{121, 0x05},
{ 1, 0x00},
{ 82, 0x05},
{ 1, 0x00},
{135, 0x05},
{ 12, 0x00},
{ 14, 0x05},
{ 2, 0x00},
{ 5, 0x05},
{ 3, 0x00},
{ 3, 0x05},
{ 5, 0x00},
{ 7, 0x05},
{ 9, 0x00},
{ 25, 0x05},
{ 7, 0x00},
{ 7, 0x05},
{ 9, 0x00},
{ 3, 0x05},
{ 13, 0x00},
{ 7, 0x05},
{ 41, 0x00},
{ 19, 0x05},
{ 1, 0x00},
{ 55, 0x05},
{ 37, 0x00},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x10},
{ 6, 0x00},
{ 1, 0x37},
{ 1, 0x184},
{ 98, 0x37},
{ 1, 0x184},
{125, 0x37},
{ 1, 0x184},
{ 62, 0x37},
{ 1, 0x184},
{ 97, 0x37},
{ 1, 0x184},
{ 8, 0x37},
{ 1, 0x184},
{ 15, 0x37},
{ 1, 0x184},
{205, 0x37},
{ 1, 0x184},
{ 18, 0x37},
{ 1, 0x184},
{ 27, 0x37},
{ 1, 0x184},
{118, 0x37},
{ 1, 0x184},
{135, 0x37},
{ 1, 0x184},
{130, 0x37},
{ 1, 0x184},
{209, 0x37},
{ 1, 0x184},
{112, 0x37},
{ 34, 0x00},
{ 53, 0x37},
{ 11, 0x00},
{ 94, 0x37},
{ 2, 0x00},
{130, 0x37},
{ 14, 0x00},
{177, 0x37},
{ 31, 0x00},
{ 30, 0x37},
{ 98, 0x00},
{ 75, 0x37},
{ 54, 0x00},
{ 1, 0x15},
{ 30, 0x00},
{ 96, 0x15},
{240, 0x19},
{ 16, 0x00},
{126, 0x01},
{ 2, 0x00},
{0},
};
static textstartup void _PyUnicode_TypeRecordsIndex2_init(void) {
int i, j, k;
for (k = i = 0; i < 4889; ++i) {
for (j = 0; j < _PyUnicode_TypeRecordsIndex2_rodata[i][0]; ++j) {
_PyUnicode_TypeRecordsIndex2[k++] = _PyUnicode_TypeRecordsIndex2_rodata[i][1];
}
}
}
const void *const _PyUnicode_TypeRecordsIndex2_ctor[] initarray = {
_PyUnicode_TypeRecordsIndex2_init,
};
| 114,914 | 5,802 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_decomp.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const unsigned int _PyUnicode_Decomp[8032] = {
67371008, 2155872768, 536879104, 1074802700, 33685528, 809500800,
838877376, 805571584, 8421379, 201588768, 4009758752, 2147615232,
3224530944, 3211328, 116392972, 822132992, 1082200064, 12648451,
2165309489, 3238003488, 268448512, 213121, 4259968, 536873984, 16781376,
268959747, 12615684, 17039872, 2147495984, 536887552, 1075838988,
50987024, 70256640, 51648, 70658, 8388656, 201588805, 289415168, 197120,
282632, 33554626, 805306660, 1224769536, 787456, 1196064, 134218498,
3254781072, 939655168, 3158017, 5177472, 536873984, 16782272, 4027056131,
12615684, 20709888, 2147495984, 536891136, 1075838988, 50331669,
89131008, 49216, 536957954, 8388656, 203423829, 373301248, 196864,
397320, 33554624, 806355332, 1627422720, 788480, 1589280, 134218499,
3254781456, 2214723584, 3186689, 6488192, 536874140, 6464, 1342701571,
12599302, 26477056, 2147495968, 536896768, 1075838988, 50331674,
110102528, 49216, 536978434, 8388656, 203423849, 461381632, 197376,
454664, 33554624, 806355388, 1862303744, 788480, 1818656, 134218499,
3254781680, 3556900864, 3145729, 7667840, 536873988, 33561920,
1342701571, 12713991, 31719936, 2147495952, 536901888, 1075838988,
50593808, 101713920, 49408, 1610679298, 8388656, 202899553, 272637952,
206848, 397320, 33554634, 806355212, 1660977152, 787456, 1097760,
134218498, 3229615664, 201457664, 3174401, 6488192, 536874012, 201330880,
805830659, 12779526, 17826304, 2147496128, 805331968, 1075838988,
50593809, 105908224, 49408, 1610683394, 8388656, 202899557, 289415168,
198400, 3221639176, 33554625, 847249684, 1694531584, 827392, 1130528,
134218508, 3271558736, 469893120, 3153921, 6750336, 536873992, 100667840,
1879572483, 12681222, 18612736, 2147496048, 469788416, 3223322636,
52887569, 108005376, 51648, 536944642, 8388656, 201850984, 306192384,
197376, 3221655560, 33554624, 809500964, 1761640448, 790528, 1196064,
134218502, 3246392976, 604110848, 3309569, 6881408, 536874144, 117445184,
2416445443, 1212420, 27525634, 2147485344, 134236672, 2149580812,
50462746, 78645248, 51648, 1879157762, 8388658, 201588812, 452993024,
196864, 3221536776, 33554633, 846201264, 1275101184, 798720, 1769504,
134742796, 767558848, 2952921600, 749569, 5111936, 536873988, 16784256,
3758620675, 13221892, 28836352, 2147496560, 805326336, 2149580812,
51118107, 734005256, 7040, 1073822722, 8388656, 202375279, 331358208,
198144, 2147938312, 33554625, 816841020, 1862303744, 797696, 1343520,
134218497, 3225421600, 1208090624, 3305473, 7471232, 536874140,
201331840, 537395203, 12779527, 21758464, 2147495952, 67138304,
3223322636, 50462740, 120588288, 49280, 1879133186, 8388658, 211550323,
348135424, 199680, 471048, 33554627, 846201168, 1946189824, 826368,
1376288, 134218508, 3271558976, 1409417216, 3158017, 7667840, 536873996,
67114304, 1342701571, 12648455, 22282752, 2147496032, 402683136,
1075838988, 50987029, 122685440, 49792, 2952877058, 8388656, 204210293,
356524032, 206848, 479240, 33554634, 807403868, 1996521472, 788480,
1458208, 134218498, 3229616016, 1677852672, 3178497, 5898368, 536873988,
16785024, 2684878851, 12697605, 31982080, 2147496048, 805329408,
2149580812, 51118110, 120587272, 1325432832, 814080, 1818656, 134218523,
3334473040, 3556900864, 2150739969, 4456576, 538969588, 2113933568,
1074268161, 6258694, 19923458, 2155873440, 2818591744, 2105345, 6946843,
81790984, 33559168, 2684434434, 8421382, 27787374, 272637952, 199680,
397320, 33554627, 817889572, 1761640448, 798720, 1294368, 134218508,
3271558896, 1409417216, 3194881, 7667840, 536874032, 67122944,
3221749763, 12648463, 57672192, 2147495952, 67173376, 2097164, 51118135,
264243200, 49920, 225282, 8388656, 201326844, 822091776, 197632, 933896,
33554625, 809502872, 654344192, 790530, 3244064, 134218500, 3238006368,
469893120, 3194881, 6750336, 536874032, 201331392, 2953314307, 12779526,
20709888, 2147496576, 2684382976, 2149580812, 50593914, 514852864, 49408,
3221675010, 8388656, 204472978, 444604416, 134417408, 2147762184,
33685526, 127926544, 1677754496, 124928, 1163296, 134218497, 3225421424,
939655168, 3145729, 7209088, 536873984, 16789824, 1342701571, 12599310,
51905024, 2147495952, 67167744, 2097164, 50397238, 260048896, 49216,
4026598402, 8388656, 205258849, 272637952, 200960, 1074139144, 33554628,
821035284, 1694531584, 801792, 1130528, 134218513, 3292530256, 604110848,
3207169, 6881408, 536874044, 285217344, 2416443395, 12861446, 20709888,
2147496176, 1006661376, 3223322636, 51445779, 116393984, 50240,
4026615810, 8388656, 205258866, 343941120, 200960, 1074208776, 33554628,
821035348, 1962967040, 801792, 1392672, 134218513, 3292530512,
1275199488, 3301377, 7536768, 536874136, 637539584, 1074266115, 13205511,
18874880, 2147496128, 805332992, 1075838988, 50790416, 101713920, 49600,
1879118850, 8388658, 211550309, 897589248, 197632, 1007624, 33554625,
809501524, 4110450688, 790528, 1294368, 134218503, 3250587376,
3087138816, 3162120, 36634752, 536874000, 67114560, 2416443395, 12648455,
27263235, 2575306800, 2818638592, 2148544513, 16973852, 271583716,
50372288, 805962753, 1949712, 31719683, 134225952, 134415872, 3221356552,
33685697, 815792256, 536903808, 537698304, 524320, 134742787, 3267363328,
2348876544, 1060873, 16973851, 271581644, 50339328, 676865, 12582928,
201588992, 3300921344, 537001984, 3149836, 45678656, 33556488, 53568,
536931329, 524320, 134218497, 3225422464, 1140981760, 3149838, 11993152,
961546240, 49216, 269376514, 8388656, 201589657, 3888128000, 196864,
1077563400, 33554624, 806358692, 3389030400, 787459, 15089696, 134218504,
3254794832, 3288465408, 3149838, 62193792, 536873988, 16838080,
2416443395, 12599355, 254542336, 2147495952, 537114880, 1075838988,
50856177, 1005586432, 49216, 269423618, 8388656, 201589705, 3967815712,
3758162432, 1074798606, 33554665, 806358856, 3523248128, 537665539,
15826960, 251658498, 4001370144, 67174912, 2148540431, 16908528,
270536288, 33615168, 953345, 17121312, 134218496, 3254796624, 1275199488,
3149840, 67502208, 536874016, 16844416, 2148007939, 12582977, 277611008,
2147496032, 402921472, 2097164, 50725134, 1129318400, 49152, 2148586498,
8388656, 201589811, 360718336, 198657, 1078173704, 33554624, 805310688,
1124106240, 792580, 18677792, 134218511, 3284158288, 1476526080, 3170320,
70647936, 536874008, 100729856, 524291, 12681283, 272630272, 2147496064,
537145344, 1075838988, 50725125, 1129318400, 49536, 2148753410, 8388656,
203424985, 92282880, 198657, 4415496, 33554626, 813699164, 922779648,
794628, 17170464, 134218500, 3238019968, 1610743808, 3178512, 70779008,
536874016, 134285184, 3758620675, 12714051, 329253376, 2147496064,
537192704, 1075838988, 50856203, 1154484224, 49664, 1074826242, 8388656,
202376259, 146808832, 198657, 4468744, 33554626, 816844940, 1124106240,
797700, 17416224, 134218504, 3254797424, 2885812224, 3178512, 72024192,
538971168, 2181126464, 1879572485, 26525794, 412877312, 2147509568,
1342588928, 3223322649, 106234249, 1688209408, 33658112, 1075354626,
8421479, 433063496, 2982158368, 134640641, 6594568, 33554845, 1698700116,
3238035456, 1658886, 28606496, 134219348, 1325437568, 3221356546,
9682980, 154337408, 536880368, 1006781760, 1611137033, 38731921,
610009600, 2147521472, 4027128832, 1075839012, 154927688, 2451572736,
151296, 3223628802, 8388755, 619710767, 1908416512, 638466, 3231477768,
33555061, 2613061252, 2717941760, 2551817, 40615968, 134220220,
2399183648, 3758227458, 10731560, 169214080, 536881392, 1006798272,
3221749770, 42926241, 682361344, 2147525568, 1477134080, 3223322669,
188613329, 3027240960, 185792, 3224142850, 8388787, 753928994,
3833602048, 775938, 2159829000, 33555183, 3152031516, 3321921536,
3103755, 51478560, 134220886, 893438960, 402784259, 13455411, 214302848,
536884056, 3254989184, 2684878860, 53821644, 890765824, 2147537888,
4161619712, 2149580852, 223806289, 3717203968, 225920, 4030161922,
8388828, 925371868, 1983913984, 135126787, 2162479112, 33686412,
3944758068, 2868936832, 540697614, 61521952, 67374753, 2147545264,
3691987456, 2097214, 263652307, 4111468544, 257472, 1883068418, 8388859,
1054609243, 3489669120, 1029379, 2163675144, 33555420, 4148182468,
2986377216, 540934159, 65830944, 134221697, 3758160688, 3422683651,
16257086, 259063936, 536886784, 3070485632, 3221749775, 65913081,
1048838656, 2147548016, 3692013056, 3223322686, 263652330, 4177528832,
257344, 3762328578, 4243714, 134222044, 3443634256, 469893126, 28528748,
453574784, 536898772, 889635520, 3490185243, 114114992, 1816396288,
2147595088, 3558554112, 2097260, 456459983, 3017803776, 445761,
1349319682, 8389043, 1825839938, 272633904, 402719488, 2148544515,
16973840, 271581456, 50336064, 805713921, 1163280, 18874627, 306188336,
671154944, 3222286337, 16973842, 271581488, 50336576, 805386241, 1294352,
143130883, 335548464, 1208025856, 1060865, 16973845, 271581524, 50337216,
805405697, 9699344, 155451651, 1082134576, 2281767687, 1060865, 16973849,
271581588, 50370112, 805923841, 9895952, 27001091, 448794672, 3019965184,
3222286337, 16973906, 271581628, 50369792, 812931073, 122011664,
29360387, 486543408, 3556836096, 1074802689, 16975687, 271583676,
50339200, 812946433, 15499280, 248250627, 3976204336, 402719488,
3222286351, 17105137, 273678756, 83893376, 1342297089, 1933328,
247988485, 3972010064, 67175680, 2148552719, 17105137, 271585052,
50401088, 805914625, 1622032, 156500227, 1006637104, 1879114496,
2148544521, 16973849, 271583612, 50370624, 805934081, 10092560,
161743107, 2592084016, 3959489280, 1074802805, 16973991, 271583668,
50815296, 805993473, 10240016, 163578115, 2625638448, 3422618368,
1060873, 16973981, 271583700, 50372096, 805963777, 10534928, 111935747,
2722107440, 671154944, 1060874, 16975687, 271583788, 50373376, 805431297,
10747920, 172228867, 2759856176, 3758162688, 1075838990, 52756496,
101713920, 51520, 1879115778, 8388656, 203161698, 276832256, 205568,
3221626888, 33554632, 856686856, 1644199936, 836608, 3260448, 134218497,
3225423472, 268566528, 3174401, 6553728, 536874012, 587206912,
1074266115, 13156358, 17826304, 2147496720, 3288359936, 2097164,
52887569, 104859648, 51648, 3489730562, 8388658, 213123172, 1149247488,
196608, 1126408, 33554624, 806356040, 318799872, 787457, 1130528,
134218541, 3409970768, 335675392, 3342337, 6619264, 536874176, 100698624,
2416443395, 12681250, 18350592, 2147496048, 469788160, 3223322636,
50593809, 108005376, 49408, 1879121922, 8388656, 203161704, 301998080,
205568, 3221651464, 33554632, 813695264, 1744863232, 794624, 1179680,
134218535, 3384804992, 537001984, 3334145, 6815872, 536874168, 805311040,
2416443395, 13369350, 54264320, 2147495952, 67170048, 3223322636,
50397202, 112199680, 49216, 805383170, 8388658, 210501739, 314580992,
209152, 1074180104, 33554636, 842006832, 1811972096, 822272, 126713888,
134218500, 3238126448, 805437440, 3346433, 7078016, 536874180, 754979584,
3221749763, 13320198, 20185600, 2147495952, 67136768, 1075838988,
50790419, 114296832, 49600, 805385218, 8388658, 210501741, 327163904,
198400, 3221676040, 33554625, 842006840, 1845526528, 822272, 1277984,
134218545, 3426748128, 939655168, 3330049, 7209088, 536874164, 16790848,
1342701571, 12599311, 55837184, 2147496064, 536933632, 2097164, 50331731,
349177856, 49152, 268775426, 8388656, 201589069, 335552512, 196864,
1074200584, 33554624, 812646720, 1879080960, 793600, 1343520, 134218503,
3250587424, 1208090624, 3289089, 7471232, 536874124, 67606144,
2953314307, 12648933, 21496320, 2147496720, 3288363520, 3223322636,
50790420, 120588288, 49600, 805391362, 8388658, 210501747, 1451237376,
198400, 3222646792, 33554625, 812647808, 1627422720, 793601, 127434784,
134218503, 3250710064, 1342308352, 3174401, 7602304, 536874012,
587207936, 1074266115, 13156359, 22020608, 2147496720, 3288364032,
2097164, 53280789, 121636864, 52032, 1073828866, 8388658, 210763893,
356524032, 208896, 479240, 33554636, 852492628, 1962967040, 832512,
5898272, 134218497, 3225425552, 2818703360, 3178501, 23789696, 536874016,
50337152, 1611137027, 12632071, 22544896, 2147496496, 2348840448,
3223322636, 50331669, 124782592, 49152, 268524546, 8388656, 201588855,
364912640, 198656, 487432, 33554626, 812646748, 1996521472, 793600,
1425440, 134218531, 3368028016, 1610743808, 3174401, 7864448, 536874012,
134223360, 2148007939, 12713991, 23331328, 2147496048, 469793024,
2149580812, 50462742, 127928320, 49280, 805398530, 8388658, 210501754,
377495552, 209152, 1074241544, 33554636, 856687008, 1946189824, 794624,
1949728, 134218506, 3263170448, 2214724096, 2875393, 25100416, 536874012,
587206720, 268959747, 13156358, 17039872, 2147496080, 604004608,
2149580812, 50397232, 236980224, 49216, 198658, 8388656, 201326818,
813703168, 198912, 1074667528, 33554626, 808452872, 3791683584, 789504,
128450592, 134218498, 3229739536, 134348800, 3149828, 16973952,
536873988, 16512, 805830659, 12582928, 67633664, 2147496080, 604046080,
2149580812, 50528320, 271583232, 49344, 1618640898, 8388656, 202907297,
289415168, 205568, 3221639176, 33554632, 814743828, 1694531584, 795648,
1130528, 134218499, 3233810000, 671219712, 3149827, 15335552, 536873988,
12928, 2684878851, 12582926, 52953600, 2147496080, 604039680, 2149580812,
50528306, 245368832, 49344, 544923650, 8388656, 201858745, 306192384,
198912, 1074171912, 33554626, 842006820, 1761640448, 822272, 1294368,
134218531, 3368027888, 1006764032, 3182593, 7274624, 536874020, 16790784,
1074266115, 12599311, 55575040, 2147495936, 62464, 2097164, 50921525,
255854592, 49728, 805523458, 8388656, 202113268, 3003129856, 197127,
2179780616, 33554624, 806356608, 2701164544, 787457, 6815776, 134218496,
3221232144, 2147614720, 3182598, 27328640, 536874020, 50358272,
268959747, 12632090, 109052416, 2147496496, 2348916992, 1075838988,
52625429, 122685440, 51392, 2416006146, 8388656, 203686005, 1807753216,
196864, 1075511304, 33554624, 805308092, 2952822784, 786433, 7061536,
134218505, 3258981120, 3154247680, 3158022, 28311680, 536873996,
587230144, 524291, 13156379, 23331328, 2147495936, 30976, 1075838988,
52625430, 126879744, 51392, 2416010242, 8388656, 203686009, 373301248,
197376, 3221721096, 33554624, 825233092, 2969600000, 806915, 130023456,
134218496, 3221352464, 131072, 3149948, 520159360, 536873988, 1107804160,
268959747, 13664752, 239337984, 2147496240, 1342411008, 2097164,
50333634, 4035971072, 49153, 276570114, 8388656, 201596681, 3254788096,
213511, 2180026376, 33554640, 825233108, 3036708864, 806915, 130285600,
134218496, 3221352720, 1073872896, 3149948, 521207936, 536873988,
318825792, 1342701571, 12910649, 2086666752, 2147495936, 2038016,
2097164, 50399174, 4052748288, 49217, 806280194, 8388657, 206570423,
3355451392, 196615, 32641032, 33554624, 806386816, 553680896, 787487,
130547744, 134218562, 3498177040, 1543634944, 3223566, 60227712,
536874064, 510464, 2416443395, 12583410, 2090861056, 2147495952,
69150976, 2097164, 54659018, 4069525504, 53377, 806282242, 8388657,
206570425, 3422560256, 196615, 32706568, 33554624, 806386880, 822116352,
787487, 130809888, 134218562, 3498177296, 1677852672, 3223566, 60358784,
536874064, 511488, 2416443395, 12583411, 2095055360, 2147495952,
69155072, 2097164, 54659022, 4086302720, 53377, 806288386, 8388657,
206570431, 3489669120, 196615, 32772104, 33554624, 806386944, 1090551808,
787487, 15188000, 134218515, 3305126384, 537001984, 3145853, 524877952,
536873984, 17289728, 2416443395, 12599796, 252969472, 2147496240,
1342424320, 2097164, 50333652, 4111468544, 49153, 276643842, 8388656,
201596753, 3556777984, 213511, 2180321288, 33554640, 826281620,
1493204992, 786463, 131481632, 134218497, 3498177936, 604110848, 3223567,
63504512, 536874064, 514048, 268959747, 12583414, 2105541120, 2147495952,
69165312, 2097164, 54659032, 4128245760, 53377, 806265858, 8388657,
206570409, 3657441280, 196615, 32935944, 33554624, 806387104, 1761640448,
787487, 131727392, 134218562, 3498178192, 3288465408, 3145742, 61603904,
995100672, 49152, 963585, 15581216, 67109632, 2147498720, 243968,
3222274060, 33554667, 805310204, 3422568448, 1342701571, 12582972,
255066368, 4064288768, 196608, 3989508, 520093824, 536874260, 1158135872,
537395203, 13713904, 2081161728, 2147497040, 337576960, 1075838989,
54855617, 4032825344, 53569, 1350310914, 8388660, 219422472, 3258982400,
214279, 1106288648, 33554641, 877689900, 201359360, 857119, 130236448,
134218565, 3510759648, 1006764032, 3428476, 522190976, 536874260,
1158137920, 537395203, 13713906, 2089550336, 2147497040, 337585152,
1075838989, 54855625, 4066379776, 53569, 1350343682, 8388660, 219422504,
3393200128, 214279, 1106419720, 33554641, 877690028, 738230272, 857119,
130760736, 134218565, 3510760160, 3154247680, 3428476, 526385280,
536874260, 1158142016, 537395203, 13713910, 2106327552, 2147497040,
337601536, 1075838989, 54855641, 4133488640, 53569, 1350409218, 8388660,
219422568, 3661635584, 214279, 1106681864, 33554641, 877690284,
1811972096, 857119, 131809312, 134218565, 3510761184, 3154247680,
3428477, 61931648, 536874008, 67169344, 524291, 13713911, 247726592,
2147497040, 335784960, 1075838989, 54657260, 4217374720, 53569,
1611547650, 8388656, 202376081, 3829407744, 196608, 3694596, 59834496,
538971412, 318769152, 2416181251, 8421435, 206307360, 134225952, 213504,
2148171784, 33554640, 877690320, 3070263296, 857091, 15433760, 134218565,
3498064752, 402784256, 3428479, 60096640, 268438528, 57856, 941058,
4194352, 134218633, 3510647152, 4227989504, 3145854, 532611200,
536873988, 1107816384, 2416443395, 12681275, 249823744, 2147496000,
248320, 1048588, 33554660, 874516196, 3389030400, 854019, 15089696,
134218502, 3238017424, 1677852672, 3145742, 59375680, 4292872192, 49153,
276822018, 8388656, 218636286, 4047511552, 198144, 3952648, 33554625,
805310252, 2952806400, 268959747, 12894268, 251920896, 2147496256,
134464768, 3223322637, 54657266, 978323456, 49536, 1074697218, 8388656,
201327525, 3816820736, 2214723584, 3227662, 11010176, 268438528, 57664,
98305, 132055072, 134218565, 3510647952, 939655168, 3428367, 63504512,
536874248, 1158151552, 4027056131, 12582969, 238027008, 3930071040,
196608, 3731460, 61407360, 268438804, 33565952, 1073774594, 4194353,
67117058, 1082261552, 134225920, 2147614724, 2097216, 33555464,
536887424, 263168, 4227074, 67633184, 1082130944, 67117056, 2181103620,
2097280, 270535884, 33557376, 3758143490, 12615682, 12058670, 1077936864,
134225920, 2181242888, 50464780, 52461768, 34081922, 1350620162,
12616195, 2161385525, 2156004176, 2214600960, 2105344, 50659336,
66062344, 33558464, 268499970, 8421378, 16515105, 209731616, 3357553160,
2181243008, 2097216, 50332684, 1761624256, 1074007040, 4243459, 67895349,
1086325600, 201340672, 3221454852, 3735616, 45089804, 302006464,
3489926178, 4243459, 67895336, 1086325392, 335572480, 1073938436,
3211329, 52429844, 855654720, 1074009088, 4276227, 68419637, 1094714208,
335558400, 1073971204, 3735617, 45089812, 302006592, 3489928226, 4276227,
68419624, 1094714000, 335569152, 1074155524, 7274561, 125830164,
1493188928, 2147750914, 4276230, 68419691, 1094715072, 335572224,
1074192388, 7340097, 120587284, 1946173760, 537397248, 1884165, 25428738,
415236848, 2214789632, 3221417985, 17170460, 538968332, 1124084736,
806094848, 770054, 201850991, 197133872, 134247680, 2149122052, 11534464,
274727192, 100669888, 1610686465, 1179664, 18874630, 436211808,
2617312768, 1074814980, 17170450, 274727204, 100668160, 1610723329,
1277968, 20447746, 1098909424, 402673664, 2147815428, 5374017, 85984280,
1375748480, 805833728, 1261573, 22020866, 318768208, 1342309120,
2147799041, 5898305, 982516736, 1509966208, 2953052160, 4194308,
68681925, 1098908704, 402670336, 2147897348, 4522049, 73401368,
1291862400, 4026800128, 4227078, 67634640, 1082154256, 134599168,
2153590788, 6881345, 73403400, 1476399168, 268288, 4292668, 68682675,
1098922288, 402890752, 2183204868, 4456513, 104858648, 1694515584,
2416187392, 4292614, 202375274, 285213456, 268449544, 200716, 3737617,
51384336, 822612224, 1073790976, 802864, 13377604, 209727552, 3424666624,
1076903936, 541327372, 809500884, 1140853888, 1073796128, 835632,
13901892, 218116160, 3558884352, 1076903936, 541327372, 809500888,
1140854080, 1073797152, 802864, 14688324, 213921856, 3760210944,
1076903936, 541327373, 809500896, 1140854208, 1073799200, 802848,
67641412, 2155873424, 603998464, 1076895745, 4784146, 538968356,
1442845248, 1610876928, 8421381, 19136598, 360722464, 603998464,
2151686145, 4784149, 76546340, 1224769664, 536961024, 1441808, 23069186,
3229615248, 604002304, 2147782657, 4980800, 70255624, 1140867200,
3489925120, 4227076, 134742121, 440403600, 2751660544, 1074171905,
33685530, 123732388, 1979728000, 1611139072, 1720327, 30933762,
440403600, 3624141312, 1074171905, 6881306, 110102536, 33562112,
536993793, 1966112, 201850985, 440403840, 134244608, 2147926020, 6488128,
104858632, 1828733056, 790528, 135331843, 134217779, 3456243968,
1208090624, 3375238, 563347584, 536874208, 940078080, 1074266115,
13500957, 2269643264, 2147496832, 3760325376, 2097164, 54003842,
548407296, 52738, 2156432386, 8388659, 216015397, 2327846944, 136456968,
3257053196, 573245578, 585107464, 34114434, 3767056387, 143360546,
2297430528, 2147496832, 3760341760, 1075838988, 54003857, 612370432,
52738, 2147546114, 8388659, 216015457, 2470453248, 210952, 245768,
33554638, 864026872, 1677754368, 843810, 144261152, 134218552,
3456247584, 3422683136, 3375241, 578158720, 536874208, 940088768,
2684878851, 13500967, 2313945600, 2147496832, 3760357888, 3223322636,
54003872, 677382144, 52738, 2156534786, 8388659, 216015522, 2852134912,
210952, 36343816, 33554638, 864062124, 2080407552, 843810, 144654368,
134218552, 3456248080, 1208090624, 3375242, 582090880, 536874208,
940092608, 1074266115, 13500971, 2329149952, 1073755008, 3147776,
3271593988, 3211329, 52429852, 855654848, 1074011136, 4308995, 68943925,
1103102816, 469776128, 3221454852, 3735617, 51382300, 117443584,
268485634, 8503299, 13107249, 205529200, 469775104, 200712, 34013197,
55574724, 822116800, 1879103488, 802848, 136052791, 234881808,
3288467200, 3221458944, 3276929, 807403712, 822086144, 536912896, 655408,
10747954, 167784480, 2751476480, 3153920, 3407882, 807403684, 889195008,
536912896, 655408, 10747958, 167784480, 2751477504, 3153920, 3670026,
807403684, 956303872, 536912896, 655424, 12582961, 8389264, 3288344577,
1073942528, 67239946, 51380384, 687869056, 2148534272, 802818, 10747955,
167788576, 3489673472, 2147651584, 2621696, 55574724, 33557056,
268476420, 884739, 268959785, 205521536, 2751477504, 4202496, 3211274,
42991840, 671154304, 2415969280, 671747, 10486786, 201327392, 134228224,
2147684360, 33685515, 48234696, 855670912, 536918016, 852000, 134742062,
192938832, 3624010240, 2147672064, 3604608, 538968248, 771755520,
2416445440, 753667, 12845826, 192938752, 3288531456, 2147684352,
50462731, 52428996, 33557376, 805356547, 753667, 12845826, 192938816,
3288531456, 2147700736, 50462731, 56623300, 33557376, 1879098371, 753667,
12845826, 192938880, 3288531456, 2147717120, 50462731, 50331848,
33557376, 268476419, 671750, 10486530, 171968032, 2684551680, 1074147328,
50462730, 104857760, 33557056, 1342218243, 671750, 10486530, 171968096,
2684551680, 1074163712, 50462730, 109052064, 33557056, 2415960067,
671750, 10486530, 171968160, 2684551680, 1074180096, 50462730, 113246368,
33557056, 3489701891, 671750, 10486530, 171968224, 2684551680,
1074196480, 50462730, 117440672, 33557056, 268476419, 671751, 10486530,
171968288, 2684551680, 1074212864, 50462730, 121634976, 33557056,
1342218243, 671751, 10486530, 171968352, 2684551680, 1074229248,
50462730, 125829280, 33557056, 2415960067, 671751, 10486530, 171968416,
67176192, 2148560897, 17235984, 275775756, 117444864, 1879118849,
1146896, 18612487, 301994096, 604047104, 2148560897, 17235986, 275775788,
117445376, 1879127041, 1277968, 20709639, 335548528, 1140918016,
2148560897, 17235988, 275775820, 117445888, 1879135233, 1409040,
22806791, 369102960, 1677788928, 2148560897, 17235990, 275775876,
117446784, 1879149569, 1638416, 26476807, 427823216, 2617313024, 1077249,
17235994, 275775908, 117447296, 1879157761, 1769488, 28573959, 461377648,
3154183936, 1077249, 17235996, 275775940, 117447808, 1879165953, 1900560,
30671111, 494932080, 3691054848, 1077249, 17235998, 275775972, 117448320,
536920065, 143310912, 2292982315, 3229754032, 3892328960, 2147733504,
3997824, 807403764, 1023414080, 62464, 179781664, 68420408, 1086326432,
201348608, 2195066884, 1808597056, 4193256456, 16521, 2147747918,
4228322, 67653174, 1082450928, 139352320, 2229817348, 1317797952,
3925869576, 3120578692, 4026796110, 4228371, 67653989, 1082463920,
139559424, 2233032708, 1370161216, 503317512, 4110434437, 264273,
4228384, 67654299, 1082470288, 139662592, 2234621956, 1396179008,
873464840, 1543520389, 2416183379, 4228406, 67654530, 1082473312,
139708416, 2235445252, 1456930880, 1911555080, 3942662277, 537135192,
4228496, 67655946, 1082495312, 140060416, 2241277956, 1531969600,
3087008776, 4160766085, 4026796123, 4228544, 67656738, 1082508160,
140275200, 2244415492, 1574633536, 3729785864, 4043325573, 3758360669,
4228575, 67657330, 1082517408, 140410624, 2247049220, 1593704512,
4038067208, 318783621, 264287, 4228597, 67657569, 1082521392, 140493568,
2250276868, 1647706176, 615515144, 788545670, 1074006117, 4228691,
67659143, 1082546544, 140878848, 2254147588, 1709178944, 1582302216,
4026548358, 2147747942, 4228720, 67659560, 1082569216, 141255168,
2260176900, 1806893120, 3165651976, 3556786310, 2953054315, 4228797,
67660815, 1082573120, 141308928, 2265362436, 1915355200, 593495048,
989872263, 4026796146, 4228899, 67662407, 1082598800, 141712128,
2267725828, 1938030656, 948962312, 3691004039, 1610877044, 4228942,
67663128, 1082610160, 141895680, 2270363652, 1972043840, 1495270408,
1979728007, 3489925238, 4228967, 67663534, 1082616816, 142011904,
2273161220, 2011299904, 2133853192, 973095047, 2147747961, 4229019,
67664318, 1082632000, 142265088, 2276429828, 2087911488, 3481273352,
905986183, 268699775, 4229109, 67665802, 1082653648, 142606592,
2281750532, 2148663360, 53478408, 2130722952, 2416183424, 4229128,
67666403, 1082662560, 142734080, 2283782148, 2181824576, 565183496,
520110216, 3758360706, 4229158, 67666546, 1082664832, 143019264,
2288431108, 2285895744, 2227176456, 1660960904, 3758360712, 4229271,
67668363, 1082694944, 143261696, 2294509572, 2353397824, 3310355464,
2013282440, 3489925260, 4229321, 67669348, 1082709760, 143504128,
2297081860, 2395603008, 4189062152, 2952806536, 1342441615, 4229371,
67670161, 1082725520, 143771136, 2300362756, 2446393408, 1466958856,
2147500169, 3221489813, 4229473, 67671734, 1082747792, 144107520,
2306150404, 2539520064, 1981809672, 1761624201, 2953054359, 4229500,
67672045, 1082752816, 144179456, 2307555332, 2564489280, 2381317128,
2516598921, 2416183449, 4229529, 67672492, 1082763904, 144365568,
2309877764, 2602893376, 3002074120, 838877321, 3221489819, 4229555,
67672922, 1082773072, 144602368, 2313678852, 2661613632, 3954181128,
3271573641, 3489925278, 4229612, 67673809, 1082781584, 144637184,
2314264580, 2668822592, 4060087304, 989872265, 2684618911, 4229620,
67673938, 1082783952, 144677888, 167378948, 2097218, 18875400,
1090535555, 1074006099, 4228404, 134239045, 641926320, 872546316,
50958529, 810483840, 536920676, 2567705664, 805830704, 203834117,
3243508224, 2147682704, 1680889600, 1075839170, 815336470, 95422464,
796227, 2428597250, 8389385, 3261345887, 406855680, 3184908, 1124483080,
33557542, 160481688, 1744863235, 12739632, 203145248, 134230169,
646121200, 3355574284, 50958529, 812777600, 536920680, 2567707968,
1342701616, 203850503, 3252683264, 2147682704, 1748006912, 3223322818,
815336478, 128976896, 796291, 2428573698, 8422153, 3261333536, 134225952,
3185152, 1124716552, 34147366, 144753184, 2868936707, 12739632,
204161056, 134230169, 641927920, 3288465420, 50958530, 817037440,
536920676, 2567712064, 1879572528, 203834123, 3269722624, 2147682704,
1680915200, 1075839170, 815336495, 200280064, 796227, 2428699650,
8389385, 3261345988, 830480384, 3184908, 1124892680, 33557542, 160482108,
3472916483, 12740656, 204767264, 134230169, 646122784, 1409417228,
50958531, 819265664, 536920680, 2567714304, 2148007984, 203850509,
3278635520, 2147682704, 1748032256, 2149580994, 815336489, 250611712,
796227, 2428747778, 8389385, 3261346033, 1015029760, 3184908, 1125109768,
34147366, 209765068, 16515, 268699665, 4227344, 67637674, 1082200096,
135375872, 2166018052, 285409344, 272630792, 83902593, 264209, 4227355,
67637681, 1082202912, 135377664, 2166046724, 297074752, 295699464,
100679809, 1879312401, 4227344, 67637512, 1082200592, 135334144,
2165350404, 285933632, 281019400, 218120321, 3758360593, 4227344,
67637519, 1082200320, 135336192, 2165383172, 291569728, 371196936,
1660960897, 1074006033, 4227350, 67637605, 1082201696, 135358208,
2165735428, 292094016, 379585544, 1795178625, 3221489681, 4227350,
67637613, 1082201824, 135360256, 2165768196, 292618304, 387974152,
1929396353, 1074006033, 4227351, 67637621, 1082201600, 135336960,
2165395460, 298254400, 478151688, 3422568577, 3758360593, 4227356,
67637715, 1082203504, 135387392, 2165424132, 299696192, 502268936,
486555777, 3758360593, 4227345, 67637536, 1082200608, 135340800,
2165469188, 287899712, 313525256, 738214017, 3489925137, 4227346,
67637550, 1082200816, 135344640, 2165530628, 289407040, 342885384,
1275084929, 268699665, 4227359, 67637746, 1082201456, 135354368,
2165673988, 293863488, 407897096, 2281717889, 268699665, 4227353,
67637650, 1082202432, 135372288, 3239710724, 1308622912, 3904898060,
151011524, 2953055310, 4244845, 67915274, 1086644944, 206441216,
3344113668, 1314455616, 3784311820, 16793796, 2416184398, 4244882,
67917616, 3229936544, 10240, 2147651652, 2621632, 43009032, 671137920,
2420378624, 12615682, 1142161448, 3229614736, 402663424, 2147651652,
2621632, 43009052, 671137920, 2420384768, 12615682, 1143734312,
3229614736, 805316608, 2147651652, 2621632, 43009080, 671137920,
2420390912, 12615682, 1145045032, 3229614736, 1140860928, 2147651652,
2621632, 43009096, 671154304, 272891904, 672022, 10486786, 1480658976,
134228228, 3221389328, 291570752, 1075839140, 83888640, 2420474897,
16809986, 1142423592, 172037648, 2684617216, 1091596288, 2688088,
41947144, 1627669056, 536912913, 655424, 1166283019, 8389264, 805316609,
1091964996, 67239946, 283115680, 688150593, 2148534272, 71548930,
10752353, 167788576, 2215710720, 2147651653, 2621696, 370164804,
33557057, 536911876, 72892689, 268959785, 1124074112, 2752605700,
7348224, 285933578, 281036196, 2869188929, 536912913, 655456, 1168380171,
1535185184, 134228228, 163852, 2691968, 41946120, 689152768, 2148272128,
327303170, 201850921, 3066036864, 134228245, 163852, 2692005, 41946120,
689199936, 2148272128, 327204866, 201850921, 1522532992, 134228244,
1073905676, 2691991, 41946120, 689229888, 2148272128, 432144386,
201850921, 448791168, 134228252, 163852, 2693901, 41946120, 689555968,
2148272128, 611598338, 201850921, 3351249536, 134228245, 1073905676,
2693497, 41946120, 689572480, 2148272128, 432160770, 201850921,
1333789312, 134228254, 1073905676, 2692355, 41946120, 689741376,
2148272128, 589840386, 201850921, 1463812736, 134228254, 163852, 2692269,
41946120, 689158336, 2148272128, 354353154, 201850921, 3649045120,
134228246, 3221389324, 2694584, 41946120, 689160256, 2148272128,
590462978, 201850921, 3573547648, 134228244, 1073905676, 2694747,
41946120, 689161280, 2148272128, 544899074, 201850921, 2092958336,
469772576, 3310678020, 1585184833, 1483736092, 2399158726, 796795,
1376261, 136052805, 205521696, 3355576064, 3221430272, 3276929,
544211148, 872418432, 537402368, 868355, 13107719, 2176844640,
3691000320, 2149609472, 3670028, 52430876, 117444160, 52226, 8503299,
12845107, 213917808, 469774848, 3221434376, 34013196, 54526156,
855671232, 1879102464, 71303184, 1141375239, 1086328944, 335611652,
2148560964, 17237057, 275792924, 117719616, 1883515905, 71499792,
1144520967, 1136660592, 1073809156, 1074819140, 17237060, 544228424,
1627668480, 537402385, 72892688, 1141637639, 2176914960, 2215707904,
2149609541, 291570753, 275777564, 117725249, 272901122, 8503574,
1166283019, 1124081776, 470900996, 1091624968, 34014296, 370164796,
268468673, 1883603985, 71581728, 136057185, 1480659232, 939853572,
3239448644, 285213805, 1081099684, 1845773056, 1078209553, 8503575,
1169690891, 2147487856, 805373715, 1074819386, 17240962, 275864428,
118727936, 1900393473, 327204880, 1168900359, 2537558129, 67176211,
1077581, 17242562, 275890604, 119213312, 1906089985, 611598352,
1551630599, 2034241649, 2818639641, 1074819488, 17242562, 275899640,
118817600, 1909056513, 589840400, 3849584903, 2902462577, 1610680084,
3222303207, 17243469, 275867084, 119806528, 1900324865, 349962256,
3013607687, 20975729, 1140918054, 1074819388, 17241190, 275885452,
118719104, 1899541505, 327335952, 2006450439, 4240445553, 3959490324,
3222303052, 17241829, 275869080, 119388352, 1899758593, 590462992,
1297088775, 1191186545, 3422684950, 3221446656, 3342465, 544211164,
939527360, 805837824, 933891, 13632007, 2176844544, 3288347648, 2125824,
3276813, 54528028, 117443776, 1073795074, 8503299, 13893684, 218112112,
469775872, 3221438472, 34013197, 58720464, 872448448, 1879106560, 868384,
134742064, 3254780688, 3355574809, 2255519744, 3342464, 539073568,
134221056, 1342703719, 432144387, 14156290, 2156294272, 536884992,
2105756, 1728577550, 59770888, 35242496, 50179, 432144387, 12845826,
3254780688, 3288531481, 204800, 34216386, 108003616, 1694548608,
1879164928, 8552454, 22544485, 318779552, 268456960, 2148560897,
17239080, 275825296, 118237568, 1891803137, 204111888, 3266052359,
725618800, 3154183948, 1074819266, 17239084, 275825356, 118238528,
1891818497, 204357648, 3270246663, 792727664, 4227925772, 1074819266,
17239088, 275825424, 118239616, 1891835905, 204636176, 3274440967,
855642224, 872482572, 2148561091, 17239091, 275825468, 118240384,
1891849217, 204865552, 3278635271, 931139696, 2080442124, 1077443,
17239096, 275825540, 118241408, 1891864577, 205094928, 3282043143,
977277040, 2818639628, 3222302915, 17239098, 275825584, 118242112,
1891875841, 205258768, 3284402439, 1015025776, 2416052748, 2236137787,
815923458, 264291140, 168571395, 2965538820, 204817166, 271069345,
1019415072, 2284902924, 2150670530, 821824552, 1084277676, 3406571776,
12831792, 12747531, 3284938916, 3263368208, 2754651648, 2198810818,
816316738, 183550692, 3373022979, 2148542512, 205456138, 3287298219,
713044128, 3828413196, 2150670530, 821824554, 815842176, 2752260800,
2697177136, 204128320, 3272356073, 42142848, 3023088385, 51290307,
50990143, 248562352, 168574147, 818065411, 204964623, 3266839050,
3263367872, 741387776, 2198847683, 816644354, 245416852, 168574723,
2965551108, 204473102, 136851708, 994249424, 3020229132, 51302594,
820579372, 1621148544, 3976997696, 3234038832, 204604175, 338178283,
994249424, 204533516, 2198634691, 816840898, 234931108, 2952872579,
12821552, 204604174, 338178291, 985860848, 2419112972, 2198786242,
816775426, 264291252, 168571715, 3233989635, 204358415, 3268150026,
847449776, 3422751244, 1125105858, 67767351, 172016340, 3943443395,
1343498288, 205308683, 3287298241, 42143232, 2821764865, 51327171,
50990124, 254853868, 168570947, 818080771, 204604175, 3271557898,
776146880, 469895692, 2198565059, 818479234, 547406764, 4077662720,
2684889136, 204702476, 3275227914, 839060528, 1006832140, 51003587,
84544561, 264291140, 4077661891, 2697142320, 204750896, 3272618236,
872431776, 2956000268, 2198778051, 819200322, 194036360, 3943444995,
1074538544, 204194573, 136851691, 750980416, 1275202060, 2198778051,
819265858, 244368004, 3373019331, 1343236144, 203997965, 3273666812,
897601696, 3694183180, 3272241346, 50990138, 244368212, 168574147,
4039335941, 204456714, 3282841852, 914366624, 674282764, 3272450060,
819072050, 226495528, 3289135811, 2685151280, 205308685, 203960505,
1057164704, 674281484, 51220492, 817826879, 231739432, 4077660419,
2697142320, 204931120, 3273666795, 918560928, 674296588, 3272462348,
818482236, 229641256, 3943448323, 2953586736, 205456141, 271069427,
688066016, 3023089420, 2150670531, 816057399, 815842220, 3272357760,
2697149488, 204963888, 3267113195, 931156128, 3694195468, 3272503490,
67767356, 183550844, 4077665091, 4027066416, 205161229, 3279684874,
872615584, 2888891404, 1075880131, 816581688, 235933736, 3356240643,
2697186352, 205013056, 3273666812, 3263368880, 4029735936, 2198638787,
820248770, 246465520, 3858809475, 818055216, 16941839, 3272356074,
985861248, 2818705932, 2198769859, 820707522, 264291152, 3942711939,
1623453744, 205177613, 3283091978, 1115885056, 3425758209, 2198634691,
821234732, 250612776, 3356242115, 526384, 472793091, 12845570,
2156333968, 3825218048, 3223331266, 1891172364, 54528008, 35401280,
2415973378, 8423179, 3269722166, 230694945, 141605120, 1073971208,
33692718, 193986788, 822132871, 2415968256, 12617483, 12845105,
3230075792, 3355455744, 2265681920, 3211456, 193986764, 822132871,
2415972352, 12617483, 13893681, 3230075792, 3623891200, 2265681920,
3211456, 193986780, 822132871, 2415976448, 12617483, 14942257,
3230075792, 3221238272, 2265681920, 3276992, 193986756, 838910087,
2415970304, 12617483, 13369394, 3230075792, 3489673728, 2265681920,
6815938, 101712192, 1677755008, 2684453888, 1064992, 203948117,
406849056, 671117824, 2147938312, 34209813, 103809472, 1677755008,
2684466176, 1638448, 46661741, 419442848, 3422579968, 1075879938,
5570578, 3878684712, 169378821, 3248010242, 8553800, 2911656231,
2206212257, 678214425, 3330449424, 1327110083, 547480824, 1090526208,
3758630912, 1064966, 250610186, 2189427728, 67136768, 3223363585,
4259866, 78645288, 167776384, 536949762, 8552452, 17301575, 415248544,
2952814848, 3225460737, 6488090, 113246596, 1879081600, 2684426240,
1802272, 136839238, 293616576, 4026665472, 2147905550, 7143554,
547357084, 1728060096, 2148018176, 1998852, 28050186, 511706240,
872614400, 2147778561, 50987038, 75497756, 167779968, 2147569667,
1998852, 250610186, 2189562160, 1275096320, 2138244, 554893337,
112199720, 168314048, 3489765378, 8552454, 28573806, 4009762976,
671116544, 1074188296, 34209819, 114295180, 1795195520, 2684466176,
1785904, 46661741, 415248544, 3355471104, 1075879938, 11665435,
112200744, 2986351424, 3490457600, 1785862, 203948211, 457180720,
671134464, 3221671944, 50987052, 114295212, 167783616, 1342288899,
1884705, 28574730, 482484560, 671134208, 1074069512, 50987032, 83886508,
167778368, 78851, 1589253, 18613002, 406848768, 3355642368, 397313,
84541465, 101712328, 352327936, 2684472354, 1867872, 26214497, 482484560,
671134208, 3221684232, 34209820, 120586680, 3154150016, 2684472323,
1785888, 136839283, 360711936, 3087141376, 2147835905, 62652546,
547357016, 1442847552, 2953324544, 1409030, 20185610, 2189428064,
1543532544, 2149621761, 5701659, 1002440744, 167777728, 1879159810,
8552453, 22806635, 322969760, 671110912, 1074180104, 34210026, 982516020,
1627456128, 3489708032, 753670, 17302026, 2189428496, 2348835584,
3223363585, 6553624, 70258728, 1795720512, 2684460032, 1097776, 12058735,
419438752, 671105536, 1074032648, 34209822, 101712288, 1207992960,
2684436480, 1720352, 136839278, 314574000, 738331136, 2147799041,
7012482, 547357136, 1828723456, 3221760000, 1802246, 28312330, 432015088,
2952923648, 2147975169, 7143554, 815792520, 1761614656, 2684465152,
1785904, 28311663, 335552672, 671107072, 2147942416, 7143435, 815792312,
1342182400, 2684433408, 1310752, 136839250, 478152496, 1275202048,
2147966977, 5701762, 815792520, 352327040, 2684466210, 1065008, 28582421,
205529120, 140895488, 1073946632, 33692025, 1582301388, 872448134,
563581952, 868384, 134768101, 2034238304, 3691119129, 2254327808,
3670144, 539072404, 3841986112, 269224037, 786435, 201876965, 205521680,
140895488, 2147684364, 1709506572, 51383304, 3841985728, 269224037,
851971, 201876965, 222298896, 140895488, 2147684364, 1709506573,
51383304, 3841985984, 269224037, 917507, 201876965, 239076112, 140895488,
204812, 1709506572, 52431880, 3841985600, 537659493, 819203, 201876965,
213910304, 140895488, 204812, 1709506573, 52431880, 3841985856,
537659493, 884739, 201876965, 230687520, 140895488, 204812, 1709506574,
52431880, 3841986112, 806094949, 786435, 201876965, 205521712, 677766400,
1074163724, 7077912, 1151337484, 1275084992, 4026797060, 4246134,
67895590, 1086330160, 212281088, 3400757252, 40566848, 3038774284,
2365604042, 2147745794, 4196548, 67135220, 1074326688, 9226240,
116199428, 1311899712, 1045431296, 2617262085, 3221487775, 4196857,
67131729, 1074339088, 5605120, 93618180, 1643511872, 1720714240,
2231386119, 4026794111, 4196451, 67143610, 1074302848, 9473792,
111157252, 1830486080, 227542016, 3724558343, 3489923187, 4196419,
67146090, 1074372368, 5145088, 87511044, 1795424320, 565183488,
754991111, 3758358662, 4196833, 67132752, 1074200240, 8768768, 144064516,
1657339968, 494928896, 520110088, 2684616840, 4195820, 67135255,
1074189984, 7535616, 151838724, 1334181952, 460325888, 3724558341,
1074004050, 4195916, 67136211, 1074209024, 7792384, 134221828,
2248540224, 1707082752, 4009771016, 537133197, 4196723, 67148655,
1074388896, 7900160, 127397892, 2107637824, 1016071168, 67125256,
4026794131, 4196839, 67144406, 1074105840, 6226944, 130416644,
2155741248, 639632384, 3389014023, 537133176, 4196556, 67147511,
1074105728, 6054400, 111226884, 1843003456, 4042261504, 788545542,
1879310461, 4196323, 67147339, 1074081056, 8424192, 85835780, 1372323904,
2713715712, 3187687431, 268697725, 4196415, 67147381, 1074313216,
6475520, 111157252, 2331902016, 3817866240, 3875553284, 537133147,
4195841, 67138439, 1074222848, 5445376, 126857220, 1337917504,
4203742208, 218120197, 3221487694, 4196044, 67134840, 1074254368,
5489408, 92659716, 1996554304, 1150288896, 2852143112, 2684616842,
4196027, 67145648, 1074186368, 6487552, 137252868, 1671430208,
1448084480, 2919251975, 2416181326, 4195606, 67129801, 1074169872,
8185600, 136769540, 2329018432, 485491712, 4110434313, 537133138,
4195652, 67131763, 1074130624, 6669568, 117432324, 2032795712,
1523581952, 1778401289, 1879310490, 4196841, 67149518, 1074080176,
6735360, 112685060, 2405564480, 3879732224, 2415935493, 262241, 4195872,
67134618, 1074197040, 7424256, 122195972, 2043281472, 3745514496,
1862287367, 1610875008, 4196594, 67142894, 1074332208, 9652736, 86077444,
1386414144, 1271923712, 3355459589, 537133168, 4196492, 67144362,
1074130064, 6288640, 104312836, 1806565440, 3286238208, 1962950663,
1074004083, 4195566, 67131129, 1074118256, 6142464, 100777988,
1941045312, 1183843328, 2583707655, 1610875007, 4196356, 67146292,
1074360160, 9914368, 159481860, 1334509632, 2598372352, 3019915271,
2147745937, 4196715, 67133665, 1074063456, 5298688, 96395268, 1547632704,
1502610432, 33570822, 3758358634, 4196124, 67139138, 1074286528, 9468928,
167301124, 1720188992, 1658848256, 2298494985, 2953052242, 4195959,
67135475, 1074189328, 7248896, 121671684, 1968767040, 2259682304,
268451847, 3758358653, 4196741, 67129709, 1074143968, 9861120, 84062212,
1561919552, 3735028736, 704659462, 2953052303, 4195832, 67133764,
1074168176, 7571200, 157835268, 1378418752, 1089471488, 1694515205,
805568604, 4195937, 67135310, 1074170496, 7136512, 121659396, 1977745472,
4153410560, 3472900103, 268697736, 4196494, 67146188, 1074359840,
5455616, 116105220, 1411186752, 486540288, 2550153223, 2684616820,
4196447, 67147427, 1074382192, 10395392, 108621828, 1842020416,
511706112, 3405791240, 262266, 4196274, 67140754, 1074211840, 7379200,
146112516, 1321205824, 861930496, 973094920, 1879310418, 4195616,
67133094, 1074146608, 8181248, 95965188, 1830682688, 1799357440,
989872134, 3221487759, 4196484, 67147341, 1074305200, 6214400, 85196804,
1438646336, 2241856512, 1946173445, 3758358630, 4195613, 67138346,
1074228384, 7945216, 127262724, 2036662336, 2565866496, 1442856967,
3758358679, 4196299, 67141565, 1074290976, 9107456, 151224324,
2432499776, 2398094336, 4227874825, 2147745944, 4196754, 67149236,
1074335200, 9877248, 83550212, 1357316160, 349176832, 3372236805,
1074004050, 4195630, 67130193, 1074092496, 5637632, 90603524, 1480589376,
2323645440, 1677737989, 3758358620, 4195782, 67133588, 1074140800,
6393344, 102703108, 1699676224, 1579156480, 2432712710, 1342439526,
4195976, 67136887, 1074192800, 7283200, 118939652, 1915420736,
1109394432, 2432712711, 3758358648, 4196243, 67139913, 1074238592,
7950336, 127229956, 2036138048, 2563769344, 2382381063, 262265, 4196260,
67140225, 1074248704, 8254464, 132157444, 2118189120, 4146070528,
83902471, 3489923200, 4196382, 67142265, 1074276240, 8673024, 143720452,
2308309056, 2953839616, 956317704, 805568651, 4196557, 67144968,
1074330464, 9451520, 158216196, 2550071360, 2209350656, 1962950665,
3758358624, 4203566, 67142168, 1074061920, 5354752, 85360644, 1333788736,
340788224, 2147500037, 1879310417, 4195628, 67130106, 1074092496,
5592320, 89755652, 1440874560, 2241856512, 3003138053, 1074004056,
4195732, 67131732, 1074112032, 5974016, 99426308, 1591279680, 4136633344,
2902474757, 2147745887, 4195853, 67133774, 1074139264, 6393344,
102105092, 1643249728, 591397888, 3288350726, 3221487715, 4195905,
67134546, 1074156896, 6714368, 108097540, 1729822784, 1969226752,
2030059526, 2684616811, 4196027, 67136833, 1074195888, 7260928,
116531204, 1881014336, 383779840, 2801811463, 1342439543, 4196131,
67138223, 1074213536, 7631104, 122707972, 1966800960, 1641022464,
520110087, 2684616822, 4196204, 67139291, 1074229056, 7817728, 125042692,
2026635328, 2869953536, 3221241863, 2953052283, 4196295, 67140955,
1074257728, 8338944, 134238212, 2203189312, 1055917056, 2030059528,
268697735, 4196500, 67144070, 1074305376, 9092864, 145719300, 2328559680,
2953839616, 4261429256, 3489923210, 4196526, 67144505, 1074313376,
9242624, 150175748, 2423390272, 428868608, 1979727881, 3221487762,
4196711, 67147491, 1074361696, 9952000, 159379460, 2550857792,
2209350656, 302006281, 3221487771, 4196857, 67250250, 1076003904,
36951296, 62509060, 1075314752, 59769856, 1224753156, 262738, 4203981,
67272403, 1074394160, 144674304, 2147901448, 33685529, 110100888,
1711308928, 536981504, 1671216, 27525222, 427831328, 2952816128,
3223330817, 7602271, 120588296, 33561856, 1612042242, 8421463, 362022260,
1560289312, 134572801, 2153242632, 33685853, 1456477648, 3640688640,
1495045, 24936480, 68683191, 1098931744, 403034112, 2153590788, 97779777,
1571816472, 3691004288, 3489929221, 4292701, 68683240, 1098931872, 11008,
1079939080, 33554800, 1545607076, 1224769536, 1508603, 1053966368,
134219202, 1841323264, 1073872897, 5996567, 97517696, 536876784,
3154211904, 537395205, 24051805, 390857216, 2147507136, 4026913792,
1075838998, 96207221, 1566574592, 93952, 3222757378, 8388699, 384828889,
1988108288, 375809, 6139912, 33554799, 1539315568, 3724574720, 1503237,
24641568, 134219196, 1862295056, 2348941313, 6012951, 98828416,
536876784, 3154213248, 1879572485, 24051806, 396362240, 2147507136,
4026919168, 2149580822, 96207226, 1565526016, 93760, 4028056578, 8388699,
385615323, 2030051328, 134594305, 6094856, 17498487, 281024964,
184654912, 3222924289, 27181072, 434897165, 2663387360, 4160817921,
2148581401, 17629599, 283122168, 184655744, 3222929409, 27262992,
436207885, 2684358880, 3892382465, 2148581401, 17629598, 283122152,
184655488, 3222928385, 27246608, 435945741, 2680164576, 3825273601,
1074839577, 17629598, 283122148, 184655424, 3222966273, 27852816,
445645069, 2835353824, 2550205185, 2148581402, 17629609, 283122328,
184658304, 3222933505, 27328528, 437256461, 2701136096, 201394945,
3222323226, 17629600, 283122188, 184656064, 3222935553, 27361296,
437780749, 2709524704, 469830401, 3222323226, 17629601, 283122204,
184656320, 3222942721, 27475984, 439353611, 2734690496, 939592449,
2148581402, 17498531, 281025056, 184656384, 3222953985, 27656208,
440664331, 2755662016, 2751531777, 1074839578, 17629610, 283122340,
184658496, 3222977537, 28033040, 448528653, 2881491168, 3422620417,
3222323226, 17629612, 283122380, 184659136, 3222979585, 28065808,
449052941, 2889879776, 3892382465, 2148581402, 17498542, 281025260,
218214080, 3759860737, 28229648, 452985099, 2952794304, 67177217,
1074839579, 17629616, 283122436, 184660032, 3222992897, 28278800,
452460813, 2944405728, 1208027905, 2148581403, 17498548, 281025356,
184661184, 3222975489, 28000272, 448004365, 2873102560, 469830401,
3222323227, 17498545, 281025304, 184660352, 3223003137, 28442640,
433848587, 2998931632, 738266113, 1074835483, 17564081, 279976724,
201437760, 2954568705, 28573712, 457179404, 3019903184, 1073810945,
1074843675, 17695122, 548411684, 654412160, 1611149318, 25804898,
412615179, 2197843280, 1409689088, 2149625883, 105382281, 1650460720,
184652288, 1880659970, 8585324, 454821414, 2306875568, 805750273,
2153930760, 34275761, 1820334232, 637567744, 2954567686, 25788448,
137365200, 3019924064, 2550271233, 3228368920, 103153794, 549460260,
1224837504, 1611150342, 26361954, 456130827, 3003125952, 805375233,
1105947, 34275763, 1656756376, 637567680, 2954408966, 25788448,
137102917, 2453693024, 2550270721, 3227820056, 103284866, 548411568,
755075584, 2148019206, 25919586, 413139467, 2193646672, 604383232,
2142233, 105513354, 1654655020, 184650496, 3491276802, 8568930,
414713386, 2323652784, 738608385, 1080205320, 34275730, 1688213672,
721453760, 2954407942, 25870368, 137102917, 2453693104, 2885815041,
3227820056, 103547010, 548411572, 1157729024, 3490196486, 25886818,
414450187, 2193646672, 2953195008, 2149625880, 103612811, 1658849324,
184652096, 3222850562, 8568930, 414451251, 2361401520, 738602497,
1080242184, 34275729, 1657805012, 889225920, 2954433542, 26050592,
137102892, 2336252768, 3624012545, 3227705368, 104202370, 548411668,
755076544, 1879583750, 26296419, 417333771, 2193646672, 2953197824,
1075884056, 105185678, 1671432236, 184650496, 1343809538, 8568932,
414189121, 2420121776, 738602241, 2154041352, 34275723, 1682970884,
1090552512, 2954437638, 26230816, 137102922, 2336252960, 134351617,
3227799577, 104988802, 548411684, 1241616512, 805841926, 25804900,
420217355, 2193646272, 3020309248, 3223367704, 103678352, 1680869420,
184652032, 1343818754, 8568932, 421791299, 2428510384, 738609665,
6569992, 34275723, 1657805072, 1140884160, 2954409990, 26279968,
137102917, 2453693504, 268569345, 3227820057, 105185410, 548411568,
755077440, 1342712838, 25919588, 420741643, 2193646672, 604390656,
1075884057, 105513361, 1684015148, 184650496, 3491305474, 8568930,
414713414, 2441093296, 738608385, 1080320008, 34275730, 1688213784,
1191215808, 2954407942, 26329120, 137102917, 2453693552, 469895937,
3227820057, 105513090, 548411568, 755077760, 2684890118, 25919588,
422052363, 2193646672, 604391936, 2149625881, 105513362, 1660946476,
184654848, 1623042, 8568935, 432014921, 134230192, 1141263360, 3190809,
105709576, 816847172, 1308624896, 2954445830, 524336, 423888463,
134230192, 1141264384, 3190809, 105971720, 549460416, 822184320,
1611149318, 25985122, 412615180, 2197840976, 403056128, 2149629977,
105447817, 1650460720, 201429632, 270049282, 8585315, 415761960,
2315264192, 805717249, 2153938952, 34341265, 1687165088, 671122176,
3222874118, 25853984, 137365041, 2357224096, 2818706433, 6574104,
103415939, 549460248, 1224837760, 2684891142, 26378338, 413925900,
2197840656, 3355847424, 3223371800, 105185674, 1655703600, 201429376,
2417536002, 8585316, 422053419, 2420121792, 805718273, 2154041352,
34341266, 1687165192, 1107329792, 3222874118, 26263584, 137365031,
2432721968, 201460737, 6574105, 105054339, 549460260, 1241616576,
1074278406, 26296420, 420479500, 2197841040, 671499264, 1075888153,
103219601, 1682966576, 201429312, 270080002, 8585315, 415761990,
2441093312, 805717249, 2154061832, 34341265, 1687165208, 1174438656,
3222874118, 26361888, 137365104, 2353030304, 671222785, 6496281,
105513091, 549460244, 1174508160, 2684891142, 26361956, 422052364,
2202035360, 2953192960, 2149634072, 103612809, 1650460724, 218205056,
1343789058, 8601700, 421266982, 2315264208, 872819713, 1080197128,
34406795, 1658853536, 671122240, 3491304454, 25821216, 137627207,
2332058272, 2818706689, 1080217624, 103415939, 550508728, 1157728896,
2684892166, 26329186, 413925901, 2202035280, 3020303360, 2150424,
105185675, 1657800756, 218204928, 1343796226, 8601700, 414189102,
2340430032, 872826113, 6500360, 34406795, 1657805004, 855671616,
3491280902, 26001440, 137627205, 2336252752, 3556904193, 1080221720,
104136835, 550508820, 738299264, 1611150342, 25903203, 416809485,
2202034912, 335951360, 3223375897, 103612813, 1669335092, 218206528,
3222856706, 8601698, 420742713, 2390761680, 872819713, 1080270856,
34406801, 1656756484, 1090552640, 3491279878, 26230816, 137627182,
2436916240, 134352129, 1080217625, 104988803, 550508820, 738300096,
805843974, 25903204, 420217357, 2202034912, 268845824, 3223375897,
105185680, 1681918004, 218204928, 3491303426, 8601698, 414713412,
2432704720, 872826113, 3227795464, 34406801, 1656756500, 1157661504,
3491279878, 26296352, 137627182, 2436916304, 402787585, 1080213529,
105250947, 550508724, 771854720, 1611150342, 26296420, 421003789,
2202035312, 2953201408, 3223375896, 105185681, 1685063732, 218209280,
3222874114, 8601698, 414451274, 2457870544, 872820225, 1080336392,
34406801, 1685068072, 637567872, 3759739910, 25788448, 137889351,
2436915840, 2684489217, 2154065944, 103415939, 551557396, 1191283328,
2953328646, 26296418, 413925902, 2206229616, 335950592, 3223379993,
105316748, 1665140792, 234983744, 1880674306, 8618084, 420480579,
2428510432, 939934977, 1080311816, 34472337, 1682970904, 1174438784,
3759741958, 26378272, 137889349, 2445304992, 200193, 1080352793,
51249556, 1693456640, 234984512, 1638403, 26493029, 417071627,
2193646736, 671495936, 1075884057, 105447822, 1670383660, 184652416,
2417551362, 8568932, 422053434, 2361401520, 738609409, 2153984008,
34275730, 1687165136, 872448704, 2954438662, 25903136, 137102921,
2457887440, 2952923905, 3227815960, 103547010, 548411688, 1224838016,
3758631942, 26378338, 416547339, 2193646736, 671495424, 2149625881,
105447821, 1667237932, 184652416, 3222851586, 8568930, 414451252,
2365595824, 738602497, 1080246280, 34275729, 1661999312, 855671488,
2954413062, 26034208, 137102897, 2353029984, 3691121665, 6590488,
104267907, 549460264, 1224838720, 2416455686, 26378339, 417858060,
2197841040, 671496704, 3223371801, 105447820, 1664092208, 201429632,
2417545218, 8585316, 422053428, 2336235712, 805718273, 2153959432,
34341266, 1687165104, 738231040, 3222874118, 25919520, 137365065,
2457887456, 3556903937, 6590488, 104136835, 549460264, 1224838528,
1611149318, 26378339, 416285196, 2197840576, 3020305408, 2146328,
103678349, 1665140784, 201429312, 270061570, 8585315, 415499827,
2369790144, 805712129, 1080254472, 34406796, 1656756432, 872448832,
3491279878, 26017824, 137627182, 2436916032, 3422686465, 1080324120,
104071299, 550508828, 1157729728, 805844998, 25886819, 416023054,
2206229200, 3087414016, 2154520, 103547277, 1665140792, 234982208,
3759722498, 8618082, 420742711, 2382373088, 805717249, 3227676680,
34275730, 1689262236, 704693056, 1343795206, 12779620, 414451242,
3275776704, 3020302848, 1080213528, 103416003, 1682970804, 704693056,
1343797254, 12796004, 420742698, 3275776704, 335948288, 1080217625,
103416003, 1658853652, 738247424, 3491304454, 12796002, 420742700,
3271582416, 335949056, 6594585, 103612611, 1687165204, 855688000,
3222844422, 12796002, 414189107, 3271582416, 2953196288, 6590488,
104005827, 1657805076, 855688000, 3491304454, 12796002, 420742707,
3271582400, 335950592, 1080315929, 104005827, 1682970900, 889242368,
3491279878, 12796002, 414451253, 3271582416, 335951104, 6574105,
104071363, 1682970804, 872465216, 1343796230, 12779620, 414189108,
3271582880, 335950848, 1080221721, 104071363, 1658853652, 872465152,
1343820806, 12796004, 420742708, 3271582800, 3020305920, 6590488,
104202435, 1682970808, 906019648, 1343797254, 12779620, 420742711,
3275776720, 335951616, 1080217625, 104267971, 1682970900, 922796800,
2685998086, 12779620, 414189113, 3271582800, 335952128, 1080315929,
104399043, 1682970900, 956351232, 2417562630, 12779620, 420742714,
3271582800, 335952384, 6594585, 104464579, 1687165204, 1090568960,
1343797254, 12796004, 414713409, 3271582800, 335954432, 6475801,
104988867, 1682970900, 1140900608, 1343796230, 12779620, 414451268,
3271582880, 3020309504, 1080332312, 105119939, 1656756400, 1140900608,
3222843398, 12779618, 414713412, 3275777104, 3087418368, 6574104,
105119939, 1657805076, 1140900672, 3491304454, 12796002, 414451269,
3275776704, 3020309760, 6574104, 105185475, 1688213684, 1157677888,
3491278854, 12796002, 414189125, 3275777104, 3087418624, 1080213528,
105185475, 1682970808, 1157677888, 3759714310, 12796002, 420742727,
3275776704, 335955712, 1080315929, 105251011, 1682970804, 1174455040,
2417538054, 12779620, 414189126, 3275777104, 2953201152, 6574104,
105251011, 1687165104, 1174455040, 2685998086, 12779620, 420742726,
3271582864, 335956480, 1080315929, 105513155, 1682970900, 671138560,
2685974534, 12779620, 414189098, 3271582880, 2953193984, 6590488,
103416003, 1688213688, 704692992, 2417539078, 12779620, 420742698,
3271582880, 335948288, 6590489, 103547075, 1688213780, 738247424,
2417538054, 12779620, 420742700, 3271582864, 3087414016, 6590488,
104136899, 1688213684, 872465152, 2685973510, 12779620, 414451254,
3271582880, 2953200640, 6594584, 105119939, 1688213780, 1241563904,
2685973510, 12779620, 414189130, 3271582880, 335956480, 6594585,
105185475, 1688213780, 1107346176, 2685998086, 12779620, 414451270,
3275777184, 335954432, 1080217625, 105119939, 1682970804, 956351232,
2685998086, 12779620, 420742723, 3275777184, 2953201152, 6475800,
105185475, 1688213688, 1140900672, 1343795206, 12779620, 420742723,
3271582800, 2953200640, 6574104, 105251011, 1657804976, 738247424,
2685973510, 12779620, 414189101, 3271582880, 2953200896, 6594584,
104923331, 1688213780, 671138560, 2685973510, 12796004, 420742723,
3275777104, 2953197824, 1080315928, 104136899, 1682970900, 855687936,
2685974534, 12779620, 414189126, 3267388576, 268842240, 3228377113,
104988866, 1830820112, 654377664, 1075384326, 26329188, 412877835,
2315281456, 738603265, 1080315920, 105185675, 1085282492, 1140952384,
1343808518, 16957540, 416024113, 2432722048, 3825470209, 2154053656,
105316754, 1686114348, 1140952256, 2954433542, 26034224, 421791300,
2369855664, 604390401, 3221356569, 105120137, 1685068048, 956303360,
2685997062, 26329188, 421527584, 2432721712, 738608385, 6471712, 2097553,
1681922224, 1140951488, 2954435590, 25968704, 412878540, 1111516224,
603991040, 1124077572, 805437506, 60818468, 989872704, 268706816,
4341762, 69468223, 1111687520, 607131392, 1107451908, 539295810,
20972580, 318784066, 4026803232, 4341765, 69468255, 1111491200,
603990272, 1074245636, 8192066, 20972580, 352338499, 271408, 4342529,
69480465, 1111687328, 607128320, 1124106244, 805896258, 12583972,
218120771, 3758367792, 4342528, 69480463, 1111492016, 134241536,
2181292036, 540934208, 65012744, 1040203906, 4026796064, 4227077,
67633247, 1136657904, 1006644224, 3271561220, 3014723, 61867068,
973095872, 4026809344, 4440067, 71041057, 1136787776, 1006643200,
3221393412, 8060995, 131073084, 335561664, 1342454832, 4440833, 71041059,
1136656992, 1006643712, 3221401604, 2949187, 62915644, 1040204736,
3489938432, 4440067, 71041116, 1136656960, 1006642432, 3221487620,
2097282, 551557420, 1258393600, 535558, 26411010, 8389131, 2193646800,
939532288, 2154521, 105775504, 33556524, 234984384, 4028170242, 8568932,
423624736, 2415927520, 738611201, 1073872904, 34472340, 1695553792,
536904384, 3759753216, 26214432, 69994066, 1119904272, 805708288,
3227656196, 102957122, 1647313968, 603996864, 1074016262, 4374626,
70256165, 1119904336, 805709312, 1080188932, 103153731, 1650459704,
654328512, 1879322630, 4374626, 70256168, 1128292992, 939927552,
3227680772, 103350338, 1653605424, 704660160, 2684628998, 4407394,
70780458, 1119904416, 805710592, 1080209412, 103481411, 1655702584,
738214592, 3221499910, 4407394, 70780460, 1119904448, 805711104,
1080217604, 103612483, 1657799736, 771769024, 3758370822, 4407394,
70780462, 1119904480, 805711616, 3227709444, 103809090, 1660945456,
822100672, 268709894, 4374627, 70256178, 1119904544, 805712640,
1080242180, 104005699, 1664091192, 872432320, 1074016262, 4407395,
70780468, 1119904576, 805713152, 1080250372, 104136771, 1666188344,
905986752, 1610887174, 4407395, 70780470, 1119904608, 805713664,
1080258564, 104267843, 1668285496, 939541184, 2147758086, 4407395,
70780472, 1119904640, 805714176, 1080266756, 104398915, 1670382648,
973095616, 2684628998, 4407395, 70780474, 1119904672, 805716224,
1080299524, 104923203, 1678771256, 1107313344, 537145350, 4407396,
70780482, 1119904800, 805716736, 1080307716, 105054275, 1680868408,
1140867776, 1074016262, 4407396, 70780484, 1119904832, 805717248,
1080315908, 105185347, 1682965560, 1174422208, 1610887174, 4407396,
70780486, 1119904864, 805717760, 1080324100, 105316419, 1685062712,
1207976640, 2147758086, 4374628, 70256201, 1119904912, 805718528,
1080336388, 105513027, 1688208440, 1140884160, 3222833158, 26279968,
137102882, 2294309952, 268569601, 3227660313, 105119874, 549460116,
620859648, 1074277382, 25804900, 420479500, 1107321456, 536879360,
139268, 2293826, 37749792, 620773888, 1610883072, 4325378, 69206055,
1107296896, 536881408, 172036, 2818114, 46138400, 754991616, 3758366720,
4325378, 69206063, 1107297024, 536883456, 204804, 3342402, 54527008,
889209344, 1610883072, 4325379, 69206071, 1107297152, 536885504, 237572,
3866690, 62915616, 1023427072, 3758366720, 4325379, 69206079, 1107297280,
536887552, 270340, 4390978, 71304224, 1157644800, 1610883072, 4325380,
69206087, 1107297408, 536889600, 303108, 4915266, 79692832, 1291862528,
3758366720, 4325380, 69206095, 1107297536, 536891648, 335876, 5439554,
88081440, 1426080256, 1610883072, 4325381, 69206103, 1107297664,
536893696, 368644, 5963842, 96470048, 1560297984, 3758366720, 4325381,
69206111, 1107297792, 536895744, 401412, 6488130, 104858656, 1694515712,
1610883072, 4325382, 69206119, 1107297920, 536897792, 434180, 7012418,
113247264, 1828733440, 3758366720, 4325382, 69206127, 1107298048,
536899840, 466948, 7536706, 121635872, 1962951168, 1610883072, 4325383,
69206135, 1107298176, 536901888, 499716, 8060994, 130024480, 2097168896,
3758366720, 4325383, 69216645, 1141020768, 1076888064, 50380804,
806158404, 1049664, 4211098627, 537149488, 4457231, 71315617, 1141049904,
1076929792, 51015684, 816382020, 238027840, 3841999875, 1879326768,
4457230, 71315651, 1141051328, 1076929024, 51003396, 816185412,
176161856, 2852144131, 2953068592, 4457226, 71315629, 1141050096,
1076932864, 51064836, 817168452, 191890496, 3103802371, 2953068592,
4457227, 71315645, 1141050352, 1076936960, 51134468, 818282564,
209716288, 3389015043, 2953068592, 4457228, 71315660, 1141050576,
1076940288, 51179524, 819068996, 223347776, 3623896067, 2953068592,
4457229, 71315678, 1141050864, 1076944896, 51253252, 820117572,
239076416, 3858777091, 2147762224, 4457230, 71315689, 1141051040,
1076947712, 51298308, 820838468, 250610752, 4076880899, 2416197680,
4457225, 71315610, 1141052992, 1076965632, 51585028, 825425988,
322962496, 889209859, 1610891313, 4457235, 71315767, 1141052288,
1076967680, 51617796, 825950276, 331351104, 1023427587, 3758374961,
4457235, 71315775, 1141052416, 1076969728, 51650564, 826474564,
339739712, 1157645315, 1610891313, 4457236, 71315783, 1141052544,
1076971776, 51683332, 826998852, 348128320, 1291863043, 3758374961,
4457236, 71315791, 1141052672, 1076973824, 51716100, 827523140,
356516928, 1426080771, 1610891313, 4457237, 71315799, 1141052800,
1076975872, 51748868, 828047428, 364905536, 1560298499, 3758374961,
4457237, 71315807, 1141052928, 1076977920, 51781636, 828571716,
169870368, 2734703104, 3221495808, 4325386, 69206191, 1107298912,
536913152, 34246660, 620888132, 419431488, 2432713730, 537149473,
4456985, 71311763, 1141004800, 2476800, 2433323016, 33571886, 195314284,
2768273425, 71493904, 1145847840, 134287655, 1238438688, 469893188,
288613453, 323420288, 537152861, 3125096000, 2416443668, 1160515915,
1390674432, 2148617172, 3172317184, 1075840086, 363808110, 2471495681,
4606993, 1464163330, 8396054, 1167446360, 1472208903, 30502516,
3709202440, 33584219, 386352508, 1593868317, 122013137, 1951907872,
134336882, 1499274128, 3892445300, 488003398, 3518693504, 537347513,
1853124352, 2953314769, 1952177435, 1190134272, 1100814071, 402669824,
2147753988, 4390977, 71304216, 1157644672, 1610881024, 4292612, 68681799,
1098908800, 402671872, 2147786756, 4915265, 79692824, 1291862400,
3758364672, 4292612, 68681807, 1098908928, 402673920, 2147819524,
5439553, 88081432, 1426080128, 1610881024, 4292613, 68681815, 1098909056,
402675968, 2147852292, 6357057, 102761496, 1660961152, 1074010112,
4292614, 68681829, 1098909280, 402679552, 2147909636, 6881345, 111150104,
1795178880, 3221493760, 4292614, 68681837, 1098909408, 402681600,
2147942404, 7405633, 119538712, 1929396608, 1074010112, 4292615,
68681845, 1098909536, 402683648, 2147975172, 7929921, 127927320,
1090535808, 537139200, 4292612, 68681795, 1098908736, 402670848,
2147770372, 4653121, 75498520, 1224753536, 2684622848, 4292612, 68681803,
1098908864, 402672896, 2147803140, 5177409, 83887128, 1358971264,
537139200, 4292613, 68681811, 1098908992, 402674944, 2147835908, 5701697,
92275736, 1493188992, 2684622848, 4292613, 68681825, 1098909216,
402678528, 2147893252, 6619201, 106955800, 1728070016, 2416187392,
4292614, 68681834, 1098909360, 402680832, 2147930116, 7209025, 116392984,
1879064960, 268703744, 4292615, 68681842, 1098909488, 402682880,
2147962884, 7733313, 124781592, 2013282688, 2416187392, 4292615,
68681850, 1098908688, 402670080, 2147758084, 4456513, 72352792,
1174421888, 1879316480, 4292612, 68681800, 1098908816, 402672128,
2147790852, 4980801, 80741400, 1308639616, 4026800128, 4292612, 68681808,
1098908944, 402674176, 2147823620, 5505089, 89130008, 1442857344,
1879316480, 4292613, 68681816, 1098909072, 402676224, 2147880964,
6422593, 103810072, 1677738368, 1342445568, 4292614, 68681830,
1098909296, 402679808, 2147913732, 6946881, 112198680, 1811956096,
3489929216, 4292614, 68681838, 1098909424, 402681856, 2147946500,
7471169, 120587288, 1946173824, 1342445568, 4292615, 68681846,
1098909552, 402683904, 2147979268, 7995457, 68158488, 1124090240,
1074010112, 4292612, 68681799, 1098908832, 402672384, 2147803140,
5177409, 83887128, 1358971264, 805574656, 4292613, 68681812, 1098909008,
402675200, 2147840004, 5767233, 93324312, 1509966208, 268703744, 4292614,
68681826, 1098909232, 402678784, 2147901444, 6815809, 110101528,
1778401664, 2953058304, 4292614, 68681836, 1098909392, 402681344,
2147942404, 7405633, 119538712, 1929396608, 1074010112, 4292615,
68681845, 1098909536, 402683648, 2147975172, 7929921, 127927320,
1090535808, 537139200, 4292612, 68681795, 1098908736, 402670848,
2147770372, 4653121, 75498520, 1224753536, 2684622848, 4292612, 68681803,
1098908864, 402672896, 2147803140, 5177409, 83887128, 1358971264,
537139200, 4292613, 68681811, 1098908992, 402674944, 2147835908, 5701697,
92275736, 1493188992, 2684622848, 4292613, 68681825, 1098909216,
402678528, 2147893252, 6619201, 106955800, 1728070016, 2147751936,
4292614, 68681833, 1098909344, 402680576, 2147926020, 7143489, 115344408,
1862287744, 268288, 4292615, 68681841, 1098909472, 402682624, 2147958788,
7667777, 123733016, 1996505472, 2147751936, 4292615, 68681849,
1098909600, 402669824, 2147753988, 4456513, 72352792, 1174421888,
1879316480, 4292612, 68681802, 1098908848, 402672640, 2147799044,
5111873, 82838552, 1342194048, 268703744, 4292613, 68681811, 1098908992,
402674944, 2147835908, 5701697, 92275736, 1493188992, 268703744, 4292614,
68681826, 1098909232, 402678784, 2147897348, 6684737, 108004376,
1744847232, 2416187392, 4292614, 68681834, 1098909360, 402680832,
2147930116, 7209025, 116392984, 1879064960, 268703744, 4292615, 68681842,
1098909488, 402682880, 2147962884, 7733313, 124781592, 2013282688,
2416187392, 4292615, 68681850, 1098908688, 402670080, 2147762180,
4522049, 73401368, 1191199104, 2416187392, 4292612, 68681802, 1098908848,
402672640, 2147799044, 5177409, 87032856, 1409302912, 1342445568,
4292613, 68681814, 1098909040, 402675712, 2147848196, 6357057, 102761496,
1660961152, 1074010112, 4292614, 68681829, 1098909280, 402679552,
2147909636, 6881345, 111150104, 1795178880, 3221493760, 4292614,
68681837, 1098909408, 402681600, 2147942404, 7405633, 119538712,
1929396608, 1074010112, 4292615, 68681845, 1098909536, 402683648,
2147975172, 7929921, 127927320, 1090535808, 537139200, 4292612, 68681795,
1098908736, 402670848, 2147770372, 4653121, 75498520, 1224753536,
2684622848, 4292612, 68681803, 1098908864, 402672896, 2147803140,
5177409, 83887128, 1358971264, 537139200, 4292613, 68681811, 1098908992,
402674944, 2147835908, 5701697, 92275736, 1493188992, 2684622848,
4292613, 68681825, 1098909216, 402678528, 2147893252, 6619201, 106955800,
1728070016, 2147751936, 4292614, 68681833, 1098909344, 402680576,
2147926020, 7143489, 115344408, 1862287744, 268288, 4292615, 68681841,
1098909472, 402682624, 2147958788, 7667777, 123733016, 1996505472,
2147751936, 4292615, 68681849, 1098909600, 402669824, 2147753988,
4390977, 71304216, 1157644672, 1610881024, 4292612, 68681799, 1098908800,
402671872, 2147786756, 4915265, 79692824, 1291862400, 3758364672,
4292612, 68681807, 1098908928, 402673920, 2147819524, 5439553, 88081432,
1426080128, 1610881024, 4292613, 68681815, 1098909056, 402675968,
2147852292, 6357057, 102761496, 1660961152, 1074010112, 4292614,
68681829, 1098909280, 402679552, 2147909636, 6881345, 111150104,
1795178880, 3221493760, 4292614, 68681837, 1098909408, 402681600,
2147942404, 7405633, 119538712, 1929396608, 1074010112, 4292615,
68681845, 1098909536, 402683648, 2147975172, 7929921, 127927320,
1090535808, 537139200, 4292612, 68681795, 1098908736, 402670848,
2147770372, 4653121, 75498520, 1224753536, 2684622848, 4292612, 68681803,
1098908864, 402672896, 2147803140, 5177409, 83887128, 1358971264,
537139200, 4292613, 68681811, 1098908992, 402674944, 2147835908, 5701697,
92275736, 1493188992, 2684622848, 4292613, 68681825, 1098909216,
402678528, 2147893252, 6619201, 106955800, 1728070016, 2147751936,
4292614, 68681833, 1098909344, 402680576, 2147926020, 7143489, 115344408,
1862287744, 268288, 4292615, 68681841, 1098909472, 402682624, 2147958788,
7667777, 123733016, 1996505472, 2147751936, 4292615, 68681849,
1098909600, 402669824, 2147753988, 4390977, 71304216, 1157644672,
1610881024, 4292612, 68681799, 1098908800, 402671872, 2147786756,
4915265, 79692824, 1291862400, 3758364672, 4292612, 68681807, 1098908928,
402673920, 2147819524, 5439553, 88081432, 1426080128, 1610881024,
4292613, 68681815, 1098909056, 402675968, 2147852292, 6357057, 102761496,
1660961152, 1074010112, 4292614, 68681829, 1098909280, 402679552,
2147909636, 6881345, 111150104, 1795178880, 3221493760, 4292614,
68681837, 1098909408, 402681600, 2147942404, 7405633, 119538712,
1929396608, 1074010112, 4292615, 68681845, 1098909536, 402683648,
2147975172, 7929921, 127927320, 1090535808, 537139200, 4292612, 68681795,
1098908736, 402670848, 2147770372, 4653121, 75498520, 1224753536,
2684622848, 4292612, 68681803, 1098908864, 402672896, 2147803140,
5177409, 83887128, 1358971264, 537139200, 4292613, 68681811, 1098908992,
402674944, 2147835908, 5701697, 92275736, 1493188992, 2684622848,
4292613, 68681825, 1098909216, 402678528, 2147893252, 6619201, 106955800,
1728070016, 2147751936, 4292614, 68681833, 1098909344, 402680576,
2147926020, 7143489, 115344408, 1862287744, 268288, 4292615, 68681841,
1098909472, 402682624, 2147958788, 7667777, 123733016, 1996505472,
2147751936, 4292615, 68681849, 1098909600, 402669824, 2147753988,
4390977, 71304216, 1157644672, 1610881024, 4292612, 68681799, 1098908800,
402671872, 2147786756, 4915265, 79692824, 1291862400, 3758364672,
4292612, 68681807, 1098908928, 402673920, 2147819524, 5439553, 88081432,
1426080128, 1610881024, 4292613, 68681815, 1098909056, 402675968,
2147852292, 6357057, 102761496, 1660961152, 1074010112, 4292614,
68681829, 1098909280, 402679552, 2147909636, 6881345, 111150104,
1795178880, 3221493760, 4292614, 68681837, 1098909408, 402681600,
2147942404, 7405633, 119538712, 1929396608, 1074010112, 4292615,
68681845, 1098909536, 402683648, 2147975172, 7929921, 127927320,
822100352, 1879316481, 4292643, 68682641, 1098922272, 402887424,
2151235588, 60096577, 962593816, 2533376384, 2147751939, 4292665,
68682649, 1098922400, 402889472, 2151268356, 60620865, 970982424,
2667594112, 268291, 4292666, 68682657, 1098923840, 402891520, 2151301124,
61145153, 979371032, 2801811840, 2147751939, 4292666, 68682665,
1099047024, 402895104, 2151358468, 62062657, 994051096, 3036692864,
1610881027, 4292667, 68682679, 1098922880, 402897152, 2151391236,
62586945, 1002439704, 3170910592, 3758364675, 4292667, 68682687,
1098923008, 402899200, 2151424004, 63111233, 1010828312, 3305128320,
1610881027, 4292668, 68682695, 1098923136, 402901248, 2183143428,
66388033, 1024459800, 4026548608, 1342445571, 4292669, 68682737,
1098923360, 402886912, 2151227396, 59965505, 960496664, 2499821952,
1610881027, 4292665, 68682647, 1098922368, 402888960, 2151260164,
60489793, 968885272, 2634039680, 3758364675, 4292665, 68682655,
1098922496, 402891008, 2151628804, 61014081, 977273880, 2768257408,
1610881027, 4292666, 68682663, 1098922624, 402893056, 2183163908,
61931585, 991953944, 3003138432, 1074010115, 4292667, 68682677,
1098922848, 402896640, 2151383044, 62455873, 1000342552, 3137356160,
3221493763, 4292667, 68682685, 1098922976, 402898688, 2151415812,
62980161, 1008731160, 3271573888, 1074010115, 4292668, 68682693,
1098923104, 402900736, 2151448580, 63504449, 538969112, 4110434690,
268703747, 4292669, 68682736, 1098923344, 402911488, 2151505924,
59834433, 958399512, 2466267520, 1074010115, 4292665, 68682645,
1098922336, 402888448, 2151251972, 60358721, 966788120, 2600485248,
3221493763, 4292665, 68682653, 1098922464, 402890496, 2151284740,
60883009, 1061159960, 2734702976, 1074010115, 4292666, 68682661,
1098922592, 402892544, 2151317508, 61407297, 544211992, 2969584002,
537139203, 4292667, 68682675, 1098922816, 402896128, 2151374852,
62324801, 998245400, 3103801728, 2684622851, 4292667, 68682683,
1098922944, 402898176, 2151407620, 62849089, 1006634008, 3238019456,
537139203, 4292668, 68682691, 1098923072, 402900224, 2151440388,
63373377, 1015022616, 3372237184, 537139203, 4293152, 68682741,
1098923280, 402911232, 2151501828, 66125889, 1029702680, 2432713088,
537139203, 4292665, 68682643, 1098922304, 402887936, 2151243780,
60227649, 964690968, 2566930816, 2684622851, 4292665, 68682651,
1098922432, 402889984, 2151276548, 60751937, 973079576, 2701148544,
1074010115, 4292671, 68682659, 1098922560, 402892032, 2151309316,
61276225, 981468184, 2835366272, 1879316483, 4293152, 68682673,
1098922784, 402895616, 2151366660, 62193729, 996148248, 3070247296,
2147751939, 4292667, 68682681, 1098922912, 402897664, 2151399428,
62718017, 1004536856, 3204465024, 268291, 4292668, 68682689, 1098923040,
402899712, 2151432196, 63242305, 1012925464, 3338682752, 2147751939,
4292668, 68682697, 1099046944, 402912512, 2151485444, 66060353,
1028654104, 4043325824, 1610881027, 4292669, 68682641, 1098922272,
402887424, 2151235588, 60096577, 962593816, 2533376384, 2147751939,
4292665, 68682649, 1098922400, 402889472, 2151268356, 60620865,
970982424, 2667594112, 268291, 4292666, 68682657, 1098923840, 402891520,
2151301124, 61145153, 979371032, 2801811840, 2147751939, 4292666,
68682665, 1099047024, 402895104, 2151358468, 62062657, 994051096,
3036692864, 1610881027, 4292667, 68682679, 1098922880, 402897152,
2151391236, 62586945, 1002439704, 3170910592, 3758364675, 4292667,
68682687, 1098923008, 402899200, 2151424004, 63111233, 1010828312,
3305128320, 1610881027, 4292668, 68682695, 1098923136, 402901248,
2183143428, 66388033, 1024459800, 4026548608, 1342445571, 4292669,
68682737, 1098923360, 402906112, 2151534596, 3145793, 51381272,
838877568, 805574656, 4292611, 68681780, 1098908496, 402667008,
2147708932, 3670081, 59769880, 805323136, 268703744, 4292611, 68681778,
1098908464, 402666496, 2147700740, 3539009, 57672728, 939540864,
2416187392, 4292611, 68681776, 1098908432, 402665984, 2147692548,
3407937, 55575576, 905986432, 1879316480, 4292611, 68681784, 1098908560,
402665472, 2147684356, 3276865, 53478424, 872432000, 1342445568, 4292611,
68681782, 1098908528, 402667520, 2147717124, 3145793, 51381272,
838877568, 805574656, 4292611, 68681780, 1098908496, 402667008,
2147708932, 3670081, 59769880, 654328192, 2147751942, 4292706, 68683308,
1098932976, 403064832, 2153979908, 103612481, 1668285464, 1241530752,
805574662, 4292708, 68683332, 1098933328, 403064320, 2153984004,
104398913, 1678771224, 889209216, 537139206, 4292708, 68683313,
1098933056, 403057152, 2153951236, 103678017, 1660945432, 905986432,
2147751942, 4292707, 68683322, 1098933984, 403094016, 2154434564,
107937857, 1652556824, 738214272, 1879316486, 4292708, 68683309,
1098933408, 403063552, 2154053636, 105185345, 1684014104, 855654784,
2416187398, 4292707, 68683329, 1098933072, 403063296, 2153988100,
103415873, 1655702552, 771768704, 1610881030, 4292707, 68683322,
1098932928, 403057920, 2154078212, 105119809, 1684014104, 855654784,
2416187398, 4292707, 68683317, 1098933280, 403059712, 2153963524,
104202305, 1671431192, 3120578944, 4026800134, 4292710, 68683304,
1098932928, 403064576, 2153959428, 104267841, 1688208408, 1124090240,
1342445574, 4292708, 68683334, 1098933040, 403060992, 2154041348,
104136769, 1679819800, 872432000, 2684622854, 4292706, 68683307,
1098932960, 403060224, 2154004484, 104464449, 1725957144, 2701148544,
1879316486, 4292706, 68683304, 1098932928, 403058432, 2154065924,
105381953, 1663042584, 754991488, 1879316486, 4292707, 68683338,
1098933312, 403064064, 2154061828, 104005697, 1670382616, 1090535808,
1342445574, 4292707, 68683330, 1098933008, 403059712, 2153947140,
103481409, 1658848280, 805323136, 1610881030, 4292707, 68683320,
1098933152, 403056640, 2153955332, 103743553, 1686111256, 838877568,
3489929222, 4292706, 68683319, 1098933408, 403063808, 2154057732,
105250881, 1664091160, 956318080, 268703750, 4292708, 68683317,
1098933280, 403058944, 2153988100, 103415873, 1655702552, 771768704,
268294, 4292707, 68683318, 1098933120, 134625792, 2147680264, 33685515,
46137536, 822116480, 536915968, 819232, 134742060, 184550192, 3489792512,
2147663872, 3473536, 538968240, 738200960, 1879574528, 720899, 14680578,
2155872960, 2952804608, 3153920, 4259850, 807403684, 1107298816,
536912896, 655408, 10747971, 167784480, 2751480832, 3153920, 4521994,
807403684, 1174407680, 536912896, 655408, 10747975, 167784480,
2751481856, 3153920, 4784138, 807403684, 1241516544, 536912896, 655408,
10747979, 167784480, 2751482880, 3153920, 5046282, 807403684, 1308625408,
536912896, 655408, 10747983, 167784480, 2751483904, 3153920, 5308426,
807403684, 1375734272, 536912896, 655408, 10747987, 167784480,
2751484928, 3153920, 5570570, 807403684, 1442843136, 536912896, 655408,
10747991, 167784480, 2751485952, 3153920, 5832714, 807403684, 1509952000,
536912896, 201654320, 3226730579, 281022576, 1208026880, 3223351297,
4456464, 91228188, 167777920, 2684421121, 1081360, 17563914, 285216928,
335612416, 2148573185, 17432593, 278921500, 167776768, 2684429313,
1212432, 19661066, 318771360, 872483328, 2148573185, 17432595, 278921532,
167777280, 2684437505, 1343504, 21758218, 352325792, 1409354240,
2148573185, 17432597, 278921564, 167777792, 2684445697, 1474576,
18874890, 2189428064, 1476414720, 3223363585, 4456468, 87033896,
167777472, 81923, 1409029, 22807050, 2160067632, 201346304, 1075851265,
4456467, 80742412, 167777408, 2684424194, 8552452, 3240898683, 750788768,
674280204, 2198556676, 1649082434, 3044017192, 3422569093, 1879320659,
4358924, 69750412, 1116049824, 680125184, 2240974852, 1319370818,
1644168232, 553665158, 2416191601, 4359769, 69751373, 1116076224,
676433152, 2254110724, 1377632322, 3558868008, 520110727, 2416191605,
4360394, 69753072, 1116029840, 678368256, 2250854404, 1666515010,
3758097448, 151011972, 2684627022, 4360452, 69754342, 1116005072,
676590336, 2251321348, 2372927554, 623903784, 2164277894, 2684627065,
4360103, 69751816, 1116137472, 677841152, 2255519748, 1966276674,
656409640, 3053470341, 3489933397, 12618004, 2628792340, 3229811025,
607130624, 2197901624, 806617280, 22100528, 335593603, 1366172720,
12616449, 3269734420, 3229811025, 1278219264, 2197901705, 806617280,
22141788, 335593603, 1363899440, 12616449, 2505846804, 1103298897,
476026624, 2235494404, 3145793, 51381272, 838877568, 805574656, 4292611,
68681780, 1098908496, 402667008, 2147708932, 3670081, 59769880,
1023426560, 2147745870, 4195555, 67128897, 1075843616, 5201920, 83550212,
1337655360, 2098176, 2046836741, 2416181328, 4195593, 67129575,
1074072816, 3448320, 543399940, 1364000832, 356516864, 1677737989,
1879310417, 4195607, 67241244, 1073957776, 5334784, 85512196, 88801344,
426771458, 2751479813, 3221487697, 4195564, 67129772, 1074076496,
43114240, 85938180, 1375928384, 1307575296, 989872131, 1610874962,
4195620, 67129970, 1074079600, 3478784, 86798340, 1388904512, 775947264,
4194320389, 1342439506, 4195632, 67130118, 1074082160, 5458176, 87363588,
1398407232, 925893632, 2097168389, 4026794067, 4195639, 67130239,
1074083824, 34221056, 117899268, 1405747264, 1039139840, 1660960773,
2953052683, 4195646, 67130353, 1074085984, 5545472, 88309764, 1414004800,
1182794752, 2717925381, 1610874964, 4195663, 67130640, 1074091312,
5595904, 89669636, 1434714176, 1502610432, 2868920325, 805568597,
4195675, 67130818, 1074098528, 5637632, 91320324, 1448149056, 1732248576,
117456901, 3758358610, 4195726, 67131342, 1074102080, 5770496, 91795460,
1479671872, 2198864896, 2885697541, 1074004056, 4202830, 67131634,
1074106224, 5834240, 93429764, 1495400512, 2518680576, 2818588677,
2684617238, 4202862, 67131884, 1074110896, 5908224, 94208004, 1516634176,
1860174848, 4227874819, 2147745846, 4195760, 67132222, 1074115552,
35244032, 96219140, 1540882496, 3195012096, 4076879877, 2147745883,
4202929, 67132415, 1074118752, 6247168, 96608260, 931201088, 3321889792,
1845510149, 262236, 4195788, 67132557, 1075961408, 6112000, 568221700,
1567490112, 3601859584, 2080391173, 268697693, 4195806, 67132898,
1073971952, 6159616, 98729988, 1581056064, 3868197888, 1644183557,
805568568, 4203032, 67123324, 1074129664, 6206208, 99311620, 1590296640,
958399488, 4261429290, 268697694, 4203059, 67248945, 1074274320, 6234624,
99753988, 952565824, 729809920, 3657449507, 537133665, 4195830, 67133291,
1073974832, 6265344, 100454404, 1607925824, 4287628288, 2164277253,
2684616800, 4195219, 67123484, 1074137408, 36099072, 101478404,
1632108608, 348128256, 1308639238, 3221487713, 4195860, 67133818,
1074141408, 6402560, 102383620, 1638858816, 501220352, 4060102662,
1610874977, 4195871, 67133968, 1074143664, 6446336, 103485444,
1658060864, 889193472, 201342982, 3489923627, 4195891, 67134204,
1074148992, 6521600, 104742916, 737214528, 1109394434, 3305127942,
2416181347, 4195898, 67123758, 1074153104, 6585856, 105500676,
1685520448, 2797601792, 1325416451, 3221487717, 4195926, 67252234,
1074159152, 6748160, 107253764, 991494208, 1762657280, 134234118,
1074004027, 4195246, 67129746, 1074075984, 6750208, 107593732,
2158821440, 1032848384, 385892356, 2953052263, 4195953, 67135265,
1074165216, 6771456, 591147012, 994639936, 2141193216, 2231386118,
537133159, 4195973, 67135621, 1076053712, 6852096, 109178884, 1762918464,
3117417472, 1107312643, 805568617, 4195994, 67135978, 1074178688,
37135104, 112046084, 1008205888, 2987394048, 2801811462, 1074004536,
4196021, 67124302, 1074181920, 7053056, 112959492, 1807417408,
2832204800, 184565795, 2684617245, 4203439, 67136590, 1076087744,
7126784, 114085892, 1818689600, 3512730624, 1040203782, 1879310445,
4196055, 67136833, 1074189968, 7174144, 114839556, 1025376320,
3544187906, 788545542, 3758358638, 4196070, 67124531, 1074195632,
7259904, 602738692, 1845035072, 4141876224, 1577074694, 3758359103,
4203512, 67137478, 1074201488, 7347712, 117551108, 1033240640, 77595648,
2097168391, 1879310448, 4196103, 67137709, 1075860048, 7423232,
606482436, 1906049088, 984613888, 671105060, 1342439538, 4196131,
67138128, 1076125824, 7503872, 120147972, 1194655808, 2168456194,
2046836772, 2953052275, 4196152, 67124908, 1074215504, 4110336, 65765380,
1950810176, 1170211840, 1895841799, 1342439540, 4196168, 67138762,
1074000304, 7676928, 616783876, 1966997568, 3374318592, 1879064612,
4026794101, 4203033, 67139088, 1076165136, 38778880, 621035524,
1073479744, 8389632, 4093657092, 805568630, 4203791, 67260658,
1076171152, 38875904, 124903428, 1998520384, 1911555072, 1241530375,
2416181367, 4195331, 67139467, 1074005088, 4232704, 625070084,
2018377792, 2294285312, 3422568455, 805568632, 4195342, 67261990,
1074238816, 39229952, 627855364, 2039414848, 2662335488, 788545543,
262209, 4196260, 67140170, 1074242800, 39418880, 631926788, 1520894016,
2933916674, 33570823, 2953052226, 4203962, 67140550, 1074248848, 4335360,
633864196, 2094137408, 704644096, 3892330500, 805568636, 4196302,
67140864, 1076230240, 8217344, 70258692, 2110193728, 3760194560,
1157644295, 1074004094, 4195379, 67265064, 1076241520, 4413696,
640520196, 2138701888, 870319104, 2499821606, 2684616831, 4196351,
67141637, 1076252064, 40182528, 134610948, 1705508928, 117441538,
1593851912, 1342439987, 4195389, 67141810, 1074270256, 4459264,
135520260, 1521811520, 2054161408, 3036692518, 805569127, 4203321,
67253148, 1074274320, 8520704, 150593540, 1147863104, 688915456,
2332049416, 3489923202, 4196393, 67130035, 1074277136, 8565504,
137089028, 2196111424, 3015705600, 3841998886, 3489923202, 4196401,
67142499, 1074281168, 8594176, 138137604, 2212954176, 1164968960,
1392525320, 2684616835, 4196412, 67142604, 1074281920, 40646144,
651603972, 1825898560, 1387267074, 4043325444, 805568644, 4196431,
67142934, 1076313248, 8741888, 653443076, 1163722816, 1443890176,
2969583620, 537133679, 4204301, 67126635, 1074291968, 8805376, 140931076,
2255028288, 1787823104, 2281717768, 3758358662, 4196464, 67143394,
1074296720, 8857600, 141996036, 2273706048, 1567622144, 3774889988,
268697735, 4196480, 67126777, 1074300416, 8938240, 661024772, 2295791680,
2380268544, 889208840, 2684616774, 4196495, 67122363, 1076333280,
41510400, 74178564, 1187446848, 2852127744, 3976216584, 2684616842,
4196536, 67144789, 1076349568, 9218816, 147591172, 2367356992,
3614442496, 788545544, 1074004607, 4202624, 67145163, 1074322368,
9302016, 546168836, 2396258368, 4085253120, 3523231752, 3489923717,
4204638, 67145876, 1074335504, 9507072, 678617092, 2434465856, 595592192,
3607117833, 2147745938, 4196653, 67146364, 1074347920, 9704704,
683646980, 2508914752, 2572157952, 3070246916, 1879310485, 4204759,
67127782, 1074359344, 6140416, 158478340, 2437218368, 564134914,
1845510185, 1610874954, 4195495, 67147744, 1076445344, 4895232,
692674564, 2550857792, 2159019008, 687882249, 1610875032, 4204891,
67148002, 1074049840, 10037504, 161116164, 2579628096, 2682258432,
3456122889, 262219, 4204979, 67148562, 1074381824, 10288384, 80535556,
1290600512, 3597665280, 3456122889, 2147746464, 4195535, 67281157,
1076502752, 44208384, 166440964, 1297481792, 4019192832, 4261429257,
1342439582, 4196848, 67149583, 1074393440, 10435328, 710934532,
};
unsigned char _PyUnicode_DecompIndex1[8704];
static const unsigned char _PyUnicode_DecompIndex1_rodata[159+1][2] = { /* 3.65349% profit */
{ 1, 0x00},
{ 1, 0x01},
{ 1, 0x02},
{ 1, 0x03},
{ 1, 0x04},
{ 1, 0x05},
{ 1, 0x06},
{ 1, 0x07},
{ 1, 0x08},
{ 1, 0x09},
{ 1, 0x00},
{ 1, 0x0a},
{ 1, 0x0b},
{ 1, 0x0c},
{ 4, 0x00},
{ 1, 0x0d},
{ 1, 0x0e},
{ 1, 0x0f},
{ 1, 0x00},
{ 1, 0x10},
{ 1, 0x11},
{ 1, 0x12},
{ 1, 0x13},
{ 1, 0x14},
{ 1, 0x15},
{ 1, 0x16},
{ 1, 0x17},
{ 1, 0x18},
{ 1, 0x19},
{ 1, 0x1a},
{ 1, 0x1b},
{ 20, 0x00},
{ 1, 0x1c},
{ 3, 0x00},
{ 1, 0x1d},
{ 1, 0x1e},
{ 1, 0x1f},
{ 1, 0x20},
{ 1, 0x21},
{ 1, 0x22},
{ 1, 0x23},
{ 1, 0x24},
{ 1, 0x25},
{ 1, 0x26},
{ 1, 0x27},
{ 1, 0x28},
{ 1, 0x29},
{ 1, 0x00},
{ 1, 0x2a},
{ 1, 0x2b},
{ 10, 0x00},
{ 1, 0x2c},
{ 1, 0x2d},
{ 2, 0x00},
{ 1, 0x2e},
{ 1, 0x00},
{ 1, 0x2f},
{ 2, 0x00},
{ 1, 0x30},
{ 1, 0x31},
{ 1, 0x32},
{ 1, 0x33},
{ 1, 0x34},
{ 1, 0x35},
{ 1, 0x36},
{ 1, 0x37},
{ 1, 0x38},
{ 1, 0x39},
{ 1, 0x3a},
{229, 0x00},
{ 1, 0x3b},
{ 1, 0x3c},
{ 1, 0x3d},
{ 6, 0x00},
{ 1, 0x3e},
{155, 0x00},
{ 1, 0x3f},
{ 1, 0x40},
{ 1, 0x41},
{ 1, 0x42},
{ 1, 0x43},
{ 1, 0x44},
{ 1, 0x45},
{ 1, 0x46},
{ 1, 0x47},
{ 1, 0x48},
{ 1, 0x49},
{ 1, 0x4a},
{ 1, 0x4b},
{ 1, 0x4c},
{ 33, 0x00},
{ 1, 0x4d},
{ 1, 0x4e},
{ 3, 0x00},
{ 1, 0x4f},
{ 2, 0x00},
{ 1, 0x50},
{ 1, 0x00},
{ 1, 0x51},
{ 6, 0x00},
{ 1, 0x52},
{255, 0x00},
{112, 0x00},
{ 1, 0x53},
{ 1, 0x54},
{ 4, 0x00},
{ 1, 0x55},
{ 1, 0x56},
{ 1, 0x57},
{ 1, 0x58},
{ 1, 0x59},
{ 1, 0x5a},
{ 1, 0x5b},
{ 1, 0x5c},
{ 44, 0x00},
{ 1, 0x5d},
{ 1, 0x5e},
{ 4, 0x00},
{ 1, 0x5f},
{ 1, 0x60},
{ 1, 0x61},
{ 18, 0x00},
{ 1, 0x62},
{255, 0x00},
{249, 0x00},
{ 1, 0x63},
{ 1, 0x64},
{ 1, 0x65},
{ 1, 0x66},
{ 1, 0x67},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{255, 0x00},
{ 39, 0x00},
{0},
};
static textstartup void _PyUnicode_DecompIndex1_init(void) {
rldecode2(_PyUnicode_DecompIndex1, (void *)_PyUnicode_DecompIndex1_rodata);
}
const void *const _PyUnicode_DecompIndex1_ctor[] initarray = {
_PyUnicode_DecompIndex1_init,
};
const unsigned short _PyUnicode_DecompIndex2[13312] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
3, 0, 6, 0, 0, 0, 0, 8, 0, 0, 11, 13, 15, 18, 0, 0, 20, 23, 25, 0, 27,
31, 35, 0, 39, 42, 45, 48, 51, 54, 0, 57, 60, 63, 66, 69, 72, 75, 78, 81,
0, 84, 87, 90, 93, 96, 99, 0, 0, 102, 105, 108, 111, 114, 0, 0, 117, 120,
123, 126, 129, 132, 0, 135, 138, 141, 144, 147, 150, 153, 156, 159, 0,
162, 165, 168, 171, 174, 177, 0, 0, 180, 183, 186, 189, 192, 0, 195, 198,
201, 204, 207, 210, 213, 216, 219, 222, 225, 228, 231, 234, 237, 240,
243, 0, 0, 246, 249, 252, 255, 258, 261, 264, 267, 270, 273, 276, 279,
282, 285, 288, 291, 294, 297, 300, 303, 0, 0, 306, 309, 312, 315, 318,
321, 324, 327, 330, 0, 333, 336, 339, 342, 345, 348, 0, 351, 354, 357,
360, 363, 366, 369, 372, 0, 0, 375, 378, 381, 384, 387, 390, 393, 0, 0,
396, 399, 402, 405, 408, 411, 0, 0, 414, 417, 420, 423, 426, 429, 432,
435, 438, 441, 444, 447, 450, 453, 456, 459, 462, 465, 0, 0, 468, 471,
474, 477, 480, 483, 486, 489, 492, 495, 498, 501, 504, 507, 510, 513,
516, 519, 522, 525, 528, 531, 534, 537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 539, 542,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 545, 548, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 551, 554, 557, 560, 563, 566, 569, 572,
575, 578, 581, 584, 587, 590, 593, 596, 599, 602, 605, 608, 611, 614,
617, 620, 623, 0, 626, 629, 632, 635, 638, 641, 0, 0, 644, 647, 650, 653,
656, 659, 662, 665, 668, 671, 674, 677, 680, 683, 686, 689, 0, 0, 692,
695, 698, 701, 704, 707, 710, 713, 716, 719, 722, 725, 728, 731, 734,
737, 740, 743, 746, 749, 752, 755, 758, 761, 764, 767, 770, 773, 776,
779, 782, 785, 788, 791, 794, 797, 0, 0, 800, 803, 0, 0, 0, 0, 0, 0, 806,
809, 812, 815, 818, 821, 824, 827, 830, 833, 836, 839, 842, 845, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 848, 850, 852, 854, 856, 858, 860, 862, 864, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 866,
869, 872, 875, 878, 881, 0, 0, 884, 886, 888, 890, 892, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 894, 896, 0, 898, 900, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 903, 0, 0, 0, 0,
0, 905, 0, 0, 0, 908, 0, 0, 0, 0, 0, 910, 913, 916, 919, 921, 924, 927,
0, 930, 0, 933, 936, 939, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 942, 945, 948, 951, 954, 957, 960, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 963, 966,
969, 972, 975, 0, 978, 980, 982, 984, 987, 990, 992, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 994, 996, 998, 0,
1000, 1002, 0, 0, 0, 1004, 0, 0, 0, 0, 0, 0, 1006, 1009, 0, 1012, 0, 0,
0, 1015, 0, 0, 0, 0, 1018, 1021, 1024, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1027, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1030, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1033, 1036, 0, 1039, 0, 0, 0, 1042, 0, 0, 0,
0, 1045, 1048, 1051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1054, 1057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1060, 1063, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1066, 1069, 1072, 1075, 0, 0, 1078, 1081, 0, 0, 1084, 1087,
1090, 1093, 1096, 1099, 0, 0, 1102, 1105, 1108, 1111, 1114, 1117, 0, 0,
1120, 1123, 1126, 1129, 1132, 1135, 1138, 1141, 1144, 1147, 1150, 1153,
0, 0, 1156, 1159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1162, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1165, 1168, 1171, 1174, 1177, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1180, 1183, 1186, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1192, 0, 1195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1201, 0, 0, 0,
0, 0, 0, 0, 1204, 0, 0, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1210,
1213, 1216, 1219, 1222, 1225, 1228, 1231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1234, 1237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1240, 1243,
0, 1246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1249, 0, 0, 1252, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1255, 1258, 1261, 0, 0, 1264, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1267, 0, 0, 1270, 1273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1276, 1279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1285, 1288, 1291, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1297, 0, 0, 0, 0, 0, 0, 1300, 1303, 0, 1306, 1309, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1312, 1315, 1318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1321, 0, 1324, 1327, 1330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 1339, 1342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 1345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1347, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1350, 0, 0, 0, 0, 1353, 0, 0, 0, 0, 1356, 0, 0, 0, 0, 1359, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1365, 0,
1368, 1371, 1374, 1377, 1380, 0, 0, 0, 0, 0, 0, 0, 1383, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1386, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1389, 0, 0, 0, 0, 1392, 0, 0, 0, 0, 1395, 0, 0, 0, 0, 1398, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1401, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1404,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1407, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1409, 0, 1412, 0, 1415, 0, 1418, 0, 1421, 0, 0,
0, 1424, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1427, 0, 1430,
0, 0, 1433, 1436, 0, 1439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1442, 1444, 1446, 0,
1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 0,
1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492,
1494, 1496, 1498, 1500, 1502, 1504, 0, 1506, 1508, 1510, 1512, 1514,
1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538,
1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1562, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586,
1588, 1590, 1592, 1594, 1596, 1598, 1600, 1602, 1604, 1606, 1608, 1610,
1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634,
1636, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1638, 1641, 1644,
1647, 1650, 1653, 1656, 1659, 1662, 1665, 1668, 1671, 1674, 1677, 1680,
1683, 1686, 1689, 1692, 1695, 1698, 1701, 1704, 1707, 1710, 1713, 1716,
1719, 1722, 1725, 1728, 1731, 1734, 1737, 1740, 1743, 1746, 1749, 1752,
1755, 1758, 1761, 1764, 1767, 1770, 1773, 1776, 1779, 1782, 1785, 1788,
1791, 1794, 1797, 1800, 1803, 1806, 1809, 1812, 1815, 1818, 1821, 1824,
1827, 1830, 1833, 1836, 1839, 1842, 1845, 1848, 1851, 1854, 1857, 1860,
1863, 1866, 1869, 1872, 1875, 1878, 1881, 1884, 1887, 1890, 1893, 1896,
1899, 1902, 1905, 1908, 1911, 1914, 1917, 1920, 1923, 1926, 1929, 1932,
1935, 1938, 1941, 1944, 1947, 1950, 1953, 1956, 1959, 1962, 1965, 1968,
1971, 1974, 1977, 1980, 1983, 1986, 1989, 1992, 1995, 1998, 2001, 2004,
2007, 2010, 2013, 2016, 2019, 2022, 2025, 2028, 2031, 2034, 2037, 2040,
2043, 2046, 2049, 2052, 2055, 2058, 2061, 2064, 2067, 2070, 2073, 2076,
2079, 2082, 2085, 2088, 2091, 2094, 2097, 2100, 2103, 0, 0, 0, 0, 2106,
2109, 2112, 2115, 2118, 2121, 2124, 2127, 2130, 2133, 2136, 2139, 2142,
2145, 2148, 2151, 2154, 2157, 2160, 2163, 2166, 2169, 2172, 2175, 2178,
2181, 2184, 2187, 2190, 2193, 2196, 2199, 2202, 2205, 2208, 2211, 2214,
2217, 2220, 2223, 2226, 2229, 2232, 2235, 2238, 2241, 2244, 2247, 2250,
2253, 2256, 2259, 2262, 2265, 2268, 2271, 2274, 2277, 2280, 2283, 2286,
2289, 2292, 2295, 2298, 2301, 2304, 2307, 2310, 2313, 2316, 2319, 2322,
2325, 2328, 2331, 2334, 2337, 2340, 2343, 2346, 2349, 2352, 2355, 2358,
2361, 2364, 2367, 2370, 2373, 0, 0, 0, 0, 0, 0, 2376, 2379, 2382, 2385,
2388, 2391, 2394, 2397, 2400, 2403, 2406, 2409, 2412, 2415, 2418, 2421,
2424, 2427, 2430, 2433, 2436, 2439, 0, 0, 2442, 2445, 2448, 2451, 2454,
2457, 0, 0, 2460, 2463, 2466, 2469, 2472, 2475, 2478, 2481, 2484, 2487,
2490, 2493, 2496, 2499, 2502, 2505, 2508, 2511, 2514, 2517, 2520, 2523,
2526, 2529, 2532, 2535, 2538, 2541, 2544, 2547, 2550, 2553, 2556, 2559,
2562, 2565, 2568, 2571, 0, 0, 2574, 2577, 2580, 2583, 2586, 2589, 0, 0,
2592, 2595, 2598, 2601, 2604, 2607, 2610, 2613, 0, 2616, 0, 2619, 0,
2622, 0, 2625, 2628, 2631, 2634, 2637, 2640, 2643, 2646, 2649, 2652,
2655, 2658, 2661, 2664, 2667, 2670, 2673, 2676, 2679, 2681, 2684, 2686,
2689, 2691, 2694, 2696, 2699, 2701, 2704, 2706, 2709, 0, 0, 2711, 2714,
2717, 2720, 2723, 2726, 2729, 2732, 2735, 2738, 2741, 2744, 2747, 2750,
2753, 2756, 2759, 2762, 2765, 2768, 2771, 2774, 2777, 2780, 2783, 2786,
2789, 2792, 2795, 2798, 2801, 2804, 2807, 2810, 2813, 2816, 2819, 2822,
2825, 2828, 2831, 2834, 2837, 2840, 2843, 2846, 2849, 2852, 2855, 2858,
2861, 2864, 2867, 0, 2870, 2873, 2876, 2879, 2882, 2885, 2887, 2890,
2893, 2895, 2898, 2901, 2904, 2907, 2910, 0, 2913, 2916, 2919, 2922,
2924, 2927, 2929, 2932, 2935, 2938, 2941, 2944, 2947, 2950, 0, 0, 2952,
2955, 2958, 2961, 2964, 2967, 0, 2969, 2972, 2975, 2978, 2981, 2984,
2987, 2989, 2992, 2995, 2998, 3001, 3004, 3007, 3010, 3012, 3015, 3018,
3020, 0, 0, 3022, 3025, 3028, 0, 3031, 3034, 3037, 3040, 3042, 3045,
3047, 3050, 3052, 0, 3055, 3057, 3059, 3061, 3063, 3065, 3067, 3069,
3071, 3073, 3075, 0, 0, 0, 0, 0, 0, 3077, 0, 0, 0, 0, 0, 3079, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3082, 3084, 3087, 0, 0, 0, 0, 0, 0, 0, 0,
3091, 0, 0, 0, 3093, 3096, 0, 3100, 3103, 0, 0, 0, 0, 3107, 0, 3110, 0,
0, 0, 0, 0, 0, 0, 0, 3113, 3116, 3119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3122, 0, 0, 0, 0, 0, 0, 0, 3127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 3129, 3131, 0, 0, 3133, 3135, 3137, 3139, 3141, 3143,
3145, 3147, 3149, 3151, 3153, 3155, 3157, 3159, 3161, 3163, 3165, 3167,
3169, 3171, 3173, 3175, 3177, 3179, 3181, 3183, 3185, 0, 3187, 3189,
3191, 3193, 3195, 3197, 3199, 3201, 3203, 3205, 3207, 3209, 3211, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 3213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 3216, 3220, 3224, 3226, 0, 3229, 3233, 3237, 0, 3239, 3242, 3244,
3246, 3248, 3250, 3252, 3254, 3256, 3258, 3260, 0, 3262, 3264, 0, 0,
3267, 3269, 3271, 3273, 3275, 0, 0, 3277, 3280, 3284, 0, 3287, 0, 3289,
0, 3291, 0, 3293, 3295, 3297, 3299, 0, 3301, 3303, 3305, 0, 3307, 3309,
3311, 3313, 3315, 3317, 3319, 0, 3321, 3325, 3327, 3329, 3331, 3333, 0,
0, 0, 0, 3335, 3337, 3339, 3341, 3343, 0, 0, 0, 0, 0, 0, 3345, 3349,
3353, 3358, 3362, 3366, 3370, 3374, 3378, 3382, 3386, 3390, 3394, 3398,
3402, 3406, 3409, 3411, 3414, 3418, 3421, 3423, 3426, 3430, 3435, 3438,
3440, 3443, 3447, 3449, 3451, 3453, 3455, 3457, 3460, 3464, 3467, 3469,
3472, 3476, 3481, 3484, 3486, 3489, 3493, 3495, 3497, 3499, 0, 0, 0, 0,
0, 0, 0, 0, 0, 3501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3505, 3508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3511,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 3514, 3517, 3520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3523, 0, 0, 0, 0, 3526,
0, 0, 3529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 3532, 0, 3535, 0, 0, 0, 0, 0, 3538, 3541, 0, 3545, 3548, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3552, 0, 0, 3555, 0, 0, 3558,
0, 3561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 3564, 0, 3567, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3570, 3573, 3576, 3579,
3582, 0, 0, 3585, 3588, 0, 0, 3591, 3594, 0, 0, 0, 0, 0, 0, 3597, 3600,
0, 0, 3603, 3606, 0, 0, 3609, 3612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3615,
3618, 3621, 3624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 3627, 3630, 3633, 3636, 0, 0, 0, 0, 0, 0, 3639, 3642,
3645, 3648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3651, 3653, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 3655, 3657, 3659, 3661, 3663, 3665, 3667, 3669,
3671, 3673, 3676, 3679, 3682, 3685, 3688, 3691, 3694, 3697, 3700, 3703,
3706, 3710, 3714, 3718, 3722, 3726, 3730, 3734, 3738, 3742, 3747, 3752,
3757, 3762, 3767, 3772, 3777, 3782, 3787, 3792, 3797, 3800, 3803, 3806,
3809, 3812, 3815, 3818, 3821, 3824, 3828, 3832, 3836, 3840, 3844, 3848,
3852, 3856, 3860, 3864, 3868, 3872, 3876, 3880, 3884, 3888, 3892, 3896,
3900, 3904, 3908, 3912, 3916, 3920, 3924, 3928, 3932, 3936, 3940, 3944,
3948, 3952, 3956, 3960, 3964, 3968, 3972, 3974, 3976, 3978, 3980, 3982,
3984, 3986, 3988, 3990, 3992, 3994, 3996, 3998, 4000, 4002, 4004, 4006,
4008, 4010, 4012, 4014, 4016, 4018, 4020, 4022, 4024, 4026, 4028, 4030,
4032, 4034, 4036, 4038, 4040, 4042, 4044, 4046, 4048, 4050, 4052, 4054,
4056, 4058, 4060, 4062, 4064, 4066, 4068, 4070, 4072, 4074, 4076, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4083, 4087, 4090, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4097, 4099,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4101, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4103, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 4105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4107,
4109, 4111, 4113, 4115, 4117, 4119, 4121, 4123, 4125, 4127, 4129, 4131,
4133, 4135, 4137, 4139, 4141, 4143, 4145, 4147, 4149, 4151, 4153, 4155,
4157, 4159, 4161, 4163, 4165, 4167, 4169, 4171, 4173, 4175, 4177, 4179,
4181, 4183, 4185, 4187, 4189, 4191, 4193, 4195, 4197, 4199, 4201, 4203,
4205, 4207, 4209, 4211, 4213, 4215, 4217, 4219, 4221, 4223, 4225, 4227,
4229, 4231, 4233, 4235, 4237, 4239, 4241, 4243, 4245, 4247, 4249, 4251,
4253, 4255, 4257, 4259, 4261, 4263, 4265, 4267, 4269, 4271, 4273, 4275,
4277, 4279, 4281, 4283, 4285, 4287, 4289, 4291, 4293, 4295, 4297, 4299,
4301, 4303, 4305, 4307, 4309, 4311, 4313, 4315, 4317, 4319, 4321, 4323,
4325, 4327, 4329, 4331, 4333, 4335, 4337, 4339, 4341, 4343, 4345, 4347,
4349, 4351, 4353, 4355, 4357, 4359, 4361, 4363, 4365, 4367, 4369, 4371,
4373, 4375, 4377, 4379, 4381, 4383, 4385, 4387, 4389, 4391, 4393, 4395,
4397, 4399, 4401, 4403, 4405, 4407, 4409, 4411, 4413, 4415, 4417, 4419,
4421, 4423, 4425, 4427, 4429, 4431, 4433, 4435, 4437, 4439, 4441, 4443,
4445, 4447, 4449, 4451, 4453, 4455, 4457, 4459, 4461, 4463, 4465, 4467,
4469, 4471, 4473, 4475, 4477, 4479, 4481, 4483, 4485, 4487, 4489, 4491,
4493, 4495, 4497, 4499, 4501, 4503, 4505, 4507, 4509, 4511, 4513, 4515,
4517, 4519, 4521, 4523, 4525, 4527, 4529, 4531, 4533, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4537, 0, 4539,
4541, 4543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4545, 0,
4548, 0, 4551, 0, 4554, 0, 4557, 0, 4560, 0, 4563, 0, 4566, 0, 4569, 0,
4572, 0, 4575, 0, 4578, 0, 0, 4581, 0, 4584, 0, 4587, 0, 0, 0, 0, 0, 0,
4590, 4593, 0, 4596, 4599, 0, 4602, 4605, 0, 4608, 4611, 0, 4614, 4617,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4620,
0, 0, 0, 0, 0, 0, 4623, 4626, 0, 4629, 4632, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4635, 0, 4638, 0, 4641, 0, 4644, 0, 4647, 0, 4650, 0, 4653, 0,
4656, 0, 4659, 0, 4662, 0, 4665, 0, 4668, 0, 0, 4671, 0, 4674, 0, 4677,
0, 0, 0, 0, 0, 0, 4680, 4683, 0, 4686, 4689, 0, 4692, 4695, 0, 4698,
4701, 0, 4704, 4707, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 4710, 0, 0, 4713, 4716, 4719, 4722, 0, 0, 0, 4725, 4728,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 4731, 4733, 4735, 4737, 4739, 4741, 4743, 4745, 4747, 4749, 4751,
4753, 4755, 4757, 4759, 4761, 4763, 4765, 4767, 4769, 4771, 4773, 4775,
4777, 4779, 4781, 4783, 4785, 4787, 4789, 4791, 4793, 4795, 4797, 4799,
4801, 4803, 4805, 4807, 4809, 4811, 4813, 4815, 4817, 4819, 4821, 4823,
4825, 4827, 4829, 4831, 4833, 4835, 4837, 4839, 4841, 4843, 4845, 4847,
4849, 4851, 4853, 4855, 4857, 4859, 4861, 4863, 4865, 4867, 4869, 4871,
4873, 4875, 4877, 4879, 4881, 4883, 4885, 4887, 4889, 4891, 4893, 4895,
4897, 4899, 4901, 4903, 4905, 4907, 4909, 4911, 4913, 4915, 4917, 0, 0,
0, 4919, 4921, 4923, 4925, 4927, 4929, 4931, 4933, 4935, 4937, 4939,
4941, 4943, 4945, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 4947, 4951, 4955, 4959, 4963, 4967, 4971, 4975, 4979,
4983, 4987, 4991, 4995, 4999, 5003, 5008, 5013, 5018, 5023, 5028, 5033,
5038, 5043, 5048, 5053, 5058, 5063, 5068, 5073, 5078, 5086, 0, 5093,
5097, 5101, 5105, 5109, 5113, 5117, 5121, 5125, 5129, 5133, 5137, 5141,
5145, 5149, 5153, 5157, 5161, 5165, 5169, 5173, 5177, 5181, 5185, 5189,
5193, 5197, 5201, 5205, 5209, 5213, 5217, 5221, 5225, 5229, 5233, 5237,
5239, 5241, 5243, 0, 0, 0, 0, 0, 0, 0, 0, 5245, 5249, 5252, 5255, 5258,
5261, 5264, 5267, 5270, 5273, 5276, 5279, 5282, 5285, 5288, 5291, 5294,
5296, 5298, 5300, 5302, 5304, 5306, 5308, 5310, 5312, 5314, 5316, 5318,
5320, 5322, 5325, 5328, 5331, 5334, 5337, 5340, 5343, 5346, 5349, 5352,
5355, 5358, 5361, 5364, 5370, 5375, 0, 5378, 5380, 5382, 5384, 5386,
5388, 5390, 5392, 5394, 5396, 5398, 5400, 5402, 5404, 5406, 5408, 5410,
5412, 5414, 5416, 5418, 5420, 5422, 5424, 5426, 5428, 5430, 5432, 5434,
5436, 5438, 5440, 5442, 5444, 5446, 5448, 5450, 5452, 5454, 5456, 5458,
5460, 5462, 5464, 5466, 5468, 5470, 5472, 5474, 5476, 5479, 5482, 5485,
5488, 5491, 5494, 5497, 5500, 5503, 5506, 5509, 5512, 5515, 5518, 5521,
5524, 5527, 5530, 5533, 5536, 5539, 5542, 5545, 5548, 5552, 5556, 5560,
5563, 5567, 5570, 5574, 5576, 5578, 5580, 5582, 5584, 5586, 5588, 5590,
5592, 5594, 5596, 5598, 5600, 5602, 5604, 5606, 5608, 5610, 5612, 5614,
5616, 5618, 5620, 5622, 5624, 5626, 5628, 5630, 5632, 5634, 5636, 5638,
5640, 5642, 5644, 5646, 5648, 5650, 5652, 5654, 5656, 5658, 5660, 5662,
5664, 5666, 5668, 5671, 5676, 5681, 5686, 5690, 5695, 5699, 5703, 5709,
5714, 5718, 5722, 5726, 5731, 5736, 5740, 5744, 5747, 5751, 5756, 5761,
5764, 5770, 5777, 5783, 5787, 5793, 5799, 5804, 5808, 5812, 5816, 5821,
5827, 5832, 5836, 5840, 5844, 5847, 5850, 5853, 5856, 5860, 5864, 5870,
5874, 5879, 5885, 5889, 5892, 5895, 5901, 5906, 5912, 5916, 5922, 5925,
5929, 5933, 5937, 5941, 5945, 5950, 5954, 5957, 5961, 5965, 5969, 5974,
5978, 5982, 5986, 5992, 5997, 6000, 6006, 6009, 6014, 6019, 6023, 6027,
6031, 6036, 6039, 6043, 6048, 6051, 6057, 6061, 6064, 6067, 6070, 6073,
6076, 6079, 6082, 6085, 6088, 6091, 6095, 6099, 6103, 6107, 6111, 6115,
6119, 6123, 6127, 6131, 6135, 6139, 6143, 6147, 6151, 6155, 6158, 6161,
6165, 6168, 6171, 6174, 6178, 6182, 6185, 6188, 6191, 6194, 6197, 6202,
6205, 6208, 6211, 6214, 6217, 6220, 6223, 6226, 6230, 6235, 6238, 6241,
6244, 6247, 6250, 6253, 6256, 6260, 6264, 6268, 6272, 6275, 6278, 6281,
6284, 6287, 6290, 6293, 6296, 6299, 6302, 6306, 6310, 6313, 6317, 6321,
6325, 6328, 6332, 6336, 6341, 6344, 6348, 6352, 6356, 6360, 6366, 6373,
6376, 6379, 6382, 6385, 6388, 6391, 6394, 6397, 6400, 6403, 6406, 6409,
6412, 6415, 6418, 6421, 6424, 6427, 6432, 6435, 6438, 6441, 6446, 6450,
6453, 6456, 6459, 6462, 6465, 6468, 6471, 6474, 6477, 6480, 6484, 6487,
6490, 6494, 6498, 6501, 6506, 6510, 6513, 6516, 6519, 6522, 6526, 6530,
6533, 6536, 6539, 6542, 6545, 6548, 6551, 6554, 6557, 6561, 6565, 6569,
6573, 6577, 6581, 6585, 6589, 6593, 6597, 6601, 6605, 6609, 6613, 6617,
6621, 6625, 6629, 6633, 6637, 6641, 6645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6649, 6651, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6653, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 6655, 6657, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6659, 6661, 6663, 6665, 0,
0, 0, 0, 0, 0, 0, 0, 0, 6667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 6669, 6671, 6673, 6675, 6677, 6679, 6681, 6683,
6685, 6687, 6689, 6691, 6693, 6695, 6697, 6699, 6701, 6703, 6705, 6707,
6709, 6711, 6713, 6715, 6717, 6719, 6721, 6723, 6725, 6727, 6729, 6731,
6733, 6735, 6737, 6739, 6741, 6743, 6745, 6747, 6749, 6751, 6753, 6755,
6757, 6759, 6761, 6763, 6765, 6767, 6769, 6771, 6773, 6775, 6777, 6779,
6781, 6783, 6785, 6787, 6789, 6791, 6793, 6795, 6797, 6799, 6801, 6803,
6805, 6807, 6809, 6811, 6813, 6815, 6817, 6819, 6821, 6823, 6825, 6827,
6829, 6831, 6833, 6835, 6837, 6839, 6841, 6843, 6845, 6847, 6849, 6851,
6853, 6855, 6857, 6859, 6861, 6863, 6865, 6867, 6869, 6871, 6873, 6875,
6877, 6879, 6881, 6883, 6885, 6887, 6889, 6891, 6893, 6895, 6897, 6899,
6901, 6903, 6905, 6907, 6909, 6911, 6913, 6915, 6917, 6919, 6921, 6923,
6925, 6927, 6929, 6931, 6933, 6935, 6937, 6939, 6941, 6943, 6945, 6947,
6949, 6951, 6953, 6955, 6957, 6959, 6961, 6963, 6965, 6967, 6969, 6971,
6973, 6975, 6977, 6979, 6981, 6983, 6985, 6987, 6989, 6991, 6993, 6995,
6997, 6999, 7001, 7003, 7005, 7007, 7009, 7011, 7013, 7015, 7017, 7019,
7021, 7023, 7025, 7027, 7029, 7031, 7033, 7035, 7037, 7039, 7041, 7043,
7045, 7047, 7049, 7051, 7053, 7055, 7057, 7059, 7061, 7063, 7065, 7067,
7069, 7071, 7073, 7075, 7077, 7079, 7081, 7083, 7085, 7087, 7089, 7091,
7093, 7095, 7097, 7099, 7101, 7103, 7105, 7107, 7109, 7111, 7113, 7115,
7117, 7119, 7121, 7123, 7125, 7127, 7129, 7131, 7133, 7135, 7137, 7139,
7141, 7143, 7145, 7147, 7149, 7151, 7153, 7155, 7157, 7159, 7161, 7163,
7165, 7167, 7169, 7171, 7173, 7175, 7177, 7179, 7181, 7183, 7185, 7187,
7189, 7191, 7193, 7195, 7197, 7199, 7201, 7203, 7205, 7207, 0, 0, 7209,
0, 7211, 0, 0, 7213, 7215, 7217, 7219, 7221, 7223, 7225, 7227, 7229,
7231, 0, 7233, 0, 7235, 0, 0, 7237, 7239, 0, 0, 0, 7241, 7243, 7245,
7247, 7249, 7251, 7253, 7255, 7257, 7259, 7261, 7263, 7265, 7267, 7269,
7271, 7273, 7275, 7277, 7279, 7281, 7283, 7285, 7287, 7289, 7291, 7293,
7295, 7297, 7299, 7301, 7303, 7305, 7307, 7309, 7311, 7313, 7315, 7317,
7319, 7321, 7323, 7325, 7327, 7329, 7331, 7333, 7335, 7337, 7339, 7341,
7343, 7345, 7347, 7349, 7351, 7353, 7355, 7357, 7359, 7361, 7363, 7365,
7367, 7369, 7371, 7373, 7375, 0, 0, 7377, 7379, 7381, 7383, 7385, 7387,
7389, 7391, 7393, 7395, 7397, 7399, 7401, 7403, 7405, 7407, 7409, 7411,
7413, 7415, 7417, 7419, 7421, 7423, 7425, 7427, 7429, 7431, 7433, 7435,
7437, 7439, 7441, 7443, 7445, 7447, 7449, 7451, 7453, 7455, 7457, 7459,
7461, 7463, 7465, 7467, 7469, 7471, 7473, 7475, 7477, 7479, 7481, 7483,
7485, 7487, 7489, 7491, 7493, 7495, 7497, 7499, 7501, 7503, 7505, 7507,
7509, 7511, 7513, 7515, 7517, 7519, 7521, 7523, 7525, 7527, 7529, 7531,
7533, 7535, 7537, 7539, 7541, 7543, 7545, 7547, 7549, 7551, 7553, 7555,
7557, 7559, 7561, 7563, 7565, 7567, 7569, 7571, 7573, 7575, 7577, 7579,
7581, 7583, 7585, 7587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7589,
7592, 7595, 7598, 7602, 7606, 7609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7612, 7615, 7618, 7621, 7624, 0, 0, 0, 0, 0, 7627, 0, 7630, 7633, 7635,
7637, 7639, 7641, 7643, 7645, 7647, 7649, 7651, 7653, 7656, 7659, 7662,
7665, 7668, 7671, 7674, 7677, 7680, 7683, 7686, 7689, 0, 7692, 7695,
7698, 7701, 7704, 0, 7707, 0, 7710, 7713, 0, 7716, 7719, 0, 7722, 7725,
7728, 7731, 7734, 7737, 7740, 7743, 7746, 7749, 7752, 7754, 7756, 7758,
7760, 7762, 7764, 7766, 7768, 7770, 7772, 7774, 7776, 7778, 7780, 7782,
7784, 7786, 7788, 7790, 7792, 7794, 7796, 7798, 7800, 7802, 7804, 7806,
7808, 7810, 7812, 7814, 7816, 7818, 7820, 7822, 7824, 7826, 7828, 7830,
7832, 7834, 7836, 7838, 7840, 7842, 7844, 7846, 7848, 7850, 7852, 7854,
7856, 7858, 7860, 7862, 7864, 7866, 7868, 7870, 7872, 7874, 7876, 7878,
7880, 7882, 7884, 7886, 7888, 7890, 7892, 7894, 7896, 7898, 7900, 7902,
7904, 7906, 7908, 7910, 7912, 7914, 7916, 7918, 7920, 7922, 7924, 7926,
7928, 7930, 7932, 7934, 7936, 7938, 7940, 7942, 7944, 7946, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 7948, 7950, 7952, 7954, 7956, 7958, 7960, 7962, 7964,
7966, 7968, 7970, 7972, 7974, 7976, 7978, 7980, 7982, 7984, 7986, 7988,
7990, 7992, 7994, 7997, 8000, 8003, 8006, 8009, 8012, 8015, 8018, 8021,
8024, 8027, 8030, 8033, 8036, 8039, 8042, 8045, 8048, 8050, 8052, 8054,
8056, 8059, 8062, 8065, 8068, 8071, 8074, 8077, 8080, 8083, 8086, 8089,
8092, 8095, 8098, 8101, 8104, 8107, 8110, 8113, 8116, 8119, 8122, 8125,
8128, 8131, 8134, 8137, 8140, 8143, 8146, 8149, 8152, 8155, 8158, 8161,
8164, 8167, 8170, 8173, 8176, 8179, 8182, 8185, 8188, 8191, 8194, 8197,
8200, 8203, 8206, 8209, 8212, 8215, 8218, 8221, 8224, 8227, 8230, 8233,
8236, 8239, 8242, 8245, 8248, 8251, 8254, 8257, 8260, 8263, 8266, 8269,
8272, 8275, 8278, 8281, 8284, 8287, 8290, 8293, 8296, 8299, 8302, 8305,
8308, 8311, 8314, 8317, 8320, 8323, 8326, 8329, 8332, 8335, 8338, 8342,
8346, 8350, 8354, 8358, 8362, 8365, 8368, 8371, 8374, 8377, 8380, 8383,
8386, 8389, 8392, 8395, 8398, 8401, 8404, 8407, 8410, 8413, 8416, 8419,
8422, 8425, 8428, 8431, 8434, 8437, 8440, 8443, 8446, 8449, 8452, 8455,
8458, 8461, 8464, 8467, 8470, 8473, 8476, 8479, 8482, 8485, 8488, 8491,
8494, 8497, 8500, 8503, 8506, 8509, 8512, 8515, 8518, 8521, 8524, 8527,
8530, 8533, 8536, 8539, 8542, 8545, 8548, 8551, 8554, 8557, 8560, 8563,
8566, 8569, 8572, 8575, 8578, 8581, 8584, 8587, 8590, 8593, 8596, 8599,
8602, 8605, 8608, 8611, 8614, 8617, 8620, 8623, 8626, 8629, 8632, 8635,
8638, 8641, 8644, 8647, 8650, 8653, 8656, 8659, 8662, 8665, 8668, 8671,
8674, 8677, 8680, 8683, 8686, 8689, 8692, 8695, 8698, 8701, 8704, 8707,
8710, 8713, 8716, 8719, 8722, 8725, 8728, 8731, 8734, 8737, 8740, 8743,
8746, 8749, 8752, 8755, 8758, 8761, 8764, 8767, 8770, 8773, 8776, 8779,
8782, 8785, 8788, 8792, 8796, 8800, 8803, 8806, 8809, 8812, 8815, 8818,
8821, 8824, 8827, 8830, 8833, 8836, 8839, 8842, 8845, 8848, 8851, 8854,
8857, 8860, 8863, 8866, 8869, 8872, 8875, 8878, 8881, 8884, 8887, 8890,
8893, 8896, 8899, 8902, 8905, 8908, 8911, 8914, 8917, 8920, 8923, 8926,
8929, 8932, 8935, 8938, 8941, 8944, 8947, 8950, 8953, 8956, 8959, 8962,
8965, 8968, 8971, 8974, 8977, 8980, 8983, 8986, 8989, 8992, 8995, 8998,
9001, 9004, 9007, 9010, 9013, 9016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 9019, 9023, 9027, 9031, 9035, 9039, 9043, 9047, 9051,
9055, 9059, 9063, 9067, 9071, 9075, 9079, 9083, 9087, 9091, 9095, 9099,
9103, 9107, 9111, 9115, 9119, 9123, 9127, 9131, 9135, 9139, 9143, 9147,
9151, 9155, 9159, 9163, 9167, 9171, 9175, 9179, 9183, 9187, 9191, 9195,
9199, 9203, 9207, 9211, 9215, 9219, 9223, 9227, 9231, 9235, 9239, 9243,
9247, 9251, 9255, 9259, 9263, 9267, 9271, 0, 0, 9275, 9279, 9283, 9287,
9291, 9295, 9299, 9303, 9307, 9311, 9315, 9319, 9323, 9327, 9331, 9335,
9339, 9343, 9347, 9351, 9355, 9359, 9363, 9367, 9371, 9375, 9379, 9383,
9387, 9391, 9395, 9399, 9403, 9407, 9411, 9415, 9419, 9423, 9427, 9431,
9435, 9439, 9443, 9447, 9451, 9455, 9459, 9463, 9467, 9471, 9475, 9479,
9483, 9487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9491, 9495,
9499, 9504, 9509, 9514, 9519, 9524, 9529, 9534, 9538, 9557, 9566, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9571, 9573, 9575,
9577, 9579, 9581, 9583, 9585, 9587, 9589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9591, 9593, 9595, 9597, 9599, 9601,
9603, 9605, 9607, 9609, 9611, 9613, 9615, 9617, 9619, 9621, 9623, 9625,
9627, 9629, 9631, 0, 0, 9633, 9635, 9637, 9639, 9641, 9643, 9645, 9647,
9649, 9651, 9653, 9655, 0, 9657, 9659, 9661, 9663, 9665, 9667, 9669,
9671, 9673, 9675, 9677, 9679, 9681, 9683, 9685, 9687, 9689, 9691, 9693,
0, 9695, 9697, 9699, 9701, 0, 0, 0, 0, 9703, 9706, 9709, 0, 9712, 0,
9715, 9718, 9721, 9724, 9727, 9730, 9733, 9736, 9739, 9742, 9745, 9747,
9749, 9751, 9753, 9755, 9757, 9759, 9761, 9763, 9765, 9767, 9769, 9771,
9773, 9775, 9777, 9779, 9781, 9783, 9785, 9787, 9789, 9791, 9793, 9795,
9797, 9799, 9801, 9803, 9805, 9807, 9809, 9811, 9813, 9815, 9817, 9819,
9821, 9823, 9825, 9827, 9829, 9831, 9833, 9835, 9837, 9839, 9841, 9843,
9845, 9847, 9849, 9851, 9853, 9855, 9857, 9859, 9861, 9863, 9865, 9867,
9869, 9871, 9873, 9875, 9877, 9879, 9881, 9883, 9885, 9887, 9889, 9891,
9893, 9895, 9897, 9899, 9901, 9903, 9905, 9907, 9909, 9911, 9913, 9915,
9917, 9919, 9921, 9923, 9925, 9927, 9929, 9931, 9933, 9935, 9937, 9939,
9941, 9943, 9945, 9947, 9949, 9951, 9953, 9955, 9957, 9959, 9961, 9963,
9965, 9967, 9969, 9971, 9973, 9975, 9977, 9979, 9982, 9985, 9988, 9991,
9994, 9997, 10000, 0, 0, 0, 0, 10003, 10005, 10007, 10009, 10011, 10013,
10015, 10017, 10019, 10021, 10023, 10025, 10027, 10029, 10031, 10033,
10035, 10037, 10039, 10041, 10043, 10045, 10047, 10049, 10051, 10053,
10055, 10057, 10059, 10061, 10063, 10065, 10067, 10069, 10071, 10073,
10075, 10077, 10079, 10081, 10083, 10085, 10087, 10089, 10091, 10093,
10095, 10097, 10099, 10101, 10103, 10105, 10107, 10109, 10111, 10113,
10115, 10117, 10119, 10121, 10123, 10125, 10127, 10129, 10131, 10133,
10135, 10137, 10139, 10141, 10143, 10145, 10147, 10149, 10151, 10153,
10155, 10157, 10159, 10161, 10163, 10165, 10167, 10169, 10171, 10173,
10175, 10177, 10179, 10181, 10183, 10185, 10187, 10189, 10191, 10193,
10195, 10197, 10199, 10201, 10203, 10205, 10207, 10209, 10211, 10213,
10215, 10217, 10219, 10221, 10223, 10225, 10227, 10229, 10231, 10233,
10235, 10237, 10239, 10241, 10243, 10245, 10247, 10249, 10251, 10253,
10255, 10257, 10259, 10261, 10263, 10265, 10267, 10269, 10271, 10273,
10275, 10277, 10279, 10281, 10283, 10285, 10287, 10289, 10291, 10293,
10295, 10297, 10299, 10301, 10303, 10305, 10307, 10309, 10311, 10313,
10315, 10317, 10319, 10321, 10323, 10325, 10327, 10329, 10331, 10333,
10335, 10337, 10339, 10341, 10343, 10345, 10347, 10349, 10351, 10353,
10355, 10357, 10359, 10361, 10363, 10365, 10367, 10369, 10371, 10373,
10375, 10377, 10379, 10381, 0, 0, 0, 10383, 10385, 10387, 10389, 10391,
10393, 0, 0, 10395, 10397, 10399, 10401, 10403, 10405, 0, 0, 10407,
10409, 10411, 10413, 10415, 10417, 0, 0, 10419, 10421, 10423, 0, 0, 0,
10425, 10427, 10429, 10431, 10433, 10435, 10437, 0, 10439, 10441, 10443,
10445, 10447, 10449, 10451, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 10453, 0, 10456, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
10459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10462, 10465, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 10468, 10471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10474,
10477, 0, 10480, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 10483, 10486, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10489, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10492, 10495, 10498, 10501,
10504, 10507, 10510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10513,
10516, 10519, 10522, 10525, 10528, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 10531, 10533, 10535, 10537, 10539, 10541, 10543, 10545, 10547,
10549, 10551, 10553, 10555, 10557, 10559, 10561, 10563, 10565, 10567,
10569, 10571, 10573, 10575, 10577, 10579, 10581, 10583, 10585, 10587,
10589, 10591, 10593, 10595, 10597, 10599, 10601, 10603, 10605, 10607,
10609, 10611, 10613, 10615, 10617, 10619, 10621, 10623, 10625, 10627,
10629, 10631, 10633, 10635, 10637, 10639, 10641, 10643, 10645, 10647,
10649, 10651, 10653, 10655, 10657, 10659, 10661, 10663, 10665, 10667,
10669, 10671, 10673, 10675, 10677, 10679, 10681, 10683, 10685, 10687,
10689, 10691, 10693, 10695, 10697, 10699, 0, 10701, 10703, 10705, 10707,
10709, 10711, 10713, 10715, 10717, 10719, 10721, 10723, 10725, 10727,
10729, 10731, 10733, 10735, 10737, 10739, 10741, 10743, 10745, 10747,
10749, 10751, 10753, 10755, 10757, 10759, 10761, 10763, 10765, 10767,
10769, 10771, 10773, 10775, 10777, 10779, 10781, 10783, 10785, 10787,
10789, 10791, 10793, 10795, 10797, 10799, 10801, 10803, 10805, 10807,
10809, 10811, 10813, 10815, 10817, 10819, 10821, 10823, 10825, 10827,
10829, 10831, 10833, 10835, 10837, 10839, 10841, 0, 10843, 10845, 0, 0,
10847, 0, 0, 10849, 10851, 0, 0, 10853, 10855, 10857, 10859, 0, 10861,
10863, 10865, 10867, 10869, 10871, 10873, 10875, 10877, 10879, 10881,
10883, 0, 10885, 0, 10887, 10889, 10891, 10893, 10895, 10897, 10899, 0,
10901, 10903, 10905, 10907, 10909, 10911, 10913, 10915, 10917, 10919,
10921, 10923, 10925, 10927, 10929, 10931, 10933, 10935, 10937, 10939,
10941, 10943, 10945, 10947, 10949, 10951, 10953, 10955, 10957, 10959,
10961, 10963, 10965, 10967, 10969, 10971, 10973, 10975, 10977, 10979,
10981, 10983, 10985, 10987, 10989, 10991, 10993, 10995, 10997, 10999,
11001, 11003, 11005, 11007, 11009, 11011, 11013, 11015, 11017, 11019,
11021, 11023, 11025, 11027, 11029, 0, 11031, 11033, 11035, 11037, 0, 0,
11039, 11041, 11043, 11045, 11047, 11049, 11051, 11053, 0, 11055, 11057,
11059, 11061, 11063, 11065, 11067, 0, 11069, 11071, 11073, 11075, 11077,
11079, 11081, 11083, 11085, 11087, 11089, 11091, 11093, 11095, 11097,
11099, 11101, 11103, 11105, 11107, 11109, 11111, 11113, 11115, 11117,
11119, 11121, 11123, 0, 11125, 11127, 11129, 11131, 0, 11133, 11135,
11137, 11139, 11141, 0, 11143, 0, 0, 0, 11145, 11147, 11149, 11151,
11153, 11155, 11157, 0, 11159, 11161, 11163, 11165, 11167, 11169, 11171,
11173, 11175, 11177, 11179, 11181, 11183, 11185, 11187, 11189, 11191,
11193, 11195, 11197, 11199, 11201, 11203, 11205, 11207, 11209, 11211,
11213, 11215, 11217, 11219, 11221, 11223, 11225, 11227, 11229, 11231,
11233, 11235, 11237, 11239, 11241, 11243, 11245, 11247, 11249, 11251,
11253, 11255, 11257, 11259, 11261, 11263, 11265, 11267, 11269, 11271,
11273, 11275, 11277, 11279, 11281, 11283, 11285, 11287, 11289, 11291,
11293, 11295, 11297, 11299, 11301, 11303, 11305, 11307, 11309, 11311,
11313, 11315, 11317, 11319, 11321, 11323, 11325, 11327, 11329, 11331,
11333, 11335, 11337, 11339, 11341, 11343, 11345, 11347, 11349, 11351,
11353, 11355, 11357, 11359, 11361, 11363, 11365, 11367, 11369, 11371,
11373, 11375, 11377, 11379, 11381, 11383, 11385, 11387, 11389, 11391,
11393, 11395, 11397, 11399, 11401, 11403, 11405, 11407, 11409, 11411,
11413, 11415, 11417, 11419, 11421, 11423, 11425, 11427, 11429, 11431,
11433, 11435, 11437, 11439, 11441, 11443, 11445, 11447, 11449, 11451,
11453, 11455, 11457, 11459, 11461, 11463, 11465, 11467, 11469, 11471,
11473, 11475, 11477, 11479, 11481, 11483, 11485, 11487, 11489, 11491,
11493, 11495, 11497, 11499, 11501, 11503, 11505, 11507, 11509, 11511,
11513, 11515, 11517, 11519, 11521, 11523, 11525, 11527, 11529, 11531,
11533, 11535, 11537, 11539, 11541, 11543, 11545, 11547, 11549, 11551,
11553, 11555, 11557, 11559, 11561, 11563, 11565, 11567, 11569, 11571,
11573, 11575, 11577, 11579, 11581, 11583, 11585, 11587, 11589, 11591,
11593, 11595, 11597, 11599, 11601, 11603, 11605, 11607, 11609, 11611,
11613, 11615, 11617, 11619, 11621, 11623, 11625, 11627, 11629, 11631,
11633, 11635, 11637, 11639, 11641, 11643, 11645, 11647, 11649, 11651,
11653, 11655, 11657, 11659, 11661, 11663, 11665, 11667, 11669, 11671,
11673, 11675, 11677, 11679, 11681, 11683, 11685, 11687, 11689, 11691,
11693, 11695, 11697, 11699, 11701, 11703, 11705, 11707, 11709, 11711,
11713, 11715, 11717, 11719, 11721, 11723, 11725, 11727, 11729, 11731,
11733, 11735, 11737, 11739, 11741, 11743, 11745, 11747, 11749, 11751,
11753, 11755, 11757, 11759, 11761, 11763, 11765, 11767, 11769, 11771,
11773, 11775, 11777, 11779, 11781, 11783, 11785, 11787, 11789, 11791,
11793, 11795, 11797, 11799, 11801, 11803, 11805, 11807, 11809, 11811,
11813, 11815, 11817, 11819, 11821, 11823, 11825, 11827, 11829, 11831,
11833, 11835, 11837, 0, 0, 11839, 11841, 11843, 11845, 11847, 11849,
11851, 11853, 11855, 11857, 11859, 11861, 11863, 11865, 11867, 11869,
11871, 11873, 11875, 11877, 11879, 11881, 11883, 11885, 11887, 11889,
11891, 11893, 11895, 11897, 11899, 11901, 11903, 11905, 11907, 11909,
11911, 11913, 11915, 11917, 11919, 11921, 11923, 11925, 11927, 11929,
11931, 11933, 11935, 11937, 11939, 11941, 11943, 11945, 11947, 11949,
11951, 11953, 11955, 11957, 11959, 11961, 11963, 11965, 11967, 11969,
11971, 11973, 11975, 11977, 11979, 11981, 11983, 11985, 11987, 11989,
11991, 11993, 11995, 11997, 11999, 12001, 12003, 12005, 12007, 12009,
12011, 12013, 12015, 12017, 12019, 12021, 12023, 12025, 12027, 12029,
12031, 12033, 12035, 12037, 12039, 12041, 12043, 12045, 12047, 12049,
12051, 12053, 12055, 12057, 12059, 12061, 12063, 12065, 12067, 12069,
12071, 12073, 12075, 12077, 12079, 12081, 12083, 12085, 12087, 12089,
12091, 12093, 12095, 12097, 12099, 12101, 12103, 12105, 12107, 12109,
12111, 12113, 12115, 12117, 12119, 12121, 12123, 12125, 12127, 12129,
12131, 12133, 12135, 12137, 12139, 12141, 12143, 12145, 12147, 12149,
12151, 12153, 12155, 12157, 12159, 12161, 12163, 12165, 12167, 12169,
12171, 12173, 12175, 12177, 12179, 12181, 12183, 12185, 12187, 12189,
12191, 12193, 12195, 12197, 12199, 12201, 12203, 12205, 12207, 12209,
12211, 12213, 12215, 12217, 12219, 12221, 12223, 12225, 12227, 12229,
12231, 12233, 12235, 12237, 12239, 12241, 12243, 12245, 12247, 12249,
12251, 12253, 12255, 12257, 12259, 12261, 12263, 12265, 12267, 12269,
12271, 12273, 12275, 12277, 12279, 12281, 12283, 12285, 12287, 12289,
12291, 12293, 12295, 12297, 12299, 12301, 12303, 12305, 12307, 12309,
12311, 12313, 12315, 12317, 12319, 12321, 12323, 12325, 12327, 12329,
12331, 12333, 12335, 12337, 12339, 12341, 12343, 12345, 12347, 12349,
12351, 12353, 12355, 12357, 12359, 12361, 12363, 12365, 12367, 12369,
12371, 12373, 12375, 12377, 12379, 12381, 12383, 12385, 12387, 12389,
12391, 12393, 12395, 12397, 12399, 12401, 12403, 12405, 12407, 12409,
12411, 12413, 12415, 12417, 12419, 12421, 0, 0, 12423, 12425, 12427,
12429, 12431, 12433, 12435, 12437, 12439, 12441, 12443, 12445, 12447,
12449, 12451, 12453, 12455, 12457, 12459, 12461, 12463, 12465, 12467,
12469, 12471, 12473, 12475, 12477, 12479, 12481, 12483, 12485, 12487,
12489, 12491, 12493, 12495, 12497, 12499, 12501, 12503, 12505, 12507,
12509, 12511, 12513, 12515, 12517, 12519, 12521, 12523, 12525, 12527,
12529, 0, 12531, 12533, 12535, 12537, 12539, 12541, 12543, 12545, 12547,
12549, 12551, 12553, 12555, 12557, 12559, 12561, 12563, 12565, 12567,
12569, 12571, 12573, 12575, 12577, 12579, 12581, 12583, 0, 12585, 12587,
0, 12589, 0, 0, 12591, 0, 12593, 12595, 12597, 12599, 12601, 12603,
12605, 12607, 12609, 12611, 0, 12613, 12615, 12617, 12619, 0, 12621, 0,
12623, 0, 0, 0, 0, 0, 0, 12625, 0, 0, 0, 0, 12627, 0, 12629, 0, 12631, 0,
12633, 12635, 12637, 0, 12639, 12641, 0, 12643, 0, 0, 12645, 0, 12647, 0,
12649, 0, 12651, 0, 12653, 0, 12655, 12657, 0, 12659, 0, 0, 12661, 12663,
12665, 12667, 0, 12669, 12671, 12673, 12675, 12677, 12679, 12681, 0,
12683, 12685, 12687, 12689, 0, 12691, 12693, 12695, 12697, 0, 12699, 0,
12701, 12703, 12705, 12707, 12709, 12711, 12713, 12715, 12717, 12719, 0,
12721, 12723, 12725, 12727, 12729, 12731, 12733, 12735, 12737, 12739,
12741, 12743, 12745, 12747, 12749, 12751, 12753, 0, 0, 0, 0, 0, 12755,
12757, 12759, 0, 12761, 12763, 12765, 12767, 12769, 0, 12771, 12773,
12775, 12777, 12779, 12781, 12783, 12785, 12787, 12789, 12791, 12793,
12795, 12797, 12799, 12801, 12803, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 12805, 12808, 12811, 12814, 12817, 12820, 12823,
12826, 12829, 12832, 12835, 0, 0, 0, 0, 0, 12838, 12842, 12846, 12850,
12854, 12858, 12862, 12866, 12870, 12874, 12878, 12882, 12886, 12890,
12894, 12898, 12902, 12906, 12910, 12914, 12918, 12922, 12926, 12930,
12934, 12938, 12942, 12946, 12948, 12950, 12953, 0, 12956, 12958, 12960,
12962, 12964, 12966, 12968, 12970, 12972, 12974, 12976, 12978, 12980,
12982, 12984, 12986, 12988, 12990, 12992, 12994, 12996, 12998, 13000,
13002, 13004, 13006, 13008, 13011, 13014, 13017, 13020, 13024, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
13027, 13030, 13033, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13036, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13039, 13042, 13045, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 13047, 13049, 13051, 13053, 13055, 13057, 13059,
13061, 13063, 13065, 13067, 13069, 13071, 13073, 13075, 13077, 13079,
13081, 13083, 13085, 13087, 13089, 13091, 13093, 13095, 13097, 13099,
13101, 13103, 13105, 13107, 13109, 13111, 13113, 13115, 13117, 13119,
13121, 13123, 13125, 13127, 13129, 13131, 13133, 0, 0, 0, 0, 13135,
13139, 13143, 13147, 13151, 13155, 13159, 13163, 13167, 0, 0, 0, 0, 0, 0,
0, 13171, 13173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13175, 13177,
13179, 13181, 13183, 13185, 13187, 13189, 13191, 13193, 0, 0, 0, 0, 0, 0,
13195, 13197, 13199, 13201, 13203, 13205, 13207, 13209, 13211, 13213,
13215, 13217, 13219, 13221, 13223, 13225, 13227, 13229, 13231, 13233,
13235, 13237, 13239, 13241, 13243, 13245, 13247, 13249, 13251, 13253,
13255, 13257, 13259, 13261, 13263, 13265, 13267, 13269, 13271, 13273,
13275, 13277, 13279, 13281, 13283, 13285, 13287, 13289, 13291, 13293,
13295, 13297, 13299, 13301, 13303, 13305, 13307, 13309, 13311, 13313,
13315, 13317, 13319, 13321, 13323, 13325, 13327, 13329, 13331, 13333,
13335, 13337, 13339, 13341, 13343, 13345, 13347, 13349, 13351, 13353,
13355, 13357, 13359, 13361, 13363, 13365, 13367, 13369, 13371, 13373,
13375, 13377, 13379, 13381, 13383, 13385, 13387, 13389, 13391, 13393,
13395, 13397, 13399, 13401, 13403, 13405, 13407, 13409, 13411, 13413,
13415, 13417, 13419, 13421, 13423, 13425, 13427, 13429, 13431, 13433,
13435, 13437, 13439, 13441, 13443, 13445, 13447, 13449, 13451, 13453,
13455, 13457, 13459, 13461, 13463, 13465, 13467, 13469, 13471, 13473,
13475, 13477, 13479, 13481, 13483, 13485, 13487, 13489, 13491, 13493,
13495, 13497, 13499, 13501, 13503, 13505, 13507, 13509, 13511, 13513,
13515, 13517, 13519, 13521, 13523, 13525, 13527, 13529, 13531, 13533,
13535, 13537, 13539, 13541, 13543, 13545, 13547, 13549, 13551, 13553,
13555, 13557, 13559, 13561, 13563, 13565, 13567, 13569, 13571, 13573,
13575, 13577, 13579, 13581, 13583, 13585, 13587, 13589, 13591, 13593,
13595, 13597, 13599, 13601, 13603, 13605, 13607, 13609, 13611, 13613,
13615, 13617, 13619, 13621, 13623, 13625, 13627, 13629, 13631, 13633,
13635, 13637, 13639, 13641, 13643, 13645, 13647, 13649, 13651, 13653,
13655, 13657, 13659, 13661, 13663, 13665, 13667, 13669, 13671, 13673,
13675, 13677, 13679, 13681, 13683, 13685, 13687, 13689, 13691, 13693,
13695, 13697, 13699, 13701, 13703, 13705, 13707, 13709, 13711, 13713,
13715, 13717, 13719, 13721, 13723, 13725, 13727, 13729, 13731, 13733,
13735, 13737, 13739, 13741, 13743, 13745, 13747, 13749, 13751, 13753,
13755, 13757, 13759, 13761, 13763, 13765, 13767, 13769, 13771, 13773,
13775, 13777, 13779, 13781, 13783, 13785, 13787, 13789, 13791, 13793,
13795, 13797, 13799, 13801, 13803, 13805, 13807, 13809, 13811, 13813,
13815, 13817, 13819, 13821, 13823, 13825, 13827, 13829, 13831, 13833,
13835, 13837, 13839, 13841, 13843, 13845, 13847, 13849, 13851, 13853,
13855, 13857, 13859, 13861, 13863, 13865, 13867, 13869, 13871, 13873,
13875, 13877, 13879, 13881, 13883, 13885, 13887, 13889, 13891, 13893,
13895, 13897, 13899, 13901, 13903, 13905, 13907, 13909, 13911, 13913,
13915, 13917, 13919, 13921, 13923, 13925, 13927, 13929, 13931, 13933,
13935, 13937, 13939, 13941, 13943, 13945, 13947, 13949, 13951, 13953,
13955, 13957, 13959, 13961, 13963, 13965, 13967, 13969, 13971, 13973,
13975, 13977, 13979, 13981, 13983, 13985, 13987, 13989, 13991, 13993,
13995, 13997, 13999, 14001, 14003, 14005, 14007, 14009, 14011, 14013,
14015, 14017, 14019, 14021, 14023, 14025, 14027, 14029, 14031, 14033,
14035, 14037, 14039, 14041, 14043, 14045, 14047, 14049, 14051, 14053,
14055, 14057, 14059, 14061, 14063, 14065, 14067, 14069, 14071, 14073,
14075, 14077, 14079, 14081, 14083, 14085, 14087, 14089, 14091, 14093,
14095, 14097, 14099, 14101, 14103, 14105, 14107, 14109, 14111, 14113,
14115, 14117, 14119, 14121, 14123, 14125, 14127, 14129, 14131, 14133,
14135, 14137, 14139, 14141, 14143, 14145, 14147, 14149, 14151, 14153,
14155, 14157, 14159, 14161, 14163, 14165, 14167, 14169, 14171, 14173,
14175, 14177, 14179, 14181, 14183, 14185, 14187, 14189, 14191, 14193,
14195, 14197, 14199, 14201, 14203, 14205, 14207, 14209, 14211, 14213,
14215, 14217, 14219, 14221, 14223, 14225, 14227, 14229, 14231, 14233,
14235, 14237, 14239, 14241, 14243, 14245, 14247, 14249, 14251, 14253,
14255, 14257, 14259, 14261, 14263, 14265, 14267, 14269, 14271, 14273,
14275, 14277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,
};
| 159,830 | 2,284 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_tonumeric.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
static const double kNumeric[] = {
-1/2.,
0.,
1.,
1/10.,
1/12.,
1/16.,
1/160.,
1/2.,
1/20.,
1/3.,
1/32.,
1/320.,
1/4.,
1/40.,
1/5.,
1/6.,
1/64.,
1/7.,
1/8.,
1/80.,
1/9.,
10.,
10/12.,
100.,
1000.,
10000.,
100000.,
1000000.,
10000000.,
100000000.,
10000000000.,
1000000000000.,
11.,
11/12.,
11/2.,
12.,
13.,
13/2.,
14.,
15.,
15/2.,
16.,
17.,
17/2.,
18.,
19.,
2.,
2/12.,
2/3.,
2/5.,
20.,
200.,
2000.,
20000.,
200000.,
20000000.,
21.,
216000.,
22.,
23.,
24.,
25.,
26.,
27.,
28.,
29.,
3.,
3/12.,
3/16.,
3/2.,
3/20.,
3/4.,
3/5.,
3/64.,
3/8.,
3/80.,
30.,
300.,
3000.,
30000.,
300000.,
31.,
32.,
33.,
34.,
35.,
36.,
37.,
38.,
39.,
4.,
4/12.,
4/5.,
40.,
400.,
4000.,
40000.,
400000.,
41.,
42.,
43.,
432000.,
44.,
45.,
46.,
47.,
48.,
49.,
5.,
5/12.,
5/2.,
5/6.,
5/8.,
50.,
500.,
5000.,
50000.,
500000.,
6.,
6/12.,
60.,
600.,
6000.,
60000.,
600000.,
7.,
7/12.,
7/2.,
7/8.,
70.,
700.,
7000.,
70000.,
700000.,
8.,
8/12.,
80.,
800.,
8000.,
80000.,
800000.,
9.,
9/12.,
9/2.,
90.,
900.,
9000.,
90000.,
900000.,
};
static const uint32_t kNumericCodes[] = {
0x0030,
0x0031,
0x0032,
0x0033,
0x0034,
0x0035,
0x0036,
0x0037,
0x0038,
0x0039,
0x00b2,
0x00b3,
0x00b9,
0x00bc,
0x00bd,
0x00be,
0x0660,
0x0661,
0x0662,
0x0663,
0x0664,
0x0665,
0x0666,
0x0667,
0x0668,
0x0669,
0x06f0,
0x06f1,
0x06f2,
0x06f3,
0x06f4,
0x06f5,
0x06f6,
0x06f7,
0x06f8,
0x06f9,
0x07c0,
0x07c1,
0x07c2,
0x07c3,
0x07c4,
0x07c5,
0x07c6,
0x07c7,
0x07c8,
0x07c9,
0x0966,
0x0967,
0x0968,
0x0969,
0x096a,
0x096b,
0x096c,
0x096d,
0x096e,
0x096f,
0x09e6,
0x09e7,
0x09e8,
0x09e9,
0x09ea,
0x09eb,
0x09ec,
0x09ed,
0x09ee,
0x09ef,
0x09f4,
0x09f5,
0x09f6,
0x09f7,
0x09f8,
0x09f9,
0x0a66,
0x0a67,
0x0a68,
0x0a69,
0x0a6a,
0x0a6b,
0x0a6c,
0x0a6d,
0x0a6e,
0x0a6f,
0x0ae6,
0x0ae7,
0x0ae8,
0x0ae9,
0x0aea,
0x0aeb,
0x0aec,
0x0aed,
0x0aee,
0x0aef,
0x0b66,
0x0b67,
0x0b68,
0x0b69,
0x0b6a,
0x0b6b,
0x0b6c,
0x0b6d,
0x0b6e,
0x0b6f,
0x0b72,
0x0b73,
0x0b74,
0x0b75,
0x0b76,
0x0b77,
0x0be6,
0x0be7,
0x0be8,
0x0be9,
0x0bea,
0x0beb,
0x0bec,
0x0bed,
0x0bee,
0x0bef,
0x0bf0,
0x0bf1,
0x0bf2,
0x0c66,
0x0c67,
0x0c68,
0x0c69,
0x0c6a,
0x0c6b,
0x0c6c,
0x0c6d,
0x0c6e,
0x0c6f,
0x0c78,
0x0c79,
0x0c7a,
0x0c7b,
0x0c7c,
0x0c7d,
0x0c7e,
0x0ce6,
0x0ce7,
0x0ce8,
0x0ce9,
0x0cea,
0x0ceb,
0x0cec,
0x0ced,
0x0cee,
0x0cef,
0x0d58,
0x0d59,
0x0d5a,
0x0d5b,
0x0d5c,
0x0d5d,
0x0d5e,
0x0d66,
0x0d67,
0x0d68,
0x0d69,
0x0d6a,
0x0d6b,
0x0d6c,
0x0d6d,
0x0d6e,
0x0d6f,
0x0d70,
0x0d71,
0x0d72,
0x0d73,
0x0d74,
0x0d75,
0x0d76,
0x0d77,
0x0d78,
0x0de6,
0x0de7,
0x0de8,
0x0de9,
0x0dea,
0x0deb,
0x0dec,
0x0ded,
0x0dee,
0x0def,
0x0e50,
0x0e51,
0x0e52,
0x0e53,
0x0e54,
0x0e55,
0x0e56,
0x0e57,
0x0e58,
0x0e59,
0x0ed0,
0x0ed1,
0x0ed2,
0x0ed3,
0x0ed4,
0x0ed5,
0x0ed6,
0x0ed7,
0x0ed8,
0x0ed9,
0x0f20,
0x0f21,
0x0f22,
0x0f23,
0x0f24,
0x0f25,
0x0f26,
0x0f27,
0x0f28,
0x0f29,
0x0f2a,
0x0f2b,
0x0f2c,
0x0f2d,
0x0f2e,
0x0f2f,
0x0f30,
0x0f31,
0x0f32,
0x0f33,
0x1040,
0x1041,
0x1042,
0x1043,
0x1044,
0x1045,
0x1046,
0x1047,
0x1048,
0x1049,
0x1090,
0x1091,
0x1092,
0x1093,
0x1094,
0x1095,
0x1096,
0x1097,
0x1098,
0x1099,
0x1369,
0x136a,
0x136b,
0x136c,
0x136d,
0x136e,
0x136f,
0x1370,
0x1371,
0x1372,
0x1373,
0x1374,
0x1375,
0x1376,
0x1377,
0x1378,
0x1379,
0x137a,
0x137b,
0x137c,
0x16ee,
0x16ef,
0x16f0,
0x17e0,
0x17e1,
0x17e2,
0x17e3,
0x17e4,
0x17e5,
0x17e6,
0x17e7,
0x17e8,
0x17e9,
0x17f0,
0x17f1,
0x17f2,
0x17f3,
0x17f4,
0x17f5,
0x17f6,
0x17f7,
0x17f8,
0x17f9,
0x1810,
0x1811,
0x1812,
0x1813,
0x1814,
0x1815,
0x1816,
0x1817,
0x1818,
0x1819,
0x1946,
0x1947,
0x1948,
0x1949,
0x194a,
0x194b,
0x194c,
0x194d,
0x194e,
0x194f,
0x19d0,
0x19d1,
0x19d2,
0x19d3,
0x19d4,
0x19d5,
0x19d6,
0x19d7,
0x19d8,
0x19d9,
0x19da,
0x1a80,
0x1a81,
0x1a82,
0x1a83,
0x1a84,
0x1a85,
0x1a86,
0x1a87,
0x1a88,
0x1a89,
0x1a90,
0x1a91,
0x1a92,
0x1a93,
0x1a94,
0x1a95,
0x1a96,
0x1a97,
0x1a98,
0x1a99,
0x1b50,
0x1b51,
0x1b52,
0x1b53,
0x1b54,
0x1b55,
0x1b56,
0x1b57,
0x1b58,
0x1b59,
0x1bb0,
0x1bb1,
0x1bb2,
0x1bb3,
0x1bb4,
0x1bb5,
0x1bb6,
0x1bb7,
0x1bb8,
0x1bb9,
0x1c40,
0x1c41,
0x1c42,
0x1c43,
0x1c44,
0x1c45,
0x1c46,
0x1c47,
0x1c48,
0x1c49,
0x1c50,
0x1c51,
0x1c52,
0x1c53,
0x1c54,
0x1c55,
0x1c56,
0x1c57,
0x1c58,
0x1c59,
0x2070,
0x2074,
0x2075,
0x2076,
0x2077,
0x2078,
0x2079,
0x2080,
0x2081,
0x2082,
0x2083,
0x2084,
0x2085,
0x2086,
0x2087,
0x2088,
0x2089,
0x2150,
0x2151,
0x2152,
0x2153,
0x2154,
0x2155,
0x2156,
0x2157,
0x2158,
0x2159,
0x215a,
0x215b,
0x215c,
0x215d,
0x215e,
0x215f,
0x2160,
0x2161,
0x2162,
0x2163,
0x2164,
0x2165,
0x2166,
0x2167,
0x2168,
0x2169,
0x216a,
0x216b,
0x216c,
0x216d,
0x216e,
0x216f,
0x2170,
0x2171,
0x2172,
0x2173,
0x2174,
0x2175,
0x2176,
0x2177,
0x2178,
0x2179,
0x217a,
0x217b,
0x217c,
0x217d,
0x217e,
0x217f,
0x2180,
0x2181,
0x2182,
0x2185,
0x2186,
0x2187,
0x2188,
0x2189,
0x2460,
0x2461,
0x2462,
0x2463,
0x2464,
0x2465,
0x2466,
0x2467,
0x2468,
0x2469,
0x246a,
0x246b,
0x246c,
0x246d,
0x246e,
0x246f,
0x2470,
0x2471,
0x2472,
0x2473,
0x2474,
0x2475,
0x2476,
0x2477,
0x2478,
0x2479,
0x247a,
0x247b,
0x247c,
0x247d,
0x247e,
0x247f,
0x2480,
0x2481,
0x2482,
0x2483,
0x2484,
0x2485,
0x2486,
0x2487,
0x2488,
0x2489,
0x248a,
0x248b,
0x248c,
0x248d,
0x248e,
0x248f,
0x2490,
0x2491,
0x2492,
0x2493,
0x2494,
0x2495,
0x2496,
0x2497,
0x2498,
0x2499,
0x249a,
0x249b,
0x24ea,
0x24eb,
0x24ec,
0x24ed,
0x24ee,
0x24ef,
0x24f0,
0x24f1,
0x24f2,
0x24f3,
0x24f4,
0x24f5,
0x24f6,
0x24f7,
0x24f8,
0x24f9,
0x24fa,
0x24fb,
0x24fc,
0x24fd,
0x24fe,
0x24ff,
0x2776,
0x2777,
0x2778,
0x2779,
0x277a,
0x277b,
0x277c,
0x277d,
0x277e,
0x277f,
0x2780,
0x2781,
0x2782,
0x2783,
0x2784,
0x2785,
0x2786,
0x2787,
0x2788,
0x2789,
0x278a,
0x278b,
0x278c,
0x278d,
0x278e,
0x278f,
0x2790,
0x2791,
0x2792,
0x2793,
0x2cfd,
0x3007,
0x3021,
0x3022,
0x3023,
0x3024,
0x3025,
0x3026,
0x3027,
0x3028,
0x3029,
0x3038,
0x3039,
0x303a,
0x3192,
0x3193,
0x3194,
0x3195,
0x3220,
0x3221,
0x3222,
0x3223,
0x3224,
0x3225,
0x3226,
0x3227,
0x3228,
0x3229,
0x3248,
0x3249,
0x324a,
0x324b,
0x324c,
0x324d,
0x324e,
0x324f,
0x3251,
0x3252,
0x3253,
0x3254,
0x3255,
0x3256,
0x3257,
0x3258,
0x3259,
0x325a,
0x325b,
0x325c,
0x325d,
0x325e,
0x325f,
0x3280,
0x3281,
0x3282,
0x3283,
0x3284,
0x3285,
0x3286,
0x3287,
0x3288,
0x3289,
0x32b1,
0x32b2,
0x32b3,
0x32b4,
0x32b5,
0x32b6,
0x32b7,
0x32b8,
0x32b9,
0x32ba,
0x32bb,
0x32bc,
0x32bd,
0x32be,
0x32bf,
0x3405,
0x3483,
0x382a,
0x3b4d,
0x4e00,
0x4e03,
0x4e07,
0x4e09,
0x4e5d,
0x4e8c,
0x4e94,
0x4e96,
0x4ebf,
0x4ec0,
0x4edf,
0x4ee8,
0x4f0d,
0x4f70,
0x5104,
0x5146,
0x5169,
0x516b,
0x516d,
0x5341,
0x5343,
0x5344,
0x5345,
0x534c,
0x53c1,
0x53c2,
0x53c3,
0x53c4,
0x56db,
0x58f1,
0x58f9,
0x5e7a,
0x5efe,
0x5eff,
0x5f0c,
0x5f0d,
0x5f0e,
0x5f10,
0x62fe,
0x634c,
0x67d2,
0x6f06,
0x7396,
0x767e,
0x8086,
0x842c,
0x8cae,
0x8cb3,
0x8d30,
0x9621,
0x9646,
0x964c,
0x9678,
0x96f6,
0xa620,
0xa621,
0xa622,
0xa623,
0xa624,
0xa625,
0xa626,
0xa627,
0xa628,
0xa629,
0xa6e6,
0xa6e7,
0xa6e8,
0xa6e9,
0xa6ea,
0xa6eb,
0xa6ec,
0xa6ed,
0xa6ee,
0xa6ef,
0xa830,
0xa831,
0xa832,
0xa833,
0xa834,
0xa835,
0xa8d0,
0xa8d1,
0xa8d2,
0xa8d3,
0xa8d4,
0xa8d5,
0xa8d6,
0xa8d7,
0xa8d8,
0xa8d9,
0xa900,
0xa901,
0xa902,
0xa903,
0xa904,
0xa905,
0xa906,
0xa907,
0xa908,
0xa909,
0xa9d0,
0xa9d1,
0xa9d2,
0xa9d3,
0xa9d4,
0xa9d5,
0xa9d6,
0xa9d7,
0xa9d8,
0xa9d9,
0xa9f0,
0xa9f1,
0xa9f2,
0xa9f3,
0xa9f4,
0xa9f5,
0xa9f6,
0xa9f7,
0xa9f8,
0xa9f9,
0xaa50,
0xaa51,
0xaa52,
0xaa53,
0xaa54,
0xaa55,
0xaa56,
0xaa57,
0xaa58,
0xaa59,
0xabf0,
0xabf1,
0xabf2,
0xabf3,
0xabf4,
0xabf5,
0xabf6,
0xabf7,
0xabf8,
0xabf9,
0xf96b,
0xf973,
0xf978,
0xf9b2,
0xf9d1,
0xf9d3,
0xf9fd,
0xff10,
0xff11,
0xff12,
0xff13,
0xff14,
0xff15,
0xff16,
0xff17,
0xff18,
0xff19,
};
static const uint8_t kNumericIndices[] = {
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
46,
66,
2,
12,
7,
71,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
5,
18,
68,
12,
71,
41,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
12,
7,
71,
5,
18,
68,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
23,
24,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
2,
46,
66,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
6,
13,
75,
8,
3,
70,
14,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
23,
24,
12,
7,
71,
5,
18,
68,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
7,
69,
110,
127,
143,
34,
37,
40,
43,
0,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
25,
42,
44,
45,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
17,
20,
3,
9,
48,
14,
49,
72,
92,
15,
111,
18,
74,
112,
128,
2,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
113,
23,
114,
24,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
113,
23,
114,
24,
24,
115,
25,
118,
113,
116,
26,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
36,
38,
39,
41,
42,
44,
45,
50,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
36,
38,
39,
41,
42,
44,
45,
50,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
36,
38,
39,
41,
42,
44,
45,
50,
1,
32,
35,
36,
38,
39,
41,
42,
44,
45,
50,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
7,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
2,
46,
66,
90,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
21,
50,
76,
93,
113,
120,
129,
136,
56,
58,
59,
60,
61,
62,
63,
64,
65,
76,
81,
82,
83,
84,
85,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
86,
87,
88,
89,
93,
98,
99,
100,
102,
103,
104,
105,
106,
107,
113,
108,
46,
108,
125,
2,
125,
25,
66,
141,
46,
108,
90,
29,
21,
24,
66,
108,
23,
29,
31,
46,
134,
118,
21,
24,
50,
76,
93,
66,
66,
66,
66,
90,
2,
2,
2,
141,
50,
2,
46,
66,
46,
21,
134,
125,
125,
141,
23,
90,
25,
46,
46,
46,
24,
118,
23,
118,
1,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
12,
7,
71,
5,
18,
68,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
66,
21,
46,
1,
118,
118,
21,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
};
static const uint32_t kNumericAstralCodes[] = {
0x10107,
0x10108,
0x10109,
0x1010a,
0x1010b,
0x1010c,
0x1010d,
0x1010e,
0x1010f,
0x10110,
0x10111,
0x10112,
0x10113,
0x10114,
0x10115,
0x10116,
0x10117,
0x10118,
0x10119,
0x1011a,
0x1011b,
0x1011c,
0x1011d,
0x1011e,
0x1011f,
0x10120,
0x10121,
0x10122,
0x10123,
0x10124,
0x10125,
0x10126,
0x10127,
0x10128,
0x10129,
0x1012a,
0x1012b,
0x1012c,
0x1012d,
0x1012e,
0x1012f,
0x10130,
0x10131,
0x10132,
0x10133,
0x10140,
0x10141,
0x10142,
0x10143,
0x10144,
0x10145,
0x10146,
0x10147,
0x10148,
0x10149,
0x1014a,
0x1014b,
0x1014c,
0x1014d,
0x1014e,
0x1014f,
0x10150,
0x10151,
0x10152,
0x10153,
0x10154,
0x10155,
0x10156,
0x10157,
0x10158,
0x10159,
0x1015a,
0x1015b,
0x1015c,
0x1015d,
0x1015e,
0x1015f,
0x10160,
0x10161,
0x10162,
0x10163,
0x10164,
0x10165,
0x10166,
0x10167,
0x10168,
0x10169,
0x1016a,
0x1016b,
0x1016c,
0x1016d,
0x1016e,
0x1016f,
0x10170,
0x10171,
0x10172,
0x10173,
0x10174,
0x10175,
0x10176,
0x10177,
0x10178,
0x1018a,
0x1018b,
0x102e1,
0x102e2,
0x102e3,
0x102e4,
0x102e5,
0x102e6,
0x102e7,
0x102e8,
0x102e9,
0x102ea,
0x102eb,
0x102ec,
0x102ed,
0x102ee,
0x102ef,
0x102f0,
0x102f1,
0x102f2,
0x102f3,
0x102f4,
0x102f5,
0x102f6,
0x102f7,
0x102f8,
0x102f9,
0x102fa,
0x102fb,
0x10320,
0x10321,
0x10322,
0x10323,
0x10341,
0x1034a,
0x103d1,
0x103d2,
0x103d3,
0x103d4,
0x103d5,
0x104a0,
0x104a1,
0x104a2,
0x104a3,
0x104a4,
0x104a5,
0x104a6,
0x104a7,
0x104a8,
0x104a9,
0x10858,
0x10859,
0x1085a,
0x1085b,
0x1085c,
0x1085d,
0x1085e,
0x1085f,
0x10879,
0x1087a,
0x1087b,
0x1087c,
0x1087d,
0x1087e,
0x1087f,
0x108a7,
0x108a8,
0x108a9,
0x108aa,
0x108ab,
0x108ac,
0x108ad,
0x108ae,
0x108af,
0x108fb,
0x108fc,
0x108fd,
0x108fe,
0x108ff,
0x10916,
0x10917,
0x10918,
0x10919,
0x1091a,
0x1091b,
0x109bc,
0x109bd,
0x109c0,
0x109c1,
0x109c2,
0x109c3,
0x109c4,
0x109c5,
0x109c6,
0x109c7,
0x109c8,
0x109c9,
0x109ca,
0x109cb,
0x109cc,
0x109cd,
0x109ce,
0x109cf,
0x109d2,
0x109d3,
0x109d4,
0x109d5,
0x109d6,
0x109d7,
0x109d8,
0x109d9,
0x109da,
0x109db,
0x109dc,
0x109dd,
0x109de,
0x109df,
0x109e0,
0x109e1,
0x109e2,
0x109e3,
0x109e4,
0x109e5,
0x109e6,
0x109e7,
0x109e8,
0x109e9,
0x109ea,
0x109eb,
0x109ec,
0x109ed,
0x109ee,
0x109ef,
0x109f0,
0x109f1,
0x109f2,
0x109f3,
0x109f4,
0x109f5,
0x109f6,
0x109f7,
0x109f8,
0x109f9,
0x109fa,
0x109fb,
0x109fc,
0x109fd,
0x109fe,
0x109ff,
0x10a40,
0x10a41,
0x10a42,
0x10a43,
0x10a44,
0x10a45,
0x10a46,
0x10a47,
0x10a48,
0x10a7d,
0x10a7e,
0x10a9d,
0x10a9e,
0x10a9f,
0x10aeb,
0x10aec,
0x10aed,
0x10aee,
0x10aef,
0x10b58,
0x10b59,
0x10b5a,
0x10b5b,
0x10b5c,
0x10b5d,
0x10b5e,
0x10b5f,
0x10b78,
0x10b79,
0x10b7a,
0x10b7b,
0x10b7c,
0x10b7d,
0x10b7e,
0x10b7f,
0x10ba9,
0x10baa,
0x10bab,
0x10bac,
0x10bad,
0x10bae,
0x10baf,
0x10cfa,
0x10cfb,
0x10cfc,
0x10cfd,
0x10cfe,
0x10cff,
0x10d30,
0x10d31,
0x10d32,
0x10d33,
0x10d34,
0x10d35,
0x10d36,
0x10d37,
0x10d38,
0x10d39,
0x10e60,
0x10e61,
0x10e62,
0x10e63,
0x10e64,
0x10e65,
0x10e66,
0x10e67,
0x10e68,
0x10e69,
0x10e6a,
0x10e6b,
0x10e6c,
0x10e6d,
0x10e6e,
0x10e6f,
0x10e70,
0x10e71,
0x10e72,
0x10e73,
0x10e74,
0x10e75,
0x10e76,
0x10e77,
0x10e78,
0x10e79,
0x10e7a,
0x10e7b,
0x10e7c,
0x10e7d,
0x10e7e,
0x10f1d,
0x10f1e,
0x10f1f,
0x10f20,
0x10f21,
0x10f22,
0x10f23,
0x10f24,
0x10f25,
0x10f26,
0x10f51,
0x10f52,
0x10f53,
0x10f54,
0x10fc5,
0x10fc6,
0x10fc7,
0x10fc8,
0x10fc9,
0x10fca,
0x10fcb,
0x11052,
0x11053,
0x11054,
0x11055,
0x11056,
0x11057,
0x11058,
0x11059,
0x1105a,
0x1105b,
0x1105c,
0x1105d,
0x1105e,
0x1105f,
0x11060,
0x11061,
0x11062,
0x11063,
0x11064,
0x11065,
0x11066,
0x11067,
0x11068,
0x11069,
0x1106a,
0x1106b,
0x1106c,
0x1106d,
0x1106e,
0x1106f,
0x110f0,
0x110f1,
0x110f2,
0x110f3,
0x110f4,
0x110f5,
0x110f6,
0x110f7,
0x110f8,
0x110f9,
0x11136,
0x11137,
0x11138,
0x11139,
0x1113a,
0x1113b,
0x1113c,
0x1113d,
0x1113e,
0x1113f,
0x111d0,
0x111d1,
0x111d2,
0x111d3,
0x111d4,
0x111d5,
0x111d6,
0x111d7,
0x111d8,
0x111d9,
0x111e1,
0x111e2,
0x111e3,
0x111e4,
0x111e5,
0x111e6,
0x111e7,
0x111e8,
0x111e9,
0x111ea,
0x111eb,
0x111ec,
0x111ed,
0x111ee,
0x111ef,
0x111f0,
0x111f1,
0x111f2,
0x111f3,
0x111f4,
0x112f0,
0x112f1,
0x112f2,
0x112f3,
0x112f4,
0x112f5,
0x112f6,
0x112f7,
0x112f8,
0x112f9,
0x11450,
0x11451,
0x11452,
0x11453,
0x11454,
0x11455,
0x11456,
0x11457,
0x11458,
0x11459,
0x114d0,
0x114d1,
0x114d2,
0x114d3,
0x114d4,
0x114d5,
0x114d6,
0x114d7,
0x114d8,
0x114d9,
0x11650,
0x11651,
0x11652,
0x11653,
0x11654,
0x11655,
0x11656,
0x11657,
0x11658,
0x11659,
0x116c0,
0x116c1,
0x116c2,
0x116c3,
0x116c4,
0x116c5,
0x116c6,
0x116c7,
0x116c8,
0x116c9,
0x11730,
0x11731,
0x11732,
0x11733,
0x11734,
0x11735,
0x11736,
0x11737,
0x11738,
0x11739,
0x1173a,
0x1173b,
0x118e0,
0x118e1,
0x118e2,
0x118e3,
0x118e4,
0x118e5,
0x118e6,
0x118e7,
0x118e8,
0x118e9,
0x118ea,
0x118eb,
0x118ec,
0x118ed,
0x118ee,
0x118ef,
0x118f0,
0x118f1,
0x118f2,
0x11950,
0x11951,
0x11952,
0x11953,
0x11954,
0x11955,
0x11956,
0x11957,
0x11958,
0x11959,
0x11c50,
0x11c51,
0x11c52,
0x11c53,
0x11c54,
0x11c55,
0x11c56,
0x11c57,
0x11c58,
0x11c59,
0x11c5a,
0x11c5b,
0x11c5c,
0x11c5d,
0x11c5e,
0x11c5f,
0x11c60,
0x11c61,
0x11c62,
0x11c63,
0x11c64,
0x11c65,
0x11c66,
0x11c67,
0x11c68,
0x11c69,
0x11c6a,
0x11c6b,
0x11c6c,
0x11d50,
0x11d51,
0x11d52,
0x11d53,
0x11d54,
0x11d55,
0x11d56,
0x11d57,
0x11d58,
0x11d59,
0x11da0,
0x11da1,
0x11da2,
0x11da3,
0x11da4,
0x11da5,
0x11da6,
0x11da7,
0x11da8,
0x11da9,
0x11fc0,
0x11fc1,
0x11fc2,
0x11fc3,
0x11fc4,
0x11fc5,
0x11fc6,
0x11fc7,
0x11fc8,
0x11fc9,
0x11fca,
0x11fcb,
0x11fcc,
0x11fcd,
0x11fce,
0x11fcf,
0x11fd0,
0x11fd1,
0x11fd2,
0x11fd3,
0x11fd4,
0x12400,
0x12401,
0x12402,
0x12403,
0x12404,
0x12405,
0x12406,
0x12407,
0x12408,
0x12409,
0x1240a,
0x1240b,
0x1240c,
0x1240d,
0x1240e,
0x1240f,
0x12410,
0x12411,
0x12412,
0x12413,
0x12414,
0x12415,
0x12416,
0x12417,
0x12418,
0x12419,
0x1241a,
0x1241b,
0x1241c,
0x1241d,
0x1241e,
0x1241f,
0x12420,
0x12421,
0x12422,
0x12423,
0x12424,
0x12425,
0x12426,
0x12427,
0x12428,
0x12429,
0x1242a,
0x1242b,
0x1242c,
0x1242d,
0x1242e,
0x1242f,
0x12430,
0x12431,
0x12432,
0x12433,
0x12434,
0x12435,
0x12436,
0x12437,
0x12438,
0x12439,
0x1243a,
0x1243b,
0x1243c,
0x1243d,
0x1243e,
0x1243f,
0x12440,
0x12441,
0x12442,
0x12443,
0x12444,
0x12445,
0x12446,
0x12447,
0x12448,
0x12449,
0x1244a,
0x1244b,
0x1244c,
0x1244d,
0x1244e,
0x1244f,
0x12450,
0x12451,
0x12452,
0x12453,
0x12454,
0x12455,
0x12456,
0x12457,
0x12458,
0x12459,
0x1245a,
0x1245b,
0x1245c,
0x1245d,
0x1245e,
0x1245f,
0x12460,
0x12461,
0x12462,
0x12463,
0x12464,
0x12465,
0x12466,
0x12467,
0x12468,
0x12469,
0x1246a,
0x1246b,
0x1246c,
0x1246d,
0x1246e,
0x16a60,
0x16a61,
0x16a62,
0x16a63,
0x16a64,
0x16a65,
0x16a66,
0x16a67,
0x16a68,
0x16a69,
0x16b50,
0x16b51,
0x16b52,
0x16b53,
0x16b54,
0x16b55,
0x16b56,
0x16b57,
0x16b58,
0x16b59,
0x16b5b,
0x16b5c,
0x16b5d,
0x16b5e,
0x16b5f,
0x16b60,
0x16b61,
0x16e80,
0x16e81,
0x16e82,
0x16e83,
0x16e84,
0x16e85,
0x16e86,
0x16e87,
0x16e88,
0x16e89,
0x16e8a,
0x16e8b,
0x16e8c,
0x16e8d,
0x16e8e,
0x16e8f,
0x16e90,
0x16e91,
0x16e92,
0x16e93,
0x16e94,
0x16e95,
0x16e96,
0x1d2e0,
0x1d2e1,
0x1d2e2,
0x1d2e3,
0x1d2e4,
0x1d2e5,
0x1d2e6,
0x1d2e7,
0x1d2e8,
0x1d2e9,
0x1d2ea,
0x1d2eb,
0x1d2ec,
0x1d2ed,
0x1d2ee,
0x1d2ef,
0x1d2f0,
0x1d2f1,
0x1d2f2,
0x1d2f3,
0x1d360,
0x1d361,
0x1d362,
0x1d363,
0x1d364,
0x1d365,
0x1d366,
0x1d367,
0x1d368,
0x1d369,
0x1d36a,
0x1d36b,
0x1d36c,
0x1d36d,
0x1d36e,
0x1d36f,
0x1d370,
0x1d371,
0x1d372,
0x1d373,
0x1d374,
0x1d375,
0x1d376,
0x1d377,
0x1d378,
0x1d7ce,
0x1d7cf,
0x1d7d0,
0x1d7d1,
0x1d7d2,
0x1d7d3,
0x1d7d4,
0x1d7d5,
0x1d7d6,
0x1d7d7,
0x1d7d8,
0x1d7d9,
0x1d7da,
0x1d7db,
0x1d7dc,
0x1d7dd,
0x1d7de,
0x1d7df,
0x1d7e0,
0x1d7e1,
0x1d7e2,
0x1d7e3,
0x1d7e4,
0x1d7e5,
0x1d7e6,
0x1d7e7,
0x1d7e8,
0x1d7e9,
0x1d7ea,
0x1d7eb,
0x1d7ec,
0x1d7ed,
0x1d7ee,
0x1d7ef,
0x1d7f0,
0x1d7f1,
0x1d7f2,
0x1d7f3,
0x1d7f4,
0x1d7f5,
0x1d7f6,
0x1d7f7,
0x1d7f8,
0x1d7f9,
0x1d7fa,
0x1d7fb,
0x1d7fc,
0x1d7fd,
0x1d7fe,
0x1d7ff,
0x1e140,
0x1e141,
0x1e142,
0x1e143,
0x1e144,
0x1e145,
0x1e146,
0x1e147,
0x1e148,
0x1e149,
0x1e2f0,
0x1e2f1,
0x1e2f2,
0x1e2f3,
0x1e2f4,
0x1e2f5,
0x1e2f6,
0x1e2f7,
0x1e2f8,
0x1e2f9,
0x1e8c7,
0x1e8c8,
0x1e8c9,
0x1e8ca,
0x1e8cb,
0x1e8cc,
0x1e8cd,
0x1e8ce,
0x1e8cf,
0x1e950,
0x1e951,
0x1e952,
0x1e953,
0x1e954,
0x1e955,
0x1e956,
0x1e957,
0x1e958,
0x1e959,
0x1ec71,
0x1ec72,
0x1ec73,
0x1ec74,
0x1ec75,
0x1ec76,
0x1ec77,
0x1ec78,
0x1ec79,
0x1ec7a,
0x1ec7b,
0x1ec7c,
0x1ec7d,
0x1ec7e,
0x1ec7f,
0x1ec80,
0x1ec81,
0x1ec82,
0x1ec83,
0x1ec84,
0x1ec85,
0x1ec86,
0x1ec87,
0x1ec88,
0x1ec89,
0x1ec8a,
0x1ec8b,
0x1ec8c,
0x1ec8d,
0x1ec8e,
0x1ec8f,
0x1ec90,
0x1ec91,
0x1ec92,
0x1ec93,
0x1ec94,
0x1ec95,
0x1ec96,
0x1ec97,
0x1ec98,
0x1ec99,
0x1ec9a,
0x1ec9b,
0x1ec9c,
0x1ec9d,
0x1ec9e,
0x1ec9f,
0x1eca0,
0x1eca1,
0x1eca2,
0x1eca3,
0x1eca4,
0x1eca5,
0x1eca6,
0x1eca7,
0x1eca8,
0x1eca9,
0x1ecaa,
0x1ecab,
0x1ecad,
0x1ecae,
0x1ecaf,
0x1ecb1,
0x1ecb2,
0x1ecb3,
0x1ecb4,
0x1ed01,
0x1ed02,
0x1ed03,
0x1ed04,
0x1ed05,
0x1ed06,
0x1ed07,
0x1ed08,
0x1ed09,
0x1ed0a,
0x1ed0b,
0x1ed0c,
0x1ed0d,
0x1ed0e,
0x1ed0f,
0x1ed10,
0x1ed11,
0x1ed12,
0x1ed13,
0x1ed14,
0x1ed15,
0x1ed16,
0x1ed17,
0x1ed18,
0x1ed19,
0x1ed1a,
0x1ed1b,
0x1ed1c,
0x1ed1d,
0x1ed1e,
0x1ed1f,
0x1ed20,
0x1ed21,
0x1ed22,
0x1ed23,
0x1ed24,
0x1ed25,
0x1ed26,
0x1ed27,
0x1ed28,
0x1ed29,
0x1ed2a,
0x1ed2b,
0x1ed2c,
0x1ed2d,
0x1ed2f,
0x1ed30,
0x1ed31,
0x1ed32,
0x1ed33,
0x1ed34,
0x1ed35,
0x1ed36,
0x1ed37,
0x1ed38,
0x1ed39,
0x1ed3a,
0x1ed3b,
0x1ed3c,
0x1ed3d,
0x1f100,
0x1f101,
0x1f102,
0x1f103,
0x1f104,
0x1f105,
0x1f106,
0x1f107,
0x1f108,
0x1f109,
0x1f10a,
0x1f10b,
0x1f10c,
0x1fbf0,
0x1fbf1,
0x1fbf2,
0x1fbf3,
0x1fbf4,
0x1fbf5,
0x1fbf6,
0x1fbf7,
0x1fbf8,
0x1fbf9,
0x20001,
0x20064,
0x200e2,
0x20121,
0x2092a,
0x20983,
0x2098c,
0x2099c,
0x20aea,
0x20afd,
0x20b19,
0x22390,
0x22998,
0x23b1b,
0x2626d,
0x2f890,
};
static const uint8_t kNumericAstralIndices[] = {
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
51,
77,
94,
114,
121,
130,
137,
145,
24,
52,
78,
95,
115,
122,
131,
138,
146,
25,
53,
79,
96,
116,
123,
132,
139,
147,
12,
7,
2,
108,
113,
114,
115,
116,
108,
21,
113,
23,
114,
24,
115,
108,
21,
113,
23,
114,
24,
25,
116,
21,
2,
2,
2,
46,
46,
46,
46,
108,
21,
21,
21,
21,
21,
76,
113,
113,
113,
113,
23,
77,
114,
114,
114,
114,
114,
24,
115,
108,
113,
7,
7,
48,
71,
1,
12,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
51,
77,
94,
114,
121,
130,
137,
145,
2,
108,
21,
113,
144,
145,
2,
46,
21,
50,
23,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
21,
50,
23,
24,
25,
2,
46,
66,
90,
108,
21,
50,
2,
46,
66,
90,
90,
108,
21,
50,
23,
2,
108,
21,
50,
23,
2,
21,
50,
23,
46,
66,
33,
7,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
23,
51,
77,
94,
114,
121,
130,
137,
145,
24,
52,
78,
95,
115,
122,
131,
138,
146,
25,
53,
79,
96,
116,
123,
132,
139,
147,
26,
54,
80,
97,
117,
124,
133,
140,
148,
4,
47,
67,
91,
109,
119,
126,
135,
142,
22,
2,
46,
66,
90,
21,
50,
23,
24,
7,
2,
113,
2,
21,
50,
2,
108,
21,
50,
23,
2,
46,
66,
90,
21,
50,
23,
24,
2,
46,
66,
90,
21,
50,
23,
24,
2,
46,
66,
90,
21,
50,
23,
2,
108,
21,
113,
23,
24,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
51,
77,
94,
114,
121,
130,
137,
145,
7,
12,
9,
48,
2,
46,
66,
90,
108,
21,
50,
76,
23,
7,
2,
21,
50,
23,
2,
46,
66,
90,
21,
50,
23,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
24,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
24,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
11,
6,
19,
16,
13,
10,
75,
73,
8,
5,
5,
3,
18,
70,
68,
14,
12,
7,
7,
71,
11,
46,
66,
90,
108,
118,
125,
134,
141,
66,
90,
108,
118,
125,
134,
141,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
46,
66,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
66,
90,
108,
57,
101,
2,
46,
66,
66,
90,
108,
66,
66,
90,
90,
90,
90,
118,
125,
125,
125,
134,
134,
141,
141,
141,
141,
46,
66,
90,
108,
118,
2,
46,
66,
90,
90,
108,
108,
46,
66,
2,
46,
9,
48,
111,
9,
48,
18,
12,
15,
12,
12,
7,
9,
48,
93,
113,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
23,
25,
27,
29,
30,
31,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
36,
38,
39,
41,
42,
44,
45,
2,
46,
66,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
32,
35,
36,
38,
39,
41,
42,
44,
45,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
2,
46,
66,
90,
108,
2,
108,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
51,
77,
94,
114,
121,
130,
137,
145,
24,
52,
78,
95,
115,
122,
131,
138,
146,
25,
53,
79,
96,
116,
123,
132,
139,
147,
26,
54,
26,
28,
55,
2,
46,
66,
90,
108,
118,
125,
134,
141,
12,
7,
71,
2,
46,
25,
26,
2,
46,
66,
90,
108,
118,
125,
134,
141,
21,
50,
76,
93,
113,
120,
129,
136,
144,
23,
51,
77,
94,
114,
121,
130,
137,
145,
24,
52,
78,
95,
115,
122,
131,
138,
146,
25,
53,
79,
96,
116,
123,
132,
139,
147,
46,
66,
90,
108,
118,
125,
134,
141,
21,
94,
121,
52,
25,
7,
15,
1,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
1,
1,
1,
2,
46,
66,
90,
108,
118,
125,
134,
141,
125,
90,
90,
108,
2,
76,
93,
93,
118,
66,
66,
46,
66,
66,
90,
141,
};
/* Returns the numeric value as double for Unicode characters
* having this property, -1.0 otherwise.
*/
double _PyUnicode_ToNumeric(Py_UCS4 c)
{
int l, m, r;
if (c <= 0xFFFF) {
l = 0;
r = sizeof(kNumericCodes) / sizeof(kNumericCodes[0]) - 1;
while (l <= r) {
m = (l + r) >> 1;
if (kNumericCodes[m] < c) {
l = m + 1;
} else if (kNumericCodes[m] > c) {
r = m - 1;
} else {
return kNumeric[kNumericIndices[m]];
}
}
} else {
l = 0;
r = sizeof(kNumericAstralCodes) / sizeof(kNumericAstralCodes[0]) - 1;
while (l <= r) {
m = (l + r) >> 1;
if (kNumericAstralCodes[m] < c) {
l = m + 1;
} else if (kNumericAstralCodes[m] > c) {
r = m - 1;
} else {
return kNumeric[kNumericAstralIndices[m]];
}
}
}
return -1;
}
| 34,038 | 3,930 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_posixsubprocess.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/calls/calls.h"
#include "libc/calls/internal.h"
#include "libc/calls/struct/dirent.h"
#include "libc/calls/weirdtypes.h"
#include "libc/dce.h"
#include "libc/errno.h"
#include "libc/runtime/runtime.h"
#include "libc/runtime/sysconf.h"
#include "libc/sysv/consts/o.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/codecs.h"
#include "third_party/python/Include/fileutils.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/intrcheck.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
PYTHON_PROVIDE("_posixsubprocess");
PYTHON_PROVIDE("_posixsubprocess.fork_exec");
/* Authors: Gregory P. Smith & Jeffrey Yasskin */
# define FD_DIR (IsBsd() ? "/dev/fd" : "/proc/self/fd")
#define POSIX_CALL(call) do { if ((call) == -1) goto error; } while (0)
/* If gc was disabled, call gc.enable(). Return 0 on success. */
static int
_enable_gc(int need_to_reenable_gc, PyObject *gc_module)
{
PyObject *result;
_Py_IDENTIFIER(enable);
PyObject *exctype, *val, *tb;
if (need_to_reenable_gc) {
PyErr_Fetch(&exctype, &val, &tb);
result = _PyObject_CallMethodId(gc_module, &PyId_enable, NULL);
if (exctype != NULL) {
PyErr_Restore(exctype, val, tb);
}
if (result == NULL) {
return 1;
}
Py_DECREF(result);
}
return 0;
}
/* Convert ASCII to a positive int, no libc call. no overflow. -1 on error. */
static int
_pos_int_from_ascii(const char *name)
{
int num = 0;
while (*name >= '0' && *name <= '9') {
num = num * 10 + (*name - '0');
++name;
}
if (*name)
return -1; /* Non digit found, not a number. */
return num;
}
/* When /dev/fd isn't mounted it is often a static directory populated
* with 0 1 2 or entries for 0 .. 63 on FreeBSD, NetBSD and OpenBSD.
* NetBSD and OpenBSD have a /proc fs available (though not necessarily
* mounted) and do not have fdescfs for /dev/fd. MacOS X has a devfs
* that properly supports /dev/fd.
*/
static int
_is_fdescfs_mounted_on_dev_fd(void)
{
struct stat dev_stat;
struct stat dev_fd_stat;
if (stat("/dev", &dev_stat) != 0)
return 0;
if (stat(FD_DIR, &dev_fd_stat) != 0)
return 0;
if (dev_stat.st_dev == dev_fd_stat.st_dev)
return 0; /* / == /dev == /dev/fd means it is static. #fail */
return 1;
}
/* Returns 1 if there is a problem with fd_sequence, 0 otherwise. */
static int
_sanity_check_python_fd_sequence(PyObject *fd_sequence)
{
Py_ssize_t seq_idx;
long prev_fd = -1;
for (seq_idx = 0; seq_idx < PyTuple_GET_SIZE(fd_sequence); ++seq_idx) {
PyObject* py_fd = PyTuple_GET_ITEM(fd_sequence, seq_idx);
long iter_fd;
if (!PyLong_Check(py_fd)) {
return 1;
}
iter_fd = PyLong_AsLong(py_fd);
if (iter_fd < 0 || iter_fd <= prev_fd || iter_fd > INT_MAX) {
/* Negative, overflow, unsorted, too big for a fd. */
return 1;
}
prev_fd = iter_fd;
}
return 0;
}
/* Is fd found in the sorted Python Sequence? */
static int
_is_fd_in_sorted_fd_sequence(int fd, PyObject *fd_sequence)
{
/* Binary search. */
Py_ssize_t search_min = 0;
Py_ssize_t search_max = PyTuple_GET_SIZE(fd_sequence) - 1;
if (search_max < 0)
return 0;
do {
long middle = (search_min + search_max) / 2;
long middle_fd = PyLong_AsLong(PyTuple_GET_ITEM(fd_sequence, middle));
if (fd == middle_fd)
return 1;
if (fd > middle_fd)
search_min = middle + 1;
else
search_max = middle - 1;
} while (search_min <= search_max);
return 0;
}
static int
make_inheritable(PyObject *py_fds_to_keep, int errpipe_write)
{
Py_ssize_t i, len;
len = PyTuple_GET_SIZE(py_fds_to_keep);
for (i = 0; i < len; ++i) {
PyObject* fdobj = PyTuple_GET_ITEM(py_fds_to_keep, i);
long fd = PyLong_AsLong(fdobj);
assert(!PyErr_Occurred());
assert(0 <= fd && fd <= INT_MAX);
if (fd == errpipe_write) {
/* errpipe_write is part of py_fds_to_keep. It must be closed at
exec(), but kept open in the child process until exec() is
called. */
continue;
}
if (_Py_set_inheritable_async_safe((int)fd, 1, NULL) < 0)
return -1;
}
return 0;
}
/* Get the maximum file descriptor that could be opened by this process.
* This function is async signal safe for use between fork() and exec().
*/
static long
safe_get_max_fd(void)
{
long local_max_fd;
local_max_fd = sysconf(_SC_OPEN_MAX);
if (local_max_fd == -1)
local_max_fd = 256; /* Matches legacy Lib/subprocess.py behavior. */
return local_max_fd;
}
/* Close all file descriptors in the range from start_fd and higher
* except for those in py_fds_to_keep. If the range defined by
* [start_fd, safe_get_max_fd()) is large this will take a long
* time as it calls close() on EVERY possible fd.
*
* It isn't possible to know for sure what the max fd to go up to
* is for processes with the capability of raising their maximum.
*/
static void
_close_fds_by_brute_force(long start_fd, PyObject *py_fds_to_keep)
{
long end_fd = safe_get_max_fd();
Py_ssize_t num_fds_to_keep = PyTuple_GET_SIZE(py_fds_to_keep);
Py_ssize_t keep_seq_idx;
int fd_num;
/* As py_fds_to_keep is sorted we can loop through the list closing
* fds inbetween any in the keep list falling within our range. */
for (keep_seq_idx = 0; keep_seq_idx < num_fds_to_keep; ++keep_seq_idx) {
PyObject* py_keep_fd = PyTuple_GET_ITEM(py_fds_to_keep, keep_seq_idx);
int keep_fd = PyLong_AsLong(py_keep_fd);
if (keep_fd < start_fd)
continue;
for (fd_num = start_fd; fd_num < keep_fd; ++fd_num) {
close(fd_num);
}
start_fd = keep_fd + 1;
}
if (start_fd <= end_fd) {
for (fd_num = start_fd; fd_num < end_fd; ++fd_num) {
close(fd_num);
}
}
}
int sys_getdents(unsigned, void *, unsigned, long *);
/* Close all open file descriptors in the range from start_fd and higher
* Do not close any in the sorted py_fds_to_keep list.
*
* This version is async signal safe as it does not make any unsafe C library
* calls, malloc calls or handle any locks. It is _unfortunate_ to be forced
* to resort to making a kernel system call directly but this is the ONLY api
* available that does no harm. opendir/readdir/closedir perform memory
* allocation and locking so while they usually work they are not guaranteed
* to (especially if you have replaced your malloc implementation). A version
* of this function that uses those can be found in the _maybe_unsafe variant.
*
* This is Linux specific because that is all I am ready to test it on. It
* should be easy to add OS specific dirent or dirent64 structures and modify
* it with some cpp #define magic to work on other OSes as well if you want.
*/
static void
_close_open_fds_safe(int start_fd, PyObject* py_fds_to_keep)
{
char buffer[512];
struct dirent *entry;
int fd, dir, bytes, offset;
if ((dir = _Py_open_noraise(FD_DIR, O_RDONLY|O_DIRECTORY)) != -1) {
while ((bytes = sys_getdents(dir, buffer, sizeof(buffer), 0)) > 0) {
for (offset = 0; offset < bytes; offset += entry->d_reclen) {
entry = (struct dirent *)(buffer + offset);
if ((fd = _pos_int_from_ascii(entry->d_name)) < 0)
continue; /* Not a number. */
if (fd != dir && fd >= start_fd &&
!_is_fd_in_sorted_fd_sequence(fd, py_fds_to_keep)) {
close(fd);
}
}
}
close(dir);
} else {
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
}
}
/* Close all open file descriptors from start_fd and higher.
* Do not close any in the sorted py_fds_to_keep tuple.
*
* This function violates the strict use of async signal safe functions. :(
* It calls opendir(), readdir() and closedir(). Of these, the one most
* likely to ever cause a problem is opendir() as it performs an internal
* malloc(). Practically this should not be a problem. The Java VM makes the
* same calls between fork and exec in its own UNIXProcess_md.c implementation.
*
* readdir_r() is not used because it provides no benefit. It is typically
* implemented as readdir() followed by memcpy(). See also:
* http://womble.decadent.org.uk/readdir_r-advisory.html
*/
static void
_close_open_fds_maybe_unsafe(long start_fd, PyObject* py_fds_to_keep)
{
DIR *proc_fd_dir;
if (IsFreebsd() && !_is_fdescfs_mounted_on_dev_fd())
proc_fd_dir = NULL;
else
proc_fd_dir = opendir(FD_DIR);
if (proc_fd_dir) {
struct dirent *dir_entry;
int fd_used_by_opendir = dirfd(proc_fd_dir);
errno = 0;
while ((dir_entry = readdir(proc_fd_dir))) {
int fd;
if ((fd = _pos_int_from_ascii(dir_entry->d_name)) < 0)
continue; /* Not a number. */
if (fd != fd_used_by_opendir && fd >= start_fd &&
!_is_fd_in_sorted_fd_sequence(fd, py_fds_to_keep)) {
close(fd);
}
errno = 0;
}
if (errno) {
/* readdir error, revert behavior. Highly Unlikely. */
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
}
closedir(proc_fd_dir);
} else {
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
}
}
static void
_close_open_fds(long start_fd, PyObject* py_fds_to_keep)
{
if (!IsWindows()) {
if (IsLinux()) {
_close_open_fds_safe(start_fd, py_fds_to_keep);
} else {
_close_open_fds_maybe_unsafe(start_fd, py_fds_to_keep);
}
} else {
_close_fds_by_brute_force(start_fd, py_fds_to_keep);
}
}
/*
* This function is code executed in the child process immediately after fork
* to set things up and call exec().
*
* All of the code in this function must only use async-signal-safe functions,
* listed at `man 7 signal` or
* http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html.
*
* This restriction is documented at
* http://www.opengroup.org/onlinepubs/009695399/functions/fork.html.
*/
static void
child_exec(char *const exec_array[],
char *const argv[],
char *const envp[],
const char *cwd,
int p2cread, int p2cwrite,
int c2pread, int c2pwrite,
int errread, int errwrite,
int errpipe_read, int errpipe_write,
int close_fds, int restore_signals,
int call_setsid,
PyObject *py_fds_to_keep,
PyObject *preexec_fn,
PyObject *preexec_fn_args_tuple)
{
int i, saved_errno, reached_preexec = 0;
PyObject *result;
const char* err_msg = "";
/* Buffer large enough to hold a hex integer. We can't malloc. */
char hex_errno[sizeof(saved_errno)*2+1];
if (make_inheritable(py_fds_to_keep, errpipe_write) < 0)
goto error;
/* Close parent's pipe ends. */
if (p2cwrite != -1)
POSIX_CALL(close(p2cwrite));
if (c2pread != -1)
POSIX_CALL(close(c2pread));
if (errread != -1)
POSIX_CALL(close(errread));
POSIX_CALL(close(errpipe_read));
/* When duping fds, if there arises a situation where one of the fds is
either 0, 1 or 2, it is possible that it is overwritten (#12607). */
if (c2pwrite == 0) {
POSIX_CALL(c2pwrite = dup(c2pwrite));
/* issue32270 */
if (_Py_set_inheritable_async_safe(c2pwrite, 0, NULL) < 0) {
goto error;
}
}
while (errwrite == 0 || errwrite == 1) {
POSIX_CALL(errwrite = dup(errwrite));
/* issue32270 */
if (_Py_set_inheritable_async_safe(errwrite, 0, NULL) < 0) {
goto error;
}
}
/* Dup fds for child.
dup2() removes the CLOEXEC flag but we must do it ourselves if dup2()
would be a no-op (issue #10806). */
if (p2cread == 0) {
if (_Py_set_inheritable_async_safe(p2cread, 1, NULL) < 0)
goto error;
}
else if (p2cread != -1)
POSIX_CALL(dup2(p2cread, 0)); /* stdin */
if (c2pwrite == 1) {
if (_Py_set_inheritable_async_safe(c2pwrite, 1, NULL) < 0)
goto error;
}
else if (c2pwrite != -1)
POSIX_CALL(dup2(c2pwrite, 1)); /* stdout */
if (errwrite == 2) {
if (_Py_set_inheritable_async_safe(errwrite, 1, NULL) < 0)
goto error;
}
else if (errwrite != -1)
POSIX_CALL(dup2(errwrite, 2)); /* stderr */
/* We no longer manually close p2cread, c2pwrite, and errwrite here as
* _close_open_fds takes care when it is not already non-inheritable. */
if (cwd)
POSIX_CALL(chdir(cwd));
if (restore_signals)
_Py_RestoreSignals();
if (call_setsid && !IsWindows())
POSIX_CALL(setsid());
reached_preexec = 1;
if (preexec_fn != Py_None && preexec_fn_args_tuple) {
/* This is where the user has asked us to deadlock their program. */
result = PyObject_Call(preexec_fn, preexec_fn_args_tuple, NULL);
if (result == NULL) {
/* Stringifying the exception or traceback would involve
* memory allocation and thus potential for deadlock.
* We've already faced potential deadlock by calling back
* into Python in the first place, so it probably doesn't
* matter but we avoid it to minimize the possibility. */
err_msg = "Exception occurred in preexec_fn.";
errno = 0; /* We don't want to report an OSError. */
goto error;
}
/* Py_DECREF(result); - We're about to exec so why bother? */
}
/* close FDs after executing preexec_fn, which might open FDs */
if (close_fds) {
/* TODO HP-UX could use pstat_getproc() if anyone cares about it. */
_close_open_fds(3, py_fds_to_keep);
}
/* This loop matches the Lib/os.py _execvpe()'s PATH search when */
/* given the executable_list generated by Lib/subprocess.py. */
saved_errno = 0;
for (i = 0; exec_array[i] != NULL; ++i) {
const char *executable = exec_array[i];
if (envp) {
execve(executable, argv, envp);
} else {
execv(executable, argv);
}
if (errno != ENOENT && errno != ENOTDIR && saved_errno == 0) {
saved_errno = errno;
}
}
/* Report the first exec error, not the last. */
if (saved_errno)
errno = saved_errno;
error:
saved_errno = errno;
/* Report the posix error to our parent process. */
/* We ignore all write() return values as the total size of our writes is
less than PIPEBUF and we cannot do anything about an error anyways.
Use _Py_write_noraise() to retry write() if it is interrupted by a
signal (fails with EINTR). */
if (saved_errno) {
char *cur;
_Py_write_noraise(errpipe_write, "OSError:", 8);
cur = hex_errno + sizeof(hex_errno);
while (saved_errno != 0 && cur != hex_errno) {
*--cur = Py_hexdigits[saved_errno % 16];
saved_errno /= 16;
}
_Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur);
_Py_write_noraise(errpipe_write, ":", 1);
if (!reached_preexec) {
/* Indicate to the parent that the error happened before exec(). */
_Py_write_noraise(errpipe_write, "noexec", 6);
}
/* We can't call strerror(saved_errno). It is not async signal safe.
* The parent process will look the error message up. */
} else {
_Py_write_noraise(errpipe_write, "SubprocessError:0:", 18);
_Py_write_noraise(errpipe_write, err_msg, strlen(err_msg));
}
}
static PyObject *
subprocess_fork_exec(PyObject* self, PyObject *args)
{
PyObject *gc_module = NULL;
PyObject *executable_list, *py_fds_to_keep;
PyObject *env_list, *preexec_fn;
PyObject *process_args, *converted_args = NULL, *fast_args = NULL;
PyObject *preexec_fn_args_tuple = NULL;
int p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite;
int errpipe_read, errpipe_write, close_fds, restore_signals;
int call_setsid;
PyObject *cwd_obj, *cwd_obj2;
const char *cwd;
pid_t pid;
int need_to_reenable_gc = 0;
char *const *exec_array, *const *argv = NULL, *const *envp = NULL;
Py_ssize_t arg_num;
#ifdef WITH_THREAD
int import_lock_held = 0;
#endif
if (!PyArg_ParseTuple(
args, "OOpO!OOiiiiiiiiiiO:fork_exec",
&process_args, &executable_list,
&close_fds, &PyTuple_Type, &py_fds_to_keep,
&cwd_obj, &env_list,
&p2cread, &p2cwrite, &c2pread, &c2pwrite,
&errread, &errwrite, &errpipe_read, &errpipe_write,
&restore_signals, &call_setsid, &preexec_fn))
return NULL;
if (close_fds && errpipe_write < 3) { /* precondition */
PyErr_SetString(PyExc_ValueError, "errpipe_write must be >= 3");
return NULL;
}
if (_sanity_check_python_fd_sequence(py_fds_to_keep)) {
PyErr_SetString(PyExc_ValueError, "bad value(s) in fds_to_keep");
return NULL;
}
/* We need to call gc.disable() when we'll be calling preexec_fn */
if (preexec_fn != Py_None) {
PyObject *result;
_Py_IDENTIFIER(isenabled);
_Py_IDENTIFIER(disable);
gc_module = PyImport_ImportModule("gc");
if (gc_module == NULL)
return NULL;
result = _PyObject_CallMethodId(gc_module, &PyId_isenabled, NULL);
if (result == NULL) {
Py_DECREF(gc_module);
return NULL;
}
need_to_reenable_gc = PyObject_IsTrue(result);
Py_DECREF(result);
if (need_to_reenable_gc == -1) {
Py_DECREF(gc_module);
return NULL;
}
result = _PyObject_CallMethodId(gc_module, &PyId_disable, NULL);
if (result == NULL) {
Py_DECREF(gc_module);
return NULL;
}
Py_DECREF(result);
}
exec_array = _PySequence_BytesToCharpArray(executable_list);
if (!exec_array)
goto cleanup;
/* Convert args and env into appropriate arguments for exec() */
/* These conversions are done in the parent process to avoid allocating
or freeing memory in the child process. */
if (process_args != Py_None) {
Py_ssize_t num_args;
/* Equivalent to: */
/* tuple(PyUnicode_FSConverter(arg) for arg in process_args) */
fast_args = PySequence_Fast(process_args, "argv must be a tuple");
if (fast_args == NULL)
goto cleanup;
num_args = PySequence_Fast_GET_SIZE(fast_args);
converted_args = PyTuple_New(num_args);
if (converted_args == NULL)
goto cleanup;
for (arg_num = 0; arg_num < num_args; ++arg_num) {
PyObject *borrowed_arg, *converted_arg;
if (PySequence_Fast_GET_SIZE(fast_args) != num_args) {
PyErr_SetString(PyExc_RuntimeError, "args changed during iteration");
goto cleanup;
}
borrowed_arg = PySequence_Fast_GET_ITEM(fast_args, arg_num);
if (PyUnicode_FSConverter(borrowed_arg, &converted_arg) == 0)
goto cleanup;
PyTuple_SET_ITEM(converted_args, arg_num, converted_arg);
}
argv = _PySequence_BytesToCharpArray(converted_args);
Py_CLEAR(converted_args);
Py_CLEAR(fast_args);
if (!argv)
goto cleanup;
}
if (env_list != Py_None) {
envp = _PySequence_BytesToCharpArray(env_list);
if (!envp)
goto cleanup;
}
if (preexec_fn != Py_None) {
preexec_fn_args_tuple = PyTuple_New(0);
if (!preexec_fn_args_tuple)
goto cleanup;
#ifdef WITH_THREAD
_PyImport_AcquireLock();
import_lock_held = 1;
#endif
}
if (cwd_obj != Py_None) {
if (PyUnicode_FSConverter(cwd_obj, &cwd_obj2) == 0)
goto cleanup;
cwd = PyBytes_AsString(cwd_obj2);
} else {
cwd = NULL;
cwd_obj2 = NULL;
}
pid = fork();
if (pid == 0) {
/* Child process */
/*
* Code from here to _exit() must only use async-signal-safe functions,
* listed at `man 7 signal` or
* http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html.
*/
if (preexec_fn != Py_None) {
/* We'll be calling back into Python later so we need to do this.
* This call may not be async-signal-safe but neither is calling
* back into Python. The user asked us to use hope as a strategy
* to avoid deadlock... */
PyOS_AfterFork();
}
child_exec(exec_array, argv, envp, cwd,
p2cread, p2cwrite, c2pread, c2pwrite,
errread, errwrite, errpipe_read, errpipe_write,
close_fds, restore_signals, call_setsid,
py_fds_to_keep, preexec_fn, preexec_fn_args_tuple);
_exit(255);
return NULL; /* Dead code to avoid a potential compiler warning. */
}
Py_XDECREF(cwd_obj2);
if (pid == -1) {
/* Capture the errno exception before errno can be clobbered. */
PyErr_SetFromErrno(PyExc_OSError);
}
#ifdef WITH_THREAD
if (preexec_fn != Py_None
&& _PyImport_ReleaseLock() < 0 && !PyErr_Occurred()) {
PyErr_SetString(PyExc_RuntimeError,
"not holding the import lock");
pid = -1;
}
import_lock_held = 0;
#endif
/* Parent process */
if (envp)
_Py_FreeCharPArray(envp);
if (argv)
_Py_FreeCharPArray(argv);
_Py_FreeCharPArray(exec_array);
/* Reenable gc in the parent process (or if fork failed). */
if (_enable_gc(need_to_reenable_gc, gc_module)) {
pid = -1;
}
Py_XDECREF(preexec_fn_args_tuple);
Py_XDECREF(gc_module);
if (pid == -1)
return NULL; /* fork() failed. Exception set earlier. */
return PyLong_FromPid(pid);
cleanup:
#ifdef WITH_THREAD
if (import_lock_held)
_PyImport_ReleaseLock();
#endif
if (envp)
_Py_FreeCharPArray(envp);
if (argv)
_Py_FreeCharPArray(argv);
if (exec_array)
_Py_FreeCharPArray(exec_array);
Py_XDECREF(converted_args);
Py_XDECREF(fast_args);
Py_XDECREF(preexec_fn_args_tuple);
_enable_gc(need_to_reenable_gc, gc_module);
Py_XDECREF(gc_module);
return NULL;
}
PyDoc_STRVAR(subprocess_fork_exec_doc,
"fork_exec(args, executable_list, close_fds, cwd, env,\n\
p2cread, p2cwrite, c2pread, c2pwrite,\n\
errread, errwrite, errpipe_read, errpipe_write,\n\
restore_signals, call_setsid, preexec_fn)\n\
\n\
Forks a child process, closes parent file descriptors as appropriate in the\n\
child and dups the few that are needed before calling exec() in the child\n\
process.\n\
\n\
The preexec_fn, if supplied, will be called immediately before exec.\n\
WARNING: preexec_fn is NOT SAFE if your application uses threads.\n\
It may trigger infrequent, difficult to debug deadlocks.\n\
\n\
If an error occurs in the child process before the exec, it is\n\
serialized and written to the errpipe_write fd per subprocess.py.\n\
\n\
Returns: the child process's PID.\n\
\n\
Raises: Only on an error in the parent process.\n\
");
/* module level code ********************************************************/
PyDoc_STRVAR(module_doc,
"A POSIX helper for the subprocess module.");
static PyMethodDef module_methods[] = {
{"fork_exec", subprocess_fork_exec, METH_VARARGS, subprocess_fork_exec_doc},
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef _posixsubprocessmodule = {
PyModuleDef_HEAD_INIT,
"_posixsubprocess",
module_doc,
-1, /* No memory is needed. */
module_methods,
};
PyMODINIT_FUNC
PyInit__posixsubprocess(void)
{
return PyModule_Create(&_posixsubprocessmodule);
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__posixsubprocess = {
"_posixsubprocess",
PyInit__posixsubprocess,
};
| 25,848 | 736 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_iswhitespace.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
/* Returns 1 for Unicode characters having the bidirectional
* type 'WS', 'B' or 'S' or the category 'Zs', 0 otherwise.
*/
int _PyUnicode_IsWhitespace(Py_UCS4 ch)
{
switch (ch) {
case 0x0009:
case 0x000A:
case 0x000B:
case 0x000C:
case 0x000D:
case 0x001C:
case 0x001D:
case 0x001E:
case 0x001F:
case 0x0020:
case 0x0085:
case 0x00A0:
case 0x1680:
case 0x2000:
case 0x2001:
case 0x2002:
case 0x2003:
case 0x2004:
case 0x2005:
case 0x2006:
case 0x2007:
case 0x2008:
case 0x2009:
case 0x200A:
case 0x2028:
case 0x2029:
case 0x202F:
case 0x205F:
case 0x3000:
return 1;
}
return 0;
}
| 908 | 45 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_randommodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/intrin/bits.h"
#include "libc/calls/calls.h"
#include "libc/nexgen32e/x86feature.h"
#include "libc/stdio/rand.h"
#include "libc/runtime/runtime.h"
#include "libc/sysv/consts/grnd.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pylifecycle.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pytime.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_random");
PYTHON_PROVIDE("_random.Random");
asm(".ident\t\"\\n\\n\
mt19937 (BSD-3)\\n\
Copyright 1997-2004 Makoto Matsumoto and Takuji Nishimura\"");
asm(".include \"libc/disclaimer.inc\"");
/* ------------------------------------------------------------------
The code in this module was based on a download from:
http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html
It was modified in 2002 by Raymond Hettinger as follows:
* the principal computational lines untouched.
* renamed genrand_res53() to random_random() and wrapped
in python calling/return code.
* genrand_int32() and the helper functions, init_genrand()
and init_by_array(), were declared static, wrapped in
Python calling/return code. also, their global data
references were replaced with structure references.
* unused functions from the original were deleted.
new, original C python code was added to implement the
Random() interface.
The following are the verbatim comments from the original code:
A C-program for MT19937, with initialization improved 2002/1/26.
Coded by Takuji Nishimura and Makoto Matsumoto.
Before using, initialize the state by using init_genrand(seed)
or init_by_array(init_key, key_length).
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The names of its contributors may not be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Any feedback is very welcome.
http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
*/
/* ---------------------------------------------------------------*/
/* Period parameters -- These are all magic. Don't change. */
#define N 624
#define M 397
#define MATRIX_A 0x9908b0dfU /* constant vector a */
#define UPPER_MASK 0x80000000U /* most significant w-r bits */
#define LOWER_MASK 0x7fffffffU /* least significant r bits */
typedef struct {
PyObject_HEAD
int index;
uint32_t state[N];
} RandomObject;
static PyTypeObject Random_Type;
#define RandomObject_Check(v) (Py_TYPE(v) == &Random_Type)
/* Random methods */
/* generates a random number on [0,0xffffffff]-interval */
static uint32_t
genrand_int32(RandomObject *self)
{
uint32_t y;
static const uint32_t mag01[2] = {0x0U, MATRIX_A};
/* mag01[x] = x * MATRIX_A for x=0,1 */
uint32_t *mt;
mt = self->state;
if (self->index >= N) { /* generate N words at one time */
int kk;
for (kk=0;kk<N-M;kk++) {
y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1U];
}
for (;kk<N-1;kk++) {
y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1U];
}
y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK);
mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1U];
self->index = 0;
}
y = mt[self->index++];
y ^= (y >> 11);
y ^= (y << 7) & 0x9d2c5680U;
y ^= (y << 15) & 0xefc60000U;
y ^= (y >> 18);
return y;
}
/* random_random is the function named genrand_res53 in the original code;
* generates a random number on [0,1) with 53-bit resolution; note that
* 9007199254740992 == 2**53; I assume they're spelling "/2**53" as
* multiply-by-reciprocal in the (likely vain) hope that the compiler will
* optimize the division away at compile-time. 67108864 is 2**26. In
* effect, a contains 27 random bits shifted left 26, and b fills in the
* lower 26 bits of the 53-bit numerator.
* The original code credited Isaku Wada for this algorithm, 2002/01/09.
*/
static PyObject *
random_random(RandomObject *self)
{
uint32_t a=genrand_int32(self)>>5, b=genrand_int32(self)>>6;
return PyFloat_FromDouble((a*67108864.0+b)*(1.0/9007199254740992.0));
}
/* initializes mt[N] with a seed */
static void
init_genrand(RandomObject *self, uint32_t s)
{
int mti;
uint32_t *mt;
mt = self->state;
mt[0]= s;
for (mti=1; mti<N; mti++) {
mt[mti] =
(1812433253U * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti);
/* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
/* In the previous versions, MSBs of the seed affect */
/* only MSBs of the array mt[]. */
/* 2002/01/09 modified by Makoto Matsumoto */
}
self->index = mti;
return;
}
/* initialize by an array with array-length */
/* init_key is the array for initializing keys */
/* key_length is its length */
static void
init_by_array(RandomObject *self, uint32_t init_key[], size_t key_length)
{
size_t i, j, k; /* was signed in the original code. RDH 12/16/2002 */
uint32_t *mt;
mt = self->state;
init_genrand(self, 19650218U);
i=1; j=0;
k = (N>key_length ? N : key_length);
for (; k; k--) {
mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525U))
+ init_key[j] + (uint32_t)j; /* non linear */
i++; j++;
if (i>=N) { mt[0] = mt[N-1]; i=1; }
if (j>=key_length) j=0;
}
for (k=N-1; k; k--) {
mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941U))
- (uint32_t)i; /* non linear */
i++;
if (i>=N) { mt[0] = mt[N-1]; i=1; }
}
mt[0] = 0x80000000U; /* MSB is 1; assuring non-zero initial array */
}
/*
* The rest is Python-specific code, neither part of, nor derived from, the
* Twister download.
*/
static int
random_seed_urandom(RandomObject *self)
{
PY_UINT32_T key[N];
if (_PyOS_URandomNonblock(key, sizeof(key)) < 0) {
abort();
}
init_by_array(self, key, Py_ARRAY_LENGTH(key));
return 0;
}
static void
random_seed_time_pid(RandomObject *self)
{
_PyTime_t now;
uint32_t key[5];
now = _PyTime_GetSystemClock();
key[0] = (PY_UINT32_T)(now & 0xffffffffU);
key[1] = (PY_UINT32_T)(now >> 32);
key[2] = (PY_UINT32_T)getpid();
now = _PyTime_GetMonotonicClock();
key[3] = (PY_UINT32_T)(now & 0xffffffffU);
key[4] = (PY_UINT32_T)(now >> 32);
init_by_array(self, key, Py_ARRAY_LENGTH(key));
}
static PyObject *
random_seed(RandomObject *self, PyObject *args)
{
PyObject *result = NULL; /* guilty until proved innocent */
PyObject *n = NULL;
uint32_t *key = NULL;
size_t bits, keyused;
int res;
PyObject *arg = NULL;
if (!PyArg_UnpackTuple(args, "seed", 0, 1, &arg))
return NULL;
if (arg == NULL || arg == Py_None) {
if (random_seed_urandom(self) < 0) {
PyErr_Clear();
/* Reading system entropy failed, fall back on the worst entropy:
use the current time and process identifier. */
random_seed_time_pid(self);
}
Py_RETURN_NONE;
}
/* This algorithm relies on the number being unsigned.
* So: if the arg is a PyLong, use its absolute value.
* Otherwise use its hash value, cast to unsigned.
*/
if (PyLong_Check(arg)) {
/* Calling int.__abs__() prevents calling arg.__abs__(), which might
return an invalid value. See issue #31478. */
n = PyLong_Type.tp_as_number->nb_absolute(arg);
}
else {
Py_hash_t hash = PyObject_Hash(arg);
if (hash == -1)
goto Done;
n = PyLong_FromSize_t((size_t)hash);
}
if (n == NULL)
goto Done;
/* Now split n into 32-bit chunks, from the right. */
bits = _PyLong_NumBits(n);
if (bits == (size_t)-1 && PyErr_Occurred())
goto Done;
/* Figure out how many 32-bit chunks this gives us. */
keyused = bits == 0 ? 1 : (bits - 1) / 32 + 1;
/* Convert seed to byte sequence. */
key = (uint32_t *)PyMem_Malloc((size_t)4 * keyused);
if (key == NULL) {
PyErr_NoMemory();
goto Done;
}
res = _PyLong_AsByteArray((PyLongObject *)n,
(unsigned char *)key, keyused * 4,
PY_LITTLE_ENDIAN,
0); /* unsigned */
if (res == -1) {
PyMem_Free(key);
goto Done;
}
#if PY_BIG_ENDIAN
{
size_t i, j;
/* Reverse an array. */
for (i = 0, j = keyused - 1; i < j; i++, j--) {
uint32_t tmp = key[i];
key[i] = key[j];
key[j] = tmp;
}
}
#endif
init_by_array(self, key, keyused);
Py_INCREF(Py_None);
result = Py_None;
Done:
Py_XDECREF(n);
PyMem_Free(key);
return result;
}
static PyObject *
random_getstate(RandomObject *self)
{
PyObject *state;
PyObject *element;
int i;
state = PyTuple_New(N+1);
if (state == NULL)
return NULL;
for (i=0; i<N ; i++) {
element = PyLong_FromUnsignedLong(self->state[i]);
if (element == NULL)
goto Fail;
PyTuple_SET_ITEM(state, i, element);
}
element = PyLong_FromLong((long)(self->index));
if (element == NULL)
goto Fail;
PyTuple_SET_ITEM(state, i, element);
return state;
Fail:
Py_DECREF(state);
return NULL;
}
static PyObject *
random_setstate(RandomObject *self, PyObject *state)
{
int i;
unsigned long element;
long index;
uint32_t new_state[N];
if (!PyTuple_Check(state)) {
PyErr_SetString(PyExc_TypeError,
"state vector must be a tuple");
return NULL;
}
if (PyTuple_Size(state) != N+1) {
PyErr_SetString(PyExc_ValueError,
"state vector is the wrong size");
return NULL;
}
for (i=0; i<N ; i++) {
element = PyLong_AsUnsignedLong(PyTuple_GET_ITEM(state, i));
if (element == (unsigned long)-1 && PyErr_Occurred())
return NULL;
new_state[i] = (uint32_t)element;
}
index = PyLong_AsLong(PyTuple_GET_ITEM(state, i));
if (index == -1 && PyErr_Occurred())
return NULL;
if (index < 0 || index > N) {
PyErr_SetString(PyExc_ValueError, "invalid state");
return NULL;
}
self->index = (int)index;
for (i = 0; i < N; i++)
self->state[i] = new_state[i];
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
random_getrandbits(RandomObject *self, PyObject *args)
{
int k, i, words;
uint32_t r;
uint32_t *wordarray;
PyObject *result;
if (!PyArg_ParseTuple(args, "i:getrandbits", &k))
return NULL;
if (k <= 0) {
PyErr_SetString(PyExc_ValueError,
"number of bits must be greater than zero");
return NULL;
}
if (k <= 32) /* Fast path */
return PyLong_FromUnsignedLong(genrand_int32(self) >> (32 - k));
words = (k - 1) / 32 + 1;
wordarray = (uint32_t *)PyMem_Malloc(words * 4);
if (wordarray == NULL) {
PyErr_NoMemory();
return NULL;
}
/* Fill-out bits of long integer, by 32-bit words, from least significant
to most significant. */
#if PY_LITTLE_ENDIAN
for (i = 0; i < words; i++, k -= 32)
#else
for (i = words - 1; i >= 0; i--, k -= 32)
#endif
{
r = genrand_int32(self);
if (k < 32)
r >>= (32 - k); /* Drop least significant bits */
wordarray[i] = r;
}
result = _PyLong_FromByteArray((unsigned char *)wordarray, words * 4,
PY_LITTLE_ENDIAN, 0 /* unsigned */);
PyMem_Free(wordarray);
return result;
}
static PyObject *
random_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
RandomObject *self;
PyObject *tmp;
if (type == &Random_Type && !_PyArg_NoKeywords("Random()", kwds))
return NULL;
self = (RandomObject *)type->tp_alloc(type, 0);
if (self == NULL)
return NULL;
tmp = random_seed(self, args);
if (tmp == NULL) {
Py_DECREF(self);
return NULL;
}
Py_DECREF(tmp);
return (PyObject *)self;
}
static PyMethodDef random_methods[] = {
{"random", (PyCFunction)random_random, METH_NOARGS,
PyDoc_STR("random() -> x in the interval [0, 1).")},
{"seed", (PyCFunction)random_seed, METH_VARARGS,
PyDoc_STR("seed([n]) -> None. Defaults to current time.")},
{"getstate", (PyCFunction)random_getstate, METH_NOARGS,
PyDoc_STR("getstate() -> tuple containing the current state.")},
{"setstate", (PyCFunction)random_setstate, METH_O,
PyDoc_STR("setstate(state) -> None. Restores generator state.")},
{"getrandbits", (PyCFunction)random_getrandbits, METH_VARARGS,
PyDoc_STR("getrandbits(k) -> x. Generates an int with "
"k random bits.")},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(random_doc,
"Random() -> create a random number generator with its own internal state.");
static PyTypeObject Random_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_random.Random", /*tp_name*/
sizeof(RandomObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
PyObject_GenericGetAttr, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
random_doc, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
random_methods, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
random_new, /*tp_new*/
PyObject_Free, /*tp_free*/
0, /*tp_is_gc*/
};
PyDoc_STRVAR(module_doc,
"Module implements the Mersenne Twister random number generator.");
static struct PyModuleDef _randommodule = {
PyModuleDef_HEAD_INIT,
"_random",
module_doc,
-1,
NULL,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__random(void)
{
PyObject *m;
if (PyType_Ready(&Random_Type) < 0)
return NULL;
m = PyModule_Create(&_randommodule);
if (m == NULL)
return NULL;
Py_INCREF(&Random_Type);
PyModule_AddObject(m, "Random", (PyObject *)&Random_Type);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__random = {
"_random",
PyInit__random,
};
| 18,858 | 572 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/socketmodule.h | #ifndef Py__SOCKET_H
#define Py__SOCKET_H
#include "libc/sock/sock.h"
#include "libc/sock/struct/sockaddr.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pytime.h"
COSMOPOLITAN_C_START_
/* clang-format off */
/* Python module and C API name */
#define PySocket_MODULE_NAME "_socket"
#define PySocket_CAPI_NAME "CAPI"
#define PySocket_CAPSULE_NAME PySocket_MODULE_NAME "." PySocket_CAPI_NAME
typedef int SOCKET_T;
#define SIZEOF_SOCKET_T __SIZEOF_INT__
#if SIZEOF_SOCKET_T <= SIZEOF_LONG
#define PyLong_FromSocket_t(fd) PyLong_FromLong((SOCKET_T)(fd))
#define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLong(fd)
#else
#define PyLong_FromSocket_t(fd) PyLong_FromLongLong((SOCKET_T)(fd))
#define PyLong_AsSocket_t(fd) (SOCKET_T)PyLong_AsLongLong(fd)
#endif
/* Socket address */
typedef union sock_addr {
struct sockaddr_in in;
struct sockaddr sa;
struct sockaddr_un un;
#ifdef ENABLE_IPV6
struct sockaddr_in6 in6;
struct sockaddr_storage storage;
#endif
#ifdef HAVE_BLUETOOTH_BLUETOOTH_H
struct sockaddr_l2 bt_l2;
struct sockaddr_rc bt_rc;
struct sockaddr_sco bt_sco;
struct sockaddr_hci bt_hci;
#endif
#ifdef HAVE_NETPACKET_PACKET_H
struct sockaddr_ll ll;
#endif
#ifdef HAVE_LINUX_CAN_H
struct sockaddr_can can;
#endif
#ifdef HAVE_SYS_KERN_CONTROL_H
struct sockaddr_ctl ctl;
#endif
#ifdef HAVE_SOCKADDR_ALG
struct sockaddr_alg alg;
#endif
} sock_addr_t;
/* The object holding a socket. It holds some extra information,
like the address family, which is used to decode socket address
arguments properly. */
typedef struct {
PyObject_HEAD
SOCKET_T sock_fd; /* Socket file descriptor */
int sock_family; /* Address family, e.g., AF_INET */
int sock_type; /* Socket type, e.g., SOCK_STREAM */
int sock_proto; /* Protocol type, usually 0 */
PyObject *(*errorhandler)(void); /* Error handler; checks
errno, returns NULL and
sets a Python exception */
_PyTime_t sock_timeout; /* Operation timeout in seconds;
0.0 means non-blocking */
} PySocketSockObject;
/* --- C API ----------------------------------------------------*/
/* Short explanation of what this C API export mechanism does
and how it works:
The _ssl module needs access to the type object defined in
the _socket module. Since cross-DLL linking introduces a lot of
problems on many platforms, the "trick" is to wrap the
C API of a module in a struct which then gets exported to
other modules via a PyCapsule.
The code in socketmodule.c defines this struct (which currently
only contains the type object reference, but could very
well also include other C APIs needed by other modules)
and exports it as PyCapsule via the module dictionary
under the name "CAPI".
Other modules can now include the socketmodule.h file
which defines the needed C APIs to import and set up
a static copy of this struct in the importing module.
After initialization, the importing module can then
access the C APIs from the _socket module by simply
referring to the static struct, e.g.
Load _socket module and its C API; this sets up the global
PySocketModule:
if (PySocketModule_ImportModuleAndAPI())
return;
Now use the C API as if it were defined in the using
module:
if (!PyArg_ParseTuple(args, "O!|zz:ssl",
PySocketModule.Sock_Type,
(PyObject*)&Sock,
&key_file, &cert_file))
return NULL;
Support could easily be extended to export more C APIs/symbols
this way. Currently, only the type object is exported,
other candidates would be socket constructors and socket
access functions.
*/
/* C API for usage by other Python modules */
typedef struct {
PyTypeObject *Sock_Type;
PyObject *error;
PyObject *timeout_error;
} PySocketModule_APIObject;
#define PySocketModule_ImportModuleAndAPI() PyCapsule_Import(PySocket_CAPSULE_NAME, 1)
COSMOPOLITAN_C_END_
#endif /* !Py__SOCKET_H */
| 4,255 | 133 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/xxmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("xx");
/* Use this file as a template to start implementing a module that
also declares object types. All occurrences of 'Xxo' should be changed
to something reasonable for your objects. After that, all other
occurrences of 'xx' should be changed to something reasonable for your
module. If your module is named foo your sourcefile should be named
foomodule.c.
You will probably want to delete all references to 'x_attr' and add
your own types of attributes instead. Maybe you want to name your
local variables other than 'self'. If your object type is needed in
other files, you'll have to create a file "foobarobject.h"; see
floatobject.h for an example. */
/* Xxo objects */
static PyObject *ErrorObject;
typedef struct {
PyObject_HEAD
PyObject *x_attr; /* Attributes dictionary */
} XxoObject;
static PyTypeObject Xxo_Type;
#define XxoObject_Check(v) (Py_TYPE(v) == &Xxo_Type)
static XxoObject *
newXxoObject(PyObject *arg)
{
XxoObject *self;
self = PyObject_New(XxoObject, &Xxo_Type);
if (self == NULL)
return NULL;
self->x_attr = NULL;
return self;
}
/* Xxo methods */
static void
Xxo_dealloc(XxoObject *self)
{
Py_XDECREF(self->x_attr);
PyObject_Del(self);
}
static PyObject *
Xxo_demo(XxoObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":demo"))
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
static PyMethodDef Xxo_methods[] = {
{"demo", (PyCFunction)Xxo_demo, METH_VARARGS,
PyDoc_STR("demo() -> None")},
{NULL, NULL} /* sentinel */
};
static PyObject *
Xxo_getattro(XxoObject *self, PyObject *name)
{
if (self->x_attr != NULL) {
PyObject *v = PyDict_GetItem(self->x_attr, name);
if (v != NULL) {
Py_INCREF(v);
return v;
}
}
return PyObject_GenericGetAttr((PyObject *)self, name);
}
static int
Xxo_setattr(XxoObject *self, const char *name, PyObject *v)
{
if (self->x_attr == NULL) {
self->x_attr = PyDict_New();
if (self->x_attr == NULL)
return -1;
}
if (v == NULL) {
int rv = PyDict_DelItemString(self->x_attr, name);
if (rv < 0)
PyErr_SetString(PyExc_AttributeError,
"delete non-existing Xxo attribute");
return rv;
}
else
return PyDict_SetItemString(self->x_attr, name, v);
}
static PyTypeObject Xxo_Type = {
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyVarObject_HEAD_INIT(NULL, 0)
"xxmodule.Xxo", /*tp_name*/
sizeof(XxoObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)Xxo_dealloc, /*tp_dealloc*/
0, /*tp_print*/
(getattrfunc)0, /*tp_getattr*/
(setattrfunc)Xxo_setattr, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
(getattrofunc)Xxo_getattro, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
Xxo_methods, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
0, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
};
/* --------------------------------------------------------------------- */
/* Function of two integers returning integer */
PyDoc_STRVAR(xx_foo_doc,
"foo(i,j)\n\
\n\
Return the sum of i and j.");
static PyObject *
xx_foo(PyObject *self, PyObject *args)
{
long i, j;
long res;
if (!PyArg_ParseTuple(args, "ll:foo", &i, &j))
return NULL;
res = i+j; /* XXX Do something here */
return PyLong_FromLong(res);
}
/* Function of no arguments returning new Xxo object */
static PyObject *
xx_new(PyObject *self, PyObject *args)
{
XxoObject *rv;
if (!PyArg_ParseTuple(args, ":new"))
return NULL;
rv = newXxoObject(args);
if (rv == NULL)
return NULL;
return (PyObject *)rv;
}
/* Example with subtle bug from extensions manual ("Thin Ice"). */
static PyObject *
xx_bug(PyObject *self, PyObject *args)
{
PyObject *list, *item;
if (!PyArg_ParseTuple(args, "O:bug", &list))
return NULL;
item = PyList_GetItem(list, 0);
/* Py_INCREF(item); */
PyList_SetItem(list, 1, PyLong_FromLong(0L));
PyObject_Print(item, stdout, 0);
printf("\n");
/* Py_DECREF(item); */
Py_INCREF(Py_None);
return Py_None;
}
/* Test bad format character */
static PyObject *
xx_roj(PyObject *self, PyObject *args)
{
PyObject *a;
long b;
if (!PyArg_ParseTuple(args, "O#:roj", &a, &b))
return NULL;
Py_INCREF(Py_None);
return Py_None;
}
/* ---------- */
static PyTypeObject Str_Type = {
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyVarObject_HEAD_INIT(NULL, 0)
"xxmodule.Str", /*tp_name*/
0, /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
0, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /* see PyInit_xx */ /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
0, /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
};
/* ---------- */
static PyObject *
null_richcompare(PyObject *self, PyObject *other, int op)
{
Py_INCREF(Py_NotImplemented);
return Py_NotImplemented;
}
static PyTypeObject Null_Type = {
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyVarObject_HEAD_INIT(NULL, 0)
"xxmodule.Null", /*tp_name*/
0, /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
0, /*tp_dealloc*/
0, /*tp_print*/
0, /*tp_getattr*/
0, /*tp_setattr*/
0, /*tp_reserved*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
0, /*tp_call*/
0, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
0, /*tp_doc*/
0, /*tp_traverse*/
0, /*tp_clear*/
null_richcompare, /*tp_richcompare*/
0, /*tp_weaklistoffset*/
0, /*tp_iter*/
0, /*tp_iternext*/
0, /*tp_methods*/
0, /*tp_members*/
0, /*tp_getset*/
0, /* see PyInit_xx */ /*tp_base*/
0, /*tp_dict*/
0, /*tp_descr_get*/
0, /*tp_descr_set*/
0, /*tp_dictoffset*/
0, /*tp_init*/
0, /*tp_alloc*/
0, /* see PyInit_xx */ /*tp_new*/
0, /*tp_free*/
0, /*tp_is_gc*/
};
/* ---------- */
/* List of functions defined in the module */
static PyMethodDef xx_methods[] = {
{"roj", xx_roj, METH_VARARGS,
PyDoc_STR("roj(a,b) -> None")},
{"foo", xx_foo, METH_VARARGS,
xx_foo_doc},
{"new", xx_new, METH_VARARGS,
PyDoc_STR("new() -> new Xx object")},
{"bug", xx_bug, METH_VARARGS,
PyDoc_STR("bug(o) -> None")},
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc,
"This is a template module just for instruction.");
static int
xx_exec(PyObject *m)
{
/* Due to cross platform compiler issues the slots must be filled
* here. It's required for portability to Windows without requiring
* C++. */
Null_Type.tp_base = &PyBaseObject_Type;
Null_Type.tp_new = PyType_GenericNew;
Str_Type.tp_base = &PyUnicode_Type;
/* Finalize the type object including setting type of the new type
* object; doing it here is required for portability, too. */
if (PyType_Ready(&Xxo_Type) < 0)
goto fail;
/* Add some symbolic constants to the module */
if (ErrorObject == NULL) {
ErrorObject = PyErr_NewException("xx.error", NULL, NULL);
if (ErrorObject == NULL)
goto fail;
}
Py_INCREF(ErrorObject);
PyModule_AddObject(m, "error", ErrorObject);
/* Add Str */
if (PyType_Ready(&Str_Type) < 0)
goto fail;
PyModule_AddObject(m, "Str", (PyObject *)&Str_Type);
/* Add Null */
if (PyType_Ready(&Null_Type) < 0)
goto fail;
PyModule_AddObject(m, "Null", (PyObject *)&Null_Type);
return 0;
fail:
Py_XDECREF(m);
return -1;
}
static struct PyModuleDef_Slot xx_slots[] = {
{Py_mod_exec, xx_exec},
{0, NULL},
};
static struct PyModuleDef xxmodule = {
PyModuleDef_HEAD_INIT,
"xx",
module_doc,
0,
xx_methods,
xx_slots,
NULL,
NULL,
NULL
};
/* Export function for the module (*must* be called PyInit_xx) */
PyMODINIT_FUNC
PyInit_xx(void)
{
return PyModuleDef_Init(&xxmodule);
}
| 13,608 | 417 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_cryptmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_crypt");
PYTHON_PROVIDE("_crypt.crypt");
/* cryptmodule.c - by Steve Majewski
*/
/*[clinic input]
module crypt
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=c6252cf4f2f2ae81]*/
#include "third_party/python/Modules/clinic/_cryptmodule.inc"
/*[clinic input]
crypt.crypt
word: str
salt: str
/
Hash a *word* with the given *salt* and return the hashed password.
*word* will usually be a user's password. *salt* (either a random 2 or 16
character string, possibly prefixed with $digit$ to indicate the method)
will be used to perturb the encryption algorithm and produce distinct
results for a given *word*.
[clinic start generated code]*/
static PyObject *
crypt_crypt_impl(PyObject *module, const char *word, const char *salt)
/*[clinic end generated code: output=0512284a03d2803c input=0e8edec9c364352b]*/
{
/* On some platforms (AtheOS) crypt returns NULL for an invalid
salt. Return None in that case. XXX Maybe raise an exception? */
return Py_BuildValue("s", crypt(word, salt));
}
static PyMethodDef crypt_methods[] = {
CRYPT_CRYPT_METHODDEF
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef cryptmodule = {
PyModuleDef_HEAD_INIT,
"_crypt",
NULL,
-1,
crypt_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__crypt(void)
{
return PyModule_Create(&cryptmodule);
}
| 2,488 | 75 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_opcode.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/compile.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/opcode.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_opcode");
PYTHON_PROVIDE("_opcode.stack_effect");
/*[clinic input]
module _opcode
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=117442e66eb376e6]*/
#include "third_party/python/Modules/clinic/_opcode.inc"
/*[clinic input]
_opcode.stack_effect -> int
opcode: int
oparg: object = None
/
Compute the stack effect of the opcode.
[clinic start generated code]*/
static int
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg)
/*[clinic end generated code: output=ad39467fa3ad22ce input=2d0a9ee53c0418f5]*/
{
int effect;
int oparg_int = 0;
if (HAS_ARG(opcode)) {
if (oparg == Py_None) {
PyErr_SetString(PyExc_ValueError,
"stack_effect: opcode requires oparg but oparg was not specified");
return -1;
}
oparg_int = (int)PyLong_AsLong(oparg);
if ((oparg_int == -1) && PyErr_Occurred())
return -1;
}
else if (oparg != Py_None) {
PyErr_SetString(PyExc_ValueError,
"stack_effect: opcode does not permit oparg but oparg was specified");
return -1;
}
effect = PyCompile_OpcodeStackEffect(opcode, oparg_int);
if (effect == PY_INVALID_STACK_EFFECT) {
PyErr_SetString(PyExc_ValueError,
"invalid opcode or oparg");
return -1;
}
return effect;
}
static PyMethodDef
opcode_functions[] = {
_OPCODE_STACK_EFFECT_METHODDEF
{NULL, NULL, 0, NULL}
};
static struct PyModuleDef opcodemodule = {
PyModuleDef_HEAD_INIT,
"_opcode",
"Opcode support module.",
-1,
opcode_functions,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__opcode(void)
{
return PyModule_Create(&opcodemodule);
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__opcode = {
"_opcode",
PyInit__opcode,
};
| 3,205 | 101 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/config.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/object.h"
/* clang-format off */
PyObject *PyInit_posix(void);
PyObject *PyInit__codecs(void);
PyObject *PyInit_itertools(void);
PyObject *PyInit__io(void);
PyObject *PyInit__weakref(void);
PyObject *PyMarshal_Init(void);
PyObject *PyInit__ast(void);
PyObject *PyInit_gc(void);
PyObject *_PyWarnings_Init(void);
PyObject *PyInit__string(void);
PyObject *PyInit__thread(void);
_Alignas(16) _Section(".rodata.pytab.0") const struct _inittab _PyImport_Inittab[0];
_Alignas(16) _Section(".rodata.pytab.2") const struct _inittab _PyImport_Inittab2[] = {
{"posix", PyInit_posix},
{"_codecs", PyInit__codecs},
{"itertools", PyInit_itertools},
{"_io", PyInit__io},
{"_thread", PyInit__thread},
{"_weakref", PyInit__weakref},
{"marshal", PyMarshal_Init},
{"_imp", PyInit_imp},
{"_ast", PyInit__ast},
{"builtins", NULL},
{"sys", NULL},
{"gc", PyInit_gc},
{"_warnings", _PyWarnings_Init},
{"_string", PyInit__string},
{0}
};
| 1,876 | 41 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/fpetestmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyfpe.h"
#include "third_party/python/Include/pythonrun.h"
/* clang-format off */
/*
---------------------------------------------------------------------
/ Copyright (c) 1996. \
| The Regents of the University of California. |
| All rights reserved. |
| |
| Permission to use, copy, modify, and distribute this software for |
| any purpose without fee is hereby granted, provided that this en- |
| tire notice is included in all copies of any software which is or |
| includes a copy or modification of this software and in all |
| copies of the supporting documentation for such software. |
| |
| This work was produced at the University of California, Lawrence |
| Livermore National Laboratory under contract no. W-7405-ENG-48 |
| between the U.S. Department of Energy and The Regents of the |
| University of California for the operation of UC LLNL. |
| |
| DISCLAIMER |
| |
| This software was prepared as an account of work sponsored by an |
| agency of the United States Government. Neither the United States |
| Government nor the University of California nor any of their em- |
| ployees, makes any warranty, express or implied, or assumes any |
| liability or responsibility for the accuracy, completeness, or |
| usefulness of any information, apparatus, product, or process |
| disclosed, or represents that its use would not infringe |
| privately-owned rights. Reference herein to any specific commer- |
| cial products, process, or service by trade name, trademark, |
| manufacturer, or otherwise, does not necessarily constitute or |
| imply its endorsement, recommendation, or favoring by the United |
| States Government or the University of California. The views and |
| opinions of authors expressed herein do not necessarily state or |
| reflect those of the United States Government or the University |
| of California, and shall not be used for advertising or product |
\ endorsement purposes. /
---------------------------------------------------------------------
*/
/*
Floating point exception test module.
*/
static PyObject *fpe_error;
PyMODINIT_FUNC PyInit_fpetest(void);
static PyObject *test(PyObject *self,PyObject *args);
static double db0(double);
static double overflow(double);
static double nest1(int, double);
static double nest2(int, double);
static double nest3(double);
static void printerr(double);
static PyMethodDef fpetest_methods[] = {
{"test", (PyCFunction) test, METH_VARARGS},
{0,0}
};
static PyObject *test(PyObject *self,PyObject *args)
{
double r;
fprintf(stderr,"overflow");
r = overflow(1.e160);
printerr(r);
fprintf(stderr,"\ndiv by 0");
r = db0(0.0);
printerr(r);
fprintf(stderr,"\nnested outer");
r = nest1(0, 0.0);
printerr(r);
fprintf(stderr,"\nnested inner");
r = nest1(1, 1.0);
printerr(r);
fprintf(stderr,"\ntrailing outer");
r = nest1(2, 2.0);
printerr(r);
fprintf(stderr,"\nnested prior");
r = nest2(0, 0.0);
printerr(r);
fprintf(stderr,"\nnested interior");
r = nest2(1, 1.0);
printerr(r);
fprintf(stderr,"\nnested trailing");
r = nest2(2, 2.0);
printerr(r);
Py_INCREF (Py_None);
return Py_None;
}
static void printerr(double r)
{
if(r == 3.1416){
fprintf(stderr,"\tPASS\n");
PyErr_Print();
}else{
fprintf(stderr,"\tFAIL\n");
}
PyErr_Clear();
}
static double nest1(int i, double x)
{
double a = 1.0;
PyFPE_START_PROTECT("Division by zero, outer zone", return 3.1416)
if(i == 0){
a = 1./x;
}else if(i == 1){
/* This (following) message is never seen. */
PyFPE_START_PROTECT("Division by zero, inner zone", return 3.1416)
a = 1./(1. - x);
PyFPE_END_PROTECT(a)
}else if(i == 2){
a = 1./(2. - x);
}
PyFPE_END_PROTECT(a)
return a;
}
static double nest2(int i, double x)
{
double a = 1.0;
PyFPE_START_PROTECT("Division by zero, prior error", return 3.1416)
if(i == 0){
a = 1./x;
}else if(i == 1){
a = nest3(x);
}else if(i == 2){
a = 1./(2. - x);
}
PyFPE_END_PROTECT(a)
return a;
}
static double nest3(double x)
{
double result;
/* This (following) message is never seen. */
PyFPE_START_PROTECT("Division by zero, nest3 error", return 3.1416)
result = 1./(1. - x);
PyFPE_END_PROTECT(result)
return result;
}
static double db0(double x)
{
double a;
PyFPE_START_PROTECT("Division by zero", return 3.1416)
a = 1./x;
PyFPE_END_PROTECT(a)
return a;
}
static double overflow(double b)
{
double a;
PyFPE_START_PROTECT("Overflow", return 3.1416)
a = b*b;
PyFPE_END_PROTECT(a)
return a;
}
static struct PyModuleDef fpetestmodule = {
PyModuleDef_HEAD_INIT,
"fpetest",
NULL,
-1,
fpetest_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC PyInit_fpetest(void)
{
PyObject *m, *d;
m = PyModule_Create(&fpetestmodule);
if (m == NULL)
return NULL;
d = PyModule_GetDict(m);
fpe_error = PyErr_NewException("fpetest.error", NULL, NULL);
if (fpe_error != NULL)
PyDict_SetItemString(d, "error", fpe_error);
return m;
}
| 7,040 | 214 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_datetimemodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/assert.h"
#include "libc/calls/weirdtypes.h"
#include "libc/fmt/fmt.h"
#include "libc/math.h"
#include "libc/time/struct/tm.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/boolobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pyhash.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pytime.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_datetime");
PYTHON_PROVIDE("_datetime.MAXYEAR");
PYTHON_PROVIDE("_datetime.MINYEAR");
PYTHON_PROVIDE("_datetime.__doc__");
PYTHON_PROVIDE("_datetime.__loader__");
PYTHON_PROVIDE("_datetime.__name__");
PYTHON_PROVIDE("_datetime.__package__");
PYTHON_PROVIDE("_datetime.__spec__");
PYTHON_PROVIDE("_datetime.date");
PYTHON_PROVIDE("_datetime.datetime");
PYTHON_PROVIDE("_datetime.datetime_CAPI");
PYTHON_PROVIDE("_datetime.time");
PYTHON_PROVIDE("_datetime.timedelta");
PYTHON_PROVIDE("_datetime.timezone");
PYTHON_PROVIDE("_datetime.tzinfo");
/* C implementation for the date/time type documented at
* http://www.zope.org/Members/fdrake/DateTimeWiki/FrontPage
*/
/* Differentiate between building the core module and building extension
* modules.
*/
#ifndef Py_BUILD_CORE
#define Py_BUILD_CORE
#endif
#include "third_party/python/Include/datetime.h"
#undef Py_BUILD_CORE
/*[clinic input]
module datetime
class datetime.datetime "PyDateTime_DateTime *" "&PyDateTime_DateTimeType"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=78142cb64b9e98bc]*/
#include "third_party/python/Modules/clinic/_datetimemodule.inc"
/* We require that C int be at least 32 bits, and use int virtually
* everywhere. In just a few cases we use a temp long, where a Python
* API returns a C long. In such cases, we have to ensure that the
* final result fits in a C int (this can be an issue on 64-bit boxes).
*/
#if SIZEOF_INT < 4
# error "_datetime.c requires that C int have at least 32 bits"
#endif
#define MINYEAR 1
#define MAXYEAR 9999
#define MAXORDINAL 3652059 /* date(9999,12,31).toordinal() */
/* Nine decimal digits is easy to communicate, and leaves enough room
* so that two delta days can be added w/o fear of overflowing a signed
* 32-bit int, and with plenty of room left over to absorb any possible
* carries from adding seconds.
*/
#define MAX_DELTA_DAYS 999999999
/* Rename the long macros in datetime.h to more reasonable short names. */
#define GET_YEAR PyDateTime_GET_YEAR
#define GET_MONTH PyDateTime_GET_MONTH
#define GET_DAY PyDateTime_GET_DAY
#define DATE_GET_HOUR PyDateTime_DATE_GET_HOUR
#define DATE_GET_MINUTE PyDateTime_DATE_GET_MINUTE
#define DATE_GET_SECOND PyDateTime_DATE_GET_SECOND
#define DATE_GET_MICROSECOND PyDateTime_DATE_GET_MICROSECOND
#define DATE_GET_FOLD PyDateTime_DATE_GET_FOLD
/* Date accessors for date and datetime. */
#define SET_YEAR(o, v) (((o)->data[0] = ((v) & 0xff00) >> 8), \
((o)->data[1] = ((v) & 0x00ff)))
#define SET_MONTH(o, v) (PyDateTime_GET_MONTH(o) = (v))
#define SET_DAY(o, v) (PyDateTime_GET_DAY(o) = (v))
/* Date/Time accessors for datetime. */
#define DATE_SET_HOUR(o, v) (PyDateTime_DATE_GET_HOUR(o) = (v))
#define DATE_SET_MINUTE(o, v) (PyDateTime_DATE_GET_MINUTE(o) = (v))
#define DATE_SET_SECOND(o, v) (PyDateTime_DATE_GET_SECOND(o) = (v))
#define DATE_SET_MICROSECOND(o, v) \
(((o)->data[7] = ((v) & 0xff0000) >> 16), \
((o)->data[8] = ((v) & 0x00ff00) >> 8), \
((o)->data[9] = ((v) & 0x0000ff)))
#define DATE_SET_FOLD(o, v) (PyDateTime_DATE_GET_FOLD(o) = (v))
/* Time accessors for time. */
#define TIME_GET_HOUR PyDateTime_TIME_GET_HOUR
#define TIME_GET_MINUTE PyDateTime_TIME_GET_MINUTE
#define TIME_GET_SECOND PyDateTime_TIME_GET_SECOND
#define TIME_GET_MICROSECOND PyDateTime_TIME_GET_MICROSECOND
#define TIME_GET_FOLD PyDateTime_TIME_GET_FOLD
#define TIME_SET_HOUR(o, v) (PyDateTime_TIME_GET_HOUR(o) = (v))
#define TIME_SET_MINUTE(o, v) (PyDateTime_TIME_GET_MINUTE(o) = (v))
#define TIME_SET_SECOND(o, v) (PyDateTime_TIME_GET_SECOND(o) = (v))
#define TIME_SET_MICROSECOND(o, v) \
(((o)->data[3] = ((v) & 0xff0000) >> 16), \
((o)->data[4] = ((v) & 0x00ff00) >> 8), \
((o)->data[5] = ((v) & 0x0000ff)))
#define TIME_SET_FOLD(o, v) (PyDateTime_TIME_GET_FOLD(o) = (v))
/* Delta accessors for timedelta. */
#define GET_TD_DAYS(o) (((PyDateTime_Delta *)(o))->days)
#define GET_TD_SECONDS(o) (((PyDateTime_Delta *)(o))->seconds)
#define GET_TD_MICROSECONDS(o) (((PyDateTime_Delta *)(o))->microseconds)
#define SET_TD_DAYS(o, v) ((o)->days = (v))
#define SET_TD_SECONDS(o, v) ((o)->seconds = (v))
#define SET_TD_MICROSECONDS(o, v) ((o)->microseconds = (v))
/* p is a pointer to a time or a datetime object; HASTZINFO(p) returns
* p->hastzinfo.
*/
#define HASTZINFO(p) (((_PyDateTime_BaseTZInfo *)(p))->hastzinfo)
#define GET_TIME_TZINFO(p) (HASTZINFO(p) ? \
((PyDateTime_Time *)(p))->tzinfo : Py_None)
#define GET_DT_TZINFO(p) (HASTZINFO(p) ? \
((PyDateTime_DateTime *)(p))->tzinfo : Py_None)
/* M is a char or int claiming to be a valid month. The macro is equivalent
* to the two-sided Python test
* 1 <= M <= 12
*/
#define MONTH_IS_SANE(M) ((unsigned int)(M) - 1 < 12)
/* Forward declarations. */
static PyTypeObject PyDateTime_DateType;
static PyTypeObject PyDateTime_DateTimeType;
static PyTypeObject PyDateTime_DeltaType;
static PyTypeObject PyDateTime_TimeType;
static PyTypeObject PyDateTime_TZInfoType;
static PyTypeObject PyDateTime_TimeZoneType;
static int check_tzinfo_subclass(PyObject *p);
_Py_IDENTIFIER(as_integer_ratio);
_Py_IDENTIFIER(fromutc);
_Py_IDENTIFIER(isoformat);
_Py_IDENTIFIER(strftime);
/* ---------------------------------------------------------------------------
* Math utilities.
*/
/* k = i+j overflows iff k differs in sign from both inputs,
* iff k^i has sign bit set and k^j has sign bit set,
* iff (k^i)&(k^j) has sign bit set.
*/
#define SIGNED_ADD_OVERFLOWED(RESULT, I, J) \
((((RESULT) ^ (I)) & ((RESULT) ^ (J))) < 0)
/* Compute Python divmod(x, y), returning the quotient and storing the
* remainder into *r. The quotient is the floor of x/y, and that's
* the real point of this. C will probably truncate instead (C99
* requires truncation; C89 left it implementation-defined).
* Simplification: we *require* that y > 0 here. That's appropriate
* for all the uses made of it. This simplifies the code and makes
* the overflow case impossible (divmod(LONG_MIN, -1) is the only
* overflow case).
*/
static int
divmod(int x, int y, int *r)
{
int quo;
assert(y > 0);
quo = x / y;
*r = x - quo * y;
if (*r < 0) {
--quo;
*r += y;
}
assert(0 <= *r && *r < y);
return quo;
}
/* Nearest integer to m / n for integers m and n. Half-integer results
* are rounded to even.
*/
static PyObject *
divide_nearest(PyObject *m, PyObject *n)
{
PyObject *result;
PyObject *temp;
temp = _PyLong_DivmodNear(m, n);
if (temp == NULL)
return NULL;
result = PyTuple_GET_ITEM(temp, 0);
Py_INCREF(result);
Py_DECREF(temp);
return result;
}
/* ---------------------------------------------------------------------------
* General calendrical helper functions
*/
/* For each month ordinal in 1..12, the number of days in that month,
* and the number of days before that month in the same year. These
* are correct for non-leap years only.
*/
static const int _days_in_month[] = {
0, /* unused; this vector uses 1-based indexing */
31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
};
static const int _days_before_month[] = {
0, /* unused; this vector uses 1-based indexing */
0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
};
/* year -> 1 if leap year, else 0. */
static int
is_leap(int year)
{
/* Cast year to unsigned. The result is the same either way, but
* C can generate faster code for unsigned mod than for signed
* mod (especially for % 4 -- a good compiler should just grab
* the last 2 bits when the LHS is unsigned).
*/
const unsigned int ayear = (unsigned int)year;
return ayear % 4 == 0 && (ayear % 100 != 0 || ayear % 400 == 0);
}
/* year, month -> number of days in that month in that year */
static int
days_in_month(int year, int month)
{
assert(month >= 1);
assert(month <= 12);
if (month == 2 && is_leap(year))
return 29;
else
return _days_in_month[month];
}
/* year, month -> number of days in year preceding first day of month */
static int
days_before_month(int year, int month)
{
int days;
assert(month >= 1);
assert(month <= 12);
days = _days_before_month[month];
if (month > 2 && is_leap(year))
++days;
return days;
}
/* year -> number of days before January 1st of year. Remember that we
* start with year 1, so days_before_year(1) == 0.
*/
static int
days_before_year(int year)
{
int y = year - 1;
/* This is incorrect if year <= 0; we really want the floor
* here. But so long as MINYEAR is 1, the smallest year this
* can see is 1.
*/
assert (year >= 1);
return y*365 + y/4 - y/100 + y/400;
}
/* Number of days in 4, 100, and 400 year cycles. That these have
* the correct values is asserted in the module init function.
*/
#define DI4Y 1461 /* days_before_year(5); days in 4 years */
#define DI100Y 36524 /* days_before_year(101); days in 100 years */
#define DI400Y 146097 /* days_before_year(401); days in 400 years */
/* ordinal -> year, month, day, considering 01-Jan-0001 as day 1. */
static void
ord_to_ymd(int ordinal, int *year, int *month, int *day)
{
int n, n1, n4, n100, n400, leapyear, preceding;
/* ordinal is a 1-based index, starting at 1-Jan-1. The pattern of
* leap years repeats exactly every 400 years. The basic strategy is
* to find the closest 400-year boundary at or before ordinal, then
* work with the offset from that boundary to ordinal. Life is much
* clearer if we subtract 1 from ordinal first -- then the values
* of ordinal at 400-year boundaries are exactly those divisible
* by DI400Y:
*
* D M Y n n-1
* -- --- ---- ---------- ----------------
* 31 Dec -400 -DI400Y -DI400Y -1
* 1 Jan -399 -DI400Y +1 -DI400Y 400-year boundary
* ...
* 30 Dec 000 -1 -2
* 31 Dec 000 0 -1
* 1 Jan 001 1 0 400-year boundary
* 2 Jan 001 2 1
* 3 Jan 001 3 2
* ...
* 31 Dec 400 DI400Y DI400Y -1
* 1 Jan 401 DI400Y +1 DI400Y 400-year boundary
*/
assert(ordinal >= 1);
--ordinal;
n400 = ordinal / DI400Y;
n = ordinal % DI400Y;
*year = n400 * 400 + 1;
/* Now n is the (non-negative) offset, in days, from January 1 of
* year, to the desired date. Now compute how many 100-year cycles
* precede n.
* Note that it's possible for n100 to equal 4! In that case 4 full
* 100-year cycles precede the desired day, which implies the
* desired day is December 31 at the end of a 400-year cycle.
*/
n100 = n / DI100Y;
n = n % DI100Y;
/* Now compute how many 4-year cycles precede it. */
n4 = n / DI4Y;
n = n % DI4Y;
/* And now how many single years. Again n1 can be 4, and again
* meaning that the desired day is December 31 at the end of the
* 4-year cycle.
*/
n1 = n / 365;
n = n % 365;
*year += n100 * 100 + n4 * 4 + n1;
if (n1 == 4 || n100 == 4) {
assert(n == 0);
*year -= 1;
*month = 12;
*day = 31;
return;
}
/* Now the year is correct, and n is the offset from January 1. We
* find the month via an estimate that's either exact or one too
* large.
*/
leapyear = n1 == 3 && (n4 != 24 || n100 == 3);
assert(leapyear == is_leap(*year));
*month = (n + 50) >> 5;
preceding = (_days_before_month[*month] + (*month > 2 && leapyear));
if (preceding > n) {
/* estimate is too large */
*month -= 1;
preceding -= days_in_month(*year, *month);
}
n -= preceding;
assert(0 <= n);
assert(n < days_in_month(*year, *month));
*day = n + 1;
}
/* year, month, day -> ordinal, considering 01-Jan-0001 as day 1. */
static int
ymd_to_ord(int year, int month, int day)
{
return days_before_year(year) + days_before_month(year, month) + day;
}
/* Day of week, where Monday==0, ..., Sunday==6. 1/1/1 was a Monday. */
static int
weekday(int year, int month, int day)
{
return (ymd_to_ord(year, month, day) + 6) % 7;
}
/* Ordinal of the Monday starting week 1 of the ISO year. Week 1 is the
* first calendar week containing a Thursday.
*/
static int
iso_week1_monday(int year)
{
int first_day = ymd_to_ord(year, 1, 1); /* ord of 1/1 */
/* 0 if 1/1 is a Monday, 1 if a Tue, etc. */
int first_weekday = (first_day + 6) % 7;
/* ordinal of closest Monday at or before 1/1 */
int week1_monday = first_day - first_weekday;
if (first_weekday > 3) /* if 1/1 was Fri, Sat, Sun */
week1_monday += 7;
return week1_monday;
}
/* ---------------------------------------------------------------------------
* Range checkers.
*/
/* Check that -MAX_DELTA_DAYS <= days <= MAX_DELTA_DAYS. If so, return 0.
* If not, raise OverflowError and return -1.
*/
static int
check_delta_day_range(int days)
{
if (-MAX_DELTA_DAYS <= days && days <= MAX_DELTA_DAYS)
return 0;
PyErr_Format(PyExc_OverflowError,
"days=%d; must have magnitude <= %d",
days, MAX_DELTA_DAYS);
return -1;
}
/* Check that date arguments are in range. Return 0 if they are. If they
* aren't, raise ValueError and return -1.
*/
static int
check_date_args(int year, int month, int day)
{
if (year < MINYEAR || year > MAXYEAR) {
PyErr_Format(PyExc_ValueError, "year %i is out of range", year);
return -1;
}
if (month < 1 || month > 12) {
PyErr_SetString(PyExc_ValueError,
"month must be in 1..12");
return -1;
}
if (day < 1 || day > days_in_month(year, month)) {
PyErr_SetString(PyExc_ValueError,
"day is out of range for month");
return -1;
}
return 0;
}
/* Check that time arguments are in range. Return 0 if they are. If they
* aren't, raise ValueError and return -1.
*/
static int
check_time_args(int h, int m, int s, int us, int fold)
{
if (h < 0 || h > 23) {
PyErr_SetString(PyExc_ValueError,
"hour must be in 0..23");
return -1;
}
if (m < 0 || m > 59) {
PyErr_SetString(PyExc_ValueError,
"minute must be in 0..59");
return -1;
}
if (s < 0 || s > 59) {
PyErr_SetString(PyExc_ValueError,
"second must be in 0..59");
return -1;
}
if (us < 0 || us > 999999) {
PyErr_SetString(PyExc_ValueError,
"microsecond must be in 0..999999");
return -1;
}
if (fold != 0 && fold != 1) {
PyErr_SetString(PyExc_ValueError,
"fold must be either 0 or 1");
return -1;
}
return 0;
}
/* ---------------------------------------------------------------------------
* Normalization utilities.
*/
/* One step of a mixed-radix conversion. A "hi" unit is equivalent to
* factor "lo" units. factor must be > 0. If *lo is less than 0, or
* at least factor, enough of *lo is converted into "hi" units so that
* 0 <= *lo < factor. The input values must be such that int overflow
* is impossible.
*/
static void
normalize_pair(int *hi, int *lo, int factor)
{
assert(factor > 0);
assert(lo != hi);
if (*lo < 0 || *lo >= factor) {
const int num_hi = divmod(*lo, factor, lo);
const int new_hi = *hi + num_hi;
assert(! SIGNED_ADD_OVERFLOWED(new_hi, *hi, num_hi));
*hi = new_hi;
}
assert(0 <= *lo && *lo < factor);
}
/* Fiddle days (d), seconds (s), and microseconds (us) so that
* 0 <= *s < 24*3600
* 0 <= *us < 1000000
* The input values must be such that the internals don't overflow.
* The way this routine is used, we don't get close.
*/
static void
normalize_d_s_us(int *d, int *s, int *us)
{
if (*us < 0 || *us >= 1000000) {
normalize_pair(s, us, 1000000);
/* |s| can't be bigger than about
* |original s| + |original us|/1000000 now.
*/
}
if (*s < 0 || *s >= 24*3600) {
normalize_pair(d, s, 24*3600);
/* |d| can't be bigger than about
* |original d| +
* (|original s| + |original us|/1000000) / (24*3600) now.
*/
}
assert(0 <= *s && *s < 24*3600);
assert(0 <= *us && *us < 1000000);
}
/* Fiddle years (y), months (m), and days (d) so that
* 1 <= *m <= 12
* 1 <= *d <= days_in_month(*y, *m)
* The input values must be such that the internals don't overflow.
* The way this routine is used, we don't get close.
*/
static int
normalize_y_m_d(int *y, int *m, int *d)
{
int dim; /* # of days in month */
/* In actual use, m is always the month component extracted from a
* date/datetime object. Therefore it is always in [1, 12] range.
*/
assert(1 <= *m && *m <= 12);
/* Now only day can be out of bounds (year may also be out of bounds
* for a datetime object, but we don't care about that here).
* If day is out of bounds, what to do is arguable, but at least the
* method here is principled and explainable.
*/
dim = days_in_month(*y, *m);
if (*d < 1 || *d > dim) {
/* Move day-1 days from the first of the month. First try to
* get off cheap if we're only one day out of range
* (adjustments for timezone alone can't be worse than that).
*/
if (*d == 0) {
--*m;
if (*m > 0)
*d = days_in_month(*y, *m);
else {
--*y;
*m = 12;
*d = 31;
}
}
else if (*d == dim + 1) {
/* move forward a day */
++*m;
*d = 1;
if (*m > 12) {
*m = 1;
++*y;
}
}
else {
int ordinal = ymd_to_ord(*y, *m, 1) +
*d - 1;
if (ordinal < 1 || ordinal > MAXORDINAL) {
goto error;
} else {
ord_to_ymd(ordinal, y, m, d);
return 0;
}
}
}
assert(*m > 0);
assert(*d > 0);
if (MINYEAR <= *y && *y <= MAXYEAR)
return 0;
error:
PyErr_SetString(PyExc_OverflowError,
"date value out of range");
return -1;
}
/* Fiddle out-of-bounds months and days so that the result makes some kind
* of sense. The parameters are both inputs and outputs. Returns < 0 on
* failure, where failure means the adjusted year is out of bounds.
*/
static int
normalize_date(int *year, int *month, int *day)
{
return normalize_y_m_d(year, month, day);
}
/* Force all the datetime fields into range. The parameters are both
* inputs and outputs. Returns < 0 on error.
*/
static int
normalize_datetime(int *year, int *month, int *day,
int *hour, int *minute, int *second,
int *microsecond)
{
normalize_pair(second, microsecond, 1000000);
normalize_pair(minute, second, 60);
normalize_pair(hour, minute, 60);
normalize_pair(day, hour, 24);
return normalize_date(year, month, day);
}
/* ---------------------------------------------------------------------------
* Basic object allocation: tp_alloc implementations. These allocate
* Python objects of the right size and type, and do the Python object-
* initialization bit. If there's not enough memory, they return NULL after
* setting MemoryError. All data members remain uninitialized trash.
*
* We abuse the tp_alloc "nitems" argument to communicate whether a tzinfo
* member is needed. This is ugly, imprecise, and possibly insecure.
* tp_basicsize for the time and datetime types is set to the size of the
* struct that has room for the tzinfo member, so subclasses in Python will
* allocate enough space for a tzinfo member whether or not one is actually
* needed. That's the "ugly and imprecise" parts. The "possibly insecure"
* part is that PyType_GenericAlloc() (which subclasses in Python end up
* using) just happens today to effectively ignore the nitems argument
* when tp_itemsize is 0, which it is for these type objects. If that
* changes, perhaps the callers of tp_alloc slots in this file should
* be changed to force a 0 nitems argument unless the type being allocated
* is a base type implemented in this file (so that tp_alloc is time_alloc
* or datetime_alloc below, which know about the nitems abuse).
*/
static PyObject *
time_alloc(PyTypeObject *type, Py_ssize_t aware)
{
PyObject *self;
self = (PyObject *)
PyObject_MALLOC(aware ?
sizeof(PyDateTime_Time) :
sizeof(_PyDateTime_BaseTime));
if (self == NULL)
return (PyObject *)PyErr_NoMemory();
(void)PyObject_INIT(self, type);
return self;
}
static PyObject *
datetime_alloc(PyTypeObject *type, Py_ssize_t aware)
{
PyObject *self;
self = (PyObject *)
PyObject_MALLOC(aware ?
sizeof(PyDateTime_DateTime) :
sizeof(_PyDateTime_BaseDateTime));
if (self == NULL)
return (PyObject *)PyErr_NoMemory();
(void)PyObject_INIT(self, type);
return self;
}
/* ---------------------------------------------------------------------------
* Helpers for setting object fields. These work on pointers to the
* appropriate base class.
*/
/* For date and datetime. */
static void
set_date_fields(PyDateTime_Date *self, int y, int m, int d)
{
self->hashcode = -1;
SET_YEAR(self, y);
SET_MONTH(self, m);
SET_DAY(self, d);
}
/* ---------------------------------------------------------------------------
* Create various objects, mostly without range checking.
*/
/* Create a date instance with no range checking. */
static PyObject *
new_date_ex(int year, int month, int day, PyTypeObject *type)
{
PyDateTime_Date *self;
if (check_date_args(year, month, day) < 0) {
return NULL;
}
self = (PyDateTime_Date *) (type->tp_alloc(type, 0));
if (self != NULL)
set_date_fields(self, year, month, day);
return (PyObject *) self;
}
#define new_date(year, month, day) \
new_date_ex(year, month, day, &PyDateTime_DateType)
/* Create a datetime instance with no range checking. */
static PyObject *
new_datetime_ex2(int year, int month, int day, int hour, int minute,
int second, int usecond, PyObject *tzinfo, int fold, PyTypeObject *type)
{
PyDateTime_DateTime *self;
char aware = tzinfo != Py_None;
if (check_date_args(year, month, day) < 0) {
return NULL;
}
if (check_time_args(hour, minute, second, usecond, fold) < 0) {
return NULL;
}
if (check_tzinfo_subclass(tzinfo) < 0) {
return NULL;
}
self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware));
if (self != NULL) {
self->hastzinfo = aware;
set_date_fields((PyDateTime_Date *)self, year, month, day);
DATE_SET_HOUR(self, hour);
DATE_SET_MINUTE(self, minute);
DATE_SET_SECOND(self, second);
DATE_SET_MICROSECOND(self, usecond);
if (aware) {
Py_INCREF(tzinfo);
self->tzinfo = tzinfo;
}
DATE_SET_FOLD(self, fold);
}
return (PyObject *)self;
}
static PyObject *
new_datetime_ex(int year, int month, int day, int hour, int minute,
int second, int usecond, PyObject *tzinfo, PyTypeObject *type)
{
return new_datetime_ex2(year, month, day, hour, minute, second, usecond,
tzinfo, 0, type);
}
#define new_datetime(y, m, d, hh, mm, ss, us, tzinfo, fold) \
new_datetime_ex2(y, m, d, hh, mm, ss, us, tzinfo, fold, \
&PyDateTime_DateTimeType)
/* Create a time instance with no range checking. */
static PyObject *
new_time_ex2(int hour, int minute, int second, int usecond,
PyObject *tzinfo, int fold, PyTypeObject *type)
{
PyDateTime_Time *self;
char aware = tzinfo != Py_None;
if (check_time_args(hour, minute, second, usecond, fold) < 0) {
return NULL;
}
if (check_tzinfo_subclass(tzinfo) < 0) {
return NULL;
}
self = (PyDateTime_Time *) (type->tp_alloc(type, aware));
if (self != NULL) {
self->hastzinfo = aware;
self->hashcode = -1;
TIME_SET_HOUR(self, hour);
TIME_SET_MINUTE(self, minute);
TIME_SET_SECOND(self, second);
TIME_SET_MICROSECOND(self, usecond);
if (aware) {
Py_INCREF(tzinfo);
self->tzinfo = tzinfo;
}
TIME_SET_FOLD(self, fold);
}
return (PyObject *)self;
}
static PyObject *
new_time_ex(int hour, int minute, int second, int usecond,
PyObject *tzinfo, PyTypeObject *type)
{
return new_time_ex2(hour, minute, second, usecond, tzinfo, 0, type);
}
#define new_time(hh, mm, ss, us, tzinfo, fold) \
new_time_ex2(hh, mm, ss, us, tzinfo, fold, &PyDateTime_TimeType)
/* Create a timedelta instance. Normalize the members iff normalize is
* true. Passing false is a speed optimization, if you know for sure
* that seconds and microseconds are already in their proper ranges. In any
* case, raises OverflowError and returns NULL if the normalized days is out
* of range).
*/
static PyObject *
new_delta_ex(int days, int seconds, int microseconds, int normalize,
PyTypeObject *type)
{
PyDateTime_Delta *self;
if (normalize)
normalize_d_s_us(&days, &seconds, µseconds);
assert(0 <= seconds && seconds < 24*3600);
assert(0 <= microseconds && microseconds < 1000000);
if (check_delta_day_range(days) < 0)
return NULL;
self = (PyDateTime_Delta *) (type->tp_alloc(type, 0));
if (self != NULL) {
self->hashcode = -1;
SET_TD_DAYS(self, days);
SET_TD_SECONDS(self, seconds);
SET_TD_MICROSECONDS(self, microseconds);
}
return (PyObject *) self;
}
#define new_delta(d, s, us, normalize) \
new_delta_ex(d, s, us, normalize, &PyDateTime_DeltaType)
typedef struct
{
PyObject_HEAD
PyObject *offset;
PyObject *name;
} PyDateTime_TimeZone;
/* The interned UTC timezone instance */
static PyObject *PyDateTime_TimeZone_UTC;
/* The interned Epoch datetime instance */
static PyObject *PyDateTime_Epoch;
/* Create new timezone instance checking offset range. This
function does not check the name argument. Caller must assure
that offset is a timedelta instance and name is either NULL
or a unicode object. */
static PyObject *
create_timezone(PyObject *offset, PyObject *name)
{
PyDateTime_TimeZone *self;
PyTypeObject *type = &PyDateTime_TimeZoneType;
assert(offset != NULL);
assert(PyDelta_Check(offset));
assert(name == NULL || PyUnicode_Check(name));
self = (PyDateTime_TimeZone *)(type->tp_alloc(type, 0));
if (self == NULL) {
return NULL;
}
Py_INCREF(offset);
self->offset = offset;
Py_XINCREF(name);
self->name = name;
return (PyObject *)self;
}
static int delta_bool(PyDateTime_Delta *self);
static PyObject *
new_timezone(PyObject *offset, PyObject *name)
{
assert(offset != NULL);
assert(PyDelta_Check(offset));
assert(name == NULL || PyUnicode_Check(name));
if (name == NULL && delta_bool((PyDateTime_Delta *)offset) == 0) {
Py_INCREF(PyDateTime_TimeZone_UTC);
return PyDateTime_TimeZone_UTC;
}
if (GET_TD_MICROSECONDS(offset) != 0 || GET_TD_SECONDS(offset) % 60 != 0) {
PyErr_Format(PyExc_ValueError, "offset must be a timedelta"
" representing a whole number of minutes,"
" not %R.", offset);
return NULL;
}
if ((GET_TD_DAYS(offset) == -1 && GET_TD_SECONDS(offset) == 0) ||
GET_TD_DAYS(offset) < -1 || GET_TD_DAYS(offset) >= 1) {
PyErr_Format(PyExc_ValueError, "offset must be a timedelta"
" strictly between -timedelta(hours=24) and"
" timedelta(hours=24),"
" not %R.", offset);
return NULL;
}
return create_timezone(offset, name);
}
/* ---------------------------------------------------------------------------
* tzinfo helpers.
*/
/* Ensure that p is None or of a tzinfo subclass. Return 0 if OK; if not
* raise TypeError and return -1.
*/
static int
check_tzinfo_subclass(PyObject *p)
{
if (p == Py_None || PyTZInfo_Check(p))
return 0;
PyErr_Format(PyExc_TypeError,
"tzinfo argument must be None or of a tzinfo subclass, "
"not type '%s'",
Py_TYPE(p)->tp_name);
return -1;
}
/* If self has a tzinfo member, return a BORROWED reference to it. Else
* return NULL, which is NOT AN ERROR. There are no error returns here,
* and the caller must not decref the result.
*/
static PyObject *
get_tzinfo_member(PyObject *self)
{
PyObject *tzinfo = NULL;
if (PyDateTime_Check(self) && HASTZINFO(self))
tzinfo = ((PyDateTime_DateTime *)self)->tzinfo;
else if (PyTime_Check(self) && HASTZINFO(self))
tzinfo = ((PyDateTime_Time *)self)->tzinfo;
return tzinfo;
}
/* Call getattr(tzinfo, name)(tzinfoarg), and check the result. tzinfo must
* be an instance of the tzinfo class. If the method returns None, this
* returns None. If the method doesn't return None or timedelta, TypeError is
* raised and this returns NULL. If it returns a timedelta and the value is
* out of range or isn't a whole number of minutes, ValueError is raised and
* this returns NULL. Else result is returned.
*/
static PyObject *
call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg)
{
PyObject *offset;
assert(tzinfo != NULL);
assert(PyTZInfo_Check(tzinfo) || tzinfo == Py_None);
assert(tzinfoarg != NULL);
if (tzinfo == Py_None)
Py_RETURN_NONE;
offset = PyObject_CallMethod(tzinfo, name, "O", tzinfoarg);
if (offset == Py_None || offset == NULL)
return offset;
if (PyDelta_Check(offset)) {
if (GET_TD_MICROSECONDS(offset) != 0) {
Py_DECREF(offset);
PyErr_Format(PyExc_ValueError, "offset must be a timedelta"
" representing a whole number of seconds");
return NULL;
}
if ((GET_TD_DAYS(offset) == -1 && GET_TD_SECONDS(offset) == 0) ||
GET_TD_DAYS(offset) < -1 || GET_TD_DAYS(offset) >= 1) {
Py_DECREF(offset);
PyErr_Format(PyExc_ValueError, "offset must be a timedelta"
" strictly between -timedelta(hours=24) and"
" timedelta(hours=24).");
return NULL;
}
}
else {
PyErr_Format(PyExc_TypeError,
"tzinfo.%s() must return None or "
"timedelta, not '%.200s'",
name, Py_TYPE(offset)->tp_name);
Py_DECREF(offset);
return NULL;
}
return offset;
}
/* Call tzinfo.utcoffset(tzinfoarg), and extract an integer from the
* result. tzinfo must be an instance of the tzinfo class. If utcoffset()
* returns None, call_utcoffset returns 0 and sets *none to 1. If uctoffset()
* doesn't return None or timedelta, TypeError is raised and this returns -1.
* If utcoffset() returns an invalid timedelta (out of range, or not a whole
* # of minutes), ValueError is raised and this returns -1. Else *none is
* set to 0 and the offset is returned (as int # of minutes east of UTC).
*/
static PyObject *
call_utcoffset(PyObject *tzinfo, PyObject *tzinfoarg)
{
return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg);
}
/* Call tzinfo.dst(tzinfoarg), and extract an integer from the
* result. tzinfo must be an instance of the tzinfo class. If dst()
* returns None, call_dst returns 0 and sets *none to 1. If dst()
& doesn't return None or timedelta, TypeError is raised and this
* returns -1. If dst() returns an invalid timedelta for a UTC offset,
* ValueError is raised and this returns -1. Else *none is set to 0 and
* the offset is returned (as an int # of minutes east of UTC).
*/
static PyObject *
call_dst(PyObject *tzinfo, PyObject *tzinfoarg)
{
return call_tzinfo_method(tzinfo, "dst", tzinfoarg);
}
/* Call tzinfo.tzname(tzinfoarg), and return the result. tzinfo must be
* an instance of the tzinfo class or None. If tzinfo isn't None, and
* tzname() doesn't return None or a string, TypeError is raised and this
* returns NULL. If the result is a string, we ensure it is a Unicode
* string.
*/
static PyObject *
call_tzname(PyObject *tzinfo, PyObject *tzinfoarg)
{
PyObject *result;
_Py_IDENTIFIER(tzname);
assert(tzinfo != NULL);
assert(check_tzinfo_subclass(tzinfo) >= 0);
assert(tzinfoarg != NULL);
if (tzinfo == Py_None)
Py_RETURN_NONE;
result = _PyObject_CallMethodId(tzinfo, &PyId_tzname, "O", tzinfoarg);
if (result == NULL || result == Py_None)
return result;
if (!PyUnicode_Check(result)) {
PyErr_Format(PyExc_TypeError, "tzinfo.tzname() must "
"return None or a string, not '%s'",
Py_TYPE(result)->tp_name);
Py_DECREF(result);
result = NULL;
}
return result;
}
/* repr is like "someclass(arg1, arg2)". If tzinfo isn't None,
* stuff
* ", tzinfo=" + repr(tzinfo)
* before the closing ")".
*/
static PyObject *
append_keyword_tzinfo(PyObject *repr, PyObject *tzinfo)
{
PyObject *temp;
assert(PyUnicode_Check(repr));
assert(tzinfo);
if (tzinfo == Py_None)
return repr;
/* Get rid of the trailing ')'. */
assert(PyUnicode_READ_CHAR(repr, PyUnicode_GET_LENGTH(repr)-1) == ')');
temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1);
Py_DECREF(repr);
if (temp == NULL)
return NULL;
repr = PyUnicode_FromFormat("%U, tzinfo=%R)", temp, tzinfo);
Py_DECREF(temp);
return repr;
}
/* repr is like "someclass(arg1, arg2)". If fold isn't 0,
* stuff
* ", fold=" + repr(tzinfo)
* before the closing ")".
*/
static PyObject *
append_keyword_fold(PyObject *repr, int fold)
{
PyObject *temp;
assert(PyUnicode_Check(repr));
if (fold == 0)
return repr;
/* Get rid of the trailing ')'. */
assert(PyUnicode_READ_CHAR(repr, PyUnicode_GET_LENGTH(repr)-1) == ')');
temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1);
Py_DECREF(repr);
if (temp == NULL)
return NULL;
repr = PyUnicode_FromFormat("%U, fold=%d)", temp, fold);
Py_DECREF(temp);
return repr;
}
/* ---------------------------------------------------------------------------
* String format helpers.
*/
static PyObject *
format_ctime(PyDateTime_Date *date, int hours, int minutes, int seconds)
{
static const char * const DayNames[] = {
"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"
};
static const char * const MonthNames[] = {
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
};
int wday = weekday(GET_YEAR(date), GET_MONTH(date), GET_DAY(date));
return PyUnicode_FromFormat("%s %s %2d %02d:%02d:%02d %04d",
DayNames[wday], MonthNames[GET_MONTH(date)-1],
GET_DAY(date), hours, minutes, seconds,
GET_YEAR(date));
}
static PyObject *delta_negative(PyDateTime_Delta *self);
/* Add an hours & minutes UTC offset string to buf. buf has no more than
* buflen bytes remaining. The UTC offset is gotten by calling
* tzinfo.uctoffset(tzinfoarg). If that returns None, \0 is stored into
* *buf, and that's all. Else the returned value is checked for sanity (an
* integer in range), and if that's OK it's converted to an hours & minutes
* string of the form
* sign HH sep MM
* Returns 0 if everything is OK. If the return value from utcoffset() is
* bogus, an appropriate exception is set and -1 is returned.
*/
static int
format_utcoffset(char *buf, size_t buflen, const char *sep,
PyObject *tzinfo, PyObject *tzinfoarg)
{
PyObject *offset;
int hours, minutes, seconds;
char sign;
assert(buflen >= 1);
offset = call_utcoffset(tzinfo, tzinfoarg);
if (offset == NULL)
return -1;
if (offset == Py_None) {
Py_DECREF(offset);
*buf = '\0';
return 0;
}
/* Offset is normalized, so it is negative if days < 0 */
if (GET_TD_DAYS(offset) < 0) {
sign = '-';
Py_SETREF(offset, delta_negative((PyDateTime_Delta *)offset));
if (offset == NULL)
return -1;
}
else {
sign = '+';
}
/* Offset is not negative here. */
seconds = GET_TD_SECONDS(offset);
Py_DECREF(offset);
minutes = divmod(seconds, 60, &seconds);
hours = divmod(minutes, 60, &minutes);
if (seconds == 0)
PyOS_snprintf(buf, buflen, "%c%02d%s%02d", sign, hours, sep, minutes);
else
PyOS_snprintf(buf, buflen, "%c%02d%s%02d%s%02d", sign, hours,
sep, minutes, sep, seconds);
return 0;
}
static PyObject *
make_Zreplacement(PyObject *object, PyObject *tzinfoarg)
{
PyObject *temp;
PyObject *tzinfo = get_tzinfo_member(object);
PyObject *Zreplacement = PyUnicode_FromStringAndSize(NULL, 0);
_Py_IDENTIFIER(replace);
if (Zreplacement == NULL)
return NULL;
if (tzinfo == Py_None || tzinfo == NULL)
return Zreplacement;
assert(tzinfoarg != NULL);
temp = call_tzname(tzinfo, tzinfoarg);
if (temp == NULL)
goto Error;
if (temp == Py_None) {
Py_DECREF(temp);
return Zreplacement;
}
assert(PyUnicode_Check(temp));
/* Since the tzname is getting stuffed into the
* format, we have to double any % signs so that
* strftime doesn't treat them as format codes.
*/
Py_DECREF(Zreplacement);
Zreplacement = _PyObject_CallMethodId(temp, &PyId_replace, "ss", "%", "%%");
Py_DECREF(temp);
if (Zreplacement == NULL)
return NULL;
if (!PyUnicode_Check(Zreplacement)) {
PyErr_SetString(PyExc_TypeError,
"tzname.replace() did not return a string");
goto Error;
}
return Zreplacement;
Error:
Py_DECREF(Zreplacement);
return NULL;
}
static PyObject *
make_freplacement(PyObject *object)
{
char freplacement[64];
if (PyTime_Check(object))
sprintf(freplacement, "%06d", TIME_GET_MICROSECOND(object));
else if (PyDateTime_Check(object))
sprintf(freplacement, "%06d", DATE_GET_MICROSECOND(object));
else
sprintf(freplacement, "%06d", 0);
return PyBytes_FromStringAndSize(freplacement, strlen(freplacement));
}
/* I sure don't want to reproduce the strftime code from the time module,
* so this imports the module and calls it. All the hair is due to
* giving special meanings to the %z, %Z and %f format codes via a
* preprocessing step on the format string.
* tzinfoarg is the argument to pass to the object's tzinfo method, if
* needed.
*/
static PyObject *
wrap_strftime(PyObject *object, PyObject *format, PyObject *timetuple,
PyObject *tzinfoarg)
{
PyObject *result = NULL; /* guilty until proved innocent */
PyObject *zreplacement = NULL; /* py string, replacement for %z */
PyObject *Zreplacement = NULL; /* py string, replacement for %Z */
PyObject *freplacement = NULL; /* py string, replacement for %f */
const char *pin; /* pointer to next char in input format */
Py_ssize_t flen; /* length of input format */
char ch; /* next char in input format */
PyObject *newfmt = NULL; /* py string, the output format */
char *pnew; /* pointer to available byte in output format */
size_t totalnew; /* number bytes total in output format buffer,
exclusive of trailing \0 */
size_t usednew; /* number bytes used so far in output format buffer */
const char *ptoappend; /* ptr to string to append to output buffer */
Py_ssize_t ntoappend; /* # of bytes to append to output buffer */
assert(object && format && timetuple);
assert(PyUnicode_Check(format));
/* Convert the input format to a C string and size */
pin = PyUnicode_AsUTF8AndSize(format, &flen);
if (!pin)
return NULL;
/* Scan the input format, looking for %z/%Z/%f escapes, building
* a new format. Since computing the replacements for those codes
* is expensive, don't unless they're actually used.
*/
if (flen > INT_MAX - 1) {
PyErr_NoMemory();
goto Done;
}
totalnew = flen + 1; /* realistic if no %z/%Z */
newfmt = PyBytes_FromStringAndSize(NULL, totalnew);
if (newfmt == NULL) goto Done;
pnew = PyBytes_AsString(newfmt);
usednew = 0;
while ((ch = *pin++) != '\0') {
if (ch != '%') {
ptoappend = pin - 1;
ntoappend = 1;
}
else if ((ch = *pin++) == '\0') {
/* There's a lone trailing %; doesn't make sense. */
PyErr_SetString(PyExc_ValueError, "strftime format "
"ends with raw %");
goto Done;
}
/* A % has been seen and ch is the character after it. */
else if (ch == 'z') {
if (zreplacement == NULL) {
/* format utcoffset */
char buf[100];
PyObject *tzinfo = get_tzinfo_member(object);
zreplacement = PyBytes_FromStringAndSize("", 0);
if (zreplacement == NULL) goto Done;
if (tzinfo != Py_None && tzinfo != NULL) {
assert(tzinfoarg != NULL);
if (format_utcoffset(buf,
sizeof(buf),
"",
tzinfo,
tzinfoarg) < 0)
goto Done;
Py_DECREF(zreplacement);
zreplacement =
PyBytes_FromStringAndSize(buf,
strlen(buf));
if (zreplacement == NULL)
goto Done;
}
}
assert(zreplacement != NULL);
ptoappend = PyBytes_AS_STRING(zreplacement);
ntoappend = PyBytes_GET_SIZE(zreplacement);
}
else if (ch == 'Z') {
/* format tzname */
if (Zreplacement == NULL) {
Zreplacement = make_Zreplacement(object,
tzinfoarg);
if (Zreplacement == NULL)
goto Done;
}
assert(Zreplacement != NULL);
assert(PyUnicode_Check(Zreplacement));
ptoappend = PyUnicode_AsUTF8AndSize(Zreplacement,
&ntoappend);
if (ptoappend == NULL)
goto Done;
}
else if (ch == 'f') {
/* format microseconds */
if (freplacement == NULL) {
freplacement = make_freplacement(object);
if (freplacement == NULL)
goto Done;
}
assert(freplacement != NULL);
assert(PyBytes_Check(freplacement));
ptoappend = PyBytes_AS_STRING(freplacement);
ntoappend = PyBytes_GET_SIZE(freplacement);
}
else {
/* percent followed by neither z nor Z */
ptoappend = pin - 2;
ntoappend = 2;
}
/* Append the ntoappend chars starting at ptoappend to
* the new format.
*/
if (ntoappend == 0)
continue;
assert(ptoappend != NULL);
assert(ntoappend > 0);
while (usednew + ntoappend > totalnew) {
if (totalnew > (PY_SSIZE_T_MAX >> 1)) { /* overflow */
PyErr_NoMemory();
goto Done;
}
totalnew <<= 1;
if (_PyBytes_Resize(&newfmt, totalnew) < 0)
goto Done;
pnew = PyBytes_AsString(newfmt) + usednew;
}
memcpy(pnew, ptoappend, ntoappend);
pnew += ntoappend;
usednew += ntoappend;
assert(usednew <= totalnew);
} /* end while() */
if (_PyBytes_Resize(&newfmt, usednew) < 0)
goto Done;
{
PyObject *format;
PyObject *time = PyImport_ImportModuleNoBlock("time");
if (time == NULL)
goto Done;
format = PyUnicode_FromString(PyBytes_AS_STRING(newfmt));
if (format != NULL) {
result = _PyObject_CallMethodId(time, &PyId_strftime, "OO",
format, timetuple, NULL);
Py_DECREF(format);
}
Py_DECREF(time);
}
Done:
Py_XDECREF(freplacement);
Py_XDECREF(zreplacement);
Py_XDECREF(Zreplacement);
Py_XDECREF(newfmt);
return result;
}
/* ---------------------------------------------------------------------------
* Wrap functions from the time module. These aren't directly available
* from C. Perhaps they should be.
*/
/* Call time.time() and return its result (a Python float). */
static PyObject *
time_time(void)
{
PyObject *result = NULL;
PyObject *time = PyImport_ImportModuleNoBlock("time");
if (time != NULL) {
_Py_IDENTIFIER(time);
result = _PyObject_CallMethodId(time, &PyId_time, NULL);
Py_DECREF(time);
}
return result;
}
/* Build a time.struct_time. The weekday and day number are automatically
* computed from the y,m,d args.
*/
static PyObject *
build_struct_time(int y, int m, int d, int hh, int mm, int ss, int dstflag)
{
PyObject *time;
PyObject *result = NULL;
time = PyImport_ImportModuleNoBlock("time");
if (time != NULL) {
_Py_IDENTIFIER(struct_time);
result = _PyObject_CallMethodId(time, &PyId_struct_time,
"((iiiiiiiii))",
y, m, d,
hh, mm, ss,
weekday(y, m, d),
days_before_month(y, m) + d,
dstflag);
Py_DECREF(time);
}
return result;
}
/* ---------------------------------------------------------------------------
* Miscellaneous helpers.
*/
/* For various reasons, we need to use tp_richcompare instead of tp_reserved.
* The comparisons here all most naturally compute a cmp()-like result.
* This little helper turns that into a bool result for rich comparisons.
*/
static PyObject *
diff_to_bool(int diff, int op)
{
PyObject *result;
int istrue;
switch (op) {
case Py_EQ: istrue = diff == 0; break;
case Py_NE: istrue = diff != 0; break;
case Py_LE: istrue = diff <= 0; break;
case Py_GE: istrue = diff >= 0; break;
case Py_LT: istrue = diff < 0; break;
case Py_GT: istrue = diff > 0; break;
default:
assert(! "op unknown");
istrue = 0; /* To shut up compiler */
}
result = istrue ? Py_True : Py_False;
Py_INCREF(result);
return result;
}
/* Raises a "can't compare" TypeError and returns NULL. */
static PyObject *
cmperror(PyObject *a, PyObject *b)
{
PyErr_Format(PyExc_TypeError,
"can't compare %s to %s",
Py_TYPE(a)->tp_name, Py_TYPE(b)->tp_name);
return NULL;
}
/* ---------------------------------------------------------------------------
* Cached Python objects; these are set by the module init function.
*/
/* Conversion factors. */
static PyObject *one = NULL; /* 1 */
static PyObject *us_per_ms = NULL; /* 1000 */
static PyObject *us_per_second = NULL; /* 1000000 */
static PyObject *us_per_minute = NULL; /* 1e6 * 60 as Python int */
static PyObject *us_per_hour = NULL; /* 1e6 * 3600 as Python int */
static PyObject *us_per_day = NULL; /* 1e6 * 3600 * 24 as Python int */
static PyObject *us_per_week = NULL; /* 1e6*3600*24*7 as Python int */
static PyObject *seconds_per_day = NULL; /* 3600*24 as Python int */
/* ---------------------------------------------------------------------------
* Class implementations.
*/
/*
* PyDateTime_Delta implementation.
*/
/* Convert a timedelta to a number of us,
* (24*3600*self.days + self.seconds)*1000000 + self.microseconds
* as a Python int.
* Doing mixed-radix arithmetic by hand instead is excruciating in C,
* due to ubiquitous overflow possibilities.
*/
static PyObject *
delta_to_microseconds(PyDateTime_Delta *self)
{
PyObject *x1 = NULL;
PyObject *x2 = NULL;
PyObject *x3 = NULL;
PyObject *result = NULL;
x1 = PyLong_FromLong(GET_TD_DAYS(self));
if (x1 == NULL)
goto Done;
x2 = PyNumber_Multiply(x1, seconds_per_day); /* days in seconds */
if (x2 == NULL)
goto Done;
Py_DECREF(x1);
x1 = NULL;
/* x2 has days in seconds */
x1 = PyLong_FromLong(GET_TD_SECONDS(self)); /* seconds */
if (x1 == NULL)
goto Done;
x3 = PyNumber_Add(x1, x2); /* days and seconds in seconds */
if (x3 == NULL)
goto Done;
Py_DECREF(x1);
Py_DECREF(x2);
/* x1 = */ x2 = NULL;
/* x3 has days+seconds in seconds */
x1 = PyNumber_Multiply(x3, us_per_second); /* us */
if (x1 == NULL)
goto Done;
Py_DECREF(x3);
x3 = NULL;
/* x1 has days+seconds in us */
x2 = PyLong_FromLong(GET_TD_MICROSECONDS(self));
if (x2 == NULL)
goto Done;
result = PyNumber_Add(x1, x2);
assert(result == NULL || PyLong_CheckExact(result));
Done:
Py_XDECREF(x1);
Py_XDECREF(x2);
Py_XDECREF(x3);
return result;
}
static PyObject *
checked_divmod(PyObject *a, PyObject *b)
{
PyObject *result = PyNumber_Divmod(a, b);
if (result != NULL) {
if (!PyTuple_Check(result)) {
PyErr_Format(PyExc_TypeError,
"divmod() returned non-tuple (type %.200s)",
result->ob_type->tp_name);
Py_DECREF(result);
return NULL;
}
if (PyTuple_GET_SIZE(result) != 2) {
PyErr_Format(PyExc_TypeError,
"divmod() returned a tuple of size %zd",
PyTuple_GET_SIZE(result));
Py_DECREF(result);
return NULL;
}
}
return result;
}
/* Convert a number of us (as a Python int) to a timedelta.
*/
static PyObject *
microseconds_to_delta_ex(PyObject *pyus, PyTypeObject *type)
{
int us;
int s;
int d;
PyObject *tuple = NULL;
PyObject *num = NULL;
PyObject *result = NULL;
tuple = checked_divmod(pyus, us_per_second);
if (tuple == NULL) {
goto Done;
}
num = PyTuple_GET_ITEM(tuple, 1); /* us */
us = _PyLong_AsInt(num);
num = NULL;
if (us == -1 && PyErr_Occurred()) {
goto Done;
}
if (!(0 <= us && us < 1000000)) {
goto BadDivmod;
}
num = PyTuple_GET_ITEM(tuple, 0); /* leftover seconds */
Py_INCREF(num);
Py_DECREF(tuple);
tuple = checked_divmod(num, seconds_per_day);
if (tuple == NULL)
goto Done;
Py_DECREF(num);
num = PyTuple_GET_ITEM(tuple, 1); /* seconds */
s = _PyLong_AsInt(num);
num = NULL;
if (s == -1 && PyErr_Occurred()) {
goto Done;
}
if (!(0 <= s && s < 24*3600)) {
goto BadDivmod;
}
num = PyTuple_GET_ITEM(tuple, 0); /* leftover days */
Py_INCREF(num);
d = _PyLong_AsInt(num);
if (d == -1 && PyErr_Occurred()) {
goto Done;
}
result = new_delta_ex(d, s, us, 0, type);
Done:
Py_XDECREF(tuple);
Py_XDECREF(num);
return result;
BadDivmod:
PyErr_SetString(PyExc_TypeError,
"divmod() returned a value out of range");
goto Done;
}
#define microseconds_to_delta(pymicros) \
microseconds_to_delta_ex(pymicros, &PyDateTime_DeltaType)
static PyObject *
multiply_int_timedelta(PyObject *intobj, PyDateTime_Delta *delta)
{
PyObject *pyus_in;
PyObject *pyus_out;
PyObject *result;
pyus_in = delta_to_microseconds(delta);
if (pyus_in == NULL)
return NULL;
pyus_out = PyNumber_Multiply(intobj, pyus_in);
Py_DECREF(pyus_in);
if (pyus_out == NULL)
return NULL;
result = microseconds_to_delta(pyus_out);
Py_DECREF(pyus_out);
return result;
}
static PyObject *
get_float_as_integer_ratio(PyObject *floatobj)
{
PyObject *ratio;
assert(floatobj && PyFloat_Check(floatobj));
ratio = _PyObject_CallMethodId(floatobj, &PyId_as_integer_ratio, NULL);
if (ratio == NULL) {
return NULL;
}
if (!PyTuple_Check(ratio)) {
PyErr_Format(PyExc_TypeError,
"unexpected return type from as_integer_ratio(): "
"expected tuple, got '%.200s'",
Py_TYPE(ratio)->tp_name);
Py_DECREF(ratio);
return NULL;
}
if (PyTuple_Size(ratio) != 2) {
PyErr_SetString(PyExc_ValueError,
"as_integer_ratio() must return a 2-tuple");
Py_DECREF(ratio);
return NULL;
}
return ratio;
}
static PyObject *
multiply_float_timedelta(PyObject *floatobj, PyDateTime_Delta *delta)
{
PyObject *result = NULL;
PyObject *pyus_in = NULL, *temp, *pyus_out;
PyObject *ratio = NULL;
pyus_in = delta_to_microseconds(delta);
if (pyus_in == NULL)
return NULL;
ratio = get_float_as_integer_ratio(floatobj);
if (ratio == NULL) {
goto error;
}
temp = PyNumber_Multiply(pyus_in, PyTuple_GET_ITEM(ratio, 0));
Py_DECREF(pyus_in);
pyus_in = NULL;
if (temp == NULL)
goto error;
pyus_out = divide_nearest(temp, PyTuple_GET_ITEM(ratio, 1));
Py_DECREF(temp);
if (pyus_out == NULL)
goto error;
result = microseconds_to_delta(pyus_out);
Py_DECREF(pyus_out);
error:
Py_XDECREF(pyus_in);
Py_XDECREF(ratio);
return result;
}
static PyObject *
divide_timedelta_int(PyDateTime_Delta *delta, PyObject *intobj)
{
PyObject *pyus_in;
PyObject *pyus_out;
PyObject *result;
pyus_in = delta_to_microseconds(delta);
if (pyus_in == NULL)
return NULL;
pyus_out = PyNumber_FloorDivide(pyus_in, intobj);
Py_DECREF(pyus_in);
if (pyus_out == NULL)
return NULL;
result = microseconds_to_delta(pyus_out);
Py_DECREF(pyus_out);
return result;
}
static PyObject *
divide_timedelta_timedelta(PyDateTime_Delta *left, PyDateTime_Delta *right)
{
PyObject *pyus_left;
PyObject *pyus_right;
PyObject *result;
pyus_left = delta_to_microseconds(left);
if (pyus_left == NULL)
return NULL;
pyus_right = delta_to_microseconds(right);
if (pyus_right == NULL) {
Py_DECREF(pyus_left);
return NULL;
}
result = PyNumber_FloorDivide(pyus_left, pyus_right);
Py_DECREF(pyus_left);
Py_DECREF(pyus_right);
return result;
}
static PyObject *
truedivide_timedelta_timedelta(PyDateTime_Delta *left, PyDateTime_Delta *right)
{
PyObject *pyus_left;
PyObject *pyus_right;
PyObject *result;
pyus_left = delta_to_microseconds(left);
if (pyus_left == NULL)
return NULL;
pyus_right = delta_to_microseconds(right);
if (pyus_right == NULL) {
Py_DECREF(pyus_left);
return NULL;
}
result = PyNumber_TrueDivide(pyus_left, pyus_right);
Py_DECREF(pyus_left);
Py_DECREF(pyus_right);
return result;
}
static PyObject *
truedivide_timedelta_float(PyDateTime_Delta *delta, PyObject *f)
{
PyObject *result = NULL;
PyObject *pyus_in = NULL, *temp, *pyus_out;
PyObject *ratio = NULL;
pyus_in = delta_to_microseconds(delta);
if (pyus_in == NULL)
return NULL;
ratio = get_float_as_integer_ratio(f);
if (ratio == NULL) {
goto error;
}
temp = PyNumber_Multiply(pyus_in, PyTuple_GET_ITEM(ratio, 1));
Py_DECREF(pyus_in);
pyus_in = NULL;
if (temp == NULL)
goto error;
pyus_out = divide_nearest(temp, PyTuple_GET_ITEM(ratio, 0));
Py_DECREF(temp);
if (pyus_out == NULL)
goto error;
result = microseconds_to_delta(pyus_out);
Py_DECREF(pyus_out);
error:
Py_XDECREF(pyus_in);
Py_XDECREF(ratio);
return result;
}
static PyObject *
truedivide_timedelta_int(PyDateTime_Delta *delta, PyObject *i)
{
PyObject *result;
PyObject *pyus_in, *pyus_out;
pyus_in = delta_to_microseconds(delta);
if (pyus_in == NULL)
return NULL;
pyus_out = divide_nearest(pyus_in, i);
Py_DECREF(pyus_in);
if (pyus_out == NULL)
return NULL;
result = microseconds_to_delta(pyus_out);
Py_DECREF(pyus_out);
return result;
}
static PyObject *
delta_add(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDelta_Check(left) && PyDelta_Check(right)) {
/* delta + delta */
/* The C-level additions can't overflow because of the
* invariant bounds.
*/
int days = GET_TD_DAYS(left) + GET_TD_DAYS(right);
int seconds = GET_TD_SECONDS(left) + GET_TD_SECONDS(right);
int microseconds = GET_TD_MICROSECONDS(left) +
GET_TD_MICROSECONDS(right);
result = new_delta(days, seconds, microseconds, 1);
}
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
static PyObject *
delta_negative(PyDateTime_Delta *self)
{
return new_delta(-GET_TD_DAYS(self),
-GET_TD_SECONDS(self),
-GET_TD_MICROSECONDS(self),
1);
}
static PyObject *
delta_positive(PyDateTime_Delta *self)
{
/* Could optimize this (by returning self) if this isn't a
* subclass -- but who uses unary + ? Approximately nobody.
*/
return new_delta(GET_TD_DAYS(self),
GET_TD_SECONDS(self),
GET_TD_MICROSECONDS(self),
0);
}
static PyObject *
delta_abs(PyDateTime_Delta *self)
{
PyObject *result;
assert(GET_TD_MICROSECONDS(self) >= 0);
assert(GET_TD_SECONDS(self) >= 0);
if (GET_TD_DAYS(self) < 0)
result = delta_negative(self);
else
result = delta_positive(self);
return result;
}
static PyObject *
delta_subtract(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDelta_Check(left) && PyDelta_Check(right)) {
/* delta - delta */
/* The C-level additions can't overflow because of the
* invariant bounds.
*/
int days = GET_TD_DAYS(left) - GET_TD_DAYS(right);
int seconds = GET_TD_SECONDS(left) - GET_TD_SECONDS(right);
int microseconds = GET_TD_MICROSECONDS(left) -
GET_TD_MICROSECONDS(right);
result = new_delta(days, seconds, microseconds, 1);
}
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
static int
delta_cmp(PyObject *self, PyObject *other)
{
int diff = GET_TD_DAYS(self) - GET_TD_DAYS(other);
if (diff == 0) {
diff = GET_TD_SECONDS(self) - GET_TD_SECONDS(other);
if (diff == 0)
diff = GET_TD_MICROSECONDS(self) -
GET_TD_MICROSECONDS(other);
}
return diff;
}
static PyObject *
delta_richcompare(PyObject *self, PyObject *other, int op)
{
if (PyDelta_Check(other)) {
int diff = delta_cmp(self, other);
return diff_to_bool(diff, op);
}
else {
Py_RETURN_NOTIMPLEMENTED;
}
}
static PyObject *delta_getstate(PyDateTime_Delta *self);
static Py_hash_t
delta_hash(PyDateTime_Delta *self)
{
if (self->hashcode == -1) {
PyObject *temp = delta_getstate(self);
if (temp != NULL) {
self->hashcode = PyObject_Hash(temp);
Py_DECREF(temp);
}
}
return self->hashcode;
}
static PyObject *
delta_multiply(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDelta_Check(left)) {
/* delta * ??? */
if (PyLong_Check(right))
result = multiply_int_timedelta(right,
(PyDateTime_Delta *) left);
else if (PyFloat_Check(right))
result = multiply_float_timedelta(right,
(PyDateTime_Delta *) left);
}
else if (PyLong_Check(left))
result = multiply_int_timedelta(left,
(PyDateTime_Delta *) right);
else if (PyFloat_Check(left))
result = multiply_float_timedelta(left,
(PyDateTime_Delta *) right);
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
static PyObject *
delta_divide(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDelta_Check(left)) {
/* delta * ??? */
if (PyLong_Check(right))
result = divide_timedelta_int(
(PyDateTime_Delta *)left,
right);
else if (PyDelta_Check(right))
result = divide_timedelta_timedelta(
(PyDateTime_Delta *)left,
(PyDateTime_Delta *)right);
}
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
static PyObject *
delta_truedivide(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDelta_Check(left)) {
if (PyDelta_Check(right))
result = truedivide_timedelta_timedelta(
(PyDateTime_Delta *)left,
(PyDateTime_Delta *)right);
else if (PyFloat_Check(right))
result = truedivide_timedelta_float(
(PyDateTime_Delta *)left, right);
else if (PyLong_Check(right))
result = truedivide_timedelta_int(
(PyDateTime_Delta *)left, right);
}
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
static PyObject *
delta_remainder(PyObject *left, PyObject *right)
{
PyObject *pyus_left;
PyObject *pyus_right;
PyObject *pyus_remainder;
PyObject *remainder;
if (!PyDelta_Check(left) || !PyDelta_Check(right))
Py_RETURN_NOTIMPLEMENTED;
pyus_left = delta_to_microseconds((PyDateTime_Delta *)left);
if (pyus_left == NULL)
return NULL;
pyus_right = delta_to_microseconds((PyDateTime_Delta *)right);
if (pyus_right == NULL) {
Py_DECREF(pyus_left);
return NULL;
}
pyus_remainder = PyNumber_Remainder(pyus_left, pyus_right);
Py_DECREF(pyus_left);
Py_DECREF(pyus_right);
if (pyus_remainder == NULL)
return NULL;
remainder = microseconds_to_delta(pyus_remainder);
Py_DECREF(pyus_remainder);
if (remainder == NULL)
return NULL;
return remainder;
}
static PyObject *
delta_divmod(PyObject *left, PyObject *right)
{
PyObject *pyus_left;
PyObject *pyus_right;
PyObject *divmod;
PyObject *delta;
PyObject *result;
if (!PyDelta_Check(left) || !PyDelta_Check(right))
Py_RETURN_NOTIMPLEMENTED;
pyus_left = delta_to_microseconds((PyDateTime_Delta *)left);
if (pyus_left == NULL)
return NULL;
pyus_right = delta_to_microseconds((PyDateTime_Delta *)right);
if (pyus_right == NULL) {
Py_DECREF(pyus_left);
return NULL;
}
divmod = checked_divmod(pyus_left, pyus_right);
Py_DECREF(pyus_left);
Py_DECREF(pyus_right);
if (divmod == NULL)
return NULL;
delta = microseconds_to_delta(PyTuple_GET_ITEM(divmod, 1));
if (delta == NULL) {
Py_DECREF(divmod);
return NULL;
}
result = PyTuple_Pack(2, PyTuple_GET_ITEM(divmod, 0), delta);
Py_DECREF(delta);
Py_DECREF(divmod);
return result;
}
/* Fold in the value of the tag ("seconds", "weeks", etc) component of a
* timedelta constructor. sofar is the # of microseconds accounted for
* so far, and there are factor microseconds per current unit, the number
* of which is given by num. num * factor is added to sofar in a
* numerically careful way, and that's the result. Any fractional
* microseconds left over (this can happen if num is a float type) are
* added into *leftover.
* Note that there are many ways this can give an error (NULL) return.
*/
static PyObject *
accum(const char* tag, PyObject *sofar, PyObject *num, PyObject *factor,
double *leftover)
{
PyObject *prod;
PyObject *sum;
assert(num != NULL);
if (PyLong_Check(num)) {
prod = PyNumber_Multiply(num, factor);
if (prod == NULL)
return NULL;
sum = PyNumber_Add(sofar, prod);
Py_DECREF(prod);
return sum;
}
if (PyFloat_Check(num)) {
double dnum;
double fracpart;
double intpart;
PyObject *x;
PyObject *y;
/* The Plan: decompose num into an integer part and a
* fractional part, num = intpart + fracpart.
* Then num * factor ==
* intpart * factor + fracpart * factor
* and the LHS can be computed exactly in long arithmetic.
* The RHS is again broken into an int part and frac part.
* and the frac part is added into *leftover.
*/
dnum = PyFloat_AsDouble(num);
if (dnum == -1.0 && PyErr_Occurred())
return NULL;
fracpart = modf(dnum, &intpart);
x = PyLong_FromDouble(intpart);
if (x == NULL)
return NULL;
prod = PyNumber_Multiply(x, factor);
Py_DECREF(x);
if (prod == NULL)
return NULL;
sum = PyNumber_Add(sofar, prod);
Py_DECREF(prod);
if (sum == NULL)
return NULL;
if (fracpart == 0.0)
return sum;
/* So far we've lost no information. Dealing with the
* fractional part requires float arithmetic, and may
* lose a little info.
*/
assert(PyLong_CheckExact(factor));
dnum = PyLong_AsDouble(factor);
dnum *= fracpart;
fracpart = modf(dnum, &intpart);
x = PyLong_FromDouble(intpart);
if (x == NULL) {
Py_DECREF(sum);
return NULL;
}
y = PyNumber_Add(sum, x);
Py_DECREF(sum);
Py_DECREF(x);
*leftover += fracpart;
return y;
}
PyErr_Format(PyExc_TypeError,
"unsupported type for timedelta %s component: %s",
tag, Py_TYPE(num)->tp_name);
return NULL;
}
static PyObject *
delta_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *self = NULL;
/* Argument objects. */
PyObject *day = NULL;
PyObject *second = NULL;
PyObject *us = NULL;
PyObject *ms = NULL;
PyObject *minute = NULL;
PyObject *hour = NULL;
PyObject *week = NULL;
PyObject *x = NULL; /* running sum of microseconds */
PyObject *y = NULL; /* temp sum of microseconds */
double leftover_us = 0.0;
static char *keywords[] = {
"days", "seconds", "microseconds", "milliseconds",
"minutes", "hours", "weeks", NULL
};
if (PyArg_ParseTupleAndKeywords(args, kw, "|OOOOOOO:__new__",
keywords,
&day, &second, &us,
&ms, &minute, &hour, &week) == 0)
goto Done;
x = PyLong_FromLong(0);
if (x == NULL)
goto Done;
#define CLEANUP \
Py_DECREF(x); \
x = y; \
if (x == NULL) \
goto Done
if (us) {
y = accum("microseconds", x, us, one, &leftover_us);
CLEANUP;
}
if (ms) {
y = accum("milliseconds", x, ms, us_per_ms, &leftover_us);
CLEANUP;
}
if (second) {
y = accum("seconds", x, second, us_per_second, &leftover_us);
CLEANUP;
}
if (minute) {
y = accum("minutes", x, minute, us_per_minute, &leftover_us);
CLEANUP;
}
if (hour) {
y = accum("hours", x, hour, us_per_hour, &leftover_us);
CLEANUP;
}
if (day) {
y = accum("days", x, day, us_per_day, &leftover_us);
CLEANUP;
}
if (week) {
y = accum("weeks", x, week, us_per_week, &leftover_us);
CLEANUP;
}
if (leftover_us) {
/* Round to nearest whole # of us, and add into x. */
double whole_us = round(leftover_us);
int x_is_odd;
PyObject *temp;
whole_us = round(leftover_us);
if (fabs(whole_us - leftover_us) == 0.5) {
/* We're exactly halfway between two integers. In order
* to do round-half-to-even, we must determine whether x
* is odd. Note that x is odd when it's last bit is 1. The
* code below uses bitwise and operation to check the last
* bit. */
temp = PyNumber_And(x, one); /* temp <- x & 1 */
if (temp == NULL) {
Py_DECREF(x);
goto Done;
}
x_is_odd = PyObject_IsTrue(temp);
Py_DECREF(temp);
if (x_is_odd == -1) {
Py_DECREF(x);
goto Done;
}
whole_us = 2.0 * round((leftover_us + x_is_odd) * 0.5) - x_is_odd;
}
temp = PyLong_FromLong((long)whole_us);
if (temp == NULL) {
Py_DECREF(x);
goto Done;
}
y = PyNumber_Add(x, temp);
Py_DECREF(temp);
CLEANUP;
}
self = microseconds_to_delta_ex(x, type);
Py_DECREF(x);
Done:
return self;
#undef CLEANUP
}
static int
delta_bool(PyDateTime_Delta *self)
{
return (GET_TD_DAYS(self) != 0
|| GET_TD_SECONDS(self) != 0
|| GET_TD_MICROSECONDS(self) != 0);
}
static PyObject *
delta_repr(PyDateTime_Delta *self)
{
if (GET_TD_MICROSECONDS(self) != 0)
return PyUnicode_FromFormat("%s(%d, %d, %d)",
Py_TYPE(self)->tp_name,
GET_TD_DAYS(self),
GET_TD_SECONDS(self),
GET_TD_MICROSECONDS(self));
if (GET_TD_SECONDS(self) != 0)
return PyUnicode_FromFormat("%s(%d, %d)",
Py_TYPE(self)->tp_name,
GET_TD_DAYS(self),
GET_TD_SECONDS(self));
return PyUnicode_FromFormat("%s(%d)",
Py_TYPE(self)->tp_name,
GET_TD_DAYS(self));
}
static PyObject *
delta_str(PyDateTime_Delta *self)
{
int us = GET_TD_MICROSECONDS(self);
int seconds = GET_TD_SECONDS(self);
int minutes = divmod(seconds, 60, &seconds);
int hours = divmod(minutes, 60, &minutes);
int days = GET_TD_DAYS(self);
if (days) {
if (us)
return PyUnicode_FromFormat("%d day%s, %d:%02d:%02d.%06d",
days, (days == 1 || days == -1) ? "" : "s",
hours, minutes, seconds, us);
else
return PyUnicode_FromFormat("%d day%s, %d:%02d:%02d",
days, (days == 1 || days == -1) ? "" : "s",
hours, minutes, seconds);
} else {
if (us)
return PyUnicode_FromFormat("%d:%02d:%02d.%06d",
hours, minutes, seconds, us);
else
return PyUnicode_FromFormat("%d:%02d:%02d",
hours, minutes, seconds);
}
}
/* Pickle support, a simple use of __reduce__. */
/* __getstate__ isn't exposed */
static PyObject *
delta_getstate(PyDateTime_Delta *self)
{
return Py_BuildValue("iii", GET_TD_DAYS(self),
GET_TD_SECONDS(self),
GET_TD_MICROSECONDS(self));
}
static PyObject *
delta_total_seconds(PyObject *self)
{
PyObject *total_seconds;
PyObject *total_microseconds;
total_microseconds = delta_to_microseconds((PyDateTime_Delta *)self);
if (total_microseconds == NULL)
return NULL;
total_seconds = PyNumber_TrueDivide(total_microseconds, us_per_second);
Py_DECREF(total_microseconds);
return total_seconds;
}
static PyObject *
delta_reduce(PyDateTime_Delta* self)
{
return Py_BuildValue("ON", Py_TYPE(self), delta_getstate(self));
}
#define OFFSET(field) offsetof(PyDateTime_Delta, field)
static PyMemberDef delta_members[] = {
{"days", T_INT, OFFSET(days), READONLY,
PyDoc_STR("Number of days.")},
{"seconds", T_INT, OFFSET(seconds), READONLY,
PyDoc_STR("Number of seconds (>= 0 and less than 1 day).")},
{"microseconds", T_INT, OFFSET(microseconds), READONLY,
PyDoc_STR("Number of microseconds (>= 0 and less than 1 second).")},
{NULL}
};
static PyMethodDef delta_methods[] = {
{"total_seconds", (PyCFunction)delta_total_seconds, METH_NOARGS,
PyDoc_STR("Total seconds in the duration.")},
{"__reduce__", (PyCFunction)delta_reduce, METH_NOARGS,
PyDoc_STR("__reduce__() -> (cls, state)")},
{NULL, NULL},
};
static const char delta_doc[] =
PyDoc_STR("Difference between two datetime values.\n\n"
"timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, "
"minutes=0, hours=0, weeks=0)\n\n"
"All arguments are optional and default to 0.\n"
"Arguments may be integers or floats, and may be positive or negative.");
static PyNumberMethods delta_as_number = {
delta_add, /* nb_add */
delta_subtract, /* nb_subtract */
delta_multiply, /* nb_multiply */
delta_remainder, /* nb_remainder */
delta_divmod, /* nb_divmod */
0, /* nb_power */
(unaryfunc)delta_negative, /* nb_negative */
(unaryfunc)delta_positive, /* nb_positive */
(unaryfunc)delta_abs, /* nb_absolute */
(inquiry)delta_bool, /* nb_bool */
0, /*nb_invert*/
0, /*nb_lshift*/
0, /*nb_rshift*/
0, /*nb_and*/
0, /*nb_xor*/
0, /*nb_or*/
0, /*nb_int*/
0, /*nb_reserved*/
0, /*nb_float*/
0, /*nb_inplace_add*/
0, /*nb_inplace_subtract*/
0, /*nb_inplace_multiply*/
0, /*nb_inplace_remainder*/
0, /*nb_inplace_power*/
0, /*nb_inplace_lshift*/
0, /*nb_inplace_rshift*/
0, /*nb_inplace_and*/
0, /*nb_inplace_xor*/
0, /*nb_inplace_or*/
delta_divide, /* nb_floor_divide */
delta_truedivide, /* nb_true_divide */
0, /* nb_inplace_floor_divide */
0, /* nb_inplace_true_divide */
};
static PyTypeObject PyDateTime_DeltaType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.timedelta", /* tp_name */
sizeof(PyDateTime_Delta), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)delta_repr, /* tp_repr */
&delta_as_number, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)delta_hash, /* tp_hash */
0, /* tp_call */
(reprfunc)delta_str, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
delta_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
delta_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
delta_methods, /* tp_methods */
delta_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
delta_new, /* tp_new */
0, /* tp_free */
};
/*
* PyDateTime_Date implementation.
*/
/* Accessor properties. */
static PyObject *
date_year(PyDateTime_Date *self, void *unused)
{
return PyLong_FromLong(GET_YEAR(self));
}
static PyObject *
date_month(PyDateTime_Date *self, void *unused)
{
return PyLong_FromLong(GET_MONTH(self));
}
static PyObject *
date_day(PyDateTime_Date *self, void *unused)
{
return PyLong_FromLong(GET_DAY(self));
}
static PyGetSetDef date_getset[] = {
{"year", (getter)date_year},
{"month", (getter)date_month},
{"day", (getter)date_day},
{NULL}
};
/* Constructors. */
static char *date_kws[] = {"year", "month", "day", NULL};
static PyObject *
date_from_pickle(PyTypeObject *type, PyObject *state)
{
PyDateTime_Date *me;
me = (PyDateTime_Date *) (type->tp_alloc(type, 0));
if (me != NULL) {
const char *pdata = PyBytes_AS_STRING(state);
memcpy(me->data, pdata, _PyDateTime_DATE_DATASIZE);
me->hashcode = -1;
}
return (PyObject *)me;
}
static PyObject *
date_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *self = NULL;
int year;
int month;
int day;
/* Check for invocation from pickle with __getstate__ state */
if (PyTuple_GET_SIZE(args) == 1) {
PyObject *state = PyTuple_GET_ITEM(args, 0);
if (PyBytes_Check(state)) {
if (PyBytes_GET_SIZE(state) == _PyDateTime_DATE_DATASIZE &&
MONTH_IS_SANE(PyBytes_AS_STRING(state)[2]))
{
return date_from_pickle(type, state);
}
}
else if (PyUnicode_Check(state)) {
if (PyUnicode_READY(state)) {
return NULL;
}
if (PyUnicode_GET_LENGTH(state) == _PyDateTime_DATE_DATASIZE &&
MONTH_IS_SANE(PyUnicode_READ_CHAR(state, 2)))
{
state = PyUnicode_AsLatin1String(state);
if (state == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) {
/* More informative error message. */
PyErr_SetString(PyExc_ValueError,
"Failed to encode latin1 string when unpickling "
"a date object. "
"pickle.load(data, encoding='latin1') is assumed.");
}
return NULL;
}
self = date_from_pickle(type, state);
Py_DECREF(state);
return self;
}
}
}
if (PyArg_ParseTupleAndKeywords(args, kw, "iii", date_kws,
&year, &month, &day)) {
self = new_date_ex(year, month, day, type);
}
return self;
}
/* Return new date from localtime(t). */
static PyObject *
date_local_from_object(PyObject *cls, PyObject *obj)
{
struct tm tm;
time_t t;
if (_PyTime_ObjectToTime_t(obj, &t, _PyTime_ROUND_FLOOR) == -1)
return NULL;
if (_PyTime_localtime(t, &tm) != 0)
return NULL;
return PyObject_CallFunction(cls, "iii",
tm.tm_year + 1900,
tm.tm_mon + 1,
tm.tm_mday);
}
/* Return new date from current time.
* We say this is equivalent to fromtimestamp(time.time()), and the
* only way to be sure of that is to *call* time.time(). That's not
* generally the same as calling C's time.
*/
static PyObject *
date_today(PyObject *cls, PyObject *dummy)
{
PyObject *time;
PyObject *result;
_Py_IDENTIFIER(fromtimestamp);
time = time_time();
if (time == NULL)
return NULL;
/* Note well: today() is a class method, so this may not call
* date.fromtimestamp. For example, it may call
* datetime.fromtimestamp. That's why we need all the accuracy
* time.time() delivers; if someone were gonzo about optimization,
* date.today() could get away with plain C time().
*/
result = _PyObject_CallMethodId(cls, &PyId_fromtimestamp, "O", time);
Py_DECREF(time);
return result;
}
/* Return new date from given timestamp (Python timestamp -- a double). */
static PyObject *
date_fromtimestamp(PyObject *cls, PyObject *args)
{
PyObject *timestamp;
PyObject *result = NULL;
if (PyArg_ParseTuple(args, "O:fromtimestamp", ×tamp))
result = date_local_from_object(cls, timestamp);
return result;
}
/* Return new date from proleptic Gregorian ordinal. Raises ValueError if
* the ordinal is out of range.
*/
static PyObject *
date_fromordinal(PyObject *cls, PyObject *args)
{
PyObject *result = NULL;
int ordinal;
if (PyArg_ParseTuple(args, "i:fromordinal", &ordinal)) {
int year;
int month;
int day;
if (ordinal < 1)
PyErr_SetString(PyExc_ValueError, "ordinal must be "
">= 1");
else {
ord_to_ymd(ordinal, &year, &month, &day);
result = PyObject_CallFunction(cls, "iii",
year, month, day);
}
}
return result;
}
/*
* Date arithmetic.
*/
/* date + timedelta -> date. If arg negate is true, subtract the timedelta
* instead.
*/
static PyObject *
add_date_timedelta(PyDateTime_Date *date, PyDateTime_Delta *delta, int negate)
{
PyObject *result = NULL;
int year = GET_YEAR(date);
int month = GET_MONTH(date);
int deltadays = GET_TD_DAYS(delta);
/* C-level overflow is impossible because |deltadays| < 1e9. */
int day = GET_DAY(date) + (negate ? -deltadays : deltadays);
if (normalize_date(&year, &month, &day) >= 0)
result = new_date(year, month, day);
return result;
}
static PyObject *
date_add(PyObject *left, PyObject *right)
{
if (PyDateTime_Check(left) || PyDateTime_Check(right))
Py_RETURN_NOTIMPLEMENTED;
if (PyDate_Check(left)) {
/* date + ??? */
if (PyDelta_Check(right))
/* date + delta */
return add_date_timedelta((PyDateTime_Date *) left,
(PyDateTime_Delta *) right,
0);
}
else {
/* ??? + date
* 'right' must be one of us, or we wouldn't have been called
*/
if (PyDelta_Check(left))
/* delta + date */
return add_date_timedelta((PyDateTime_Date *) right,
(PyDateTime_Delta *) left,
0);
}
Py_RETURN_NOTIMPLEMENTED;
}
static PyObject *
date_subtract(PyObject *left, PyObject *right)
{
if (PyDateTime_Check(left) || PyDateTime_Check(right))
Py_RETURN_NOTIMPLEMENTED;
if (PyDate_Check(left)) {
if (PyDate_Check(right)) {
/* date - date */
int left_ord = ymd_to_ord(GET_YEAR(left),
GET_MONTH(left),
GET_DAY(left));
int right_ord = ymd_to_ord(GET_YEAR(right),
GET_MONTH(right),
GET_DAY(right));
return new_delta(left_ord - right_ord, 0, 0, 0);
}
if (PyDelta_Check(right)) {
/* date - delta */
return add_date_timedelta((PyDateTime_Date *) left,
(PyDateTime_Delta *) right,
1);
}
}
Py_RETURN_NOTIMPLEMENTED;
}
/* Various ways to turn a date into a string. */
static PyObject *
date_repr(PyDateTime_Date *self)
{
return PyUnicode_FromFormat("%s(%d, %d, %d)",
Py_TYPE(self)->tp_name,
GET_YEAR(self), GET_MONTH(self), GET_DAY(self));
}
static PyObject *
date_isoformat(PyDateTime_Date *self)
{
return PyUnicode_FromFormat("%04d-%02d-%02d",
GET_YEAR(self), GET_MONTH(self), GET_DAY(self));
}
/* str() calls the appropriate isoformat() method. */
static PyObject *
date_str(PyDateTime_Date *self)
{
return _PyObject_CallMethodId((PyObject *)self, &PyId_isoformat, NULL);
}
static PyObject *
date_ctime(PyDateTime_Date *self)
{
return format_ctime(self, 0, 0, 0);
}
static PyObject *
date_strftime(PyDateTime_Date *self, PyObject *args, PyObject *kw)
{
/* This method can be inherited, and needs to call the
* timetuple() method appropriate to self's class.
*/
PyObject *result;
PyObject *tuple;
PyObject *format;
_Py_IDENTIFIER(timetuple);
static char *keywords[] = {"format", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kw, "U:strftime", keywords,
&format))
return NULL;
tuple = _PyObject_CallMethodId((PyObject *)self, &PyId_timetuple, NULL);
if (tuple == NULL)
return NULL;
result = wrap_strftime((PyObject *)self, format, tuple,
(PyObject *)self);
Py_DECREF(tuple);
return result;
}
static PyObject *
date_format(PyDateTime_Date *self, PyObject *args)
{
PyObject *format;
if (!PyArg_ParseTuple(args, "U:__format__", &format))
return NULL;
/* if the format is zero length, return str(self) */
if (PyUnicode_GetLength(format) == 0)
return PyObject_Str((PyObject *)self);
return _PyObject_CallMethodId((PyObject *)self, &PyId_strftime, "O", format);
}
/* ISO methods. */
static PyObject *
date_isoweekday(PyDateTime_Date *self)
{
int dow = weekday(GET_YEAR(self), GET_MONTH(self), GET_DAY(self));
return PyLong_FromLong(dow + 1);
}
static PyObject *
date_isocalendar(PyDateTime_Date *self)
{
int year = GET_YEAR(self);
int week1_monday = iso_week1_monday(year);
int today = ymd_to_ord(year, GET_MONTH(self), GET_DAY(self));
int week;
int day;
week = divmod(today - week1_monday, 7, &day);
if (week < 0) {
--year;
week1_monday = iso_week1_monday(year);
week = divmod(today - week1_monday, 7, &day);
}
else if (week >= 52 && today >= iso_week1_monday(year + 1)) {
++year;
week = 0;
}
return Py_BuildValue("iii", year, week + 1, day + 1);
}
/* Miscellaneous methods. */
static PyObject *
date_richcompare(PyObject *self, PyObject *other, int op)
{
if (PyDate_Check(other)) {
int diff = memcmp(((PyDateTime_Date *)self)->data,
((PyDateTime_Date *)other)->data,
_PyDateTime_DATE_DATASIZE);
return diff_to_bool(diff, op);
}
else
Py_RETURN_NOTIMPLEMENTED;
}
static PyObject *
date_timetuple(PyDateTime_Date *self)
{
return build_struct_time(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self),
0, 0, 0, -1);
}
static PyObject *
date_replace(PyDateTime_Date *self, PyObject *args, PyObject *kw)
{
PyObject *clone;
PyObject *tuple;
int year = GET_YEAR(self);
int month = GET_MONTH(self);
int day = GET_DAY(self);
if (! PyArg_ParseTupleAndKeywords(args, kw, "|iii:replace", date_kws,
&year, &month, &day))
return NULL;
tuple = Py_BuildValue("iii", year, month, day);
if (tuple == NULL)
return NULL;
clone = date_new(Py_TYPE(self), tuple, NULL);
Py_DECREF(tuple);
return clone;
}
static Py_hash_t
generic_hash(unsigned char *data, int len)
{
return _Py_HashBytes(data, len);
}
static PyObject *date_getstate(PyDateTime_Date *self);
static Py_hash_t
date_hash(PyDateTime_Date *self)
{
if (self->hashcode == -1) {
self->hashcode = generic_hash(
(unsigned char *)self->data, _PyDateTime_DATE_DATASIZE);
}
return self->hashcode;
}
static PyObject *
date_toordinal(PyDateTime_Date *self)
{
return PyLong_FromLong(ymd_to_ord(GET_YEAR(self), GET_MONTH(self),
GET_DAY(self)));
}
static PyObject *
date_weekday(PyDateTime_Date *self)
{
int dow = weekday(GET_YEAR(self), GET_MONTH(self), GET_DAY(self));
return PyLong_FromLong(dow);
}
/* Pickle support, a simple use of __reduce__. */
/* __getstate__ isn't exposed */
static PyObject *
date_getstate(PyDateTime_Date *self)
{
PyObject* field;
field = PyBytes_FromStringAndSize((char*)self->data,
_PyDateTime_DATE_DATASIZE);
return Py_BuildValue("(N)", field);
}
static PyObject *
date_reduce(PyDateTime_Date *self, PyObject *arg)
{
return Py_BuildValue("(ON)", Py_TYPE(self), date_getstate(self));
}
static PyMethodDef date_methods[] = {
/* Class methods: */
{"fromtimestamp", (PyCFunction)date_fromtimestamp, METH_VARARGS |
METH_CLASS,
PyDoc_STR("timestamp -> local date from a POSIX timestamp (like "
"time.time()).")},
{"fromordinal", (PyCFunction)date_fromordinal, METH_VARARGS |
METH_CLASS,
PyDoc_STR("int -> date corresponding to a proleptic Gregorian "
"ordinal.")},
{"today", (PyCFunction)date_today, METH_NOARGS | METH_CLASS,
PyDoc_STR("Current date or datetime: same as "
"self.__class__.fromtimestamp(time.time()).")},
/* Instance methods: */
{"ctime", (PyCFunction)date_ctime, METH_NOARGS,
PyDoc_STR("Return ctime() style string.")},
{"strftime", (PyCFunction)date_strftime, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("format -> strftime() style string.")},
{"__format__", (PyCFunction)date_format, METH_VARARGS,
PyDoc_STR("Formats self with strftime.")},
{"timetuple", (PyCFunction)date_timetuple, METH_NOARGS,
PyDoc_STR("Return time tuple, compatible with time.localtime().")},
{"isocalendar", (PyCFunction)date_isocalendar, METH_NOARGS,
PyDoc_STR("Return a 3-tuple containing ISO year, week number, and "
"weekday.")},
{"isoformat", (PyCFunction)date_isoformat, METH_NOARGS,
PyDoc_STR("Return string in ISO 8601 format, YYYY-MM-DD.")},
{"isoweekday", (PyCFunction)date_isoweekday, METH_NOARGS,
PyDoc_STR("Return the day of the week represented by the date.\n"
"Monday == 1 ... Sunday == 7")},
{"toordinal", (PyCFunction)date_toordinal, METH_NOARGS,
PyDoc_STR("Return proleptic Gregorian ordinal. January 1 of year "
"1 is day 1.")},
{"weekday", (PyCFunction)date_weekday, METH_NOARGS,
PyDoc_STR("Return the day of the week represented by the date.\n"
"Monday == 0 ... Sunday == 6")},
{"replace", (PyCFunction)date_replace, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("Return date with new specified fields.")},
{"__reduce__", (PyCFunction)date_reduce, METH_NOARGS,
PyDoc_STR("__reduce__() -> (cls, state)")},
{NULL, NULL}
};
static const char date_doc[] =
PyDoc_STR("date(year, month, day) --> date object");
static PyNumberMethods date_as_number = {
date_add, /* nb_add */
date_subtract, /* nb_subtract */
0, /* nb_multiply */
0, /* nb_remainder */
0, /* nb_divmod */
0, /* nb_power */
0, /* nb_negative */
0, /* nb_positive */
0, /* nb_absolute */
0, /* nb_bool */
};
static PyTypeObject PyDateTime_DateType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.date", /* tp_name */
sizeof(PyDateTime_Date), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)date_repr, /* tp_repr */
&date_as_number, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)date_hash, /* tp_hash */
0, /* tp_call */
(reprfunc)date_str, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
date_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
date_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
date_methods, /* tp_methods */
0, /* tp_members */
date_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
date_new, /* tp_new */
0, /* tp_free */
};
/*
* PyDateTime_TZInfo implementation.
*/
/* This is a pure abstract base class, so doesn't do anything beyond
* raising NotImplemented exceptions. Real tzinfo classes need
* to derive from this. This is mostly for clarity, and for efficiency in
* datetime and time constructors (their tzinfo arguments need to
* be subclasses of this tzinfo class, which is easy and quick to check).
*
* Note: For reasons having to do with pickling of subclasses, we have
* to allow tzinfo objects to be instantiated. This wasn't an issue
* in the Python implementation (__init__() could raise NotImplementedError
* there without ill effect), but doing so in the C implementation hit a
* brick wall.
*/
static PyObject *
tzinfo_nogo(const char* methodname)
{
PyErr_Format(PyExc_NotImplementedError,
"a tzinfo subclass must implement %s()",
methodname);
return NULL;
}
/* Methods. A subclass must implement these. */
static PyObject *
tzinfo_tzname(PyDateTime_TZInfo *self, PyObject *dt)
{
return tzinfo_nogo("tzname");
}
static PyObject *
tzinfo_utcoffset(PyDateTime_TZInfo *self, PyObject *dt)
{
return tzinfo_nogo("utcoffset");
}
static PyObject *
tzinfo_dst(PyDateTime_TZInfo *self, PyObject *dt)
{
return tzinfo_nogo("dst");
}
static PyObject *add_datetime_timedelta(PyDateTime_DateTime *date,
PyDateTime_Delta *delta,
int factor);
static PyObject *datetime_utcoffset(PyObject *self, PyObject *);
static PyObject *datetime_dst(PyObject *self, PyObject *);
static PyObject *
tzinfo_fromutc(PyDateTime_TZInfo *self, PyObject *dt)
{
PyObject *result = NULL;
PyObject *off = NULL, *dst = NULL;
PyDateTime_Delta *delta = NULL;
if (!PyDateTime_Check(dt)) {
PyErr_SetString(PyExc_TypeError,
"fromutc: argument must be a datetime");
return NULL;
}
if (GET_DT_TZINFO(dt) != (PyObject *)self) {
PyErr_SetString(PyExc_ValueError, "fromutc: dt.tzinfo "
"is not self");
return NULL;
}
off = datetime_utcoffset(dt, NULL);
if (off == NULL)
return NULL;
if (off == Py_None) {
PyErr_SetString(PyExc_ValueError, "fromutc: non-None "
"utcoffset() result required");
goto Fail;
}
dst = datetime_dst(dt, NULL);
if (dst == NULL)
goto Fail;
if (dst == Py_None) {
PyErr_SetString(PyExc_ValueError, "fromutc: non-None "
"dst() result required");
goto Fail;
}
delta = (PyDateTime_Delta *)delta_subtract(off, dst);
if (delta == NULL)
goto Fail;
result = add_datetime_timedelta((PyDateTime_DateTime *)dt, delta, 1);
if (result == NULL)
goto Fail;
Py_DECREF(dst);
dst = call_dst(GET_DT_TZINFO(dt), result);
if (dst == NULL)
goto Fail;
if (dst == Py_None)
goto Inconsistent;
if (delta_bool((PyDateTime_Delta *)dst) != 0) {
Py_SETREF(result, add_datetime_timedelta((PyDateTime_DateTime *)result,
(PyDateTime_Delta *)dst, 1));
if (result == NULL)
goto Fail;
}
Py_DECREF(delta);
Py_DECREF(dst);
Py_DECREF(off);
return result;
Inconsistent:
PyErr_SetString(PyExc_ValueError, "fromutc: tz.dst() gave "
"inconsistent results; cannot convert");
/* fall through to failure */
Fail:
Py_XDECREF(off);
Py_XDECREF(dst);
Py_XDECREF(delta);
Py_XDECREF(result);
return NULL;
}
/*
* Pickle support. This is solely so that tzinfo subclasses can use
* pickling -- tzinfo itself is supposed to be uninstantiable.
*/
static PyObject *
tzinfo_reduce(PyObject *self)
{
PyObject *args, *state;
PyObject *getinitargs, *getstate;
_Py_IDENTIFIER(__getinitargs__);
_Py_IDENTIFIER(__getstate__);
getinitargs = _PyObject_GetAttrId(self, &PyId___getinitargs__);
if (getinitargs != NULL) {
args = _PyObject_CallNoArg(getinitargs);
Py_DECREF(getinitargs);
if (args == NULL) {
return NULL;
}
}
else {
PyErr_Clear();
args = PyTuple_New(0);
if (args == NULL) {
return NULL;
}
}
getstate = _PyObject_GetAttrId(self, &PyId___getstate__);
if (getstate != NULL) {
state = _PyObject_CallNoArg(getstate);
Py_DECREF(getstate);
if (state == NULL) {
Py_DECREF(args);
return NULL;
}
}
else {
PyObject **dictptr;
PyErr_Clear();
state = Py_None;
dictptr = _PyObject_GetDictPtr(self);
if (dictptr && *dictptr && PyDict_Size(*dictptr)) {
state = *dictptr;
}
Py_INCREF(state);
}
if (state == Py_None) {
Py_DECREF(state);
return Py_BuildValue("(ON)", Py_TYPE(self), args);
}
else
return Py_BuildValue("(ONN)", Py_TYPE(self), args, state);
}
static PyMethodDef tzinfo_methods[] = {
{"tzname", (PyCFunction)tzinfo_tzname, METH_O,
PyDoc_STR("datetime -> string name of time zone.")},
{"utcoffset", (PyCFunction)tzinfo_utcoffset, METH_O,
PyDoc_STR("datetime -> timedelta showing offset from UTC, negative "
"values indicating West of UTC")},
{"dst", (PyCFunction)tzinfo_dst, METH_O,
PyDoc_STR("datetime -> DST offset in minutes east of UTC.")},
{"fromutc", (PyCFunction)tzinfo_fromutc, METH_O,
PyDoc_STR("datetime in UTC -> datetime in local time.")},
{"__reduce__", (PyCFunction)tzinfo_reduce, METH_NOARGS,
PyDoc_STR("-> (cls, state)")},
{NULL, NULL}
};
static const char tzinfo_doc[] =
PyDoc_STR("Abstract base class for time zone info objects.");
static PyTypeObject PyDateTime_TZInfoType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.tzinfo", /* tp_name */
sizeof(PyDateTime_TZInfo), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
tzinfo_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
tzinfo_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
0, /* tp_free */
};
static char *timezone_kws[] = {"offset", "name", NULL};
static PyObject *
timezone_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *offset;
PyObject *name = NULL;
if (PyArg_ParseTupleAndKeywords(args, kw, "O!|O!:timezone", timezone_kws,
&PyDateTime_DeltaType, &offset,
&PyUnicode_Type, &name))
return new_timezone(offset, name);
return NULL;
}
static void
timezone_dealloc(PyDateTime_TimeZone *self)
{
Py_CLEAR(self->offset);
Py_CLEAR(self->name);
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyObject *
timezone_richcompare(PyDateTime_TimeZone *self,
PyDateTime_TimeZone *other, int op)
{
if (op != Py_EQ && op != Py_NE)
Py_RETURN_NOTIMPLEMENTED;
if (Py_TYPE(other) != &PyDateTime_TimeZoneType) {
if (op == Py_EQ)
Py_RETURN_FALSE;
else
Py_RETURN_TRUE;
}
return delta_richcompare(self->offset, other->offset, op);
}
static Py_hash_t
timezone_hash(PyDateTime_TimeZone *self)
{
return delta_hash((PyDateTime_Delta *)self->offset);
}
/* Check argument type passed to tzname, utcoffset, or dst methods.
Returns 0 for good argument. Returns -1 and sets exception info
otherwise.
*/
static int
_timezone_check_argument(PyObject *dt, const char *meth)
{
if (dt == Py_None || PyDateTime_Check(dt))
return 0;
PyErr_Format(PyExc_TypeError, "%s(dt) argument must be a datetime instance"
" or None, not %.200s", meth, Py_TYPE(dt)->tp_name);
return -1;
}
static PyObject *
timezone_repr(PyDateTime_TimeZone *self)
{
/* Note that although timezone is not subclassable, it is convenient
to use Py_TYPE(self)->tp_name here. */
const char *type_name = Py_TYPE(self)->tp_name;
if (((PyObject *)self) == PyDateTime_TimeZone_UTC)
return PyUnicode_FromFormat("%s.utc", type_name);
if (self->name == NULL)
return PyUnicode_FromFormat("%s(%R)", type_name, self->offset);
return PyUnicode_FromFormat("%s(%R, %R)", type_name, self->offset,
self->name);
}
static PyObject *
timezone_str(PyDateTime_TimeZone *self)
{
int hours, minutes, seconds;
PyObject *offset;
char sign;
if (self->name != NULL) {
Py_INCREF(self->name);
return self->name;
}
if ((PyObject *)self == PyDateTime_TimeZone_UTC ||
(GET_TD_DAYS(self->offset) == 0 &&
GET_TD_SECONDS(self->offset) == 0 &&
GET_TD_MICROSECONDS(self->offset) == 0))
return PyUnicode_FromString("UTC");
/* Offset is normalized, so it is negative if days < 0 */
if (GET_TD_DAYS(self->offset) < 0) {
sign = '-';
offset = delta_negative((PyDateTime_Delta *)self->offset);
if (offset == NULL)
return NULL;
}
else {
sign = '+';
offset = self->offset;
Py_INCREF(offset);
}
/* Offset is not negative here. */
seconds = GET_TD_SECONDS(offset);
Py_DECREF(offset);
minutes = divmod(seconds, 60, &seconds);
hours = divmod(minutes, 60, &minutes);
/* XXX ignore sub-minute data, currently not allowed. */
assert(seconds == 0);
return PyUnicode_FromFormat("UTC%c%02d:%02d", sign, hours, minutes);
}
static PyObject *
timezone_tzname(PyDateTime_TimeZone *self, PyObject *dt)
{
if (_timezone_check_argument(dt, "tzname") == -1)
return NULL;
return timezone_str(self);
}
static PyObject *
timezone_utcoffset(PyDateTime_TimeZone *self, PyObject *dt)
{
if (_timezone_check_argument(dt, "utcoffset") == -1)
return NULL;
Py_INCREF(self->offset);
return self->offset;
}
static PyObject *
timezone_dst(PyObject *self, PyObject *dt)
{
if (_timezone_check_argument(dt, "dst") == -1)
return NULL;
Py_RETURN_NONE;
}
static PyObject *
timezone_fromutc(PyDateTime_TimeZone *self, PyDateTime_DateTime *dt)
{
if (!PyDateTime_Check(dt)) {
PyErr_SetString(PyExc_TypeError,
"fromutc: argument must be a datetime");
return NULL;
}
if (!HASTZINFO(dt) || dt->tzinfo != (PyObject *)self) {
PyErr_SetString(PyExc_ValueError, "fromutc: dt.tzinfo "
"is not self");
return NULL;
}
return add_datetime_timedelta(dt, (PyDateTime_Delta *)self->offset, 1);
}
static PyObject *
timezone_getinitargs(PyDateTime_TimeZone *self)
{
if (self->name == NULL)
return Py_BuildValue("(O)", self->offset);
return Py_BuildValue("(OO)", self->offset, self->name);
}
static PyMethodDef timezone_methods[] = {
{"tzname", (PyCFunction)timezone_tzname, METH_O,
PyDoc_STR("If name is specified when timezone is created, returns the name."
" Otherwise returns offset as 'UTC(+|-)HH:MM'.")},
{"utcoffset", (PyCFunction)timezone_utcoffset, METH_O,
PyDoc_STR("Return fixed offset.")},
{"dst", (PyCFunction)timezone_dst, METH_O,
PyDoc_STR("Return None.")},
{"fromutc", (PyCFunction)timezone_fromutc, METH_O,
PyDoc_STR("datetime in UTC -> datetime in local time.")},
{"__getinitargs__", (PyCFunction)timezone_getinitargs, METH_NOARGS,
PyDoc_STR("pickle support")},
{NULL, NULL}
};
static const char timezone_doc[] =
PyDoc_STR("Fixed offset from UTC implementation of tzinfo.");
static PyTypeObject PyDateTime_TimeZoneType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.timezone", /* tp_name */
sizeof(PyDateTime_TimeZone), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)timezone_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)timezone_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)timezone_hash, /* tp_hash */
0, /* tp_call */
(reprfunc)timezone_str, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
timezone_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
(richcmpfunc)timezone_richcompare,/* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
timezone_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
&PyDateTime_TZInfoType, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
timezone_new, /* tp_new */
};
/*
* PyDateTime_Time implementation.
*/
/* Accessor properties.
*/
static PyObject *
time_hour(PyDateTime_Time *self, void *unused)
{
return PyLong_FromLong(TIME_GET_HOUR(self));
}
static PyObject *
time_minute(PyDateTime_Time *self, void *unused)
{
return PyLong_FromLong(TIME_GET_MINUTE(self));
}
/* The name time_second conflicted with some platform header file. */
static PyObject *
py_time_second(PyDateTime_Time *self, void *unused)
{
return PyLong_FromLong(TIME_GET_SECOND(self));
}
static PyObject *
time_microsecond(PyDateTime_Time *self, void *unused)
{
return PyLong_FromLong(TIME_GET_MICROSECOND(self));
}
static PyObject *
time_tzinfo(PyDateTime_Time *self, void *unused)
{
PyObject *result = HASTZINFO(self) ? self->tzinfo : Py_None;
Py_INCREF(result);
return result;
}
static PyObject *
time_fold(PyDateTime_Time *self, void *unused)
{
return PyLong_FromLong(TIME_GET_FOLD(self));
}
static PyGetSetDef time_getset[] = {
{"hour", (getter)time_hour},
{"minute", (getter)time_minute},
{"second", (getter)py_time_second},
{"microsecond", (getter)time_microsecond},
{"tzinfo", (getter)time_tzinfo},
{"fold", (getter)time_fold},
{NULL}
};
/*
* Constructors.
*/
static char *time_kws[] = {"hour", "minute", "second", "microsecond",
"tzinfo", "fold", NULL};
static PyObject *
time_from_pickle(PyTypeObject *type, PyObject *state, PyObject *tzinfo)
{
PyDateTime_Time *me;
char aware = (char)(tzinfo != Py_None);
if (aware && check_tzinfo_subclass(tzinfo) < 0) {
PyErr_SetString(PyExc_TypeError, "bad tzinfo state arg");
return NULL;
}
me = (PyDateTime_Time *) (type->tp_alloc(type, aware));
if (me != NULL) {
const char *pdata = PyBytes_AS_STRING(state);
memcpy(me->data, pdata, _PyDateTime_TIME_DATASIZE);
me->hashcode = -1;
me->hastzinfo = aware;
if (aware) {
Py_INCREF(tzinfo);
me->tzinfo = tzinfo;
}
if (pdata[0] & (1 << 7)) {
me->data[0] -= 128;
me->fold = 1;
}
else {
me->fold = 0;
}
}
return (PyObject *)me;
}
static PyObject *
time_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *self = NULL;
int hour = 0;
int minute = 0;
int second = 0;
int usecond = 0;
PyObject *tzinfo = Py_None;
int fold = 0;
/* Check for invocation from pickle with __getstate__ state */
if (PyTuple_GET_SIZE(args) >= 1 && PyTuple_GET_SIZE(args) <= 2) {
PyObject *state = PyTuple_GET_ITEM(args, 0);
if (PyTuple_GET_SIZE(args) == 2) {
tzinfo = PyTuple_GET_ITEM(args, 1);
}
if (PyBytes_Check(state)) {
if (PyBytes_GET_SIZE(state) == _PyDateTime_TIME_DATASIZE &&
(0x7F & ((unsigned char) (PyBytes_AS_STRING(state)[0]))) < 24)
{
return time_from_pickle(type, state, tzinfo);
}
}
else if (PyUnicode_Check(state)) {
if (PyUnicode_READY(state)) {
return NULL;
}
if (PyUnicode_GET_LENGTH(state) == _PyDateTime_TIME_DATASIZE &&
(0x7F & PyUnicode_READ_CHAR(state, 2)) < 24)
{
state = PyUnicode_AsLatin1String(state);
if (state == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) {
/* More informative error message. */
PyErr_SetString(PyExc_ValueError,
"Failed to encode latin1 string when unpickling "
"a time object. "
"pickle.load(data, encoding='latin1') is assumed.");
}
return NULL;
}
self = time_from_pickle(type, state, tzinfo);
Py_DECREF(state);
return self;
}
}
tzinfo = Py_None;
}
if (PyArg_ParseTupleAndKeywords(args, kw, "|iiiiO$i", time_kws,
&hour, &minute, &second, &usecond,
&tzinfo, &fold)) {
self = new_time_ex2(hour, minute, second, usecond, tzinfo, fold,
type);
}
return self;
}
/*
* Destructor.
*/
static void
time_dealloc(PyDateTime_Time *self)
{
if (HASTZINFO(self)) {
Py_XDECREF(self->tzinfo);
}
Py_TYPE(self)->tp_free((PyObject *)self);
}
/*
* Indirect access to tzinfo methods.
*/
/* These are all METH_NOARGS, so don't need to check the arglist. */
static PyObject *
time_utcoffset(PyObject *self, PyObject *unused) {
return call_utcoffset(GET_TIME_TZINFO(self), Py_None);
}
static PyObject *
time_dst(PyObject *self, PyObject *unused) {
return call_dst(GET_TIME_TZINFO(self), Py_None);
}
static PyObject *
time_tzname(PyDateTime_Time *self, PyObject *unused) {
return call_tzname(GET_TIME_TZINFO(self), Py_None);
}
/*
* Various ways to turn a time into a string.
*/
static PyObject *
time_repr(PyDateTime_Time *self)
{
const char *type_name = Py_TYPE(self)->tp_name;
int h = TIME_GET_HOUR(self);
int m = TIME_GET_MINUTE(self);
int s = TIME_GET_SECOND(self);
int us = TIME_GET_MICROSECOND(self);
int fold = TIME_GET_FOLD(self);
PyObject *result = NULL;
if (us)
result = PyUnicode_FromFormat("%s(%d, %d, %d, %d)",
type_name, h, m, s, us);
else if (s)
result = PyUnicode_FromFormat("%s(%d, %d, %d)",
type_name, h, m, s);
else
result = PyUnicode_FromFormat("%s(%d, %d)", type_name, h, m);
if (result != NULL && HASTZINFO(self))
result = append_keyword_tzinfo(result, self->tzinfo);
if (result != NULL && fold)
result = append_keyword_fold(result, fold);
return result;
}
static PyObject *
time_str(PyDateTime_Time *self)
{
return _PyObject_CallMethodId((PyObject *)self, &PyId_isoformat, NULL);
}
static PyObject *
time_isoformat(PyDateTime_Time *self, PyObject *args, PyObject *kw)
{
char buf[100];
char *timespec = NULL;
static char *keywords[] = {"timespec", NULL};
PyObject *result;
int us = TIME_GET_MICROSECOND(self);
static char *specs[][2] = {
{"hours", "%02d"},
{"minutes", "%02d:%02d"},
{"seconds", "%02d:%02d:%02d"},
{"milliseconds", "%02d:%02d:%02d.%03d"},
{"microseconds", "%02d:%02d:%02d.%06d"},
};
size_t given_spec;
if (!PyArg_ParseTupleAndKeywords(args, kw, "|s:isoformat", keywords, ×pec))
return NULL;
if (timespec == NULL || strcmp(timespec, "auto") == 0) {
if (us == 0) {
/* seconds */
given_spec = 2;
}
else {
/* microseconds */
given_spec = 4;
}
}
else {
for (given_spec = 0; given_spec < Py_ARRAY_LENGTH(specs); given_spec++) {
if (strcmp(timespec, specs[given_spec][0]) == 0) {
if (given_spec == 3) {
/* milliseconds */
us = us / 1000;
}
break;
}
}
}
if (given_spec == Py_ARRAY_LENGTH(specs)) {
PyErr_Format(PyExc_ValueError, "Unknown timespec value");
return NULL;
}
else {
result = PyUnicode_FromFormat(specs[given_spec][1],
TIME_GET_HOUR(self), TIME_GET_MINUTE(self),
TIME_GET_SECOND(self), us);
}
if (result == NULL || !HASTZINFO(self) || self->tzinfo == Py_None)
return result;
/* We need to append the UTC offset. */
if (format_utcoffset(buf, sizeof(buf), ":", self->tzinfo,
Py_None) < 0) {
Py_DECREF(result);
return NULL;
}
PyUnicode_AppendAndDel(&result, PyUnicode_FromString(buf));
return result;
}
static PyObject *
time_strftime(PyDateTime_Time *self, PyObject *args, PyObject *kw)
{
PyObject *result;
PyObject *tuple;
PyObject *format;
static char *keywords[] = {"format", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kw, "U:strftime", keywords,
&format))
return NULL;
/* Python's strftime does insane things with the year part of the
* timetuple. The year is forced to (the otherwise nonsensical)
* 1900 to work around that.
*/
tuple = Py_BuildValue("iiiiiiiii",
1900, 1, 1, /* year, month, day */
TIME_GET_HOUR(self),
TIME_GET_MINUTE(self),
TIME_GET_SECOND(self),
0, 1, -1); /* weekday, daynum, dst */
if (tuple == NULL)
return NULL;
assert(PyTuple_Size(tuple) == 9);
result = wrap_strftime((PyObject *)self, format, tuple,
Py_None);
Py_DECREF(tuple);
return result;
}
/*
* Miscellaneous methods.
*/
static PyObject *
time_richcompare(PyObject *self, PyObject *other, int op)
{
PyObject *result = NULL;
PyObject *offset1, *offset2;
int diff;
if (! PyTime_Check(other))
Py_RETURN_NOTIMPLEMENTED;
if (GET_TIME_TZINFO(self) == GET_TIME_TZINFO(other)) {
diff = memcmp(((PyDateTime_Time *)self)->data,
((PyDateTime_Time *)other)->data,
_PyDateTime_TIME_DATASIZE);
return diff_to_bool(diff, op);
}
offset1 = time_utcoffset(self, NULL);
if (offset1 == NULL)
return NULL;
offset2 = time_utcoffset(other, NULL);
if (offset2 == NULL)
goto done;
/* If they're both naive, or both aware and have the same offsets,
* we get off cheap. Note that if they're both naive, offset1 ==
* offset2 == Py_None at this point.
*/
if ((offset1 == offset2) ||
(PyDelta_Check(offset1) && PyDelta_Check(offset2) &&
delta_cmp(offset1, offset2) == 0)) {
diff = memcmp(((PyDateTime_Time *)self)->data,
((PyDateTime_Time *)other)->data,
_PyDateTime_TIME_DATASIZE);
result = diff_to_bool(diff, op);
}
/* The hard case: both aware with different UTC offsets */
else if (offset1 != Py_None && offset2 != Py_None) {
int offsecs1, offsecs2;
assert(offset1 != offset2); /* else last "if" handled it */
offsecs1 = TIME_GET_HOUR(self) * 3600 +
TIME_GET_MINUTE(self) * 60 +
TIME_GET_SECOND(self) -
GET_TD_DAYS(offset1) * 86400 -
GET_TD_SECONDS(offset1);
offsecs2 = TIME_GET_HOUR(other) * 3600 +
TIME_GET_MINUTE(other) * 60 +
TIME_GET_SECOND(other) -
GET_TD_DAYS(offset2) * 86400 -
GET_TD_SECONDS(offset2);
diff = offsecs1 - offsecs2;
if (diff == 0)
diff = TIME_GET_MICROSECOND(self) -
TIME_GET_MICROSECOND(other);
result = diff_to_bool(diff, op);
}
else if (op == Py_EQ) {
result = Py_False;
Py_INCREF(result);
}
else if (op == Py_NE) {
result = Py_True;
Py_INCREF(result);
}
else {
PyErr_SetString(PyExc_TypeError,
"can't compare offset-naive and "
"offset-aware times");
}
done:
Py_DECREF(offset1);
Py_XDECREF(offset2);
return result;
}
static Py_hash_t
time_hash(PyDateTime_Time *self)
{
if (self->hashcode == -1) {
PyObject *offset, *self0;
if (TIME_GET_FOLD(self)) {
self0 = new_time_ex2(TIME_GET_HOUR(self),
TIME_GET_MINUTE(self),
TIME_GET_SECOND(self),
TIME_GET_MICROSECOND(self),
HASTZINFO(self) ? self->tzinfo : Py_None,
0, Py_TYPE(self));
if (self0 == NULL)
return -1;
}
else {
self0 = (PyObject *)self;
Py_INCREF(self0);
}
offset = time_utcoffset(self0, NULL);
Py_DECREF(self0);
if (offset == NULL)
return -1;
/* Reduce this to a hash of another object. */
if (offset == Py_None)
self->hashcode = generic_hash(
(unsigned char *)self->data, _PyDateTime_TIME_DATASIZE);
else {
PyObject *temp1, *temp2;
int seconds, microseconds;
assert(HASTZINFO(self));
seconds = TIME_GET_HOUR(self) * 3600 +
TIME_GET_MINUTE(self) * 60 +
TIME_GET_SECOND(self);
microseconds = TIME_GET_MICROSECOND(self);
temp1 = new_delta(0, seconds, microseconds, 1);
if (temp1 == NULL) {
Py_DECREF(offset);
return -1;
}
temp2 = delta_subtract(temp1, offset);
Py_DECREF(temp1);
if (temp2 == NULL) {
Py_DECREF(offset);
return -1;
}
self->hashcode = PyObject_Hash(temp2);
Py_DECREF(temp2);
}
Py_DECREF(offset);
}
return self->hashcode;
}
static PyObject *
time_replace(PyDateTime_Time *self, PyObject *args, PyObject *kw)
{
PyObject *clone;
PyObject *tuple;
int hh = TIME_GET_HOUR(self);
int mm = TIME_GET_MINUTE(self);
int ss = TIME_GET_SECOND(self);
int us = TIME_GET_MICROSECOND(self);
PyObject *tzinfo = HASTZINFO(self) ? self->tzinfo : Py_None;
int fold = TIME_GET_FOLD(self);
if (! PyArg_ParseTupleAndKeywords(args, kw, "|iiiiO$i:replace",
time_kws,
&hh, &mm, &ss, &us, &tzinfo, &fold))
return NULL;
if (fold != 0 && fold != 1) {
PyErr_SetString(PyExc_ValueError,
"fold must be either 0 or 1");
return NULL;
}
tuple = Py_BuildValue("iiiiO", hh, mm, ss, us, tzinfo);
if (tuple == NULL)
return NULL;
clone = time_new(Py_TYPE(self), tuple, NULL);
if (clone != NULL) {
TIME_SET_FOLD(clone, fold);
}
Py_DECREF(tuple);
return clone;
}
/* Pickle support, a simple use of __reduce__. */
/* Let basestate be the non-tzinfo data string.
* If tzinfo is None, this returns (basestate,), else (basestate, tzinfo).
* So it's a tuple in any (non-error) case.
* __getstate__ isn't exposed.
*/
static PyObject *
time_getstate(PyDateTime_Time *self, int proto)
{
PyObject *basestate;
PyObject *result = NULL;
basestate = PyBytes_FromStringAndSize((char *)self->data,
_PyDateTime_TIME_DATASIZE);
if (basestate != NULL) {
if (proto > 3 && TIME_GET_FOLD(self))
/* Set the first bit of the first byte */
PyBytes_AS_STRING(basestate)[0] |= (1 << 7);
if (! HASTZINFO(self) || self->tzinfo == Py_None)
result = PyTuple_Pack(1, basestate);
else
result = PyTuple_Pack(2, basestate, self->tzinfo);
Py_DECREF(basestate);
}
return result;
}
static PyObject *
time_reduce_ex(PyDateTime_Time *self, PyObject *args)
{
int proto;
if (!PyArg_ParseTuple(args, "i:__reduce_ex__", &proto))
return NULL;
return Py_BuildValue("(ON)", Py_TYPE(self), time_getstate(self, proto));
}
static PyObject *
time_reduce(PyDateTime_Time *self, PyObject *arg)
{
return Py_BuildValue("(ON)", Py_TYPE(self), time_getstate(self, 2));
}
static PyMethodDef time_methods[] = {
{"isoformat", (PyCFunction)time_isoformat, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("Return string in ISO 8601 format, [HH[:MM[:SS[.mmm[uuu]]]]]"
"[+HH:MM].\n\n"
"timespec specifies what components of the time to include.\n")},
{"strftime", (PyCFunction)time_strftime, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("format -> strftime() style string.")},
{"__format__", (PyCFunction)date_format, METH_VARARGS,
PyDoc_STR("Formats self with strftime.")},
{"utcoffset", (PyCFunction)time_utcoffset, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.utcoffset(self).")},
{"tzname", (PyCFunction)time_tzname, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.tzname(self).")},
{"dst", (PyCFunction)time_dst, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.dst(self).")},
{"replace", (PyCFunction)time_replace, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("Return time with new specified fields.")},
{"__reduce_ex__", (PyCFunction)time_reduce_ex, METH_VARARGS,
PyDoc_STR("__reduce_ex__(proto) -> (cls, state)")},
{"__reduce__", (PyCFunction)time_reduce, METH_NOARGS,
PyDoc_STR("__reduce__() -> (cls, state)")},
{NULL, NULL}
};
static const char time_doc[] =
PyDoc_STR("time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object\n\
\n\
All arguments are optional. tzinfo may be None, or an instance of\n\
a tzinfo subclass. The remaining arguments may be ints.\n");
static PyTypeObject PyDateTime_TimeType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.time", /* tp_name */
sizeof(PyDateTime_Time), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)time_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)time_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)time_hash, /* tp_hash */
0, /* tp_call */
(reprfunc)time_str, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
time_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
time_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
time_methods, /* tp_methods */
0, /* tp_members */
time_getset, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
time_alloc, /* tp_alloc */
time_new, /* tp_new */
0, /* tp_free */
};
/*
* PyDateTime_DateTime implementation.
*/
/* Accessor properties. Properties for day, month, and year are inherited
* from date.
*/
static PyObject *
datetime_hour(PyDateTime_DateTime *self, void *unused)
{
return PyLong_FromLong(DATE_GET_HOUR(self));
}
static PyObject *
datetime_minute(PyDateTime_DateTime *self, void *unused)
{
return PyLong_FromLong(DATE_GET_MINUTE(self));
}
static PyObject *
datetime_second(PyDateTime_DateTime *self, void *unused)
{
return PyLong_FromLong(DATE_GET_SECOND(self));
}
static PyObject *
datetime_microsecond(PyDateTime_DateTime *self, void *unused)
{
return PyLong_FromLong(DATE_GET_MICROSECOND(self));
}
static PyObject *
datetime_tzinfo(PyDateTime_DateTime *self, void *unused)
{
PyObject *result = HASTZINFO(self) ? self->tzinfo : Py_None;
Py_INCREF(result);
return result;
}
static PyObject *
datetime_fold(PyDateTime_DateTime *self, void *unused)
{
return PyLong_FromLong(DATE_GET_FOLD(self));
}
static PyGetSetDef datetime_getset[] = {
{"hour", (getter)datetime_hour},
{"minute", (getter)datetime_minute},
{"second", (getter)datetime_second},
{"microsecond", (getter)datetime_microsecond},
{"tzinfo", (getter)datetime_tzinfo},
{"fold", (getter)datetime_fold},
{NULL}
};
/*
* Constructors.
*/
static char *datetime_kws[] = {
"year", "month", "day", "hour", "minute", "second",
"microsecond", "tzinfo", "fold", NULL
};
static PyObject *
datetime_from_pickle(PyTypeObject *type, PyObject *state, PyObject *tzinfo)
{
PyDateTime_DateTime *me;
char aware = (char)(tzinfo != Py_None);
if (aware && check_tzinfo_subclass(tzinfo) < 0) {
PyErr_SetString(PyExc_TypeError, "bad tzinfo state arg");
return NULL;
}
me = (PyDateTime_DateTime *) (type->tp_alloc(type , aware));
if (me != NULL) {
const char *pdata = PyBytes_AS_STRING(state);
memcpy(me->data, pdata, _PyDateTime_DATETIME_DATASIZE);
me->hashcode = -1;
me->hastzinfo = aware;
if (aware) {
Py_INCREF(tzinfo);
me->tzinfo = tzinfo;
}
if (pdata[2] & (1 << 7)) {
me->data[2] -= 128;
me->fold = 1;
}
else {
me->fold = 0;
}
}
return (PyObject *)me;
}
static PyObject *
datetime_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *self = NULL;
int year;
int month;
int day;
int hour = 0;
int minute = 0;
int second = 0;
int usecond = 0;
int fold = 0;
PyObject *tzinfo = Py_None;
/* Check for invocation from pickle with __getstate__ state */
if (PyTuple_GET_SIZE(args) >= 1 && PyTuple_GET_SIZE(args) <= 2) {
PyObject *state = PyTuple_GET_ITEM(args, 0);
if (PyTuple_GET_SIZE(args) == 2) {
tzinfo = PyTuple_GET_ITEM(args, 1);
}
if (PyBytes_Check(state)) {
if (PyBytes_GET_SIZE(state) == _PyDateTime_DATETIME_DATASIZE &&
MONTH_IS_SANE(PyBytes_AS_STRING(state)[2] & 0x7F))
{
return datetime_from_pickle(type, state, tzinfo);
}
}
else if (PyUnicode_Check(state)) {
if (PyUnicode_READY(state)) {
return NULL;
}
if (PyUnicode_GET_LENGTH(state) == _PyDateTime_DATETIME_DATASIZE &&
MONTH_IS_SANE(PyUnicode_READ_CHAR(state, 2) & 0x7F))
{
state = PyUnicode_AsLatin1String(state);
if (state == NULL) {
if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) {
/* More informative error message. */
PyErr_SetString(PyExc_ValueError,
"Failed to encode latin1 string when unpickling "
"a datetime object. "
"pickle.load(data, encoding='latin1') is assumed.");
}
return NULL;
}
self = datetime_from_pickle(type, state, tzinfo);
Py_DECREF(state);
return self;
}
}
tzinfo = Py_None;
}
if (PyArg_ParseTupleAndKeywords(args, kw, "iii|iiiiO$i", datetime_kws,
&year, &month, &day, &hour, &minute,
&second, &usecond, &tzinfo, &fold)) {
self = new_datetime_ex2(year, month, day,
hour, minute, second, usecond,
tzinfo, fold, type);
}
return self;
}
/* TM_FUNC is the shared type of _PyTime_localtime() and
* _PyTime_gmtime(). */
typedef int (*TM_FUNC)(time_t timer, struct tm*);
/* As of version 2015f max fold in IANA database is
* 23 hours at 1969-09-30 13:00:00 in Kwajalein. */
static long long max_fold_seconds = 24 * 3600;
/* NB: date(1970,1,1).toordinal() == 719163 */
static long long epoch = 719163LL * 24 * 60 * 60;
static long long
utc_to_seconds(int year, int month, int day,
int hour, int minute, int second)
{
long long ordinal;
/* ymd_to_ord() doesn't support year <= 0 */
if (year < MINYEAR || year > MAXYEAR) {
PyErr_Format(PyExc_ValueError, "year %i is out of range", year);
return -1;
}
ordinal = ymd_to_ord(year, month, day);
return ((ordinal * 24 + hour) * 60 + minute) * 60 + second;
}
static long long
local(long long u)
{
struct tm local_time;
time_t t;
u -= epoch;
t = u;
if (t != u) {
PyErr_SetString(PyExc_OverflowError,
"timestamp out of range for platform time_t");
return -1;
}
if (_PyTime_localtime(t, &local_time) != 0)
return -1;
return utc_to_seconds(local_time.tm_year + 1900,
local_time.tm_mon + 1,
local_time.tm_mday,
local_time.tm_hour,
local_time.tm_min,
local_time.tm_sec);
}
/* Internal helper.
* Build datetime from a time_t and a distinct count of microseconds.
* Pass localtime or gmtime for f, to control the interpretation of timet.
*/
static PyObject *
datetime_from_timet_and_us(PyObject *cls, TM_FUNC f, time_t timet, int us,
PyObject *tzinfo)
{
struct tm tm;
int year, month, day, hour, minute, second, fold = 0;
if (f(timet, &tm) != 0)
return NULL;
year = tm.tm_year + 1900;
month = tm.tm_mon + 1;
day = tm.tm_mday;
hour = tm.tm_hour;
minute = tm.tm_min;
/* The platform localtime/gmtime may insert leap seconds,
* indicated by tm.tm_sec > 59. We don't care about them,
* except to the extent that passing them on to the datetime
* constructor would raise ValueError for a reason that
* made no sense to the user.
*/
second = Py_MIN(59, tm.tm_sec);
/* local timezone requires to compute fold */
if (tzinfo == Py_None && f == _PyTime_localtime
/* On Windows, passing a negative value to local results
* in an OSError because localtime_s on Windows does
* not support negative timestamps. Unfortunately this
* means that fold detection for time values between
* 0 and max_fold_seconds will result in an identical
* error since we subtract max_fold_seconds to detect a
* fold. However, since we know there haven't been any
* folds in the interval [0, max_fold_seconds) in any
* timezone, we can hackily just forego fold detection
* for this time range.
*/
#ifdef MS_WINDOWS
&& (timet - max_fold_seconds > 0)
#endif
) {
long long probe_seconds, result_seconds, transition;
result_seconds = utc_to_seconds(year, month, day,
hour, minute, second);
/* Probe max_fold_seconds to detect a fold. */
probe_seconds = local(epoch + timet - max_fold_seconds);
if (probe_seconds == -1)
return NULL;
transition = result_seconds - probe_seconds - max_fold_seconds;
if (transition < 0) {
probe_seconds = local(epoch + timet + transition);
if (probe_seconds == -1)
return NULL;
if (probe_seconds == result_seconds)
fold = 1;
}
}
return new_datetime_ex2(year, month, day, hour,
minute, second, us, tzinfo, fold,
(PyTypeObject *)cls);
}
/* Internal helper.
* Build datetime from a Python timestamp. Pass localtime or gmtime for f,
* to control the interpretation of the timestamp. Since a double doesn't
* have enough bits to cover a datetime's full range of precision, it's
* better to call datetime_from_timet_and_us provided you have a way
* to get that much precision (e.g., C time() isn't good enough).
*/
static PyObject *
datetime_from_timestamp(PyObject *cls, TM_FUNC f, PyObject *timestamp,
PyObject *tzinfo)
{
time_t timet;
long us;
if (_PyTime_ObjectToTimeval(timestamp,
&timet, &us, _PyTime_ROUND_HALF_EVEN) == -1)
return NULL;
return datetime_from_timet_and_us(cls, f, timet, (int)us, tzinfo);
}
/* Internal helper.
* Build most accurate possible datetime for current time. Pass localtime or
* gmtime for f as appropriate.
*/
static PyObject *
datetime_best_possible(PyObject *cls, TM_FUNC f, PyObject *tzinfo)
{
_PyTime_t ts = _PyTime_GetSystemClock();
time_t secs;
int us;
if (_PyTime_AsTimevalTime_t(ts, &secs, &us, _PyTime_ROUND_FLOOR) < 0)
return NULL;
assert(0 <= us && us <= 999999);
return datetime_from_timet_and_us(cls, f, secs, us, tzinfo);
}
/*[clinic input]
@classmethod
datetime.datetime.now
tz: object = None
Timezone object.
Returns new datetime object representing current time local to tz.
If no tz is specified, uses local timezone.
[clinic start generated code]*/
static PyObject *
datetime_datetime_now_impl(PyTypeObject *type, PyObject *tz)
/*[clinic end generated code: output=b3386e5345e2b47a input=80d09869c5267d00]*/
{
PyObject *self;
/* Return best possible local time -- this isn't constrained by the
* precision of a timestamp.
*/
if (check_tzinfo_subclass(tz) < 0)
return NULL;
self = datetime_best_possible((PyObject *)type,
tz == Py_None ? _PyTime_localtime :
_PyTime_gmtime,
tz);
if (self != NULL && tz != Py_None) {
/* Convert UTC to tzinfo's zone. */
self = _PyObject_CallMethodId(tz, &PyId_fromutc, "N", self);
}
return self;
}
/* Return best possible UTC time -- this isn't constrained by the
* precision of a timestamp.
*/
static PyObject *
datetime_utcnow(PyObject *cls, PyObject *dummy)
{
return datetime_best_possible(cls, _PyTime_gmtime, Py_None);
}
/* Return new local datetime from timestamp (Python timestamp -- a double). */
static PyObject *
datetime_fromtimestamp(PyObject *cls, PyObject *args, PyObject *kw)
{
PyObject *self;
PyObject *timestamp;
PyObject *tzinfo = Py_None;
static char *keywords[] = {"timestamp", "tz", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kw, "O|O:fromtimestamp",
keywords, ×tamp, &tzinfo))
return NULL;
if (check_tzinfo_subclass(tzinfo) < 0)
return NULL;
self = datetime_from_timestamp(cls,
tzinfo == Py_None ? _PyTime_localtime :
_PyTime_gmtime,
timestamp,
tzinfo);
if (self != NULL && tzinfo != Py_None) {
/* Convert UTC to tzinfo's zone. */
self = _PyObject_CallMethodId(tzinfo, &PyId_fromutc, "N", self);
}
return self;
}
/* Return new UTC datetime from timestamp (Python timestamp -- a double). */
static PyObject *
datetime_utcfromtimestamp(PyObject *cls, PyObject *args)
{
PyObject *timestamp;
PyObject *result = NULL;
if (PyArg_ParseTuple(args, "O:utcfromtimestamp", ×tamp))
result = datetime_from_timestamp(cls, _PyTime_gmtime, timestamp,
Py_None);
return result;
}
/* Return new datetime from _strptime.strptime_datetime(). */
static PyObject *
datetime_strptime(PyObject *cls, PyObject *args)
{
static PyObject *module = NULL;
PyObject *string, *format;
_Py_IDENTIFIER(_strptime_datetime);
if (!PyArg_ParseTuple(args, "UU:strptime", &string, &format))
return NULL;
if (module == NULL) {
module = PyImport_ImportModuleNoBlock("_strptime");
if (module == NULL)
return NULL;
}
return _PyObject_CallMethodId(module, &PyId__strptime_datetime, "OOO",
cls, string, format);
}
/* Return new datetime from date/datetime and time arguments. */
static PyObject *
datetime_combine(PyObject *cls, PyObject *args, PyObject *kw)
{
static char *keywords[] = {"date", "time", "tzinfo", NULL};
PyObject *date;
PyObject *time;
PyObject *tzinfo = NULL;
PyObject *result = NULL;
if (PyArg_ParseTupleAndKeywords(args, kw, "O!O!|O:combine", keywords,
&PyDateTime_DateType, &date,
&PyDateTime_TimeType, &time, &tzinfo)) {
if (tzinfo == NULL) {
if (HASTZINFO(time))
tzinfo = ((PyDateTime_Time *)time)->tzinfo;
else
tzinfo = Py_None;
}
result = PyObject_CallFunction(cls, "iiiiiiiO",
GET_YEAR(date),
GET_MONTH(date),
GET_DAY(date),
TIME_GET_HOUR(time),
TIME_GET_MINUTE(time),
TIME_GET_SECOND(time),
TIME_GET_MICROSECOND(time),
tzinfo);
if (result)
DATE_SET_FOLD(result, TIME_GET_FOLD(time));
}
return result;
}
/*
* Destructor.
*/
static void
datetime_dealloc(PyDateTime_DateTime *self)
{
if (HASTZINFO(self)) {
Py_XDECREF(self->tzinfo);
}
Py_TYPE(self)->tp_free((PyObject *)self);
}
/*
* Indirect access to tzinfo methods.
*/
/* These are all METH_NOARGS, so don't need to check the arglist. */
static PyObject *
datetime_utcoffset(PyObject *self, PyObject *unused) {
return call_utcoffset(GET_DT_TZINFO(self), self);
}
static PyObject *
datetime_dst(PyObject *self, PyObject *unused) {
return call_dst(GET_DT_TZINFO(self), self);
}
static PyObject *
datetime_tzname(PyObject *self, PyObject *unused) {
return call_tzname(GET_DT_TZINFO(self), self);
}
/*
* datetime arithmetic.
*/
/* factor must be 1 (to add) or -1 (to subtract). The result inherits
* the tzinfo state of date.
*/
static PyObject *
add_datetime_timedelta(PyDateTime_DateTime *date, PyDateTime_Delta *delta,
int factor)
{
/* Note that the C-level additions can't overflow, because of
* invariant bounds on the member values.
*/
int year = GET_YEAR(date);
int month = GET_MONTH(date);
int day = GET_DAY(date) + GET_TD_DAYS(delta) * factor;
int hour = DATE_GET_HOUR(date);
int minute = DATE_GET_MINUTE(date);
int second = DATE_GET_SECOND(date) + GET_TD_SECONDS(delta) * factor;
int microsecond = DATE_GET_MICROSECOND(date) +
GET_TD_MICROSECONDS(delta) * factor;
assert(factor == 1 || factor == -1);
if (normalize_datetime(&year, &month, &day,
&hour, &minute, &second, µsecond) < 0) {
return NULL;
}
return new_datetime(year, month, day,
hour, minute, second, microsecond,
HASTZINFO(date) ? date->tzinfo : Py_None, 0);
}
static PyObject *
datetime_add(PyObject *left, PyObject *right)
{
if (PyDateTime_Check(left)) {
/* datetime + ??? */
if (PyDelta_Check(right))
/* datetime + delta */
return add_datetime_timedelta(
(PyDateTime_DateTime *)left,
(PyDateTime_Delta *)right,
1);
}
else if (PyDelta_Check(left)) {
/* delta + datetime */
return add_datetime_timedelta((PyDateTime_DateTime *) right,
(PyDateTime_Delta *) left,
1);
}
Py_RETURN_NOTIMPLEMENTED;
}
static PyObject *
datetime_subtract(PyObject *left, PyObject *right)
{
PyObject *result = Py_NotImplemented;
if (PyDateTime_Check(left)) {
/* datetime - ??? */
if (PyDateTime_Check(right)) {
/* datetime - datetime */
PyObject *offset1, *offset2, *offdiff = NULL;
int delta_d, delta_s, delta_us;
if (GET_DT_TZINFO(left) == GET_DT_TZINFO(right)) {
offset2 = offset1 = Py_None;
Py_INCREF(offset1);
Py_INCREF(offset2);
}
else {
offset1 = datetime_utcoffset(left, NULL);
if (offset1 == NULL)
return NULL;
offset2 = datetime_utcoffset(right, NULL);
if (offset2 == NULL) {
Py_DECREF(offset1);
return NULL;
}
if ((offset1 != Py_None) != (offset2 != Py_None)) {
PyErr_SetString(PyExc_TypeError,
"can't subtract offset-naive and "
"offset-aware datetimes");
Py_DECREF(offset1);
Py_DECREF(offset2);
return NULL;
}
}
if ((offset1 != offset2) &&
delta_cmp(offset1, offset2) != 0) {
offdiff = delta_subtract(offset1, offset2);
if (offdiff == NULL) {
Py_DECREF(offset1);
Py_DECREF(offset2);
return NULL;
}
}
Py_DECREF(offset1);
Py_DECREF(offset2);
delta_d = ymd_to_ord(GET_YEAR(left),
GET_MONTH(left),
GET_DAY(left)) -
ymd_to_ord(GET_YEAR(right),
GET_MONTH(right),
GET_DAY(right));
/* These can't overflow, since the values are
* normalized. At most this gives the number of
* seconds in one day.
*/
delta_s = (DATE_GET_HOUR(left) -
DATE_GET_HOUR(right)) * 3600 +
(DATE_GET_MINUTE(left) -
DATE_GET_MINUTE(right)) * 60 +
(DATE_GET_SECOND(left) -
DATE_GET_SECOND(right));
delta_us = DATE_GET_MICROSECOND(left) -
DATE_GET_MICROSECOND(right);
result = new_delta(delta_d, delta_s, delta_us, 1);
if (result == NULL)
return NULL;
if (offdiff != NULL) {
Py_SETREF(result, delta_subtract(result, offdiff));
Py_DECREF(offdiff);
}
}
else if (PyDelta_Check(right)) {
/* datetime - delta */
result = add_datetime_timedelta(
(PyDateTime_DateTime *)left,
(PyDateTime_Delta *)right,
-1);
}
}
if (result == Py_NotImplemented)
Py_INCREF(result);
return result;
}
/* Various ways to turn a datetime into a string. */
static PyObject *
datetime_repr(PyDateTime_DateTime *self)
{
const char *type_name = Py_TYPE(self)->tp_name;
PyObject *baserepr;
if (DATE_GET_MICROSECOND(self)) {
baserepr = PyUnicode_FromFormat(
"%s(%d, %d, %d, %d, %d, %d, %d)",
type_name,
GET_YEAR(self), GET_MONTH(self), GET_DAY(self),
DATE_GET_HOUR(self), DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
DATE_GET_MICROSECOND(self));
}
else if (DATE_GET_SECOND(self)) {
baserepr = PyUnicode_FromFormat(
"%s(%d, %d, %d, %d, %d, %d)",
type_name,
GET_YEAR(self), GET_MONTH(self), GET_DAY(self),
DATE_GET_HOUR(self), DATE_GET_MINUTE(self),
DATE_GET_SECOND(self));
}
else {
baserepr = PyUnicode_FromFormat(
"%s(%d, %d, %d, %d, %d)",
type_name,
GET_YEAR(self), GET_MONTH(self), GET_DAY(self),
DATE_GET_HOUR(self), DATE_GET_MINUTE(self));
}
if (baserepr != NULL && DATE_GET_FOLD(self) != 0)
baserepr = append_keyword_fold(baserepr, DATE_GET_FOLD(self));
if (baserepr == NULL || ! HASTZINFO(self))
return baserepr;
return append_keyword_tzinfo(baserepr, self->tzinfo);
}
static PyObject *
datetime_str(PyDateTime_DateTime *self)
{
return _PyObject_CallMethodId((PyObject *)self, &PyId_isoformat, "(s)", " ");
}
static PyObject *
datetime_isoformat(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)
{
int sep = 'T';
char *timespec = NULL;
static char *keywords[] = {"sep", "timespec", NULL};
char buffer[100];
PyObject *result = NULL;
int us = DATE_GET_MICROSECOND(self);
static char *specs[][2] = {
{"hours", "%04d-%02d-%02d%c%02d"},
{"minutes", "%04d-%02d-%02d%c%02d:%02d"},
{"seconds", "%04d-%02d-%02d%c%02d:%02d:%02d"},
{"milliseconds", "%04d-%02d-%02d%c%02d:%02d:%02d.%03d"},
{"microseconds", "%04d-%02d-%02d%c%02d:%02d:%02d.%06d"},
};
size_t given_spec;
if (!PyArg_ParseTupleAndKeywords(args, kw, "|Cs:isoformat", keywords, &sep, ×pec))
return NULL;
if (timespec == NULL || strcmp(timespec, "auto") == 0) {
if (us == 0) {
/* seconds */
given_spec = 2;
}
else {
/* microseconds */
given_spec = 4;
}
}
else {
for (given_spec = 0; given_spec < Py_ARRAY_LENGTH(specs); given_spec++) {
if (strcmp(timespec, specs[given_spec][0]) == 0) {
if (given_spec == 3) {
us = us / 1000;
}
break;
}
}
}
if (given_spec == Py_ARRAY_LENGTH(specs)) {
PyErr_Format(PyExc_ValueError, "Unknown timespec value");
return NULL;
}
else {
result = PyUnicode_FromFormat(specs[given_spec][1],
GET_YEAR(self), GET_MONTH(self),
GET_DAY(self), (int)sep,
DATE_GET_HOUR(self), DATE_GET_MINUTE(self),
DATE_GET_SECOND(self), us);
}
if (!result || !HASTZINFO(self))
return result;
/* We need to append the UTC offset. */
if (format_utcoffset(buffer, sizeof(buffer), ":", self->tzinfo,
(PyObject *)self) < 0) {
Py_DECREF(result);
return NULL;
}
PyUnicode_AppendAndDel(&result, PyUnicode_FromString(buffer));
return result;
}
static PyObject *
datetime_ctime(PyDateTime_DateTime *self)
{
return format_ctime((PyDateTime_Date *)self,
DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self));
}
/* Miscellaneous methods. */
static PyObject *
flip_fold(PyObject *dt)
{
return new_datetime_ex2(GET_YEAR(dt),
GET_MONTH(dt),
GET_DAY(dt),
DATE_GET_HOUR(dt),
DATE_GET_MINUTE(dt),
DATE_GET_SECOND(dt),
DATE_GET_MICROSECOND(dt),
HASTZINFO(dt) ?
((PyDateTime_DateTime *)dt)->tzinfo : Py_None,
!DATE_GET_FOLD(dt),
Py_TYPE(dt));
}
static PyObject *
get_flip_fold_offset(PyObject *dt)
{
PyObject *result, *flip_dt;
flip_dt = flip_fold(dt);
if (flip_dt == NULL)
return NULL;
result = datetime_utcoffset(flip_dt, NULL);
Py_DECREF(flip_dt);
return result;
}
/* PEP 495 exception: Whenever one or both of the operands in
* inter-zone comparison is such that its utcoffset() depends
* on the value of its fold fold attribute, the result is False.
*
* Return 1 if exception applies, 0 if not, and -1 on error.
*/
static int
pep495_eq_exception(PyObject *self, PyObject *other,
PyObject *offset_self, PyObject *offset_other)
{
int result = 0;
PyObject *flip_offset;
flip_offset = get_flip_fold_offset(self);
if (flip_offset == NULL)
return -1;
if (flip_offset != offset_self &&
delta_cmp(flip_offset, offset_self))
{
result = 1;
goto done;
}
Py_DECREF(flip_offset);
flip_offset = get_flip_fold_offset(other);
if (flip_offset == NULL)
return -1;
if (flip_offset != offset_other &&
delta_cmp(flip_offset, offset_other))
result = 1;
done:
Py_DECREF(flip_offset);
return result;
}
static PyObject *
datetime_richcompare(PyObject *self, PyObject *other, int op)
{
PyObject *result = NULL;
PyObject *offset1, *offset2;
int diff;
if (! PyDateTime_Check(other)) {
if (PyDate_Check(other)) {
/* Prevent invocation of date_richcompare. We want to
return NotImplemented here to give the other object
a chance. But since DateTime is a subclass of
Date, if the other object is a Date, it would
compute an ordering based on the date part alone,
and we don't want that. So force unequal or
uncomparable here in that case. */
if (op == Py_EQ)
Py_RETURN_FALSE;
if (op == Py_NE)
Py_RETURN_TRUE;
return cmperror(self, other);
}
Py_RETURN_NOTIMPLEMENTED;
}
if (GET_DT_TZINFO(self) == GET_DT_TZINFO(other)) {
diff = memcmp(((PyDateTime_DateTime *)self)->data,
((PyDateTime_DateTime *)other)->data,
_PyDateTime_DATETIME_DATASIZE);
return diff_to_bool(diff, op);
}
offset1 = datetime_utcoffset(self, NULL);
if (offset1 == NULL)
return NULL;
offset2 = datetime_utcoffset(other, NULL);
if (offset2 == NULL)
goto done;
/* If they're both naive, or both aware and have the same offsets,
* we get off cheap. Note that if they're both naive, offset1 ==
* offset2 == Py_None at this point.
*/
if ((offset1 == offset2) ||
(PyDelta_Check(offset1) && PyDelta_Check(offset2) &&
delta_cmp(offset1, offset2) == 0)) {
diff = memcmp(((PyDateTime_DateTime *)self)->data,
((PyDateTime_DateTime *)other)->data,
_PyDateTime_DATETIME_DATASIZE);
if ((op == Py_EQ || op == Py_NE) && diff == 0) {
int ex = pep495_eq_exception(self, other, offset1, offset2);
if (ex == -1)
goto done;
if (ex)
diff = 1;
}
result = diff_to_bool(diff, op);
}
else if (offset1 != Py_None && offset2 != Py_None) {
PyDateTime_Delta *delta;
assert(offset1 != offset2); /* else last "if" handled it */
delta = (PyDateTime_Delta *)datetime_subtract((PyObject *)self,
other);
if (delta == NULL)
goto done;
diff = GET_TD_DAYS(delta);
if (diff == 0)
diff = GET_TD_SECONDS(delta) |
GET_TD_MICROSECONDS(delta);
Py_DECREF(delta);
if ((op == Py_EQ || op == Py_NE) && diff == 0) {
int ex = pep495_eq_exception(self, other, offset1, offset2);
if (ex == -1)
goto done;
if (ex)
diff = 1;
}
result = diff_to_bool(diff, op);
}
else if (op == Py_EQ) {
result = Py_False;
Py_INCREF(result);
}
else if (op == Py_NE) {
result = Py_True;
Py_INCREF(result);
}
else {
PyErr_SetString(PyExc_TypeError,
"can't compare offset-naive and "
"offset-aware datetimes");
}
done:
Py_DECREF(offset1);
Py_XDECREF(offset2);
return result;
}
static Py_hash_t
datetime_hash(PyDateTime_DateTime *self)
{
if (self->hashcode == -1) {
PyObject *offset, *self0;
if (DATE_GET_FOLD(self)) {
self0 = new_datetime_ex2(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self),
DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
DATE_GET_MICROSECOND(self),
HASTZINFO(self) ? self->tzinfo : Py_None,
0, Py_TYPE(self));
if (self0 == NULL)
return -1;
}
else {
self0 = (PyObject *)self;
Py_INCREF(self0);
}
offset = datetime_utcoffset(self0, NULL);
Py_DECREF(self0);
if (offset == NULL)
return -1;
/* Reduce this to a hash of another object. */
if (offset == Py_None)
self->hashcode = generic_hash(
(unsigned char *)self->data, _PyDateTime_DATETIME_DATASIZE);
else {
PyObject *temp1, *temp2;
int days, seconds;
assert(HASTZINFO(self));
days = ymd_to_ord(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self));
seconds = DATE_GET_HOUR(self) * 3600 +
DATE_GET_MINUTE(self) * 60 +
DATE_GET_SECOND(self);
temp1 = new_delta(days, seconds,
DATE_GET_MICROSECOND(self),
1);
if (temp1 == NULL) {
Py_DECREF(offset);
return -1;
}
temp2 = delta_subtract(temp1, offset);
Py_DECREF(temp1);
if (temp2 == NULL) {
Py_DECREF(offset);
return -1;
}
self->hashcode = PyObject_Hash(temp2);
Py_DECREF(temp2);
}
Py_DECREF(offset);
}
return self->hashcode;
}
static PyObject *
datetime_replace(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)
{
PyObject *clone;
PyObject *tuple;
int y = GET_YEAR(self);
int m = GET_MONTH(self);
int d = GET_DAY(self);
int hh = DATE_GET_HOUR(self);
int mm = DATE_GET_MINUTE(self);
int ss = DATE_GET_SECOND(self);
int us = DATE_GET_MICROSECOND(self);
PyObject *tzinfo = HASTZINFO(self) ? self->tzinfo : Py_None;
int fold = DATE_GET_FOLD(self);
if (! PyArg_ParseTupleAndKeywords(args, kw, "|iiiiiiiO$i:replace",
datetime_kws,
&y, &m, &d, &hh, &mm, &ss, &us,
&tzinfo, &fold))
return NULL;
if (fold != 0 && fold != 1) {
PyErr_SetString(PyExc_ValueError,
"fold must be either 0 or 1");
return NULL;
}
tuple = Py_BuildValue("iiiiiiiO", y, m, d, hh, mm, ss, us, tzinfo);
if (tuple == NULL)
return NULL;
clone = datetime_new(Py_TYPE(self), tuple, NULL);
if (clone != NULL) {
DATE_SET_FOLD(clone, fold);
}
Py_DECREF(tuple);
return clone;
}
static PyObject *
local_timezone_from_timestamp(time_t timestamp)
{
PyObject *result = NULL;
PyObject *delta;
struct tm local_time_tm;
PyObject *nameo = NULL;
const char *zone = NULL;
if (_PyTime_localtime(timestamp, &local_time_tm) != 0)
return NULL;
#ifdef HAVE_STRUCT_TM_TM_ZONE
zone = local_time_tm.tm_zone;
delta = new_delta(0, local_time_tm.tm_gmtoff, 0, 1);
#else /* HAVE_STRUCT_TM_TM_ZONE */
{
PyObject *local_time, *utc_time;
struct tm utc_time_tm;
char buf[100];
strftime(buf, sizeof(buf), "%Z", &local_time_tm);
zone = buf;
local_time = new_datetime(local_time_tm.tm_year + 1900,
local_time_tm.tm_mon + 1,
local_time_tm.tm_mday,
local_time_tm.tm_hour,
local_time_tm.tm_min,
local_time_tm.tm_sec, 0, Py_None, 0);
if (local_time == NULL) {
return NULL;
}
if (_PyTime_gmtime(timestamp, &utc_time_tm) != 0)
return NULL;
utc_time = new_datetime(utc_time_tm.tm_year + 1900,
utc_time_tm.tm_mon + 1,
utc_time_tm.tm_mday,
utc_time_tm.tm_hour,
utc_time_tm.tm_min,
utc_time_tm.tm_sec, 0, Py_None, 0);
if (utc_time == NULL) {
Py_DECREF(local_time);
return NULL;
}
delta = datetime_subtract(local_time, utc_time);
Py_DECREF(local_time);
Py_DECREF(utc_time);
}
#endif /* HAVE_STRUCT_TM_TM_ZONE */
if (delta == NULL) {
return NULL;
}
if (zone != NULL) {
nameo = PyUnicode_DecodeLocale(zone, "surrogateescape");
if (nameo == NULL)
goto error;
}
result = new_timezone(delta, nameo);
Py_XDECREF(nameo);
error:
Py_DECREF(delta);
return result;
}
static PyObject *
local_timezone(PyDateTime_DateTime *utc_time)
{
time_t timestamp;
PyObject *delta;
PyObject *one_second;
PyObject *seconds;
delta = datetime_subtract((PyObject *)utc_time, PyDateTime_Epoch);
if (delta == NULL)
return NULL;
one_second = new_delta(0, 1, 0, 0);
if (one_second == NULL) {
Py_DECREF(delta);
return NULL;
}
seconds = divide_timedelta_timedelta((PyDateTime_Delta *)delta,
(PyDateTime_Delta *)one_second);
Py_DECREF(one_second);
Py_DECREF(delta);
if (seconds == NULL)
return NULL;
timestamp = _PyLong_AsTime_t(seconds);
Py_DECREF(seconds);
if (timestamp == -1 && PyErr_Occurred())
return NULL;
return local_timezone_from_timestamp(timestamp);
}
static long long
local_to_seconds(int year, int month, int day,
int hour, int minute, int second, int fold);
static PyObject *
local_timezone_from_local(PyDateTime_DateTime *local_dt)
{
long long seconds;
time_t timestamp;
seconds = local_to_seconds(GET_YEAR(local_dt),
GET_MONTH(local_dt),
GET_DAY(local_dt),
DATE_GET_HOUR(local_dt),
DATE_GET_MINUTE(local_dt),
DATE_GET_SECOND(local_dt),
DATE_GET_FOLD(local_dt));
if (seconds == -1)
return NULL;
/* XXX: add bounds check */
timestamp = seconds - epoch;
return local_timezone_from_timestamp(timestamp);
}
static PyDateTime_DateTime *
datetime_astimezone(PyDateTime_DateTime *self, PyObject *args, PyObject *kw)
{
PyDateTime_DateTime *result;
PyObject *offset;
PyObject *temp;
PyObject *self_tzinfo;
PyObject *tzinfo = Py_None;
static char *keywords[] = {"tz", NULL};
if (! PyArg_ParseTupleAndKeywords(args, kw, "|O:astimezone", keywords,
&tzinfo))
return NULL;
if (check_tzinfo_subclass(tzinfo) == -1)
return NULL;
if (!HASTZINFO(self) || self->tzinfo == Py_None) {
naive:
self_tzinfo = local_timezone_from_local(self);
if (self_tzinfo == NULL)
return NULL;
} else {
self_tzinfo = self->tzinfo;
Py_INCREF(self_tzinfo);
}
/* Conversion to self's own time zone is a NOP. */
if (self_tzinfo == tzinfo) {
Py_DECREF(self_tzinfo);
Py_INCREF(self);
return self;
}
/* Convert self to UTC. */
offset = call_utcoffset(self_tzinfo, (PyObject *)self);
Py_DECREF(self_tzinfo);
if (offset == NULL)
return NULL;
else if(offset == Py_None) {
Py_DECREF(offset);
goto naive;
}
else if (!PyDelta_Check(offset)) {
Py_DECREF(offset);
PyErr_Format(PyExc_TypeError, "utcoffset() returned %.200s,"
" expected timedelta or None", Py_TYPE(offset)->tp_name);
return NULL;
}
/* result = self - offset */
result = (PyDateTime_DateTime *)add_datetime_timedelta(self,
(PyDateTime_Delta *)offset, -1);
Py_DECREF(offset);
if (result == NULL)
return NULL;
/* Make sure result is aware and UTC. */
if (!HASTZINFO(result)) {
temp = (PyObject *)result;
result = (PyDateTime_DateTime *)
new_datetime_ex2(GET_YEAR(result),
GET_MONTH(result),
GET_DAY(result),
DATE_GET_HOUR(result),
DATE_GET_MINUTE(result),
DATE_GET_SECOND(result),
DATE_GET_MICROSECOND(result),
PyDateTime_TimeZone_UTC,
DATE_GET_FOLD(result),
Py_TYPE(result));
Py_DECREF(temp);
if (result == NULL)
return NULL;
}
else {
/* Result is already aware - just replace tzinfo. */
temp = result->tzinfo;
result->tzinfo = PyDateTime_TimeZone_UTC;
Py_INCREF(result->tzinfo);
Py_DECREF(temp);
}
/* Attach new tzinfo and let fromutc() do the rest. */
temp = result->tzinfo;
if (tzinfo == Py_None) {
tzinfo = local_timezone(result);
if (tzinfo == NULL) {
Py_DECREF(result);
return NULL;
}
}
else
Py_INCREF(tzinfo);
result->tzinfo = tzinfo;
Py_DECREF(temp);
temp = (PyObject *)result;
result = (PyDateTime_DateTime *)
_PyObject_CallMethodId(tzinfo, &PyId_fromutc, "O", temp);
Py_DECREF(temp);
return result;
}
static PyObject *
datetime_timetuple(PyDateTime_DateTime *self)
{
int dstflag = -1;
if (HASTZINFO(self) && self->tzinfo != Py_None) {
PyObject * dst;
dst = call_dst(self->tzinfo, (PyObject *)self);
if (dst == NULL)
return NULL;
if (dst != Py_None)
dstflag = delta_bool((PyDateTime_Delta *)dst);
Py_DECREF(dst);
}
return build_struct_time(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self),
DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
dstflag);
}
static long long
local_to_seconds(int year, int month, int day,
int hour, int minute, int second, int fold)
{
long long t, a, b, u1, u2, t1, t2, lt;
t = utc_to_seconds(year, month, day, hour, minute, second);
/* Our goal is to solve t = local(u) for u. */
lt = local(t);
if (lt == -1)
return -1;
a = lt - t;
u1 = t - a;
t1 = local(u1);
if (t1 == -1)
return -1;
if (t1 == t) {
/* We found one solution, but it may not be the one we need.
* Look for an earlier solution (if `fold` is 0), or a
* later one (if `fold` is 1). */
if (fold)
u2 = u1 + max_fold_seconds;
else
u2 = u1 - max_fold_seconds;
lt = local(u2);
if (lt == -1)
return -1;
b = lt - u2;
if (a == b)
return u1;
}
else {
b = t1 - u1;
assert(a != b);
}
u2 = t - b;
t2 = local(u2);
if (t2 == -1)
return -1;
if (t2 == t)
return u2;
if (t1 == t)
return u1;
/* We have found both offsets a and b, but neither t - a nor t - b is
* a solution. This means t is in the gap. */
return fold?Py_MIN(u1, u2):Py_MAX(u1, u2);
}
/* date(1970,1,1).toordinal() == 719163 */
#define EPOCH_SECONDS (719163LL * 24 * 60 * 60)
static PyObject *
datetime_timestamp(PyDateTime_DateTime *self)
{
PyObject *result;
if (HASTZINFO(self) && self->tzinfo != Py_None) {
PyObject *delta;
delta = datetime_subtract((PyObject *)self, PyDateTime_Epoch);
if (delta == NULL)
return NULL;
result = delta_total_seconds(delta);
Py_DECREF(delta);
}
else {
long long seconds;
seconds = local_to_seconds(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self),
DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
DATE_GET_FOLD(self));
if (seconds == -1)
return NULL;
result = PyFloat_FromDouble(seconds - EPOCH_SECONDS +
DATE_GET_MICROSECOND(self) / 1e6);
}
return result;
}
static PyObject *
datetime_getdate(PyDateTime_DateTime *self)
{
return new_date(GET_YEAR(self),
GET_MONTH(self),
GET_DAY(self));
}
static PyObject *
datetime_gettime(PyDateTime_DateTime *self)
{
return new_time(DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
DATE_GET_MICROSECOND(self),
Py_None,
DATE_GET_FOLD(self));
}
static PyObject *
datetime_gettimetz(PyDateTime_DateTime *self)
{
return new_time(DATE_GET_HOUR(self),
DATE_GET_MINUTE(self),
DATE_GET_SECOND(self),
DATE_GET_MICROSECOND(self),
GET_DT_TZINFO(self),
DATE_GET_FOLD(self));
}
static PyObject *
datetime_utctimetuple(PyDateTime_DateTime *self)
{
int y, m, d, hh, mm, ss;
PyObject *tzinfo;
PyDateTime_DateTime *utcself;
tzinfo = GET_DT_TZINFO(self);
if (tzinfo == Py_None) {
utcself = self;
Py_INCREF(utcself);
}
else {
PyObject *offset;
offset = call_utcoffset(tzinfo, (PyObject *)self);
if (offset == NULL)
return NULL;
if (offset == Py_None) {
Py_DECREF(offset);
utcself = self;
Py_INCREF(utcself);
}
else {
utcself = (PyDateTime_DateTime *)add_datetime_timedelta(self,
(PyDateTime_Delta *)offset, -1);
Py_DECREF(offset);
if (utcself == NULL)
return NULL;
}
}
y = GET_YEAR(utcself);
m = GET_MONTH(utcself);
d = GET_DAY(utcself);
hh = DATE_GET_HOUR(utcself);
mm = DATE_GET_MINUTE(utcself);
ss = DATE_GET_SECOND(utcself);
Py_DECREF(utcself);
return build_struct_time(y, m, d, hh, mm, ss, 0);
}
/* Pickle support, a simple use of __reduce__. */
/* Let basestate be the non-tzinfo data string.
* If tzinfo is None, this returns (basestate,), else (basestate, tzinfo).
* So it's a tuple in any (non-error) case.
* __getstate__ isn't exposed.
*/
static PyObject *
datetime_getstate(PyDateTime_DateTime *self, int proto)
{
PyObject *basestate;
PyObject *result = NULL;
basestate = PyBytes_FromStringAndSize((char *)self->data,
_PyDateTime_DATETIME_DATASIZE);
if (basestate != NULL) {
if (proto > 3 && DATE_GET_FOLD(self))
/* Set the first bit of the third byte */
PyBytes_AS_STRING(basestate)[2] |= (1 << 7);
if (! HASTZINFO(self) || self->tzinfo == Py_None)
result = PyTuple_Pack(1, basestate);
else
result = PyTuple_Pack(2, basestate, self->tzinfo);
Py_DECREF(basestate);
}
return result;
}
static PyObject *
datetime_reduce_ex(PyDateTime_DateTime *self, PyObject *args)
{
int proto;
if (!PyArg_ParseTuple(args, "i:__reduce_ex__", &proto))
return NULL;
return Py_BuildValue("(ON)", Py_TYPE(self), datetime_getstate(self, proto));
}
static PyObject *
datetime_reduce(PyDateTime_DateTime *self, PyObject *arg)
{
return Py_BuildValue("(ON)", Py_TYPE(self), datetime_getstate(self, 2));
}
static PyMethodDef datetime_methods[] = {
/* Class methods: */
DATETIME_DATETIME_NOW_METHODDEF
{"utcnow", (PyCFunction)datetime_utcnow,
METH_NOARGS | METH_CLASS,
PyDoc_STR("Return a new datetime representing UTC day and time.")},
{"fromtimestamp", (PyCFunction)datetime_fromtimestamp,
METH_VARARGS | METH_KEYWORDS | METH_CLASS,
PyDoc_STR("timestamp[, tz] -> tz's local time from POSIX timestamp.")},
{"utcfromtimestamp", (PyCFunction)datetime_utcfromtimestamp,
METH_VARARGS | METH_CLASS,
PyDoc_STR("Construct a naive UTC datetime from a POSIX timestamp.")},
{"strptime", (PyCFunction)datetime_strptime,
METH_VARARGS | METH_CLASS,
PyDoc_STR("string, format -> new datetime parsed from a string "
"(like time.strptime()).")},
{"combine", (PyCFunction)datetime_combine,
METH_VARARGS | METH_KEYWORDS | METH_CLASS,
PyDoc_STR("date, time -> datetime with same date and time fields")},
/* Instance methods: */
{"date", (PyCFunction)datetime_getdate, METH_NOARGS,
PyDoc_STR("Return date object with same year, month and day.")},
{"time", (PyCFunction)datetime_gettime, METH_NOARGS,
PyDoc_STR("Return time object with same time but with tzinfo=None.")},
{"timetz", (PyCFunction)datetime_gettimetz, METH_NOARGS,
PyDoc_STR("Return time object with same time and tzinfo.")},
{"ctime", (PyCFunction)datetime_ctime, METH_NOARGS,
PyDoc_STR("Return ctime() style string.")},
{"timetuple", (PyCFunction)datetime_timetuple, METH_NOARGS,
PyDoc_STR("Return time tuple, compatible with time.localtime().")},
{"timestamp", (PyCFunction)datetime_timestamp, METH_NOARGS,
PyDoc_STR("Return POSIX timestamp as float.")},
{"utctimetuple", (PyCFunction)datetime_utctimetuple, METH_NOARGS,
PyDoc_STR("Return UTC time tuple, compatible with time.localtime().")},
{"isoformat", (PyCFunction)datetime_isoformat, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("[sep] -> string in ISO 8601 format, "
"YYYY-MM-DDT[HH[:MM[:SS[.mmm[uuu]]]]][+HH:MM].\n"
"sep is used to separate the year from the time, and "
"defaults to 'T'.\n"
"timespec specifies what components of the time to include"
" (allowed values are 'auto', 'hours', 'minutes', 'seconds',"
" 'milliseconds', and 'microseconds').\n")},
{"utcoffset", (PyCFunction)datetime_utcoffset, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.utcoffset(self).")},
{"tzname", (PyCFunction)datetime_tzname, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.tzname(self).")},
{"dst", (PyCFunction)datetime_dst, METH_NOARGS,
PyDoc_STR("Return self.tzinfo.dst(self).")},
{"replace", (PyCFunction)datetime_replace, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("Return datetime with new specified fields.")},
{"astimezone", (PyCFunction)datetime_astimezone, METH_VARARGS | METH_KEYWORDS,
PyDoc_STR("tz -> convert to local time in new timezone tz\n")},
{"__reduce_ex__", (PyCFunction)datetime_reduce_ex, METH_VARARGS,
PyDoc_STR("__reduce_ex__(proto) -> (cls, state)")},
{"__reduce__", (PyCFunction)datetime_reduce, METH_NOARGS,
PyDoc_STR("__reduce__() -> (cls, state)")},
{NULL, NULL}
};
static const char datetime_doc[] =
PyDoc_STR("datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]])\n\
\n\
The year, month and day arguments are required. tzinfo may be None, or an\n\
instance of a tzinfo subclass. The remaining arguments may be ints.\n");
static PyNumberMethods datetime_as_number = {
datetime_add, /* nb_add */
datetime_subtract, /* nb_subtract */
0, /* nb_multiply */
0, /* nb_remainder */
0, /* nb_divmod */
0, /* nb_power */
0, /* nb_negative */
0, /* nb_positive */
0, /* nb_absolute */
0, /* nb_bool */
};
static PyTypeObject PyDateTime_DateTimeType = {
PyVarObject_HEAD_INIT(NULL, 0)
"datetime.datetime", /* tp_name */
sizeof(PyDateTime_DateTime), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)datetime_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)datetime_repr, /* tp_repr */
&datetime_as_number, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
(hashfunc)datetime_hash, /* tp_hash */
0, /* tp_call */
(reprfunc)datetime_str, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
datetime_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
datetime_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
datetime_methods, /* tp_methods */
0, /* tp_members */
datetime_getset, /* tp_getset */
&PyDateTime_DateType, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
0, /* tp_init */
datetime_alloc, /* tp_alloc */
datetime_new, /* tp_new */
0, /* tp_free */
};
/* ---------------------------------------------------------------------------
* Module methods and initialization.
*/
static PyMethodDef module_methods[] = {
{NULL, NULL}
};
/* C API. Clients get at this via PyDateTime_IMPORT, defined in
* datetime.h.
*/
static PyDateTime_CAPI CAPI = {
&PyDateTime_DateType,
&PyDateTime_DateTimeType,
&PyDateTime_TimeType,
&PyDateTime_DeltaType,
&PyDateTime_TZInfoType,
new_date_ex,
new_datetime_ex,
new_time_ex,
new_delta_ex,
datetime_fromtimestamp,
date_fromtimestamp,
new_datetime_ex2,
new_time_ex2
};
static struct PyModuleDef datetimemodule = {
PyModuleDef_HEAD_INIT,
"_datetime",
"Fast implementation of the datetime type.",
-1,
module_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__datetime(void)
{
PyObject *m; /* a module object */
PyObject *d; /* its dict */
PyObject *x;
PyObject *delta;
m = PyModule_Create(&datetimemodule);
if (m == NULL)
return NULL;
if (PyType_Ready(&PyDateTime_DateType) < 0)
return NULL;
if (PyType_Ready(&PyDateTime_DateTimeType) < 0)
return NULL;
if (PyType_Ready(&PyDateTime_DeltaType) < 0)
return NULL;
if (PyType_Ready(&PyDateTime_TimeType) < 0)
return NULL;
if (PyType_Ready(&PyDateTime_TZInfoType) < 0)
return NULL;
if (PyType_Ready(&PyDateTime_TimeZoneType) < 0)
return NULL;
/* timedelta values */
d = PyDateTime_DeltaType.tp_dict;
x = new_delta(0, 0, 1, 0);
if (x == NULL || PyDict_SetItemString(d, "resolution", x) < 0)
return NULL;
Py_DECREF(x);
x = new_delta(-MAX_DELTA_DAYS, 0, 0, 0);
if (x == NULL || PyDict_SetItemString(d, "min", x) < 0)
return NULL;
Py_DECREF(x);
x = new_delta(MAX_DELTA_DAYS, 24*3600-1, 1000000-1, 0);
if (x == NULL || PyDict_SetItemString(d, "max", x) < 0)
return NULL;
Py_DECREF(x);
/* date values */
d = PyDateTime_DateType.tp_dict;
x = new_date(1, 1, 1);
if (x == NULL || PyDict_SetItemString(d, "min", x) < 0)
return NULL;
Py_DECREF(x);
x = new_date(MAXYEAR, 12, 31);
if (x == NULL || PyDict_SetItemString(d, "max", x) < 0)
return NULL;
Py_DECREF(x);
x = new_delta(1, 0, 0, 0);
if (x == NULL || PyDict_SetItemString(d, "resolution", x) < 0)
return NULL;
Py_DECREF(x);
/* time values */
d = PyDateTime_TimeType.tp_dict;
x = new_time(0, 0, 0, 0, Py_None, 0);
if (x == NULL || PyDict_SetItemString(d, "min", x) < 0)
return NULL;
Py_DECREF(x);
x = new_time(23, 59, 59, 999999, Py_None, 0);
if (x == NULL || PyDict_SetItemString(d, "max", x) < 0)
return NULL;
Py_DECREF(x);
x = new_delta(0, 0, 1, 0);
if (x == NULL || PyDict_SetItemString(d, "resolution", x) < 0)
return NULL;
Py_DECREF(x);
/* datetime values */
d = PyDateTime_DateTimeType.tp_dict;
x = new_datetime(1, 1, 1, 0, 0, 0, 0, Py_None, 0);
if (x == NULL || PyDict_SetItemString(d, "min", x) < 0)
return NULL;
Py_DECREF(x);
x = new_datetime(MAXYEAR, 12, 31, 23, 59, 59, 999999, Py_None, 0);
if (x == NULL || PyDict_SetItemString(d, "max", x) < 0)
return NULL;
Py_DECREF(x);
x = new_delta(0, 0, 1, 0);
if (x == NULL || PyDict_SetItemString(d, "resolution", x) < 0)
return NULL;
Py_DECREF(x);
/* timezone values */
d = PyDateTime_TimeZoneType.tp_dict;
delta = new_delta(0, 0, 0, 0);
if (delta == NULL)
return NULL;
x = create_timezone(delta, NULL);
Py_DECREF(delta);
if (x == NULL || PyDict_SetItemString(d, "utc", x) < 0)
return NULL;
PyDateTime_TimeZone_UTC = x;
delta = new_delta(-1, 60, 0, 1); /* -23:59 */
if (delta == NULL)
return NULL;
x = create_timezone(delta, NULL);
Py_DECREF(delta);
if (x == NULL || PyDict_SetItemString(d, "min", x) < 0)
return NULL;
Py_DECREF(x);
delta = new_delta(0, (23 * 60 + 59) * 60, 0, 0); /* +23:59 */
if (delta == NULL)
return NULL;
x = create_timezone(delta, NULL);
Py_DECREF(delta);
if (x == NULL || PyDict_SetItemString(d, "max", x) < 0)
return NULL;
Py_DECREF(x);
/* Epoch */
PyDateTime_Epoch = new_datetime(1970, 1, 1, 0, 0, 0, 0,
PyDateTime_TimeZone_UTC, 0);
if (PyDateTime_Epoch == NULL)
return NULL;
/* module initialization */
PyModule_AddIntMacro(m, MINYEAR);
PyModule_AddIntMacro(m, MAXYEAR);
Py_INCREF(&PyDateTime_DateType);
PyModule_AddObject(m, "date", (PyObject *) &PyDateTime_DateType);
Py_INCREF(&PyDateTime_DateTimeType);
PyModule_AddObject(m, "datetime",
(PyObject *)&PyDateTime_DateTimeType);
Py_INCREF(&PyDateTime_TimeType);
PyModule_AddObject(m, "time", (PyObject *) &PyDateTime_TimeType);
Py_INCREF(&PyDateTime_DeltaType);
PyModule_AddObject(m, "timedelta", (PyObject *) &PyDateTime_DeltaType);
Py_INCREF(&PyDateTime_TZInfoType);
PyModule_AddObject(m, "tzinfo", (PyObject *) &PyDateTime_TZInfoType);
Py_INCREF(&PyDateTime_TimeZoneType);
PyModule_AddObject(m, "timezone", (PyObject *) &PyDateTime_TimeZoneType);
x = PyCapsule_New(&CAPI, PyDateTime_CAPSULE_NAME, NULL);
if (x == NULL)
return NULL;
PyModule_AddObject(m, "datetime_CAPI", x);
/* A 4-year cycle has an extra leap day over what we'd get from
* pasting together 4 single years.
*/
Py_BUILD_ASSERT(DI4Y == 4 * 365 + 1);
assert(DI4Y == days_before_year(4+1));
/* Similarly, a 400-year cycle has an extra leap day over what we'd
* get from pasting together 4 100-year cycles.
*/
Py_BUILD_ASSERT(DI400Y == 4 * DI100Y + 1);
assert(DI400Y == days_before_year(400+1));
/* OTOH, a 100-year cycle has one fewer leap day than we'd get from
* pasting together 25 4-year cycles.
*/
Py_BUILD_ASSERT(DI100Y == 25 * DI4Y - 1);
assert(DI100Y == days_before_year(100+1));
one = PyLong_FromLong(1);
us_per_ms = PyLong_FromLong(1000);
us_per_second = PyLong_FromLong(1000000);
us_per_minute = PyLong_FromLong(60000000);
seconds_per_day = PyLong_FromLong(24 * 3600);
if (one == NULL || us_per_ms == NULL || us_per_second == NULL ||
us_per_minute == NULL || seconds_per_day == NULL)
return NULL;
/* The rest are too big for 32-bit ints, but even
* us_per_week fits in 40 bits, so doubles should be exact.
*/
us_per_hour = PyLong_FromDouble(3600000000.0);
us_per_day = PyLong_FromDouble(86400000000.0);
us_per_week = PyLong_FromDouble(604800000000.0);
if (us_per_hour == NULL || us_per_day == NULL || us_per_week == NULL)
return NULL;
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__datetime = {
"_datetime",
PyInit__datetime,
};
/* ---------------------------------------------------------------------------
Some time zone algebra. For a datetime x, let
x.n = x stripped of its timezone -- its naive time.
x.o = x.utcoffset(), and assuming that doesn't raise an exception or
return None
x.d = x.dst(), and assuming that doesn't raise an exception or
return None
x.s = x's standard offset, x.o - x.d
Now some derived rules, where k is a duration (timedelta).
1. x.o = x.s + x.d
This follows from the definition of x.s.
2. If x and y have the same tzinfo member, x.s = y.s.
This is actually a requirement, an assumption we need to make about
sane tzinfo classes.
3. The naive UTC time corresponding to x is x.n - x.o.
This is again a requirement for a sane tzinfo class.
4. (x+k).s = x.s
This follows from #2, and that datimetimetz+timedelta preserves tzinfo.
5. (x+k).n = x.n + k
Again follows from how arithmetic is defined.
Now we can explain tz.fromutc(x). Let's assume it's an interesting case
(meaning that the various tzinfo methods exist, and don't blow up or return
None when called).
The function wants to return a datetime y with timezone tz, equivalent to x.
x is already in UTC.
By #3, we want
y.n - y.o = x.n [1]
The algorithm starts by attaching tz to x.n, and calling that y. So
x.n = y.n at the start. Then it wants to add a duration k to y, so that [1]
becomes true; in effect, we want to solve [2] for k:
(y+k).n - (y+k).o = x.n [2]
By #1, this is the same as
(y+k).n - ((y+k).s + (y+k).d) = x.n [3]
By #5, (y+k).n = y.n + k, which equals x.n + k because x.n=y.n at the start.
Substituting that into [3],
x.n + k - (y+k).s - (y+k).d = x.n; the x.n terms cancel, leaving
k - (y+k).s - (y+k).d = 0; rearranging,
k = (y+k).s - (y+k).d; by #4, (y+k).s == y.s, so
k = y.s - (y+k).d
On the RHS, (y+k).d can't be computed directly, but y.s can be, and we
approximate k by ignoring the (y+k).d term at first. Note that k can't be
very large, since all offset-returning methods return a duration of magnitude
less than 24 hours. For that reason, if y is firmly in std time, (y+k).d must
be 0, so ignoring it has no consequence then.
In any case, the new value is
z = y + y.s [4]
It's helpful to step back at look at [4] from a higher level: it's simply
mapping from UTC to tz's standard time.
At this point, if
z.n - z.o = x.n [5]
we have an equivalent time, and are almost done. The insecurity here is
at the start of daylight time. Picture US Eastern for concreteness. The wall
time jumps from 1:59 to 3:00, and wall hours of the form 2:MM don't make good
sense then. The docs ask that an Eastern tzinfo class consider such a time to
be EDT (because it's "after 2"), which is a redundant spelling of 1:MM EST
on the day DST starts. We want to return the 1:MM EST spelling because that's
the only spelling that makes sense on the local wall clock.
In fact, if [5] holds at this point, we do have the standard-time spelling,
but that takes a bit of proof. We first prove a stronger result. What's the
difference between the LHS and RHS of [5]? Let
diff = x.n - (z.n - z.o) [6]
Now
z.n = by [4]
(y + y.s).n = by #5
y.n + y.s = since y.n = x.n
x.n + y.s = since z and y are have the same tzinfo member,
y.s = z.s by #2
x.n + z.s
Plugging that back into [6] gives
diff =
x.n - ((x.n + z.s) - z.o) = expanding
x.n - x.n - z.s + z.o = cancelling
- z.s + z.o = by #2
z.d
So diff = z.d.
If [5] is true now, diff = 0, so z.d = 0 too, and we have the standard-time
spelling we wanted in the endcase described above. We're done. Contrarily,
if z.d = 0, then we have a UTC equivalent, and are also done.
If [5] is not true now, diff = z.d != 0, and z.d is the offset we need to
add to z (in effect, z is in tz's standard time, and we need to shift the
local clock into tz's daylight time).
Let
z' = z + z.d = z + diff [7]
and we can again ask whether
z'.n - z'.o = x.n [8]
If so, we're done. If not, the tzinfo class is insane, according to the
assumptions we've made. This also requires a bit of proof. As before, let's
compute the difference between the LHS and RHS of [8] (and skipping some of
the justifications for the kinds of substitutions we've done several times
already):
diff' = x.n - (z'.n - z'.o) = replacing z'.n via [7]
x.n - (z.n + diff - z'.o) = replacing diff via [6]
x.n - (z.n + x.n - (z.n - z.o) - z'.o) =
x.n - z.n - x.n + z.n - z.o + z'.o = cancel x.n
- z.n + z.n - z.o + z'.o = cancel z.n
- z.o + z'.o = #1 twice
-z.s - z.d + z'.s + z'.d = z and z' have same tzinfo
z'.d - z.d
So z' is UTC-equivalent to x iff z'.d = z.d at this point. If they are equal,
we've found the UTC-equivalent so are done. In fact, we stop with [7] and
return z', not bothering to compute z'.d.
How could z.d and z'd differ? z' = z + z.d [7], so merely moving z' by
a dst() offset, and starting *from* a time already in DST (we know z.d != 0),
would have to change the result dst() returns: we start in DST, and moving
a little further into it takes us out of DST.
There isn't a sane case where this can happen. The closest it gets is at
the end of DST, where there's an hour in UTC with no spelling in a hybrid
tzinfo class. In US Eastern, that's 5:MM UTC = 0:MM EST = 1:MM EDT. During
that hour, on an Eastern clock 1:MM is taken as being in standard time (6:MM
UTC) because the docs insist on that, but 0:MM is taken as being in daylight
time (4:MM UTC). There is no local time mapping to 5:MM UTC. The local
clock jumps from 1:59 back to 1:00 again, and repeats the 1:MM hour in
standard time. Since that's what the local clock *does*, we want to map both
UTC hours 5:MM and 6:MM to 1:MM Eastern. The result is ambiguous
in local time, but so it goes -- it's the way the local clock works.
When x = 5:MM UTC is the input to this algorithm, x.o=0, y.o=-5 and y.d=0,
so z=0:MM. z.d=60 (minutes) then, so [5] doesn't hold and we keep going.
z' = z + z.d = 1:MM then, and z'.d=0, and z'.d - z.d = -60 != 0 so [8]
(correctly) concludes that z' is not UTC-equivalent to x.
Because we know z.d said z was in daylight time (else [5] would have held and
we would have stopped then), and we know z.d != z'.d (else [8] would have held
and we would have stopped then), and there are only 2 possible values dst() can
return in Eastern, it follows that z'.d must be 0 (which it is in the example,
but the reasoning doesn't depend on the example -- it depends on there being
two possible dst() outcomes, one zero and the other non-zero). Therefore
z' must be in standard time, and is the spelling we want in this case.
Note again that z' is not UTC-equivalent as far as the hybrid tzinfo class is
concerned (because it takes z' as being in standard time rather than the
daylight time we intend here), but returning it gives the real-life "local
clock repeats an hour" behavior when mapping the "unspellable" UTC hour into
tz.
When the input is 6:MM, z=1:MM and z.d=0, and we stop at once, again with
the 1:MM standard time spelling we want.
So how can this break? One of the assumptions must be violated. Two
possibilities:
1) [2] effectively says that y.s is invariant across all y belong to a given
time zone. This isn't true if, for political reasons or continental drift,
a region decides to change its base offset from UTC.
2) There may be versions of "double daylight" time where the tail end of
the analysis gives up a step too early. I haven't thought about that
enough to say.
In any case, it's clear that the default fromutc() is strong enough to handle
"almost all" time zones: so long as the standard offset is invariant, it
doesn't matter if daylight time transition points change from year to year, or
if daylight time is skipped in some years; it doesn't matter how large or
small dst() may get within its bounds; and it doesn't even matter if some
perverse time zone returns a negative dst()). So a breaking case must be
pretty bizarre, and a tzinfo subclass can override fromutc() if it is.
--------------------------------------------------------------------------- */
| 205,284 | 6,246 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_ucd.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Modules/unicodedata.h"
#include "third_party/python/Modules/unicodedata_unidata.h"
/* clang-format off */
PyTypeObject UCD_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"unicodedata.UCD", /*tp_name*/
sizeof(PreviousDBVersion), /*tp_basicsize*/
};
| 1,224 | 18 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_codehash.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const unsigned int _PyUnicode_CodeHash[40960] = {
791749104, 1, 0, 4177526784, 30, 0, 2952790016, 7995, 856323344,
49417984, 2697048224, 2734171423, 20058381, 1, 0, 3082891599, 3508193296,
85, 3087007744, 22, 141557760, 1, 277413888, 2281769120, 282152976,
70351, 2417814528, 4524, 0, 0, 672137216, 2271754, 0, 0, 0, 674234368,
2504714, 602144768, 665600, 0, 0, 904960, 0, 3976200192, 260, 74491,
806177792, 6276, 3742477744, 411308038, 2216689664, 2165396504,
3637379774, 337150977, 499, 0, 0, 290586624, 1, 40280064, 2342562033,
251871232, 0, 0, 378540032, 702545920, 3080978, 2228224, 696783, 0, 0,
3758096384, 2953139, 1040187406, 305082381, 43265, 251869440, 0,
1207959552, 13, 3622830080, 2, 0, 1224736768, 527323144, 545263563,
805306370, 61487, 1938752, 530251776, 0, 23818752, 0, 15741696, 0,
3836739584, 3489660930, 30539974, 3774873601, 271, 66021, 318249984,
356516181, 486539264, 267395439, 1320160027, 1342177281, 290660243,
2298561697, 525733933, 0, 0, 0, 2902458368, 392, 652214272, 2684354578,
2967732891, 537040545, 286900227, 118883, 536870912, 3499888602,
1091604689, 281, 1783628538, 29, 0, 1224911264, 28508165, 0, 1075233792,
545, 0, 0, 3128950784, 1, 0, 3288334336, 282, 0, 3758096384, 4304, 0,
29655040, 583008256, 0, 0, 0, 296538112, 0, 0, 0, 0, 0, 72986,
2952790016, 2745, 177488, 0, 3402754136, 4043632897, 4282, 29984, 0,
129314, 0, 0, 0, 31490048, 0, 2313216, 0, 1062224, 497037312, 0, 2585600,
178585600, 0, 180146176, 42128, 536870912, 4259, 0, 0, 3945862837,
497921, 0, 2113929216, 29442305, 9992, 1891584, 380444418, 1, 0,
2836398608, 1353445663, 380830410, 1, 495058944, 0, 2684354560,
495846096, 99009, 0, 1911622256, 0, 1795162112, 1, 29626368, 92929,
4026531840, 414, 218103808, 481, 1176, 1073741824, 4137353733, 1,
282181632, 42931, 0, 0, 0, 0, 5388, 0, 741212160, 3607101440, 482,
108072216, 30531585, 3505127424, 1, 39157760, 0, 11230464, 0, 3825205248,
324, 0, 1900340480, 4150991051, 1, 304443392, 0, 0, 0, 371076720, 269, 0,
2152448, 4044, 0, 0, 2582642688, 16, 0, 687865856, 168, 3561007146, 17,
0, 0, 521814016, 225443840, 2386449, 0, 1612681872, 493596938, 983634, 0,
406257664, 1075984, 0, 0, 3492561152, 4142, 15729376, 0, 0, 547452672,
2844335365, 1979711488, 161, 0, 3741431552, 28709267, 2049839, 174600192,
33554432, 1583872, 3806527488, 1374690097, 495955982, 81831799, 10582256,
0, 15735536, 0, 331350016, 1, 0, 3976200192, 466, 4181, 1342177280, 7974,
486539264, 25317655, 410067971, 224, 0, 318767104, 473, 1972371456,
536870914, 4040300696, 1543503873, 30711975, 2572158026, 30599702, 0,
163312, 4027305984, 540016640, 536871152, 577, 98912, 379092992, 0, 0,
358547456, 688017232, 26, 5473, 0, 0, 0, 287019008, 0, 1988352,
2709193223, 3238002688, 284471041, 0, 4278304512, 2709064372, 0, 0, 0, 0,
449576960, 1, 0, 42633, 0, 0, 0, 0, 2652967285, 31, 0, 3105858240,
525512976, 0, 0, 0, 0, 0, 1506803712, 10653952, 0, 1426063360, 503, 0, 0,
4128309248, 193809, 175194112, 0, 3491630336, 671, 2366630816, 4005910,
128134, 4037186304, 639, 0, 304447488, 1631584256, 2, 0, 0, 0,
1099956224, 2952790033, 4550, 0, 380010496, 0, 3490269952, 707,
234881024, 265, 1309749971, 2147483658, 155262308, 2952790016,
4030406403, 0, 18927616, 254214582, 1966705, 179572736, 892340543,
251870495, 155648000, 838989760, 24, 314572800, 29, 0, 822083584, 27, 0,
17517056, 2809004032, 0, 25362432, 1899099036, 10, 749404160, 220158928,
494797264, 633339904, 3489660931, 105717606, 1, 0, 2016411648, 29,
1307705344, 1275068416, 36794841, 0, 0, 0, 99168, 474, 196, 0, 0, 0, 0,
0, 0, 0, 0, 4028444672, 41323, 268435456, 5768, 0, 4028428288, 649109865,
2148263939, 2707948004, 0, 52506624, 2616308367, 17, 0, 0, 298889216, 0,
0, 859439104, 1258385, 169271296, 3789553664, 11050754, 81592320,
2667577344, 259, 0, 0, 4164616192, 973078530, 760, 2210398208, 805306415,
21303600, 205984, 303833088, 0, 30492160, 0, 0, 0, 548405248, 23597040,
0, 3640655872, 472, 0, 0, 0, 1773504, 46, 19908, 0, 573636608, 1108448,
0, 2656052519, 2147483658, 406656694, 0, 0, 0, 0, 0, 2025232, 170422272,
0, 30877952, 0, 1560281088, 170430491, 9580, 102656, 2869100544,
3657433088, 499, 65486, 3291392, 785317888, 0, 0, 121371, 586783488,
4641, 0, 0, 0, 2149607168, 387, 2045824, 0, 71435, 23685888, 4134993920,
1, 512806912, 0, 1073741824, 7972, 0, 265318400, 3487563776, 30871056, 0,
2317335152, 33583135, 1999761073, 32580864, 4045865237, 1543676801,
521306583, 4076990747, 1106320640, 4045345217, 555684321, 504500721,
287431019, 1090862879, 2286296849, 588258929, 31387911, 0, 0, 51445760,
234881025, 521207858, 127169, 2952790016, 500772738, 1483104, 0, 0,
555896832, 3586923903, 3674210305, 501, 110627, 3223688704, 3586662268,
1, 0, 2918187008, 16, 389808128, 1, 0, 69906, 805306368, 59, 590315936,
44929528, 3687961727, 30703873, 314252616, 2099070880, 30212564, 0, 0, 0,
0, 0, 3271677039, 299135233, 3563782595, 1828832033, 29569492,
1197593719, 2178185501, 472718663, 773670688, 29552668, 128622,
1344450560, 4149281248, 1, 489955328, 4289844269, 4057229569, 474219296,
3791777456, 280, 121284, 0, 0, 0, 0, 0, 0, 0, 3825205248, 40, 0, 0, 0, 0,
3759755264, 42991616, 805720091, 143917293, 184465, 517017600, 0,
268726784, 830812033, 0, 13266944, 0, 1928919296, 12161, 674624,
48242688, 2410676224, 268435466, 7442, 0, 274817024, 129638, 2972865792,
844242759, 1, 0, 3144679424, 11253770, 440467456, 2399141889, 321191972,
0, 1610612736, 416, 385875968, 15, 2116067697, 3758096397, 2708479796,
152195360, 530498296, 0, 2952790016, 37297458, 0, 0, 80859437, 27,
760872960, 181888, 796958720, 1054908787, 838009600, 101588355, 131216,
797945856, 3141539195, 1630557194, 810685189, 1342880593, 319099184,
128410, 3489660928, 2287935394, 1493875505, 304, 1483735040, 1610612737,
61481, 1058072464, 22577184, 813823536, 2448650781, 4088926131,
1593930017, 525025284, 337708560, 1610612976, 7112, 1062768, 0,
1628438528, 16, 0, 2969567232, 4029272564, 0, 3489660928, 405406059,
572504704, 81760756, 692060160, 536871152, 19795943, 2601126288, 160,
1898977773, 32969985, 2860122112, 1895825408, 502, 1485902537,
1880754689, 845813901, 88161, 0, 698351616, 20080112, 0, 4127195136, 432,
0, 23733760, 0, 0, 0, 2393973505, 299286294, 254017969, 4076863489,
263954864, 0, 19070976, 437387264, 694352, 6045696, 0, 286938112, 202,
3019898880, 39, 3701473280, 17214208, 2993881088, 106497, 0, 335618967,
1360679682, 587665953, 0, 0, 4079032917, 3240113665, 590224750,
1374691488, 282, 7853, 251738880, 0, 0, 4030267392, 0, 0, 0, 0, 0,
2565993443, 1345581072, 32, 0, 170098688, 4209003987, 15, 0, 1744998960,
170090526, 71727, 1612675328, 547815494, 1, 532643840, 162648466,
1612720897, 2696, 889200272, 17408280, 135338035, 279482139, 405608190,
2516582401, 473, 0, 28345856, 570884096, 2181137008, 453521840, 0,
1951488, 0, 3624026416, 303824945, 0, 0, 245301248, 1174589344,
305487915, 0, 32408832, 0, 0, 4030005248, 3557818635, 3253866496, 147,
772859664, 27, 6201, 10844160, 698089472, 705308864, 13938177,
3563979049, 0, 0, 453039088, 276, 1091660157, 3790374687, 7911, 204272,
4027904000, 64261, 1106391296, 315298124, 285212673, 26, 2485125120,
3184159, 0, 3623878656, 277, 3139445597, 19077898, 0, 855638016, 24,
6660, 503382016, 57362, 202064, 0, 0, 1073741824, 7996, 0, 268075008, 0,
2178481152, 2880249769, 318767104, 305, 983380, 0, 376242176, 18096, 0,
74862, 1353428992, 3543009890, 1249713, 0, 2635115438, 2983251485,
2880373216, 9248, 0, 1629487104, 1092825866, 3609203229, 1192977,
4030287872, 0, 0, 0, 0, 0, 7241, 4050556416, 7447, 33759408, 16163121,
2942304256, 285538050, 42, 0, 0, 119301, 17635840, 0, 454234192, 40,
271655744, 2415919123, 545, 0, 0, 0, 0, 7456, 0, 495013888, 767492514, 0,
4114354574, 1, 0, 1175, 17450752, 0, 172688, 277069824, 433069611, 240,
0, 2566914048, 20, 5269, 1091561216, 345178262, 1999472, 0, 5277,
3489660928, 4290576770, 21024, 0, 621924441, 2, 4062642176, 252752865,
37699754, 4067426304, 0, 406131073, 151952, 30994432, 318831588,
815902227, 2744781338, 3473966064, 287068422, 2756706304, 3768691741,
2712670139, 2869932544, 161, 2603622914, 3221225474, 43, 92400, 29032448,
3568378884, 2147483649, 824120082, 1561357105, 494, 2064646144,
807946015, 436802322, 177840, 31203328, 3421514309, 2147483650,
4223602631, 0, 319868928, 78091, 2415919104, 4064, 106688, 0, 687865856,
3507500544, 4064, 0, 0, 0, 1610612736, 4563, 234881024, 39742977,
2265972736, 4043576342, 75177222, 1493870465, 13, 6832, 234948608,
17235968, 1191182350, 48766995, 0, 17227776, 239277742, 3724541952,
290193670, 1841299456, 1879048208, 811, 884352, 0, 1439, 19173632, 0,
620756992, 306, 3211830375, 0, 513671168, 33554432, 505, 2550136832,
1610612752, 594943844, 1479136, 0, 0, 0, 3542220800, 1174405121,
526016542, 2195786381, 1, 0, 2165418304, 28729382, 9856, 829017088, 7534,
135696, 25403392, 2860515328, 17400322, 0, 15732672, 32124928,
1350631706, 16, 0, 0, 0, 2685403136, 52993, 274726912, 1197105, 0, 0, 0,
0, 2550136832, 180117665, 488, 2952790016, 665653610, 436207616,
49078440, 0, 0, 0, 218765760, 34832410, 72103, 10589952, 3521650579,
3456106497, 33837101, 318896897, 838534912, 4213055408, 320844017,
4027331004, 832569582, 18, 1304494080, 2904387600, 529207041, 2206244948,
3775325712, 649596882, 2836404528, 3841, 0, 0, 0, 3724546896, 25, 10858,
17314816, 472711168, 1, 0, 270600245, 2149969950, 2881622212, 2365587456,
381120766, 0, 0, 0, 788529152, 53018648, 0, 822620672, 2735, 855638016,
38379784, 41381, 3221225472, 3491831312, 2516582401, 497414156, 0,
17065728, 0, 0, 0, 2474705092, 29, 0, 3976200192, 295698694, 3279987111,
15, 0, 3053453312, 273309443, 0, 0, 0, 806383264, 525295630, 192937984,
933890, 610009088, 873497457, 14, 676335170, 2, 0, 1510641440, 162,
3463446528, 1611544592, 7949, 188496, 0, 0, 0, 4005101568, 1610612737,
10358948, 188743680, 805306387, 2630, 3539992576, 276967894, 0, 2466304,
0, 0, 0, 0, 17623296, 1770061824, 2802897057, 497, 1076887552,
1909682954, 47190146, 2634022927, 520830979, 1074790400, 553367818,
3634102871, 17448961, 525811748, 0, 1076093440, 263196802, 15741040,
1560576, 983681, 10771712, 4144562176, 1578140257, 164, 10810,
1880221952, 384042206, 1082128, 0, 812, 0, 1768292352, 1, 0, 2194669568,
1073741840, 668, 1082080, 3784704, 2196766720, 10909712, 0, 4110417920,
277020934, 506462208, 271695875, 797, 720382816, 277389576, 0, 0,
835649536, 1578256800, 33, 3802136576, 17076736, 0, 2214654640, 251, 0,
0, 0, 673108928, 264, 10932, 553660672, 52826037, 2617245696, 454021283,
1941964070, 31, 0, 2314219216, 9850893, 983390, 2956055552, 251989998,
3505401617, 23892017, 263194008, 2426641179, 642194191, 2650800128, 163,
2162163712, 0, 0, 1610612736, 505, 363980841, 2952790256, 7560, 1901312,
4027518976, 2588934144, 2719248, 0, 2785017856, 291614745, 54525952,
268435474, 4304, 0, 33931264, 0, 0, 0, 688368, 4027535360, 4170193394,
2434541312, 54792141, 334501200, 363, 0, 0, 0, 2736690032, 3585, 0, 0, 0,
2097173984, 487481598, 67720, 581888, 0, 3791650816, 43, 1507852288,
3224834, 0, 83886080, 26, 1852947543, 32003869, 0, 1154416, 301768704,
3316653606, 536870939, 4348, 3456106496, 3842, 0, 3522388224, 123666829,
15734544, 33095680, 113681, 0, 4215209984, 24705, 0, 64677, 0, 0,
1904304, 0, 3403690508, 2147483649, 4611, 126464, 0, 120910, 0, 0,
155584, 4029583360, 9524, 0, 0, 1073741824, 505, 471, 3758096384, 8018,
0, 4029440000, 0, 1771008, 0, 82496, 527085568, 2540709880, 2614530, 0,
680448, 0, 0, 1895767808, 4683, 620969888, 32235561, 3700424704, 1, 7534,
805306368, 516497911, 0, 0, 0, 1477456, 53157888, 128533, 3221225472,
2796751539, 754974720, 50, 19942, 0, 0, 3221225472, 491553236, 120001,
49892864, 0, 0, 29433856, 73107, 3507604736, 3505651739, 1, 0, 73047,
2684354560, 8027, 0, 15982592, 3082882353, 31, 102236160, 703328,
18776064, 2438987776, 536870928, 1793655463, 822101473, 306741608,
1133510656, 2954693632, 475267768, 1677721600, 473, 0, 2694949376,
4213113154, 21281, 496721920, 4042260480, 1964802, 0, 536900480,
4026970403, 64708, 0, 12180, 0, 4029452288, 1439707563, 31, 0,
3994044160, 273142047, 0, 23670784, 219414528, 2197815297, 284,
491852944, 30905617, 4182573056, 3858907106, 169, 2156920832, 29,
413728768, 1048208, 0, 0, 4027132160, 4560, 2432696320, 507, 3117,
18401792, 495714304, 1, 0, 619708416, 3204497427, 6306, 211968,
492507136, 1509030280, 268435487, 811472639, 1137920, 0, 0, 376576,
3159556096, 1509949441, 48, 69664, 3492828672, 7584, 0, 0, 0, 3168256, 0,
1543503872, 43241520, 243269632, 2150330883, 4039901310, 1, 305512448, 0,
3507611648, 240, 0, 4029415424, 0, 3095040, 817496064, 521574960, 37,
242221056, 17489648, 2968649728, 1, 0, 12470, 1629605120, 817627307,
3255841824, 42, 12472, 0, 0, 805437776, 31830187, 246421521, 17410800, 0,
2332033024, 266, 0, 30972160, 0, 369098752, 302248443, 3497130790, 16, 0,
0, 301891584, 1662004975, 2118431, 2848129024, 1126008304, 498, 0,
4044165376, 4450, 1901456, 51265536, 4444, 2714822912, 713825643,
1901248, 26513408, 0, 1897412352, 224, 0, 0, 72345, 0, 4063952896, 1, 0,
1339031552, 31, 0, 1811939328, 2814319, 0, 251750144, 0, 702112,
526442496, 285, 0, 292225024, 0, 306860032, 0, 32321280, 3520069632,
251658241, 38, 3832545280, 30, 495976448, 452984833, 272, 3230662656,
2435010816, 2682, 0, 0, 0, 1342177280, 3505324602, 4093640705, 471,
65221, 1073741824, 4053, 0, 0, 949027858, 10721025, 0, 1946237104, 3,
888143872, 269753857, 566628874, 2483027969, 163, 1560281088, 1084570378,
4550, 0, 0, 8491, 805306368, 296939557, 3591002768, 489578523, 66200,
2415919104, 1245, 0, 17375232, 0, 0, 32636928, 17832273, 264282600,
803219956, 2717188354, 3510501985, 4008709345, 4027367713, 294584523,
2399193373, 61452, 0, 305225728, 220266986, 10615809, 4277, 1795162112,
260, 476053504, 10803440, 0, 2885681152, 28459477, 348127232, 2,
811663360, 2919235584, 292, 281019754, 18, 0, 1746769408, 48, 8064,
2147483648, 3504083736, 3321922049, 526299138, 1746940006, 10775296,
811532288, 1813426816, 280240292, 1184890880, 31, 2758803456, 570425344,
50696205, 127878, 0, 0, 822103488, 302227473, 2589995403, 2, 4214030843,
3105689297, 50704856, 1835081108, 29, 2638, 198096, 0, 242221056, 1,
4116578304, 2550136833, 305, 676332104, 1342177283, 496042757, 208001,
12021760, 395442265, 2415919107, 495585924, 2333961105, 48, 423559753,
19, 0, 4160749568, 305361398, 0, 3181056, 0, 2348810240, 48, 0, 0,
814546944, 107632, 0, 3551526912, 0, 0, 0, 0, 74427, 3490566144,
639114608, 303468240, 24, 2014314496, 2, 0, 198752, 1798144, 3072,
1352982272, 3623752243, 1, 0, 121634816, 1879048194, 4425, 0, 54140928,
0, 2149552640, 776, 3540101680, 384360461, 0, 19081984, 173342720,
67108865, 285, 138485001, 2910979, 301465600, 1107296256, 499, 0,
2166161920, 439361378, 100736752, 285, 0, 4045209600, 36773234,
2399336432, 305, 78224, 3239418880, 470024937, 2953473008, 32,
3099590656, 22, 620888064, 1, 0, 1576009728, 3221225482, 107937974,
2600468481, 507, 128958, 2684354560, 494340693, 63505, 532369408,
2088770561, 2470912, 0, 673376, 413143040, 0, 0, 0, 5232, 0, 0,
268435456, 777, 0, 50917376, 153092096, 251759107, 0, 536870912,
50921502, 4027580416, 838368016, 6304, 131392, 524345344, 295698432,
1877277, 0, 1325400064, 286744839, 128461, 3183616, 2828533760,
2415919104, 379932964, 1457592000, 10, 0, 1609056, 46481408, 0, 2353664,
61449, 884000, 411930624, 0, 0, 0, 3692023456, 411914497, 1364200820,
16550674, 2719940608, 0, 0, 0, 0, 3626762240, 1, 530055168, 134283037, 3,
0, 1610612736, 50864491, 2371953023, 29, 0, 1909776, 18825216, 135332643,
16896259, 3994746880, 1594034145, 32, 0, 292608, 0, 198640, 0, 983242,
4028841216, 7548, 187584, 0, 2392850432, 47, 526057472, 288329408,
521728290, 491793544, 318304018, 4176351313, 2, 4027379712, 0, 338944, 0,
1040187392, 31601401, 0, 3271088384, 12173, 0, 797847552, 0, 0, 0,
2232430352, 15929840, 2399271449, 47, 0, 2315255808, 53244377,
2220883968, 29, 0, 0, 265428992, 525378786, 1, 0, 1543701808, 262,
2739996251, 2, 0, 0, 50655232, 0, 2976484608, 772, 1660944384, 502, 0,
3491710208, 772, 2885681152, 50663438, 10649, 17944320, 0, 2868903936,
167, 0, 0, 0, 1066544, 0, 0, 2685703168, 309, 2449473536, 520110100,
2287998104, 1610612758, 60361295, 2818572303, 35, 0, 0, 642449841,
2517258912, 6164515, 0, 1350656, 0, 0, 0, 0, 0, 571604992, 1932880, 0,
66695, 4026531840, 583270673, 0, 306913280, 64297, 0, 0, 4110472624, 164,
753926144, 268435458, 2647, 0, 0, 0, 1342177280, 2724731025, 134893168,
480, 404750336, 1359630850, 2724659673, 2517779024, 360, 73863, 683520,
0, 187568, 0, 0, 1610612736, 2713, 2332033024, 256, 1711343211,
540048656, 107552685, 1, 0, 14680064, 536870915, 813105480, 872611152,
37638161, 1097871473, 1342177290, 17697345, 705347025, 172040672, 12404,
3240407040, 813302068, 4177526784, 502, 64567, 0, 0, 0, 0, 0, 1073741824,
747, 33554432, 480, 2041584103, 1879048223, 2766803509, 0, 287105024, 0,
536870912, 4441, 0, 521588736, 0, 0, 0, 693920, 20545536, 121052,
805306368, 593, 0, 0, 64922, 0, 0, 1475168, 0, 934281216, 18, 320208896,
1173366609, 41, 12177, 0, 0, 1795162112, 523771952, 2640327246, 3173398,
0, 1480592, 176590848, 0, 1342177280, 611, 78832, 0, 0, 271609088,
4153286532, 1778384897, 48, 0, 0, 475332608, 167944657, 6, 5010,
807996160, 4112719673, 1, 0, 3325034496, 1, 0, 50331648, 11, 1500512256,
536870929, 4129882566, 1627506177, 28, 1363, 2178096384, 4067, 0, 0,
43336, 1879048192, 540024531, 1258291201, 169, 9836, 0, 2840002560,
660416, 302264320, 856729929, 271305472, 4148756620, 1275728801,
173703212, 1262527951, 18, 811728896, 0, 0, 1491087461, 3221225503,
2731936320, 1291845632, 4698144, 2214636361, 3221734173, 2830835553,
101335312, 172028068, 12391, 2952790016, 811598132, 0, 177123328, 0,
18110976, 0, 0, 0, 8247, 2415919104, 471, 1695197104, 474, 10036,
567543040, 3557294716, 117440513, 48177620, 119818, 1365801472, 7537,
184549376, 468, 3798990848, 1610612737, 155, 3810344960, 5, 701626529,
270915345, 7489, 2484944944, 258, 5262, 2435027456, 792, 1979711488,
50049072, 578813952, 4037491231, 6936, 2431657872, 495727092, 2064772240,
1076917021, 156, 2030043136, 48, 0, 1898021120, 813432978, 2147802784,
512172321, 13112, 2715228928, 2955546769, 1090519041, 24006915,
3992039464, 3174402, 0, 202320, 46366720, 2780891962, 16650241,
4206362624, 1862478560, 276943109, 120645, 0, 0, 2281701376, 7, 67649,
2415919104, 736301185, 0, 276930560, 8241, 3758096384, 262, 0, 525508608,
110980, 17212928, 0, 2382364672, 34230277, 3241148416, 268435457, 7540,
0, 0, 495052894, 2171173659, 812974712, 620756992, 285, 13278, 1629696,
520683520, 838860800, 17, 2512400498, 536870943, 813175360, 3875536896,
171, 0, 3177216, 3623354368, 69161761, 473, 1575, 0, 489357312, 1913953,
0, 12399, 1749248, 0, 3321888768, 39698712, 0, 3783853824, 86442405, 1,
0, 2691694592, 1879048202, 45, 0, 0, 430971462, 536870943, 2885092101,
2147483648, 9339374, 88080384, 30884355, 0, 0, 50651136, 2065705683,
340225, 200015872, 1167792, 270454784, 2737831936, 2, 0, 1479568, 0, 0,
383744, 0, 683840, 0, 0, 1076828160, 7905, 469820608, 172818703, 74253,
279244544, 3913683074, 1, 0, 1833959424, 2, 126681088, 0, 0, 144703488,
18, 162988032, 3239084512, 7389212, 2179989504, 16, 800849920, 1081856,
0, 2793406464, 1708816, 0, 1980792960, 494, 64771, 2337792, 2979790848,
8161, 0, 487587840, 270409473, 1796216486, 1776113, 170266624, 121282,
1344268032, 3778875476, 1, 286687232, 3010528099, 1, 0, 1291845632, 1,
2489319424, 17000706, 3659333632, 83886081, 454652189, 2707489620, 1,
827129856, 117440512, 41890295, 4764, 2555136, 310771712, 185425, 0,
488678618, 3, 264765440, 167772161, 8388872, 4246732800, 17304320, 0,
2953481552, 297816107, 0, 16428800, 472514560, 1, 532340736, 1684078517,
2684354562, 4450, 1117456, 3899392, 2335306987, 2147483678, 422646057,
1153632, 0, 2863704154, 2084367, 4010, 0, 0, 0, 0, 135069696, 1510056257,
174551055, 376511908, 17305105, 0, 922746880, 170316032, 1523708984, 0,
0, 3993113408, 164, 3523334630, 17918993, 0, 1034816, 0, 890308630,
2415919120, 858655310, 385875968, 27328776, 0, 0, 135790592, 687865857,
35, 2165320714, 536870928, 436735917, 1207959552, 276897956, 0, 0,
96272384, 1695580464, 286396671, 1480594300, 3758096394, 59245143,
4043314688, 164, 2601525117, 2, 4111728640, 1081601, 0, 401731901,
32587522, 4047052564, 991892385, 521388529, 325185845, 3522246431,
4046527749, 4095677217, 3371044, 11587, 0, 4048093184, 198193, 0,
3273029, 3769048863, 4207939862, 1126110240, 270463473, 3579838464,
16584706, 290783232, 1, 0, 2994738208, 2415919106, 135601491, 3825205249,
271, 2448495236, 3221225519, 2790989572, 2987019872, 161, 4763, 30447360,
344719360, 1442840576, 1335663, 410113347, 805306386, 2765488801,
355440256, 798413561, 108044726, 1352773919, 4033093382, 3019906129, 161,
3182441319, 2450434, 0, 1127186688, 520524279, 3918528512, 11044894,
487325696, 3118193, 0, 0, 3489660928, 4003, 939524096, 287990010, 0, 0,
12179, 756752064, 299000059, 10464, 4059400448, 4552, 402837632,
524583162, 679, 2684354560, 49676653, 120576, 0, 43712, 1358562816,
4194693154, 1124768, 518090752, 0, 0, 0, 1167984, 262254592, 64029, 0,
4000, 3117984, 172855296, 2477797509, 3221225519, 115, 268435456, 288,
2255551017, 31, 0, 2266401312, 52650032, 3665821696, 1610612736, 6935,
3117168, 0, 141563918, 19085570, 813891584, 838860800, 45, 773849088,
1073741854, 49873386, 3118559, 6889472, 2515626863, 3500606511,
4105306534, 1, 0, 2801806484, 3758096385, 378810256, 1, 0, 11577,
2465795328, 758644850, 1189344, 0, 4091586406, 805306384, 4394,
2502922880, 31, 194850, 2703041536, 127737712, 2801980896, 493522974,
3190937765, 15, 0, 0, 0, 3954180096, 10973214, 4238016512, 1193984, 0,
3451955453, 32648962, 4240, 3305111552, 503, 72974, 1639010304,
226434908, 0, 40464384, 0, 537935360, 8003, 1358954496, 433, 0,
2147568640, 7425, 1728053248, 9, 2384504023, 28381462, 811663360,
420313873, 512815585, 70043, 0, 3640983552, 29345, 0, 71315, 16703744,
567672832, 0, 504434688, 3509583872, 2760706, 140115968, 1224736769, 360,
77594624, 29, 0, 0, 0, 2290102483, 1, 0, 0, 0, 2289085259, 3202049,
819331072, 146576, 6635520, 3775922176, 0, 112066560, 587212305, 45,
12496, 3240215808, 819535210, 1442840576, 761, 250653231, 3489660928,
7942, 2936012800, 166, 1232076800, 2695507220, 58728198, 151198095, 499,
672231278, 2147483651, 44, 67152, 175382528, 706740224, 17, 50135040,
704643087, 170, 2663512074, 536870928, 4235467550, 0, 0, 3563061248,
3221225473, 307, 0, 0, 127088, 837840640, 4246475030, 0, 49287168, 0, 0,
0, 0, 287944704, 0, 1091232768, 4526, 0, 0, 25236133, 31, 0, 51490336,
285, 5699, 251873024, 581567057, 1293751425, 45752595, 0, 18511872,
345047040, 0, 0, 184549376, 3, 487656080, 1358954497, 169, 1895825408,
1742621, 644153344, 1119952, 0, 3356535122, 203522, 450625536,
3758295777, 296612122, 0, 16476672, 0, 1932976, 51068928, 1056973215,
3758096384, 7541, 251658240, 512073993, 2791436489, 1, 119275520, 657792,
45883392, 129451, 3385088, 4233297920, 0, 0, 343932928, 3, 0, 1191472, 0,
0, 0, 111214592, 1904961, 341803008, 277892560, 268435473, 8066, 18080,
0, 3807379456, 2, 3497000960, 1, 54394880, 2679111680, 30444802,
2851405824, 0, 36696064, 2779774976, 1, 561512448, 637534208, 472,
1195497443, 10923540, 761593856, 199360, 0, 0, 28464640, 67764224,
3641823697, 518046169, 120582, 0, 2992046080, 1242638913, 45, 4080077549,
2685712, 0, 0, 0, 127506, 3002686976, 4265476403, 143696, 172576768,
2738880512, 1610612753, 4393, 3305111552, 48, 8642, 10948096, 144834560,
177744, 0, 0, 1610612736, 462, 0, 32935936, 1461, 30498048, 442302464, 0,
0, 71705, 1879048192, 4254, 1082688, 0, 9193, 0, 0, 1180960, 0, 64305,
4026531840, 51183654, 2751474144, 23629865, 3614442085, 3489660929,
1775829021, 1480337, 2424832, 179306496, 3, 0, 436407056, 2679251,
684731473, 537037824, 42408745, 2030043136, 494567426, 702545920,
540065819, 4647, 3338666608, 48, 1127219200, 3195410, 818479104,
3254779904, 22733303, 129175, 0, 0, 29008, 169209856, 111205, 2874624,
325058560, 3489687729, 530166032, 308281344, 807884317, 2993095318,
1713181265, 496279986, 0, 1610612736, 701, 0, 0, 0, 0, 0, 603979776,
3759477016, 0, 69120, 0, 0, 0, 120899, 17853696, 0, 1092016, 293769216,
1471152492, 2, 0, 184560688, 432, 9282, 57344, 205389824, 755124033,
281301248, 3258974208, 1073741840, 203031263, 3959422977, 281149481, 850,
805306368, 4445, 3893412016, 281096363, 0, 0, 0, 0, 0, 12507, 1879048192,
8019, 387804432, 17, 0, 3122688, 118161408, 1, 298983424, 1528898101, 31,
4230086656, 671088640, 278, 0, 1621450240, 2656, 18711408, 285,
1752170496, 1, 404619264, 133649, 0, 2567962624, 29, 0, 1879048192, 468,
2518679552, 29, 0, 1544667376, 252, 6096, 2576128, 0, 2635936992,
53194765, 572522496, 31, 0, 0, 0, 0, 32556288, 0, 1091984, 0, 118923,
2700885504, 8049, 3472909952, 273166384, 3290431488, 808507392,
125960890, 3523215360, 48, 321912832, 1879048209, 4096, 0, 272969728,
2044723200, 1073741853, 264, 164848, 0, 2247098368, 901122, 818544640, 0,
0, 2797613261, 2700901405, 818610238, 0, 379351040, 2096, 0, 0,
3020084656, 258, 721431529, 553823504, 45420587, 3071290033, 271220994,
734003200, 2701304592, 4138, 3641715712, 271290672, 66217, 2686379264,
760549419, 0, 271187968, 0, 838146560, 4617, 3456312864, 495366192,
12492, 0, 564723712, 2667577345, 522195441, 788534034, 2684354563,
320150907, 3115712, 53420032, 1948259088, 621855, 566689792, 0, 0, 0, 0,
4306, 2233275344, 260, 226494286, 3489781267, 819138769, 420678977,
319631106, 16887823, 4026531867, 584385293, 200225, 526782464,
3046120519, 3761161729, 7575, 3523215360, 51249180, 789589343, 3,
4097376256, 208609, 0, 590420005, 3789030417, 4032693005, 184758001,
51253541, 191961377, 28354819, 3660120064, 1123089, 0, 2183135232,
3489660945, 779, 4060285840, 275914781, 2291138797, 1, 0, 536870912, 5,
189792256, 3, 4216258560, 199600, 284188672, 3493855232, 4029185794,
578814603, 1006841233, 530624525, 69573, 1342177280, 323231597, 0,
53309440, 0, 2432674560, 511, 268435456, 529866920, 2031166087,
3221225474, 605290992, 0, 0, 2635164214, 1075351818, 655, 0, 49487872,
3299881193, 1102066432, 820779779, 102433568, 9, 0, 1342177280, 813,
738335040, 44257027, 70497, 1610612736, 815530797, 1342177280, 53313704,
0, 0, 808124416, 0, 35815424, 2418016982, 3204655389, 259, 0, 293642240,
3665834218, 17, 4080861184, 922746881, 432, 852492288, 3206640,
820707328, 3238037120, 493961262, 403, 2821376, 0, 2718085472, 379154465,
0, 16383488, 0, 0, 0, 0, 3201536, 730464256, 3557913424, 48, 12509, 0, 0,
105728, 0, 0, 2970527744, 4874, 57728, 0, 1107, 33192448, 0, 0,
4030205952, 1085319377, 808691216, 7435, 3743343392, 47321128,
2679111680, 2686669583, 405413735, 1, 523268096, 252799790, 2058755,
153616384, 200448, 0, 91226112, 30964753, 0, 1064192, 51322880, 0,
554513664, 791, 1146928, 4027338752, 576716800, 120095, 285933568, 53008,
0, 2023, 286931712, 11146009, 2332193841, 320389425, 1811939328, 3127042,
323158016, 3506469360, 488910896, 0, 30550016, 0, 0, 0, 1679820243,
33067295, 0, 0, 323166208, 1083273094, 805306378, 4211, 0, 0, 1085285898,
275210, 821493760, 671872, 0, 0, 32797952, 651427840, 201326592, 30,
179316223, 1610697226, 535, 2634681040, 526262432, 761278708, 2436026899,
2698, 691760, 3758252032, 426848661, 3761432339, 142476070, 3826462129,
321753138, 12537, 3221225472, 821563776, 3842020064, 320442418, 0,
3335680, 296681472, 4195444000, 48, 0, 0, 0, 3288334336, 16515120,
2323715875, 2147483695, 4021, 3490728128, 34455809, 2627731456,
1342509066, 145, 2770176960, 303587367, 0, 3195136, 818421148, 0, 0,
67972, 2953392640, 2663, 2534528048, 3690520, 0, 0, 0, 2535418064,
272728110, 771830495, 3778206995, 4909, 1194384, 517083136, 2321614484,
2704468015, 853872745, 3809551073, 321798450, 1764755760, 2436032784,
739840400, 2231392240, 265, 2795516642, 2662145, 853479715, 823340832,
275284006, 1871, 0, 853540864, 1150976, 38195200, 2293242530, 3004929, 0,
3708915744, 45, 1073741824, 4028647170, 704, 15741392, 53334016,
3288406258, 0, 61490, 1996697056, 40780280, 0, 1073741824, 2661, 0,
53329920, 10024, 24067328, 0, 4177526784, 32886951, 0, 1879048192,
4088660176, 4160896913, 299524146, 0, 1342177280, 3510370512, 1,
13688832, 795947766, 1360879635, 272372527, 0, 0, 1689334527, 2703057408,
855245613, 4162006977, 13668658, 806359481, 3004435, 0, 1979711488,
302243856, 0, 3224565248, 27864977, 1376927920, 321925284, 2508193792,
3340032, 0, 4177725584, 50, 92243, 2166098688, 855249421, 0, 0,
483393536, 240, 585170944, 0, 0, 976224256, 1342177520, 815, 1191182336,
30, 9726, 1023232, 574619648, 208704, 0, 4024, 805306368, 639434903,
1115776, 0, 2646605824, 31, 0, 1163760, 0, 0, 1879048192, 3896378088,
704643073, 797454345, 69931, 3492130304, 2854551787, 672179104, 166,
791744988, 3781824003, 5780, 3328, 179265536, 0, 2952790016, 668,
2432696320, 29122590, 111275, 1370663424, 157157897, 1780336, 0, 0, 0,
471007232, 2684487265, 529789095, 0, 1074990080, 6957, 2988125664, 434,
0, 3508592128, 651690799, 4211081216, 53456906, 3295785681, 1639091712,
2963738676, 1, 53460992, 0, 4042908672, 460397841, 0, 411500544,
60891569, 1613137665, 8105, 3791650816, 6406393, 0, 0, 0, 159072, 0,
111227, 32888576, 4191485952, 1509949440, 6, 63983, 28475392, 0,
3156057008, 25616818, 4107277102, 268435472, 2288652239, 3256560753,
521847218, 3385963201, 1610612736, 2673, 1912602624, 455827890, 2331,
2417732864, 383, 1126576, 516382720, 1533018112, 31, 4262658048,
1677721600, 288408050, 3440506777, 15, 0, 0, 4029521920, 0, 1359616,
63242240, 3640655872, 319713326, 1898982414, 31, 0, 2166198080, 471,
3296729238, 0, 4261085184, 0, 0, 0, 2700729856, 35061905, 1459668160,
453730352, 2478833664, 1074375426, 320406278, 385875968, 265, 3269459968,
599569, 0, 503316480, 19, 4890, 0, 320667648, 2870958752, 25, 63968024,
288415745, 819860238, 180209, 319672320, 2781937023, 29, 0, 0, 487591936,
250611996, 3509644307, 4255388430, 1695747760, 496017662, 0, 1375454976,
821170701, 4026727089, 319754544, 1684021969, 3759344413, 3595309564,
2921161809, 280, 1679939146, 30821149, 821822259, 1225986001, 319795670,
3286237184, 21272576, 451940362, 1, 0, 8334, 2437220096, 215, 251658240,
325, 0, 21300224, 0, 1258291200, 272, 2665480192, 3758096386, 1151603791,
956426177, 340648410, 1354768649, 1879048212, 710, 1248864, 298033152,
2983198720, 2147483663, 341, 957630912, 32649225, 261173496, 1899034131,
4879, 129376, 27471872, 2424307712, 10490112, 2684485632, 0, 307044352,
40980, 0, 2685009920, 3877023216, 432, 3271599558, 1609745, 4090101760,
2684445009, 44609701, 1637949658, 18022657, 0, 0, 291061760, 0,
547706368, 1746868360, 3994460369, 9531557, 703594496, 816131843, 5805,
773081232, 3584, 3006267392, 2180395520, 45748272, 0, 0, 70017,
270483456, 1153696534, 1, 528646144, 3509583872, 21282065, 1153302528, 1,
454701056, 658598688, 536870930, 4660, 1163920, 0, 120568, 0, 0,
4278190080, 22372385, 83195, 2585856, 295763968, 1, 527536128, 0,
1359138304, 7551, 3841982464, 482, 119194, 10918656, 0, 467670384,
340861253, 1345323008, 1610612754, 57365, 1030384, 52834304, 74564,
10804736, 470679552, 3440476721, 4029542724, 4194387146, 234963458, 0, 0,
278757376, 1981808640, 32943888, 0, 0, 0, 1987051520, 1360537104, 4647,
1277007232, 24944810, 3896508416, 2696705, 0, 0, 0, 0, 0, 0, 704643072,
169, 0, 2030080, 150208512, 0, 297930752, 2132803584, 1, 0, 0, 288616448,
968, 0, 2837970944, 0, 0, 0, 0, 0, 0, 48488448, 0, 2684354560, 2667, 0,
168865792, 1932525568, 17, 4053, 1257184, 466092032, 0, 33058048,
31391744, 3205642081, 36392963, 0, 3489660928, 631243343, 153046320,
263467300, 100478, 4027111936, 20321070, 0, 280178688, 3256977536,
32071441, 0, 1476498960, 497, 3747610624, 4, 617152512, 3590324225,
275792336, 374, 4037266688, 7560, 3456106496, 30576803, 1249902592,
4044622367, 399835832, 3489660928, 411549859, 4879, 16754176, 0, 0,
22011904, 1135607808, 32611871, 4003069952, 2062557553, 504, 2022703104,
3758096384, 758, 0, 497549312, 727711744, 536870915, 336, 2058864, 0,
127869, 0, 0, 4026531840, 305074483, 2413821952, 1367908106, 151,
1006670144, 14790659, 121055, 16464384, 0, 0, 0, 4092592128, 268435457,
14484157, 3187841199, 42, 2348, 0, 0, 4263317568, 263471142, 41240,
3783816704, 118625063, 2516582400, 292041065, 0, 0, 0, 1608240, 0,
3095396352, 32866570, 0, 1509949440, 3585, 7485, 33121792, 2884833845,
1528777392, 16252417, 129335, 0, 0, 1905536, 0, 758129147, 1631882240,
60, 0, 526041088, 2432775098, 3221225472, 325586956, 0, 33075200,
743495660, 2060062, 871038976, 202145, 322691072, 71322, 539987456, 2663,
0, 6488064, 2043674624, 1, 4274126848, 184944, 0, 2213543936, 30,
4221698048, 0, 0, 0, 3489660928, 4238, 209472, 525783040, 0, 0, 0,
182624, 10366976, 13034, 0, 854327296, 3523215360, 287531284, 3148884122,
3337503, 4221829120, 1, 411631616, 177329984, 536870922, 854264438, 0,
22388736, 0, 4026531840, 297213849, 2936012800, 16, 2802843648, 1,
118882304, 108273, 271454208, 2788163584, 1629512449, 119210549, 1, 0, 0,
0, 0, 587202560, 10498373, 259011305, 21306624, 808583168, 520093696,
46162245, 0, 0, 299565056, 1, 0, 3934257152, 4047842048, 4305, 1102352,
0, 0, 1282304, 0, 0, 489558016, 1048654823, 4044542227, 254087346,
3909091328, 41554227, 43566, 3221225472, 639, 700512, 521539584,
20971520, 1074317073, 4097449330, 3221225473, 179310760, 71253, 17806848,
414842880, 691249, 282189824, 367001600, 536870943, 3539077808, 1,
179326976, 11545639, 1879048208, 439, 251658240, 340939015, 83267,
17239296, 559349760, 0, 0, 66032, 536870912, 2767789437, 3657433088,
31404070, 3806330880, 1342177282, 3613461131, 2736294321, 6467595, 0, 0,
0, 202160, 0, 94055, 537199872, 4055, 2835349504, 51773764, 3465626792,
268435457, 789, 672229376, 284, 2109809198, 537740301, 790, 1771504,
51732480, 0, 2599168, 404094976, 1928256, 453345280, 0, 1342177280,
59834948, 1225412912, 324, 2142, 3221225472, 516298483, 486539264, 284,
0, 0, 0, 0, 0, 1223817110, 19144193, 2748514304, 699232, 3759538176,
2041577472, 537121794, 2731, 35328, 178999296, 2361393152, 30, 6283,
161360, 0, 2333201589, 805306392, 4481, 129152, 178995200, 3363831808,
3760088833, 812519508, 0, 0, 0, 1342177280, 7535, 35472, 385085440, 6367,
17072128, 0, 0, 0, 3892406311, 468225, 2748383232, 134217728, 169, 0, 0,
0, 0, 0, 2469396480, 1696534, 410124288, 170928, 0, 1628438528, 1, 0,
2583717552, 499, 1791095654, 1073741840, 2653, 0, 0, 64291, 0, 430964736,
1196368, 0, 66309, 2418449920, 740035963, 2734686208, 226210076,
360710144, 268435459, 12176, 122880, 379883520, 368170890, 2953655299,
507, 369300960, 18436261, 0, 0, 3905617920, 1778408801, 3840, 0,
3758096384, 655, 1053952, 0, 0, 0, 35848192, 15, 0, 0, 0, 363134976,
1728053249, 496140785, 1545601024, 2684836097, 450, 1174421312, 260,
3263297494, 285444609, 3157983580, 4010432049, 361, 0, 2684354560,
4331149, 3607101441, 265122152, 9160, 0, 3892314112, 168049, 14020608,
305139486, 2601474, 283049984, 0, 0, 0, 251677696, 263847936, 1, 0, 0,
805306368, 500040028, 2701287616, 22806563, 0, 10773760, 0, 1040896,
2412544, 0, 2415919104, 46924415, 2383424689, 271372595, 0, 10917120,
4121427968, 137329, 0, 3099590656, 31, 0, 0, 49987584, 92436, 0, 0, 0, 0,
70311, 3221225472, 2691112768, 2818572288, 41, 0, 538035968, 604446596,
1, 0, 3328180224, 17, 820314112, 124896, 49291264, 2368733184,
3224430337, 2562, 2566914048, 366, 71707, 1104776960, 4164092362,
1459811569, 15, 1545613539, 17604608, 453705728, 0, 523476992,
3177185280, 1361284874, 3635355345, 570425345, 362, 0, 0, 632094720,
3254779904, 23974360, 2276458496, 3252132098, 809, 0, 0, 127888, 0, 0,
301989888, 268357673, 0, 18201856, 0, 838860800, 12161194, 3112216988,
31, 1758330880, 1132945, 0, 0, 0, 794624000, 657984, 4767744, 128817,
30839296, 0, 3641696096, 304951553, 92399763, 1912304, 0, 1677721600,
494268689, 171001059, 2861066, 0, 118098528, 168460327, 0, 28402944, 0,
973764560, 31, 599791576, 3489661168, 8116, 0, 0, 1359028934, 3520741663,
2623, 2551245568, 167, 741343232, 32419858, 0, 3758096384, 378642931,
1540370847, 4043776002, 488575089, 3507569856, 488312876, 128512,
23634688, 0, 505390592, 263, 0, 3758096384, 3643473930, 1090533169,
524423184, 42603, 0, 4516, 1677721600, 501, 0, 1610612736, 528875760,
1828814944, 17900020, 0, 2952790016, 4661, 0, 0, 4191163258, 234893570,
3602059396, 2701131777, 293662736, 2227299044, 2415919105, 4097, 0, 0, 0,
0, 271843328, 1, 526139392, 120873, 2684354560, 4682, 1150352, 0,
1920010024, 1612883728, 4210, 0, 0, 1913651200, 16, 119865344,
1662022209, 17367053, 1928398640, 3506908688, 4210, 0, 275976192,
2156920832, 17, 120324096, 705721009, 275943687, 0, 536870912, 7810, 0,
0, 65898, 16719872, 0, 0, 16424960, 153213304, 10, 0, 657680, 265433088,
83456, 0, 0, 0, 0, 11008, 1879048192, 2694189419, 2081521680, 37327101,
155191202, 3758096394, 2679, 1078480, 0, 0, 805306368, 255532335,
1175409, 18784256, 129342, 0, 0, 822083584, 378089961, 0, 1610612736,
4211, 152000, 20303872, 2539651072, 566272, 120913920, 621835073,
275980331, 0, 2148479488, 3656385272, 1, 0, 41947, 567802880, 26022476,
587202574, 272224262, 1934664669, 4028648970, 2748973114, 419430400, 8,
41980, 0, 0, 2147554512, 24, 2996831668, 32914433, 2570, 1051728,
168423424, 31457280, 31, 0, 1595902208, 50, 0, 17776640, 130088960,
100736, 0, 0, 536870912, 2570, 39312, 0, 0, 0, 579338240, 128560, 0, 0,
0, 0, 0, 0, 8681, 2983895296, 8046, 3590324224, 273, 1481762864,
1073741826, 826, 806384032, 44, 1901077534, 16, 0, 469762048, 49655847,
0, 0, 0, 0, 0, 67817, 325632, 0, 436207616, 3842, 1467, 234958336, 0,
2818572288, 274, 124955, 18022400, 0, 1165072, 81653760, 2149580800, 22,
0, 2602522976, 20, 3193962496, 33045002, 248315904, 2051280, 0,
3441426432, 2, 0, 2064800, 377626624, 1410464223, 1150978, 3598385152,
2483069649, 17, 427874232, 2, 2729312256, 3238189360, 271, 420478976,
269587424, 2603, 0, 283664384, 0, 3221225472, 4112, 2316376352, 163, 0,
2860544, 0, 1459617792, 527454245, 112239572, 10737922, 2748645376,
369186032, 28, 320864256, 16708320, 2748776448, 172192, 171749376, 0,
2075136, 258, 2382364672, 17, 2907701248, 4026531857, 2756975920,
14684928, 45072384, 3808440826, 1343526671, 457, 0, 0, 0, 23623936, 0, 0,
294420480, 2358251292, 4278326545, 504831834, 2248146944, 251, 7406,
24025600, 261160960, 1062800, 272855040, 10177, 279149824, 839455116,
2701131776, 47, 10879, 4026531840, 565, 3288395952, 31, 502267904,
234984477, 0, 0, 0, 42657, 1956608, 0, 805306368, 170, 3726651053,
1890201857, 501157851, 122384, 31318016, 0, 3492131584, 255008388, 0,
9572352, 8466439, 2164855827, 8080, 687865856, 277323946, 119669, 476160,
216203264, 4026624833, 49, 0, 3221225472, 506401000, 2885681152,
285974798, 1771111308, 10936095, 102825984, 4127195136, 49659952,
2473598474, 3208495, 186580992, 1087953, 28545024, 0, 1610612736,
4187426968, 2058400, 0, 1241513984, 10, 0, 855638016, 487600488, 0,
234891520, 0, 204656, 0, 368050176, 2434111745, 799, 2030043136, 169,
526385152, 30785539, 51183616, 3187875727, 469, 525336576, 3522554115,
615908097, 1, 0, 0, 0, 0, 0, 523632640, 3118506676, 1093886208, 717, 0,
0, 43871, 2150272512, 591207704, 1050977, 0, 1886391948, 1359414800,
118100080, 1077393, 275808256, 4053794816, 1342177295, 8026, 956439648,
318788090, 0, 19162112, 0, 0, 0, 1539309788, 11149085, 658243584, 0,
4029759488, 244386867, 538331931, 4460, 0, 0, 0, 2636032, 2707161088,
1077296, 0, 0, 631552, 393412608, 0, 32931840, 0, 1070592, 729743360,
1928016, 0, 2510, 2613248, 836632576, 1133265, 0, 6837, 1073741824, 4209,
0, 0, 1893729815, 3224068112, 118689904, 286290209, 275841287, 0,
3238468864, 4209, 0, 0, 1903232792, 3491073040, 505741489, 2298607168,
275878142, 4040168842, 1607170, 361431040, 0, 0, 0, 821996032, 361568386,
1712397888, 362, 67884, 3775476224, 153619014, 705729169, 278049033, 0,
2970167040, 124656997, 806392560, 53149961, 204598866, 2419085315,
2800093746, 3037344336, 52375823, 3628140834, 4043908609, 154735142,
3036691921, 278073510, 2059403264, 1610612737, 720896270, 2114962832,
267, 2958032896, 1342177281, 7552, 0, 25182208, 500179357, 18, 0, 683440,
413888512, 3278897152, 1073741840, 83167796, 4060769520, 413896956,
1099008690, 3224354049, 361237101, 3942727889, 16, 128675, 538222336,
361110945, 1, 174903296, 0, 3758096384, 7591, 0, 0, 595591168,
2715397104, 800000618, 4278207152, 49688576, 0, 0, 0, 0, 289701888,
43460, 10937088, 7826, 1126832, 52416512, 0, 251827968, 159973376,
204785, 378896384, 1089480210, 3221225473, 799, 0, 21049344, 602931546,
2983800338, 3904176927, 82689, 179589120, 983708, 270548224, 74449447,
737159744, 523362474, 129542, 0, 0, 0, 4028903424, 0, 1034496, 154468352,
4060778112, 49, 0, 1621877760, 446, 1087744, 0, 0, 3272960, 0,
3624002976, 265637929, 138454711, 10848029, 5439488, 1461122991, 47,
2725260083, 536870914, 28, 0, 0, 3408926026, 15, 2884173824, 0,
455053312, 1928425349, 24065024, 716111872, 27216, 530882560, 839951125,
2417315082, 33358346, 1141518817, 171061269, 0, 3489660928, 6361138,
1940399, 0, 8801, 1111040, 0, 0, 286724096, 41824, 0, 0, 683200,
524206080, 0, 0, 0, 2365587456, 17760273, 2426534035, 251663616, 2613, 0,
264757248, 420478976, 806455568, 4458, 3992977408, 174968852, 1681915904,
17, 0, 1428096032, 11108515, 71303168, 360991, 0, 0, 0, 0, 2952790016,
8036, 0, 20037632, 0, 0, 0, 92432, 3108864, 2179989504, 1090445312, 799,
1032832, 171225088, 68043, 0, 0, 2060560, 280543232, 1408305559, 599058,
3611164672, 1258291201, 3843, 0, 16575744, 152109056, 57392, 275398656,
1845503713, 2, 2799304704, 159216, 0, 442626974, 18, 604307456, 2040865,
4029673472, 2395, 2553856, 3905421312, 1, 0, 1936762681, 536870922,
348524591, 2818638689, 34070779, 2558567230, 2164266768, 2739011731, 0,
495562752, 0, 619008, 158007296, 922746880, 163, 3846218554, 15,
2737569792, 218788816, 9, 118980, 0, 0, 0, 322281472, 2465209929,
2417622784, 4030, 0, 18198528, 241214177, 16843008, 26673152, 684849, 0,
5441, 3489660928, 7940, 13680, 25022464, 101021, 1372670976, 4374,
3523215360, 281, 101023, 18469888, 1305149440, 670272, 0, 972158853,
3221225482, 637997208, 0, 493940736, 2854236954, 24, 0, 0, 0, 303038464,
0, 4227334144, 2986344448, 493625836, 2988441600, 1073741846, 291048046,
1, 0, 2577399808, 16, 0, 57040, 0, 2175922753, 17893898, 0, 0, 20033536,
0, 1178112, 3639148544, 1, 496259072, 3164602368, 2300938, 0, 0, 0,
2780942736, 3240144413, 4358, 268435456, 285, 607125504, 2, 0,
3726449296, 293835044, 0, 17404672, 0, 2499805184, 265, 15738705,
1073741826, 61474, 2516582400, 2, 41927, 0, 0, 0, 0, 41929, 0,
2747662336, 1119904, 0, 3512729600, 2433330462, 4236771417, 103600,
495546368, 155189248, 18, 0, 3826293120, 304, 3978, 0, 0, 4179458960, 47,
999292928, 3, 0, 4110417920, 174395437, 0, 2148159744, 449, 419430400,
413757904, 2843738112, 1375187992, 424614057, 1779413600, 473, 0,
16469504, 0, 1778384896, 360, 0, 0, 0, 0, 0, 1348468736, 1106340610,
7810, 3232, 0, 1242, 31019520, 4190371840, 0, 0, 3982555587, 3781758466,
4248, 3020945920, 273, 3553624064, 15, 0, 0, 11706368, 2672820224,
1879048207, 4327, 1938432, 318836736, 467664896, 4050230801, 8094, 0,
528277504, 664797184, 23679491, 58195968, 1137985, 0, 2994733056,
4026531840, 2, 1109328032, 257, 0, 0, 551616512, 1054448, 0, 4228907008,
32809984, 0, 2835349504, 264602107, 33556335, 3758096387, 7555,
3539992576, 34, 945, 0, 0, 1777088, 306495488, 4219469824, 2439952,
557383680, 3321888768, 465, 2097152, 16, 0, 0, 0, 63935, 0, 0, 318767104,
454902013, 0, 28371968, 146145280, 0, 294445056, 9843, 1634272000,
4181269277, 1483441, 5406720, 1754267648, 4026531840, 4218295949,
1661093793, 501, 0, 3489660928, 749, 0, 0, 0, 11086848, 0, 0, 0, 0,
16363520, 0, 0, 0, 3684696064, 20153088, 490995712, 0, 0, 7514, 16364544,
491651072, 121392, 0, 0, 2695588096, 475, 3070230528, 2834903, 43588, 0,
634917459, 1056964608, 37, 0, 16519680, 3913482240, 3117777, 295768064,
7453, 3223276800, 4149, 3204448256, 21938210, 1428160512, 536870913, 179,
874460992, 293781784, 6700, 1907484928, 7536, 1769824, 39489536,
4041275734, 15, 159449088, 285212673, 29, 63826, 0, 0, 2432741824, 3843,
4138793296, 17400578, 0, 251711968, 255, 3104, 0, 0, 1052352, 0, 0,
3758829056, 707, 822083584, 13386095, 66591, 4028209152, 461048407,
1928928, 0, 2705327894, 1344798767, 12193, 0, 0, 1910505472, 17,
185925632, 69456, 0, 2290219966, 30, 0, 0, 297865216, 2253390687, 31,
2839216128, 0, 0, 68054, 935424, 0, 0, 0, 7653, 2952790016, 4161,
4043309056, 360, 670040064, 3, 4204855296, 208897, 0, 3056, 3489660928,
12193, 167772160, 302162211, 0, 0, 0, 0, 0, 72233, 1487616, 0, 16777216,
4029792517, 0, 4059462656, 8081, 2048656, 277458944, 120965, 0, 0,
1094000, 0, 70300, 0, 41877504, 1777263, 49115136, 128079, 3781889792,
562364509, 2047809, 530341888, 121253, 17321216, 0, 3055454656, 471,
3253805385, 536870928, 3617983097, 2483027969, 306536738, 120822, 0, 0,
3457217728, 24137896, 0, 23678976, 0, 1545422384, 468, 0, 3758096384,
2621, 33554432, 268, 937495570, 0, 806486016, 1181536, 0, 465567744,
1073741826, 2785484172, 234881024, 363, 479320700, 2415919133, 333979366,
788610672, 522260491, 2371878912, 1621500418, 318, 1677721600, 51,
1045541307, 1643170305, 61463, 3556851264, 46395433, 1043333120, 1,
599851008, 117506176, 321950003, 1837108081, 19217162, 644350719, 0,
455086080, 0, 0, 0, 838860800, 51, 2238709760, 31, 0, 1912602624,
455110691, 543162368, 268435483, 731906555, 4195785008, 455102470,
541065216, 1879048219, 4651, 2919244960, 263614754, 1267, 32647936,
12779520, 1, 0, 92932, 0, 0, 0, 5029888, 1977614336, 10, 315031552,
2785045281, 290, 0, 301047040, 4139, 2751463424, 166, 3988783104, 0,
4215472128, 167772161, 11, 0, 32869376, 0, 0, 0, 4208984064, 1494786,
195821568, 1185041, 0, 3523215360, 30, 0, 0, 0, 0, 0, 0, 1024486032,
28798465, 2398093312, 1090371330, 178, 1939600, 0, 128586, 1782528, 0,
570425344, 292, 0, 268435456, 7580, 0, 0, 2701245591, 2684354589, 624,
3472929536, 4702460, 751828992, 10, 181207040, 3036676096, 500, 0,
2439603200, 4673, 3053453312, 254, 0, 4026531840, 4336, 3338665984, 3842,
2768282479, 251841055, 0, 110896, 0, 2366643209, 30, 0, 1488320,
43917312, 0, 2717170176, 7565, 3875536896, 496, 750, 2180623616, 3994,
2013265920, 27, 228589568, 32921601, 4120444928, 11681, 523739136, 0,
10593280, 0, 1090519040, 33751312, 92939, 10592768, 454688768, 1120416,
0, 66246, 0, 0, 0, 4026753024, 2770337792, 1352793622, 4050, 0, 0, 0, 0,
1795817472, 1093921, 0, 73831, 0, 188219392, 0, 0, 633339904, 10520832,
0, 0, 0, 127488, 726016, 0, 155312, 176955392, 0, 0, 0, 270370112,
379707403, 680535494, 3, 0, 100663296, 11, 2523922432, 2147483670, 4609,
0, 5451776, 92603, 3035136, 4187488256, 3774955041, 19, 3200, 0,
333447168, 0, 38817792, 0, 1343479552, 5770, 3724543488, 19, 0,
3759398144, 4017, 738197504, 171, 983722, 536870912, 7440, 0, 0, 0,
2415919104, 3627753232, 121617, 2420736, 177209344, 29, 0, 0, 44806144,
2974817358, 1359365633, 4196, 1997682304, 471, 39913026, 2684354576,
105124622, 1712457649, 275001635, 128094, 1631232, 0, 3808555440, 24,
2264924160, 30, 0, 0, 0, 69206016, 31639298, 0, 2265966528, 172496, 0, 0,
0, 0, 0, 1675691583, 17186064, 0, 0, 274989056, 911279674, 2956818,
104595456, 1053889, 52535296, 127872, 2448235264, 1763705440, 1, 0, 8878,
0, 0, 469762048, 37216538, 0, 3489660928, 488505808, 0, 0, 891289600, 2,
0, 3707764736, 14, 3188786744, 17184266, 2885025792, 2818891472,
178266159, 2690580485, 10, 0, 890223200, 274940166, 7602, 268435456,
2720, 3204448256, 178270378, 243311079, 17531650, 157090336, 0, 0, 0,
2794496, 4178182144, 1503969, 0, 864026624, 2433246751, 3779265134,
3925868545, 44204300, 2745180857, 1779485, 215678976, 1725961393, 290, 0,
17616896, 8072, 621443536, 287097092, 0, 4029214976, 284, 2181069376,
168, 2652897280, 11045898, 0, 2214592512, 168, 0, 1073741824, 559223017,
0, 0, 0, 1115392, 311492608, 15730497, 175763456, 0, 3489660928, 683,
111392, 0, 113808, 2819584, 586022912, 192000, 0, 0, 0, 2795110400,
134217728, 262041893, 706740224, 16, 4169007104, 3103784961, 43, 0, 0, 0,
3556769792, 169, 1135618832, 823939858, 1796866708, 1, 10084352, 92955,
1342177280, 455938090, 4009754624, 470, 0, 2971886080, 1757147159,
1845493761, 453460400, 150057075, 3490456863, 3563396872, 1509949441,
474, 4238344192, 0, 0, 2451507504, 520688112, 1072693248, 4026531871,
583794906, 638627009, 524275738, 0, 19022336, 45744128, 123791, 0,
2442133504, 3489660930, 636029515, 0, 28487680, 71467, 4028105984,
1307836658, 134240304, 11, 0, 359168, 88276992, 4228918944, 499, 0, 0,
540, 1979730336, 6, 2677014528, 11088415, 0, 0, 11767808, 0, 3489660928,
711790688, 0, 288264192, 1621098496, 4029388560, 101452314, 2013265921,
28618753, 1175388301, 1879048221, 551, 2701338864, 413647102, 42099,
3758096384, 6311, 132816, 0, 1684, 0, 3609985024, 1, 0, 42121, 822402304,
2760053519, 4261412864, 499, 1565591048, 1352957696, 268505184,
3288334336, 3842, 715194640, 10, 100925440, 34220609, 266629382,
2749476932, 3520698385, 796527145, 1201168, 525021184, 3082887524, 15, 0,
0, 291606528, 3126919003, 1, 0, 1193472, 0, 43275, 3768703488, 378,
3422552064, 77, 1482693414, 2519554, 13631488, 1, 526987264, 686817280,
2586890, 0, 1158294016, 29, 694157312, 10, 0, 3489660928, 4027248669,
1692336302, 1075275266, 56, 15734176, 495079424, 3612, 16480256,
353173504, 2071504, 0, 1498417943, 148994, 0, 59984, 31002624, 0,
3254370304, 288555442, 0, 13512704, 0, 3251721984, 4104, 1189952,
4028383232, 196091310, 547742993, 125700688, 3758249056, 31604737, 0, 0,
0, 1118688, 34111488, 115343360, 29, 0, 2080374784, 43, 479265975,
1636348690, 79364274, 3674210305, 256, 1659962928, 3506514704, 78647394,
839934769, 274927878, 2282759833, 2701188376, 2288720011, 3356517057,
525832225, 2188384853, 3221225482, 823, 3256387696, 260, 128946,
2147483648, 2609, 2315394064, 512758152, 2262927497, 3783834904, 433,
1627406336, 171012263, 785383424, 294300162, 695, 218248176, 497565856,
1649419976, 17117456, 103415808, 672162449, 274886918, 257949696,
2446824458, 103023157, 690657, 168755200, 2372007113, 32393502, 0,
17436224, 467, 46238351, 555964896, 4914, 3388997632, 44, 120797,
1374194432, 141, 45760, 0, 995169452, 560514335, 790696034, 685952,
179712000, 3036743199, 3758096394, 102830177, 352442033, 9883808,
1958840490, 25733392, 102563840, 2869563073, 392, 720371712, 4037570032,
6280, 0, 0, 69876, 1836288, 31, 1593904528, 252, 0, 2416447744,
186255986, 3489660928, 53788996, 798, 2687631616, 700321889, 2399141888,
500, 1029709686, 3775270658, 102305888, 2333106561, 274821282,
1080107784, 10883091, 873005056, 1963607697, 322994467, 2857369600,
4052251672, 2289240645, 1, 411541504, 0, 536870912, 289804463, 1, 0, 0,
3509848832, 4155968070, 1608065, 0, 507510784, 1, 0, 1474672, 12374016,
42004, 3489660928, 2752383572, 570425344, 319160347, 765460480, 30, 0,
3256722976, 40468646, 0, 16534784, 0, 3273603200, 265, 11360, 536870912,
4515, 0, 0, 3671064576, 15, 0, 2264924160, 46055680, 3002146794,
2963540481, 2681, 369098752, 35295712, 700490750, 2, 3651665920, 1,
39309312, 2319450112, 1342177290, 632, 1226213520, 257, 1154482176,
268435487, 7879, 2992, 268980224, 909115392, 1, 0, 143424, 31846400,
1035993088, 10, 2324824064, 2836020577, 12943615, 983630210, 10922243,
2795962368, 639585568, 163, 1074869248, 1352867859, 59310154, 2719678912,
322973862, 1506871571, 1725954, 2859008000, 3489868160, 30, 3980,
10919936, 2756116480, 0, 0, 64540, 538884864, 408686822, 0, 43028480,
590348288, 30450691, 358744064, 522155184, 12, 810591001, 19981066,
872214555, 185810897, 322941091, 2872120408, 815995906, 167905941,
303956433, 488026275, 313616815, 2919323658, 176361746, 3743260576,
168935467, 176160768, 3775085585, 2578, 0, 168964096, 0, 3022080, 0,
1561374384, 367, 0, 555976960, 4004645395, 1, 0, 814809293, 2684936970,
3650093222, 1728721057, 1716243, 13126, 1610612736, 2676, 2701234720,
292, 2449473536, 3221225473, 4150137106, 234893329, 286421155,
2450596917, 805306369, 127336482, 103024, 20455424, 487, 2684354560, 234,
0, 0, 74780, 2952790016, 1785266275, 1190897, 0, 2419139692, 10,
4164616192, 503511441, 271, 2810183680, 2147483672, 2678, 3254779904,
525598466, 75057, 0, 4980736, 2634022913, 2, 0, 0, 321716224, 689472321,
273, 482344960, 31107328, 0, 2868903936, 471, 2866928303, 29, 3668639744,
2736630433, 37044478, 3741397665, 2436013570, 849019353, 1007303553, 392,
100411, 2684354560, 849680514, 1962934273, 321536011, 948961280,
3515361296, 2284263554, 24785, 411299840, 833617920, 3759685130,
3607822877, 788529153, 273, 142606336, 25843729, 0, 0, 43220992,
1008794454, 536870922, 57366, 2648708624, 10, 0, 1092599808, 2305952315,
670657, 0, 2510290944, 2173268758, 279646278, 1962934273, 393,
2530213888, 10, 554958848, 1427675024, 525504985, 176279978, 29, 0,
1610976, 0, 1810890752, 2441690655, 849739804, 739453553, 176153057,
639631360, 29126914, 0, 0, 518684672, 835715072, 268435466, 2883590291,
0, 178315264, 0, 1076803840, 7582, 0, 527302656, 0, 1881479936,
4115273877, 1, 377896960, 68184, 2147483648, 23658949, 15730879,
172691456, 358612992, 2180257309, 4117, 1560453920, 253, 0, 0, 0,
1169744, 3911680, 0, 806675968, 4021, 2065208848, 42, 3658487141, 17, 0,
2651883216, 272, 4062183424, 0, 0, 1207959552, 412361029, 127397,
25853184, 2689466368, 4143972352, 173010979, 0, 0, 583008256, 1, 5959680,
129680, 271444224, 7452, 1845493760, 412533235, 69801, 0, 2720, 1912896,
0, 0, 1099529472, 398983842, 855638016, 778746, 320799021, 3247014147,
4221050769, 1090519040, 526807057, 822157943, 10, 2287140864, 111441, 0,
2229285777, 1091635224, 579736385, 3993166865, 379785246, 0, 0, 108, 0,
0, 92679, 1879048192, 5794, 4026531840, 466, 199296119, 2, 2283601920,
2164260865, 173075969, 2180057875, 24, 0, 158768, 0, 2183146995,
30896152, 829095936, 1, 0, 147849216, 2, 0, 3772781264, 290, 369191072,
1879048210, 780538129, 2634022912, 36712737, 0, 1073741824, 7587, 667952,
0, 8968, 1610612736, 8069, 2214592512, 50442274, 113246208, 2, 0, 141696,
0, 69891, 1373000704, 3595705701, 1344103729, 493162966, 2421174837,
1075601162, 428350811, 2937936608, 268354005, 1685073953, 1909867549,
146607487, 1948080992, 492535845, 1676793406, 3520478237, 7523,
3909091328, 13, 2538602496, 2, 0, 0, 527110144, 3028292494, 1628076815,
57368, 1476536208, 507, 0, 32925696, 3515416576, 1, 526913536,
1818351009, 1104519953, 28712282, 3942717920, 35721378, 1520555433,
2178263837, 3584361250, 2801968593, 33161685, 2255486976, 29, 3473408,
139729, 0, 0, 0, 1864368128, 318947297, 526426400, 3304062976, 10855695,
0, 3993003520, 525623795, 0, 1373236992, 2781617576, 0, 880640,
1591779626, 284945951, 667484282, 3892314112, 16015364, 418423084, 224,
2703818752, 3808428032, 43827233, 2171600896, 1342177310, 583, 1943536,
0, 0, 805306368, 31, 2735817872, 167, 101000, 25855744, 0, 1169776,
503386112, 2229272576, 3758096414, 694, 2048144, 0, 1036122068, 2, 0,
2920851360, 169, 0, 0, 3613196288, 1036513, 0, 592519409, 279311360,
13180168, 872415232, 285122725, 0, 3788720384, 2719, 4261412864,
466075651, 544214824, 18, 0, 0, 0, 0, 1360678912, 6312, 0, 304148480, 0,
23705088, 649003008, 1903888, 279453696, 0, 3221225472, 2321227570,
3558102273, 30, 10777, 2684354560, 4097, 1616032, 32927744, 2836401443,
24, 0, 2617447232, 276, 0, 2684354560, 1762202001, 487739137, 252,
2441084928, 3277314, 851836928, 1174405120, 175558981, 3379643721,
1342177282, 3901489623, 907023713, 3, 1759510528, 1123596801, 2703,
4162231472, 529535005, 0, 1910528, 0, 0, 0, 2754609152, 29, 0, 0,
1945600, 1889533952, 1876253, 0, 4079984896, 43602178, 2565865472, 1, 0,
1905040, 0, 202375168, 49944560, 584777728, 26320, 0, 3351248896,
18535424, 0, 697520, 0, 0, 1073741824, 12192, 2315255808, 17727508, 0,
1342177280, 750649369, 0, 0, 1388314624, 10558738, 4194697216,
1761680050, 44, 0, 49940224, 0, 15736080, 413536256, 924854512, 18, 0,
201760, 168947712, 3683647488, 30422273, 0, 1476048, 4030464, 2630877184,
22, 4217176064, 1183713, 0, 2526019584, 10, 0, 3941604576, 25, 71952,
1610612736, 4638, 1083344, 0, 1553989632, 2445329, 0, 3305111552, 50, 0,
1342177280, 844308357, 553824032, 226439209, 933232640, 2147483666,
698683529, 2382683888, 9945125, 2347761664, 29, 2321948369, 1138033,
511983616, 2046939514, 1902646528, 2321416720, 1761607681, 489742699,
100960, 1882167040, 6309, 1038864, 0, 1377828864, 4037414175, 257036759,
1241660976, 3842, 286261248, 2415919133, 613286097, 0, 273121280,
258998272, 3297042, 641925120, 1094080, 0, 0, 805306368, 2564, 0,
4028952576, 782237696, 1879048209, 734, 0, 0, 0, 0, 0, 1275068416, 505,
0, 1342177280, 2564, 2024208, 0, 3252682752, 2415919106, 4166, 100663296,
499, 495976448, 17, 0, 1085488, 0, 876730703, 2147483888, 4186178041, 1,
0, 2968454053, 18540289, 4196466688, 4262090769, 16, 890306169, 11151106,
0, 788529152, 161, 0, 2432770304, 174522966, 1, 4026863616, 2828009472,
2415919105, 4400, 0, 0, 64669, 0, 734003200, 3004285264, 11, 0, 2014208,
424939969, 4043491233, 288378883, 2446394679, 0, 0, 0, 288387072, 128121,
0, 0, 0, 0, 74968, 2415919104, 6912, 754974720, 161, 0, 3489660928,
441457932, 14686128, 176168960, 127889, 823132928, 43061715, 15,
29872128, 0, 0, 3001286656, 4110417921, 286425588, 0, 3522191360,
3001552827, 106161, 0, 1266752515, 18, 24379392, 1627389966, 363,
772800512, 4026531867, 4096597941, 2500848689, 46, 92434, 1342177280,
2344944231, 120737, 0, 932195294, 3401729, 530710570, 0, 0, 1777464446,
10, 103350272, 4144160704, 305, 66673, 3238098688, 7681, 3070230528,
377569675, 0, 1104606720, 7821, 0, 489852928, 1539, 2971982080, 2670,
2584890784, 277, 3051, 18888448, 0, 0, 322670592, 125829120, 240,
2344484864, 1, 0, 0, 268435456, 570622171, 1157627904, 524341274,
2308964352, 1879048214, 359075893, 503316480, 26, 286261248, 10945264, 0,
0, 0, 1622147072, 31, 290521088, 658496, 307081216, 1202718115, 2,
716046336, 4143972352, 169, 292552704, 1610612976, 439099080, 160337,
415043584, 396361728, 3489660944, 4171, 3640763408, 51060736, 0, 2673408,
204341248, 1, 0, 78334, 10560000, 4194041856, 2054001, 0, 69232,
2694915072, 4167, 555562320, 5595297, 0, 25939456, 0, 3422622416, 395,
1418723328, 25938690, 0, 3070230528, 13, 92190, 1073741824, 49815250,
939524096, 47, 1358954496, 10, 27328512, 4076863488, 170250674, 74965,
28506880, 0, 3959422976, 8, 227540992, 240, 0, 0, 0, 42273, 286209536,
7565, 2026288, 269967360, 2153775104, 2, 797511848, 3357504928, 17, 0,
268787456, 4120645705, 16777217, 13, 548448059, 2703347730, 513809789, 0,
267771904, 0, 18194432, 288096256, 2415919104, 494, 2457872475,
1879048222, 721, 143104, 0, 0, 3489660928, 2819687647, 3020063664,
281989621, 96468992, 2164741137, 5809, 700976, 528072704, 3009413120,
32959490, 0, 2617245696, 11882766, 7865, 20058624, 839581696, 2868903937,
492, 66363, 0, 618070016, 118625, 0, 92691, 1375075072, 4244897847,
1042880, 291909632, 852, 0, 857079808, 1142789473, 277746168, 4156564873,
2, 2856452096, 2869080496, 40, 2740990932, 1, 0, 2097853648, 17674544,
536870912, 1879048219, 2840529575, 0, 0, 73074, 1895896064, 2714, 0, 0,
3055550464, 31, 0, 3791650816, 512909315, 133296256, 2703289887, 4180,
1628434608, 276, 0, 2415919104, 274337875, 2182518576, 520622576,
3391101502, 1127937, 555745280, 1963051376, 527151355, 4413, 3758096384,
199, 889192448, 455172457, 1693450240, 32942367, 0, 3372220416,
299102603, 742, 537611520, 4921, 0, 10457088, 2789254454, 3221225473,
548082131, 2969567232, 525848587, 214961996, 1342177281, 2779185223, 0,
31014912, 973, 32019712, 158269440, 0, 39485440, 42333, 2684354560,
2784370592, 1846187856, 255, 1260457786, 0, 0, 2214592512, 267,
3252682752, 834575, 4285267968, 269131488, 273, 6738, 268435456, 4637, 0,
305729536, 6312, 3777182720, 777, 1275068416, 33706484, 1235, 2150420480,
5191, 4127195136, 395, 1824522240, 3295232, 64552960, 0, 0, 12068,
805306368, 6335, 0, 53792768, 197197359, 1613852443, 758, 1486944,
274083840, 826398237, 1610612765, 2724468406, 0, 0, 41573, 1006336,
564068352, 973078529, 496, 0, 2952790016, 5191, 2068848, 0, 0, 0,
1148977152, 603979777, 526897436, 2960202765, 30794518, 116654080,
110976, 0, 819, 3223707136, 7826, 0, 0, 157294743, 2149619970, 546963977,
1661077792, 28352541, 162537628, 538797314, 546504913, 18777280,
284516636, 268, 2684354560, 359, 1543503872, 34144688, 0, 268435456,
546636297, 2080374784, 30810156, 0, 536870912, 455672501, 2003840,
307089408, 120708, 0, 0, 3187671040, 432, 3975160654, 1, 2787508224,
1029552, 0, 1632700492, 29, 0, 1934048, 0, 73999, 16532480, 0, 1034288,
0, 74975, 3244835584, 8065, 2148812784, 340267332, 119154, 30503168, 0,
4160835152, 282, 3476946994, 1073741825, 61451, 0, 175046656, 1740706907,
788576513, 5809, 684224, 0, 1736561385, 30873601, 0, 0, 0, 78893, 0,
3912892416, 1, 492875776, 0, 2684354560, 4551, 1879209472, 51802436, 0,
554599424, 4180, 0, 0, 2488270848, 18648337, 0, 0, 0, 74213, 0, 0,
2650800128, 24, 0, 2415919104, 11927640, 3959422991, 36, 74393,
536870912, 6928, 756020976, 283652345, 876688195, 547434515, 421139252,
3674888672, 322166819, 309394826, 10761226, 2704605184, 855638016,
173818017, 1429276847, 10760714, 0, 822763184, 164, 3544186880, 11250704,
860946432, 2064856353, 3764230, 1752213280, 1342177280, 604176763,
2097152000, 488013830, 2703228928, 271031318, 843055711, 872415233, 489,
2306, 1073741824, 695468411, 0, 496902144, 526477713, 10, 0, 0, 0,
1287651328, 2722591, 11862016, 15, 0, 2243887295, 1342177302, 12000652,
2751463439, 31, 887173965, 2956195091, 633541428, 1258640, 0, 1795173115,
2, 0, 0, 0, 898708312, 1630754067, 4917, 165008, 0, 2173762368,
3241369090, 861675415, 4044568017, 322285602, 43062366, 0, 0, 3472883712,
33, 0, 0, 0, 419430400, 10, 3277913830, 2147483648, 718082585,
2550136832, 43, 0, 0, 747634688, 318767104, 29, 3041918976, 17409025, 0,
1124213296, 43, 65216, 286302976, 162, 0, 0, 125062, 0, 289079296,
2231369728, 284, 1022405042, 19, 0, 1061616, 0, 13061, 20143872, 4918, 0,
0, 0, 0, 0, 0, 491212800, 625999872, 240, 0, 3338665984, 522408261,
4116792774, 20174849, 541196288, 1, 341663744, 119918, 0, 0, 0,
261320704, 4059116123, 2167560450, 4901, 0, 307302400, 311427072, 0,
182845440, 1560281089, 321241394, 2618301349, 32934656, 4653056, 15, 0,
4292, 19152640, 657, 2064794592, 468, 2624658569, 553528832, 279052398,
39921, 291758080, 167866229, 3758096403, 790, 30384, 10268672, 559939584,
2684354562, 4099, 3155256960, 34, 0, 0, 27525120, 0, 512532480,
953166381, 18, 0, 872415232, 249, 66581, 30516480, 0, 3117440, 494747648,
0, 23796736, 0, 0, 488366080, 0, 1900423168, 462, 454047776, 167,
1297180732, 1097432842, 336, 2197815296, 46551044, 43126, 1093702400,
4105, 89616, 175165440, 78258, 2954834688, 4552, 1116784, 0, 399586191,
29, 293142528, 3925868544, 282, 4095803203, 16728335, 4053270528,
2852126721, 272, 73868, 16595456, 0, 0, 25468928, 46215766, 1166097,
1174601728, 2651921265, 267018742, 0, 16702464, 0, 3892994416, 290,
1621098496, 20, 0, 2769576128, 361, 4120903680, 2164218127, 4283895797,
1427109216, 168288511, 4112580435, 16732431, 2844921845, 1292026800,
267698431, 1309736779, 2164214017, 4282847220, 1157640080, 81752319,
69718, 0, 0, 1034352, 0, 3352302171, 1073741854, 8121, 0, 278831104, 0,
2952790016, 8021, 1165264, 285790208, 121438, 0, 553385984, 2920487665,
341823793, 43157, 0, 520749056, 200656, 305623040, 69780, 0, 0,
3372364496, 4, 0, 2952790016, 579801242, 0, 0, 903880841, 11232786, 0,
922746880, 10629132, 140580224, 33072145, 2692808704, 0, 287916032,
4111401533, 2147483650, 4637, 140224, 0, 1821376512, 1896269840,
360976492, 1, 0, 1814107522, 17219856, 113639424, 3289410641, 275525894,
1829832402, 1090965520, 656867551, 79344, 0, 1611728587, 32028162,
114163712, 1076433, 275562496, 4089446400, 2536193, 871890944, 1334272,
298311680, 3044016128, 2841602, 1167982592, 2652134321, 39, 0,
1610612736, 4251, 605313584, 81736181, 1516240896, 3775966996, 300686995,
637534209, 341496090, 83385, 0, 0, 1088320, 9170944, 224395525, 1994498,
482476032, 3355443200, 41, 1725956096, 30443522, 1175781376, 1, 0,
3454015781, 21369872, 0, 1186832, 0, 1836123864, 1610612752, 4205,
1335520, 275615744, 1626408659, 17920532, 0, 3573547008, 47100166,
3900770017, 4043759361, 162467196, 3791825681, 262, 1520503217, 2793474,
115146752, 3674392497, 275620102, 70792, 17335040, 0, 3876626480,
304865331, 10836, 4045745408, 4360, 438267552, 29, 905969664, 1613095197,
225, 0, 0, 125029, 3758096384, 7578, 1830778512, 527855621, 0,
3489660928, 808, 3860094688, 472, 1593847821, 3758096404, 69995016,
1152401, 0, 1115684864, 537004816, 364648094, 1190977, 0, 436207616,
3242584834, 4139782599, 2852126721, 46313969, 1850803347, 822535184,
4206, 3876613760, 262, 0, 3221225472, 387194638, 0, 27623424, 1781597934,
2970020864, 116527214, 2718986001, 275705880, 2641297575, 1628497425,
156565739, 1225813648, 27078947, 65700, 0, 2777808896, 0, 10645504,
364773844, 1372653853, 4107, 1711276032, 467, 0, 18995968, 112591083,
1090560, 15466496, 7335, 3221225472, 283447407, 2684354561, 272,
3961520128, 1610612736, 512754255, 805306368, 15434036, 802228782,
1092384256, 235, 2650800128, 531116476, 12947, 0, 3491102720, 1180049, 0,
2865758208, 1343514881, 4181, 0, 0, 1868629751, 1074551312, 117117039,
4178603937, 275742982, 1318060032, 805306369, 116593180, 4060086273, 3,
1876951040, 3775331600, 455614263, 1077264, 275771655, 1312819742,
553652253, 3571916110, 3842097393, 491676116, 1304548571, 2715080989,
3571391821, 3707780257, 305607124, 1296159955, 567595293, 3570864240,
3575467393, 44896724, 3099704349, 2, 0, 2055168, 465727488, 64378, 0,
215285760, 1578972689, 291520556, 69797, 2832640, 7904, 1101824,
23322624, 1308743687, 1342177296, 199688462, 2214592512, 495460522,
138505061, 17, 0, 922746880, 27246613, 2324692992, 18293776, 0,
1761607680, 266305540, 381681664, 1611121168, 490, 838999376, 293,
4031774720, 0, 0, 2953980416, 30842885, 121382, 0, 0, 1920256, 0,
376438784, 3790806240, 7497, 1912778656, 33361947, 68216, 2150590976,
4466, 0, 50475008, 382860273, 224, 0, 2383841728, 267, 2524971008, 31, 0,
0, 0, 0, 0, 2765946880, 3959422976, 0, 78867, 2147483648, 7111,
2919235584, 3843, 378535936, 2073056, 0, 1947245248, 45850908,
3347054592, 1610612753, 7998, 167772160, 532267440, 2657102000,
1074733072, 7969, 0, 0, 380635926, 2684354784, 3542474774, 1, 0,
3045064704, 2437171970, 1172112019, 1, 0, 0, 3758096384, 421794304,
161536, 0, 3245342720, 4026531867, 162660630, 4194304001, 304,
3238986279, 1, 0, 0, 0, 555839105, 3080195, 0, 0, 42422272, 4272020042,
3221225473, 534, 154544, 0, 1430257664, 1879048194, 1780220185, 67263217,
320246010, 0, 2432303616, 4930, 2113929216, 464, 6438, 1076073728, 4930,
1033584, 278564864, 0, 1879674624, 8116, 1358954496, 494, 119002, 0,
1306591232, 704643072, 5, 266457508, 0, 252706816, 678801, 0, 1417739956,
1879048202, 8032, 685216, 173932544, 120567, 3238417152, 4220523074,
68143952, 318919149, 0, 17191424, 0, 2818572288, 48271625, 375390208,
10746397, 0, 671780544, 41, 3153077933, 3758096385, 386138555,
1142782657, 12, 2591031296, 2684354576, 714936427, 2483027968, 5,
1800472246, 2417890064, 112788230, 3087007745, 275476742, 0, 17763584, 0,
0, 0, 67153, 1879048192, 251666201, 1032865, 15884288, 1459617792,
448522, 0, 680096, 41775104, 443547648, 32059376, 0, 3489660928, 2, 0,
17620736, 95944704, 2053424, 32661504, 2240806912, 17429022, 0, 0,
306327552, 1090519040, 23618067, 0, 1261808, 5332992, 66288, 0,
105906176, 989855745, 4028903170, 0, 1022720, 4718592, 59425, 0,
1808860862, 2970008592, 2834501739, 3205524480, 262, 2342639341,
1612832790, 784076954, 0, 0, 0, 0, 0, 0, 0, 92610, 119808, 0, 2919235584,
3841, 1644167168, 838432031, 8065047, 15, 0, 0, 4278299648, 2608, 0,
306708480, 2324692992, 3489870877, 2608, 1930672, 264945664, 1707208720,
3790373407, 4271444242, 1627489568, 178769921, 868220928, 1104650781,
4231, 0, 0, 1564517849, 1342177309, 123477341, 2988418640, 465625253,
41157, 1889878272, 7517, 3204448256, 160, 71430, 10840064, 0, 16777216,
166, 3273849142, 1896951057, 4606, 1527406992, 526770209, 764411904,
1091650846, 299, 1088368, 0, 983053, 0, 0, 665440, 465936384, 0,
3520099584, 2695893185, 1029616, 526143488, 3291521218, 1643134491,
2696347900, 1527818368, 253, 129910, 1880439552, 441327543, 990517232,
496, 418381824, 17090826, 3558539264, 661585, 532131840, 2220894342, 2,
672006144, 639451584, 42033192, 422645986, 10, 0, 1917440, 169394176,
2191534154, 2684354562, 648, 436863232, 40, 15848488, 536870922, 8097,
655648, 380702720, 0, 2684354560, 3509263635, 218103809, 490922263,
69936, 1342177280, 447217884, 0, 490938368, 128451, 2702847744, 7108,
1142784, 0, 0, 1879048192, 472646302, 354386672, 281, 0, 2164675584,
472318002, 678192, 0, 0, 0, 0, 150994944, 496226340, 999292928,
2717137922, 151063043, 1022363489, 165, 120589324, 300439280, 395643396,
1157627904, 761, 10290, 537660160, 2980643461, 2064481, 168083456, 0,
1621702912, 4100, 2483684480, 165, 64700, 268805376, 2560, 0, 167772160,
2297430016, 4026531856, 4256694410, 166432, 0, 2528116736, 2, 386793472,
1, 0, 128469, 0, 0, 0, 174428160, 2634087944, 821954050, 299, 14680896,
520253440, 1197473792, 31, 624230400, 0, 281694208, 0, 0, 2684747776, 0,
16375808, 0, 2432794368, 772804976, 43040, 175456256, 1042411694,
3002689802, 441528214, 2768240640, 517161213, 2475691423, 1628898095,
4287762883, 3306275648, 260, 1065353216, 1076230154, 732631629, 671520,
49627136, 65024, 2180229120, 4261675573, 34594864, 266342654, 64757,
10620928, 558825472, 268435456, 494, 97559048, 836106, 4181458944,
4194497490, 503320737, 1592865586, 1862492672, 23003363, 1046865, 0, 0,
2210048, 0, 3187671040, 488, 70375, 0, 4101767566, 3774873601, 33087762,
0, 3239240960, 4554, 2869015968, 169697752, 95420416, 10619914, 0,
2819229088, 34, 1901081387, 18014993, 421724160, 1645321632, 44, 0,
3221225472, 2588, 2734744208, 169611556, 71441, 0, 633864192, 0,
177426432, 0, 0, 6162973, 14, 0, 479199232, 322826, 0, 1845687392,
169578963, 589299712, 33156639, 3893297152, 3406939089, 378765324, 0, 0,
0, 0, 0, 104982729, 2713328, 4135124992, 107377, 11960320, 0, 0,
1306001408, 0, 16044032, 3317694464, 27, 68943872, 2049249, 0,
3319905337, 251668763, 0, 658944, 950272, 0, 18987520, 0, 0, 37249024, 0,
23701760, 69730304, 0, 41431040, 0, 1610612736, 491, 211584, 0, 66650,
3489660928, 123081162, 167772160, 11923735, 228589568, 1389322, 0,
1224736768, 168648753, 1690304512, 17189648, 2779578368, 1711934704, 9,
0, 0, 630325248, 2058688, 0, 0, 2426526720, 3966960199, 4026531841, 161,
3293696302, 4026531842, 418, 1293846768, 6, 0, 251696896, 0, 4094832704,
320295073, 0, 2197377792, 19992676, 352321537, 303366617, 578925098,
30816027, 2987524096, 285212673, 264958386, 1711387152, 990986,
4113629184, 990001521, 434, 1658958388, 3789190685, 2989621944,
1260070001, 434, 111168, 836119040, 318179879, 1375731713, 290,
602077532, 28450075, 387121152, 3117473, 455274496, 0, 1881077760,
2988710689, 665521, 0, 587268361, 240, 0, 1179392, 170385408, 2605715353,
2953185565, 3653634560, 1165985, 0, 2079326208, 16713245, 0, 0, 0, 0,
1382912, 0, 4044500448, 286, 387973120, 2432386579, 2560, 2216642272,
167808770, 2469396480, 29, 0, 16777216, 32850422, 54525952, 10, 17629184,
656097, 0, 74605, 2177932800, 2714, 3825205248, 362, 3287285760,
30895888, 1797128192, 1, 279887872, 33554432, 10, 0, 0, 172994560,
1825570816, 10846720, 0, 2499805184, 518484012, 0, 1643577600, 404,
1192272, 0, 25286475, 1610612746, 2671, 2349016896, 24, 41663,
2415919104, 478679213, 2953912641, 162, 2410676224, 10666496, 0,
3087040640, 162, 2395996160, 10808081, 0, 3423801856, 162, 0, 10667520,
1773010944, 44737, 0, 9902, 285840384, 1144197073, 2266985313,
4026532006, 71890, 1629598720, 658573841, 182480, 263651328, 2245001216,
3489660957, 806027288, 674224, 39280640, 0, 2963967232, 2738, 3623985072,
13, 1497366528, 2, 0, 890668112, 29097989, 2442133504, 1, 0, 0, 0,
379596488, 3342082, 2962030592, 2332033025, 168829360, 0, 2985730304,
117, 721420288, 168857875, 1529943172, 2936178698, 8090, 2046336,
269553664, 11837, 1375227904, 446, 0, 0, 1471152128, 10, 0, 1023410176,
488067345, 64732, 1879048192, 7936, 2113929216, 29249282, 42051,
4027597824, 7424, 1092448144, 172204196, 0, 3489660928, 288497011,
1056964609, 164, 291504128, 1882070786, 8058, 150994944, 304333561,
126267, 30852352, 0, 0, 35782656, 1764753408, 1360802058, 8120,
134217728, 279, 144796511, 2166138139, 6920, 0, 0, 68445, 2684354560,
131, 2583871632, 176144856, 1119879168, 268435476, 4214423612, 0, 0,
24184959, 27, 106, 1224892960, 47, 32616478, 3490496539, 2954500865,
403341233, 453087664, 1651507200, 1073741853, 8041, 37152, 290123776,
1269836985, 10974239, 0, 0, 465903616, 983234, 3791269632, 4149, 0, 0,
569376768, 30521371, 0, 1030736, 465874944, 300941312, 3758096400, 698,
0, 31809536, 55268, 1177088, 19857408, 1, 0, 10851, 2685936384,
405018267, 2954862400, 46, 867251000, 1899181587, 859050803, 3641914193,
322121742, 1883248672, 29, 404815872, 1006632960, 322162995, 6178, 0, 0,
838896224, 34, 2240806912, 0, 0, 1224736768, 261, 0, 1076039168, 144,
1193264, 9494528, 122920, 2098688, 0, 1124073472, 290, 119524,
2684354560, 435, 0, 168587264, 1655701504, 1634589, 4120051712, 1,
517152768, 3306160128, 2963555601, 2756247681, 1140850688, 164,
2217738240, 268435472, 604, 2097152000, 51, 4029677568, 16, 0, 838860800,
285, 0, 10533120, 0, 3154116608, 160, 3244301738, 556079387, 712318227,
3121257504, 160, 2801795072, 234913309, 0, 0, 0, 3762355872, 3221225474,
2674, 1115872, 266838016, 66803, 0, 482213888, 1251856, 32718848,
3215035387, 3222062872, 6335, 1108496, 0, 3213885440, 2150829592,
2755402692, 1192804176, 415199236, 3205500431, 1368126488, 4164884658,
4027594081, 395, 0, 0, 0, 0, 0, 2382406715, 1627932682, 2755534219,
3289364016, 506269711, 0, 251663872, 783417344, 3875536896, 53190816,
2455764992, 16752943, 436862976, 973078529, 505, 3196161001, 3285528,
2347040768, 3877158465, 415129995, 3187772385, 547415576, 4204599486,
3909164529, 160, 408945069, 2984772381, 12178, 4061138944, 321573366,
1981808640, 31, 0, 1068576, 798154752, 10590, 0, 0, 0, 25587712,
3865061350, 17472783, 0, 2147483648, 6627074, 8050, 0, 2347630592,
1621713, 415166464, 101354, 25947136, 397, 0, 0, 0, 0, 1756299264, 1,
175824896, 0, 268435456, 865993247, 2417040177, 303706279, 3169848807,
3758096408, 20582961, 990052977, 415027484, 0, 18626816, 876019712, 1, 0,
468713472, 18624273, 796459008, 3742940608, 415097227, 71940, 2710297344,
6333, 2835349504, 530046978, 3178234559, 2416756760, 2345932989,
3591445457, 415060363, 1130435442, 3244913683, 2768114032, 3424550944,
12, 411143103, 16, 2344288256, 3172514721, 414957963, 1038169053,
2953625107, 2799113021, 1620880, 0, 2762050486, 1881606934, 301138023,
3742580257, 51114291, 0, 294367232, 2804748599, 0, 525807616, 3160451176,
2158616600, 2344818876, 3155737633, 414990502, 0, 25936128, 4113832124,
1, 0, 0, 1879048192, 689, 0, 288301056, 2327849068, 2, 576258048, 1, 0,
3124857765, 1636542232, 577378490, 2920856064, 414851074, 0, 0,
2960457728, 1, 49315840, 0, 16670208, 6919, 119342768, 432, 110598,
3252084480, 61478, 2903505648, 385421602, 361758720, 29, 0, 1260416,
264056832, 2064656444, 2661378, 0, 0, 322654208, 3134294958, 536870936,
2343174235, 3976200193, 266731802, 11479, 3758096384, 2343109004,
823704193, 4346135, 967905435, 11036418, 0, 0, 4030300160, 2226126848,
267549, 548995072, 15737025, 0, 0, 0, 556138496, 0, 0, 4362, 3758096384,
67180215, 0, 0, 0, 3781732352, 8012, 28384, 503451648, 0, 1879048192,
700, 2483027968, 15, 8388608, 240, 561250304, 15743328, 0, 0, 0,
64028672, 100097, 2371584, 55218, 0, 4050190336, 637534209, 46,
1824526728, 32598047, 684457984, 2652701664, 305, 372244480, 2417067807,
2807045942, 16512, 177971200, 548405248, 1610612753, 38, 2037200, 0,
128466, 32594688, 4049207296, 1, 0, 3620733978, 32593665, 610402304, 0,
0, 0, 554902016, 820977429, 1064064, 0, 0, 16469248, 4129496853, 1481505,
0, 2453667840, 31, 678960770, 107936, 0, 0, 271785216, 577, 0, 0, 0,
23748096, 3642359808, 3840948049, 175386913, 10910, 2164902912, 618,
1392508928, 472, 4062183424, 1, 0, 587202560, 40341948, 31457280, 30,
687276032, 1115424, 41381888, 705691648, 4026531841, 8122, 36528, 0,
74785, 0, 2952986624, 1769537, 452993024, 709950517, 1, 0, 76320, 0,
4212129792, 17776911, 0, 689903264, 19558146, 3104833536, 578320, 0,
163440, 0, 0, 2147483648, 1744835137, 76289, 0, 4099, 3249564416,
2959678214, 35601, 0, 0, 1911103744, 2805859007, 14080, 0, 0, 3221225472,
4275966090, 0, 530280448, 7095, 0, 0, 0, 9940992, 3142582272, 268435457,
724, 159392, 50065408, 405798912, 2953157139, 2683, 185168, 0,
2593128448, 29, 0, 3305111552, 290, 96582703, 1073742048, 546,
1258351712, 251, 1063321231, 0, 0, 3271730480, 507, 0, 0, 3492282368,
116833, 277327872, 1205862400, 2700032, 0, 1094832, 0, 0, 30409728, 0,
285212672, 32809125, 0, 2952790016, 602, 1073741824, 50, 0, 0, 0, 0,
5840896, 68217, 822828800, 8123, 0, 301879296, 0, 1879048192, 4086, 0, 0,
0, 2695412736, 1770326667, 171905, 4055040, 93772, 0, 0, 2785017856, 259,
0, 1009920, 0, 4143972352, 507, 807531066, 805567519, 1751192066, 1,
265207808, 0, 2612480, 0, 160256, 303312896, 2392850432, 2984814602, 166,
2000592, 40595456, 0, 2584832, 0, 872415232, 464, 0, 2415919104,
665784529, 1820144, 0, 0, 0, 0, 0, 4027752448, 92291, 569632000, 4555,
3456123152, 26026480, 4114612224, 15, 0, 1166144, 526241792, 387973120,
838028048, 4555, 4280245600, 298520596, 24117248, 2684354562, 629, 0,
286306304, 0, 1641697792, 2586, 889192448, 267665428, 527, 0, 4110024704,
1, 0, 0, 1879048192, 2668, 676000, 45821952, 113695, 1611014144, 4175,
687865856, 444, 2632974336, 31, 4148625408, 145105, 24, 0, 4026531840,
4173, 2517766832, 273560016, 74580, 3249587712, 397, 4094709408, 169,
92612, 0, 0, 2434750800, 259, 0, 2684354560, 4419, 1131456, 4276224,
42411, 0, 0, 691824, 0, 0, 10867200, 0, 3306207216, 465, 0, 0, 289669120,
184593, 496459776, 0, 0, 69271552, 9056, 0, 1377839771, 11126794, 0,
2281701376, 291664178, 42636, 31642368, 0, 2468189488, 252, 127749,
2685981952, 397, 2818572288, 37232648, 0, 0, 176357376, 1, 0, 1104150528,
3284480, 0, 469762048, 4304900, 1111491019, 4026531840, 4154, 0,
524537856, 722511354, 806972416, 2772041988, 620895216, 17395457,
2678063104, 10844682, 2774597632, 1033536, 0, 0, 1879048192, 397, 695536,
0, 312475648, 1610612767, 416874893, 3556800608, 24, 7898, 2799360,
4091805696, 1940561, 178933760, 0, 10984960, 569704448, 0, 180264960,
2314207232, 31092253, 0, 0, 530489344, 0, 0, 551223296, 1358954497,
378520057, 986710016, 16, 0, 3909792992, 280, 0, 805306368, 23794082,
1476401, 0, 3513778176, 268435472, 4441, 0, 0, 3065106831, 2778368, 0, 0,
298450944, 3293577216, 18629649, 3621847040, 1044017, 279461888,
1648361472, 31, 351928320, 1930507280, 302481419, 2092957696, 2, 7428,
15742768, 0, 2705326080, 3221225489, 3635937957, 136268849, 361, 0,
73216, 69599232, 0, 0, 7395, 268709376, 8062, 97520, 0, 859832320,
300810527, 4031, 0, 0, 4291891622, 20037633, 0, 0, 0, 1197587575,
20038666, 0, 673616, 321134592, 34670435, 17260800, 709365878,
1695577696, 276185351, 3442475435, 15, 0, 117440512, 4, 1199570944, 10,
152567808, 788529152, 175714308, 128486, 1964288, 0, 16752, 0, 42908,
2952790016, 665, 0, 296685568, 0, 0, 0, 0, 0, 0, 0, 866123776,
1409286144, 272, 0, 0, 1761280000, 1114465, 0, 2895248240, 33256704, 0,
0, 35401728, 0, 1366246656, 725287084, 33554432, 36495651, 10689, 0,
369426432, 3959422977, 291692579, 0, 0, 3497984000, 1, 0, 0, 0, 0,
1074831904, 467, 1590689792, 10, 294584320, 0, 0, 469762048, 2813969, 0,
0, 38166528, 1998585856, 1, 4613, 152476560, 31289509, 43995, 3758096384,
340, 0, 0, 0, 1342177280, 7574, 1906768, 39747584, 120686, 825385984,
734270246, 0, 7090176, 2962227200, 1610612758, 4249, 0, 518455296,
2431774762, 14147857, 0, 0, 521244672, 73826, 983040, 2715287552, 0,
280289280, 2404384768, 32840714, 220921856, 1486976, 0, 3927967175,
1342177296, 816644165, 2181038081, 504, 92782, 1073741824, 26149418,
1511037088, 292, 2440036352, 1879048239, 34, 162496, 379174912,
2667577344, 16658944, 0, 0, 0, 0, 32950528, 0, 1188288, 0, 0, 0, 0, 0, 0,
68045, 0, 225902592, 0, 497311744, 236980725, 27, 2855010304, 143136,
304787456, 66864, 3239268352, 498, 1819168, 490098688, 66489, 4043093760,
8003, 0, 0, 0, 11123712, 1799421952, 2801795073, 42, 67810, 0, 0,
1191285536, 39, 0, 0, 2670, 154016, 524513280, 74447, 3521693440, 5785,
0, 487731200, 0, 17020416, 0, 0, 0, 1363148800, 2130917394, 4677, 0, 0,
2136997888, 4026531853, 8126529, 14, 0, 4146140020, 1073741826, 62394894,
1, 0, 0, 1610612736, 2657, 0, 30339072, 74978, 0, 0, 0, 0, 10231,
17056256, 0, 1487216, 270036992, 0, 17842176, 1759838208, 1, 0,
2975926783, 2952790038, 659, 2197815296, 44228643, 0, 0, 0, 0, 0,
2371878912, 1610612746, 4686, 2013265920, 472, 3137339392, 270438912,
4645, 3843984112, 379404580, 3069181952, 2985632031, 285810508,
438281168, 322641925, 616564185, 240, 0, 131968, 521228288, 1814044453,
31, 497156096, 15742881, 0, 1959791507, 2684354589, 8034, 33554432, 251,
47185920, 4045727505, 4068, 2166260992, 166, 72022, 2415919104, 4056,
152192, 487735296, 232790315, 4026532080, 570, 1107296256, 481,
862978048, 24009968, 0, 1191182336, 263192942, 3645898752, 2, 296484864,
2650800128, 525885944, 564133888, 18, 0, 1242635888, 285937970,
2066864327, 1360049933, 5860, 0, 0, 0, 0, 0, 0, 12230656, 3828350976,
879894, 406519808, 67952, 48824320, 2835357778, 2449120784, 103, 1940416,
0, 2669677450, 10966282, 0, 1138864, 0, 985661440, 17523216, 0,
1644167168, 4026917033, 3683777084, 2, 0, 2037664, 47964160, 0, 0,
582811648, 1, 4333568, 129555, 0, 74973184, 0, 0, 0, 30456832,
4280942592, 687865856, 25, 2670723072, 553890816, 2727, 93936, 0, 0, 0,
371458048, 1, 7639040, 0, 17907200, 1801256960, 1179409, 291631104,
2169569570, 1073741824, 2883525907, 47952, 518504448, 4067426304,
3221225487, 769, 3992977408, 35946978, 0, 2701325824, 820, 2702270832,
494, 3687851822, 2687519746, 61489, 187264, 0, 68672, 0, 0, 3993164704,
37, 82985, 1879153920, 4101, 0, 304930816, 1092616192, 2684354560,
797646679, 1907840, 284196864, 4984, 4026713088, 711, 0, 4030099456,
1308, 2685294848, 50, 1934928, 0, 2010120192, 768000, 0, 1543503872,
271921408, 74470, 0, 657129472, 0, 0, 1945108480, 1325432607, 49479866,
0, 268787712, 2336227328, 3759959325, 7563, 0, 0, 8730, 0, 476708864,
1908000, 29798400, 980418560, 0, 24707072, 252335440, 473, 2965474061,
3783986968, 6320, 1897023984, 414228489, 3699376128, 4, 2332557312,
1618033, 414224384, 3305212676, 1368065537, 116725936, 721508224, 253966,
1649, 246784, 0, 0, 380506112, 0, 32605184, 2863202304, 4011801200,
322814210, 1089534853, 268435472, 4565, 2074992, 31444992, 2991, 0, 0,
1155216, 46452736, 127049, 553670912, 766247519, 0, 495001600,
2100304206, 1353357570, 409014253, 0, 0, 6238, 33251584, 288948224, 0,
275128320, 0, 4026531840, 408753909, 587289936, 37585157, 2681301714,
16699165, 0, 3558708704, 501, 44018, 16579840, 0, 889192448, 22, 2461,
1815296, 0, 1124073472, 266, 73030, 2147483648, 4620, 0, 0, 0, 0, 0,
1096096, 0, 0, 3758096384, 158, 0, 525008896, 5776, 0, 0, 3539992576, 46,
1371537408, 17598482, 0, 1275229040, 167, 0, 0, 702611456, 2836432128,
169, 959447040, 3758096394, 17435192, 2065056, 171511808, 71271, 0, 0, 0,
171503616, 3915448970, 807286272, 573442730, 3675979904, 380514561,
1007681536, 31, 692846592, 2583691264, 167, 3346070365, 1, 0, 2667577344,
283525163, 2588934144, 268435466, 106, 419430400, 29843724, 1847590912,
539438879, 4922, 2886779472, 33, 42162, 1342177280, 455, 1913232,
273784832, 653306525, 1879048202, 4180938768, 1, 0, 224395264,
2415919131, 225, 572496512, 512475601, 1187114286, 18930719, 0, 0,
529158144, 2712708844, 3240421398, 766185664, 1199760, 0, 0, 3221225472,
15925644, 1185200, 0, 739338389, 30, 697827328, 2801931680, 170, 0,
18051840, 3500802048, 4212567393, 530731059, 92891, 1909965312, 61489, 0,
0, 214, 0, 23396352, 2818572289, 525869526, 2916089856, 2952790038, 162,
0, 0, 0, 0, 0, 0, 176128, 0, 260096, 0, 754974720, 376847, 3321954224,
15, 0, 1309753344, 444, 0, 3790897152, 61489, 2264924160, 4029816858,
127960, 0, 3502243840, 2684354561, 378298396, 4088397824, 3491903233,
2713, 1088464, 0, 125272, 818432, 0, 1845493760, 3840, 11595, 2952790016,
2714, 0, 0, 1077936128, 1342177297, 1163591726, 87905, 289456128,
3056601030, 1151490, 0, 1130528, 0, 53480336, 2415919122, 2340946480,
694785, 414748672, 3090156422, 1368098328, 24254648, 2181038080,
414716299, 0, 0, 0, 0, 503398400, 0, 251712256, 194248704, 698608,
25985024, 0, 2596864, 540803072, 3758108048, 321315073, 0, 1073741824,
2861896505, 144512, 0, 0, 0, 0, 1946157056, 15405347, 3099691917,
3784019736, 6328, 167772160, 414752783, 1481637888, 31, 0, 2734686208,
33, 0, 2158668544, 7814, 3691656352, 470, 0, 0, 252182528, 2283321056,
522387900, 3064040299, 3247140120, 43456694, 0, 0, 0, 0, 0, 211536, 0,
3081866108, 3515579928, 6327, 3020948144, 278716466, 12143, 32785152,
2846949376, 2030712000, 414679435, 3072428915, 1099658520, 51976375,
2214592513, 414646554, 2262827008, 1879048222, 2338201494, 1619409,
414576640, 101210, 2978700288, 6325, 151012496, 504, 3045165913,
24019992, 2337603584, 1461237057, 414540171, 3036777297, 562778904, 6325,
209760, 4029919232, 1048644229, 0, 2338717696, 1744849809, 414609803,
1125214402, 1612230912, 4867, 1962934272, 266, 12167, 0, 0, 2618424464,
474, 121501, 1686272, 0, 251658240, 36, 3027241871, 2415919128,
2336495796, 1176024113, 414470539, 101184, 3515564544, 2683, 1375731712,
267, 70742, 536870912, 768, 3506438144, 432, 13709361, 2981155586, 320,
0, 0, 0, 1342674944, 4903, 3053453312, 491483604, 700461469, 2955684883,
7499, 337363552, 491516165, 2380341783, 836026902, 463674700, 1327019200,
414507403, 1399890777, 2695176978, 3570145460, 3458026705, 175894996,
6041, 10726144, 524419072, 2919235584, 163, 3032481792, 1342177295,
3511484904, 2885681153, 494112931, 3339815727, 4046616321, 789119430,
756463152, 51909003, 2251292672, 2472991, 488112128, 1618577, 0,
2924478464, 760342, 2335965184, 773370801, 414437680, 0, 25901568, 0, 0,
0, 3009416606, 2173384984, 2335381683, 890811169, 414400907, 301989888,
562770193, 4177, 15743792, 279805952, 143756062, 4026792720, 271848233,
16777216, 414298160, 4316, 2419277568, 2333732918, 1618305, 0,
2973862677, 2427038232, 2333149752, 3540139185, 37158945, 1063261931,
1951235, 445, 0, 0, 1384127720, 1904945153, 708909234, 605598224,
414331275, 2753560576, 2963504912, 2616, 15731584, 47251456, 71988,
1821440, 0, 2835437472, 170131484, 0, 1365879552, 589627843, 0, 0, 71949,
1610612736, 7988, 0, 0, 309329920, 0, 0, 3422552064, 473, 2582686142,
3506019855, 3993, 63536, 0, 2952, 1345003008, 4187751081, 2584713648,
21291257, 2425356955, 3774451466, 4123660184, 236137361, 261, 66153002,
1, 4186767360, 2333055168, 261660921, 380696968, 1358530050, 1803620248,
1, 261656576, 10746, 30459648, 4186177536, 2182060080, 261624057,
2005933320, 3231955200, 3990, 2063536, 4029952000, 467664896, 10729216,
4184539136, 3054474912, 163, 3116431718, 3774440448, 453, 1745852048,
261517561, 2594250014, 2952790017, 4183949765, 1610679584, 496931065,
2573247025, 1090098447, 3993, 1358954496, 17121284, 3483369472,
536870913, 4187168683, 2433718560, 261685497, 0, 0, 109969408,
1560281088, 261, 0, 2147483648, 4117234363, 3340720449, 287084579,
2537617781, 553218831, 4185460631, 1996514544, 261579001, 0, 0,
4184932352, 3725563648, 280, 1077, 16665344, 0, 0, 0, 1901068288,
31060746, 0, 1344084800, 530694616, 1166016512, 3788591616, 3612213790,
956301313, 254, 0, 2835712, 475791360, 3472883712, 20, 2547054974,
2953774863, 3991, 46448, 12292096, 66762, 11198976, 4185522176, 0, 0, 0,
1106454784, 195956916, 4261412864, 500, 0, 3489660928, 3502964805,
3942841153, 529002999, 2511403356, 16341519, 0, 1578079728, 261476601,
2322595840, 2700695838, 54002041, 939524097, 292, 2495674701, 2700692239,
3988, 1459617792, 261414947, 2092037448, 805306369, 668, 571614848, 32,
2486237508, 284770831, 150015892, 1175426160, 261378297, 6047,
3221225472, 4181721136, 1645413968, 266842416, 2611018171, 1342708751,
647626820, 571448288, 261865480, 2609980714, 1895413775, 812519323,
503473377, 319213824, 2601580978, 534031, 4189454336, 1342225024,
261828631, 0, 301576704, 863044280, 687950496, 8, 1140914515, 1090081024,
71041478, 1426080720, 4436217, 3341821843, 1, 0, 17472, 29790208,
3205431528, 11168522, 0, 553648128, 46, 0, 2685113600, 577241541,
1090519040, 29810692, 2617309633, 547982607, 61604534, 1929472432,
261890087, 2576452501, 562796303, 2341535931, 2467870977, 414785931,
121712755, 556822803, 577180423, 1488689, 2703644, 698361743, 3221225472,
2861760857, 1963022800, 304, 0, 250624, 0, 3960586272, 37306729,
1465909248, 4059659039, 402984860, 1, 527491072, 1789983178, 1325600768,
4191035238, 3423575248, 261927161, 2036398537, 1626982145, 2342129564,
2617245697, 414822795, 0, 0, 0, 2617245696, 288, 2599421594, 3506023951,
349245338, 698545, 4029763584, 2153775104, 805306368, 4188803883,
2852273664, 285643001, 2590046631, 1090102543, 3994, 2835349504,
24756473, 0, 3760416000, 699400537, 67295312, 22655464, 3351350397,
3784081176, 6343, 3036676096, 415735854, 68668, 0, 686424064, 694816,
173481984, 3341913204, 1368159768, 2356156615, 419565009, 415699205,
3330284645, 1, 2355036160, 2081998305, 306, 3315698779, 3247201560, 6341,
0, 273776640, 3314548736, 32880920, 2354446336, 454608209, 29778280,
3306261586, 1075438616, 4139515971, 1342177281, 396, 0, 1879048192,
2845115168, 3289356832, 261750801, 798037523, 1352859921, 85658302,
1627389952, 415629708, 0, 32836608, 536084480, 570425344, 499,
1380974592, 1353359617, 228924948, 0, 0, 219244928, 2692370, 296091648,
1191358176, 21164428, 3954184577, 1636582144, 169, 1060432, 0, 43073, 0,
0, 0, 490123264, 1628, 0, 4277010432, 521162640, 45760554, 0, 4044666880,
7104, 1904464, 0, 1370530362, 1141008, 0, 0, 0, 41529, 4026531840,
17760632, 1133025, 415559680, 76618032, 2978761745, 781588676,
3087104272, 37, 0, 17630464, 4154589184, 1677721601, 500, 2825954932, 10,
0, 1063488, 0, 3270577167, 24, 2351693824, 773374641, 415420812,
1206910976, 3515623936, 4063760894, 3254779905, 277, 0, 0, 2352807936,
119063489, 415490093, 0, 2687308288, 6339, 176320, 272248832, 4184968248,
2434274305, 648419523, 907592496, 290095500, 101424, 1362276608, 503, 0,
0, 3252784159, 1342177304, 2350583702, 169394593, 415351091, 564146972,
2237713, 0, 1622416, 264622080, 3243328619, 1879169304, 2349992601,
337166609, 4452748, 1722935334, 25956369, 59179008, 691489, 0,
3261078597, 2173446424, 423368898, 1696121377, 415383912, 302110924,
19000321, 134879426, 14680976, 530276352, 0, 268435456, 241, 0,
264724480, 0, 18987008, 3902799872, 70737, 0, 906071045, 4052485904,
2348880052, 51953665, 340185484, 0, 1360005120, 7991, 6992, 0, 0,
2701054976, 3515614014, 838940753, 251, 946864128, 1, 0, 3238078064, 471,
2739, 560657152, 4677, 2034800, 0, 0, 805306368, 432537711, 105616,
21811200, 3234958350, 4029874712, 2349471936, 436207617, 415281512,
2498828453, 11110146, 2349400064, 1343799425, 4, 2582642688, 2, 0,
973078528, 454156292, 1955594240, 16, 0, 2130706432, 26, 1999634432,
1360008970, 423234239, 0, 0, 0, 2415919104, 2844721231, 0, 0, 1376780288,
2149102080, 4134734383, 1062929, 0, 3170893824, 2, 0, 2299173584, 366, 0,
1311232, 471334912, 287284993, 274, 0, 0, 544145408, 2650800128, 503,
10003, 0, 110493696, 0, 175448064, 3664, 569149440, 7584, 3825205248,
516112, 0, 0, 0, 1042656, 0, 0, 11217152, 2871918592, 0, 268697600,
13002, 0, 72286208, 385875968, 530235859, 828375040, 1073741827, 507,
32800, 0, 1102, 1678080, 0, 705827120, 292, 1710227456, 32583178,
72810496, 654311424, 19280165, 0, 0, 2848718848, 3305183904, 33, 74857,
2906112, 0, 4110417920, 8, 0, 3522496768, 4481, 0, 384315392, 0,
2147483648, 8030, 1962936832, 10, 1422917632, 29, 344326144, 301989889,
167, 71986, 2427137280, 7110, 671088640, 171, 1131413504, 269425408,
4051, 0, 0, 64768, 1342177280, 11206906, 4009754639, 42, 77687581,
3456126432, 4710404, 1226789806, 3758394880, 745406531, 1308640531,
57348, 1728053248, 300884469, 3501195264, 539801600, 5701701, 1507853678,
13684224, 86900819, 1308644832, 5234693, 486708958, 307183621,
2661406631, 22, 621608960, 0, 0, 0, 1374177792, 4125562519, 83886081,
17768953, 11238, 17107200, 0, 0, 0, 419430400, 18, 533725184, 2650800129,
39129593, 2450523702, 1358503951, 4180025194, 605000272, 261239033,
3377464879, 1905039384, 2358384841, 2484652305, 415838604, 41522,
2171078656, 80212014, 469762049, 3842, 0, 536870912, 712, 15729136,
273707008, 1334, 1146624, 0, 1930608, 503328768, 10497, 268435456,
84733998, 1, 0, 2459966105, 15, 4180606976, 2031063776, 261275652,
2459012255, 1895376911, 667946898, 2635067184, 415875468, 8928, 0, 0,
3892314112, 273633569, 0, 3774418688, 230887312, 17184, 497008640, 74077,
0, 4178378752, 185239696, 261136633, 1414592776, 1358497280, 3984, 0,
261132288, 130087226, 18632714, 2747924480, 1007653840, 45629689,
127990073, 816530186, 2357856882, 2348810241, 415805836, 2466314545,
268435471, 668540751, 855833824, 173498617, 3043059946, 1636599562,
2748061896, 2198884512, 415768972, 2466250752, 3758096413, 4179362288,
437227952, 249, 2439051543, 1074456847, 3985, 421486416, 39035129,
2397044736, 536870934, 4178780008, 4077883680, 261160977, 792, 0,
572915712, 0, 0, 63744, 4026531840, 4177796478, 34574384, 261099769,
5055, 536870912, 68, 2434700608, 523505709, 4558, 18486016, 0,
4177526784, 44, 2448431117, 3505987087, 3985, 1795356832, 35, 2810183680,
838494978, 2876574391, 3540694848, 179950074, 1315962880, 31, 0, 0,
45314048, 3070230528, 10, 4117757952, 702225, 302313472, 3450798144, 1,
311885824, 1, 0, 1556157985, 31, 0, 452984832, 11952401, 4047570180,
805306383, 4241891127, 44640, 15536128, 894477393, 2147483679, 8097, 0,
0, 2726297600, 2952790038, 345375527, 0, 0, 65813, 32895744, 621019136,
2281701377, 42, 4265701165, 2416771606, 8088, 0, 0, 29360128, 2,
2362245120, 1528351937, 416079878, 0, 2685729536, 6348, 167801376, 464,
409993216, 17, 0, 1137728, 0, 0, 3513265920, 613552289, 1617105,
294936576, 416355770, 3221225489, 2362772102, 1511069745, 251,
1344376017, 4052538128, 4376, 1560483744, 493240790, 3421623902,
30829592, 2361131008, 3843607473, 416010495, 7449, 25999872, 487456768,
0, 37085184, 3412067275, 2173483288, 4272625867, 3037712368, 415973772,
0, 25997568, 6347, 0, 263385088, 2414972104, 2415919104, 2361661644,
689490993, 416043265, 7271, 294437376, 6348, 195664, 0, 24160659,
3489660946, 4050, 3959422976, 40, 4123000832, 16629248, 0, 1183824, 0,
3394342054, 1905043480, 2359433418, 2753088017, 415904140, 4230048229,
3222453263, 4182580486, 1047665, 175697920, 4257230418, 2952790031,
1774191210, 2483027969, 268222465, 120639, 3222707200, 7990, 655359280,
270417927, 999292928, 23702768, 88014848, 1932544, 0, 12018, 0, 0,
1174405120, 19283985, 3403681495, 30555416, 2360016896, 2904083105,
415941004, 983095, 349184, 526778368, 1624720, 52707328, 831520768,
14137105, 4221435904, 1771024, 0, 0, 0, 3490840576, 1728053249,
486834343, 42866, 0, 0, 1063008, 4030369792, 598856252, 30554653,
35127296, 889192463, 277238045, 593622078, 29, 681840576, 939689536,
6373842, 5274, 301157632, 637862514, 3288334336, 505, 41373, 0, 0,
1560281088, 19918849, 41371, 0, 0, 772908656, 34992145, 1092681810, 31,
0, 2566914048, 48, 590467636, 1074847261, 653, 128512, 488853504, 119344,
1106469888, 7572, 823855248, 35213778, 141557760, 2525211, 0, 0, 0, 0,
1976832, 0, 0, 0, 66590, 2684354560, 8115, 0, 20336640, 33554432,
3221225696, 7699, 0, 42745856, 2293355054, 1104292874, 682885767,
3288350048, 10, 983978, 2684354560, 3525968569, 4060086273, 362, 65110,
1342177280, 852488238, 150994945, 464, 414315632, 3774602269, 538443881,
0, 321695744, 88080384, 2415919120, 4908, 2919235584, 268783780,
1614876995, 1641416477, 3590397280, 52256769, 492839382, 83898394,
282572048, 33622707, 3692896927, 488796425, 2350907392, 2447567889,
3525582689, 1169425, 169357312, 0, 2263552, 0, 2701201840, 51986929, 0,
822292736, 4492, 3942645760, 362, 2354053120, 836103953, 646975493, 0,
7561216, 1598150133, 2178013213, 3589345633, 4078788353, 26386901,
1606538749, 3759473437, 2960989535, 4213006209, 294404565, 417333248,
17023248, 0, 0, 0, 0, 0, 0, 1152032, 25194496, 12110, 0, 0, 0, 0,
2934964224, 16, 0, 0, 0, 1556152825, 2611714, 0, 1056964608, 518705404,
11965, 31983616, 0, 0, 0, 793781730, 805306384, 7478, 3238002688, 163, 0,
30530048, 0, 0, 0, 70262604, 3162371, 0, 1185712, 0, 41925, 1084473344,
4090, 3271557120, 51994787, 2013265920, 331266, 3575316480, 469762049,
469, 1570766848, 31078431, 0, 234881024, 34, 2176854060, 3223882754,
1773208196, 2852126721, 280, 2911895552, 22, 0, 2113929216, 52547620, 0,
2710271744, 7998, 872415232, 271, 2846957607, 1073741841, 39191025,
2298478592, 384356634, 0, 32988160, 3572039680, 1, 414687232, 0, 216832,
624492544, 0, 0, 1311869823, 29, 0, 1078576, 0, 1317011456, 1073741853,
8036, 153984, 0, 4218421248, 397839, 0, 0, 294416384, 0, 2415919104,
1308302740, 1978000, 296247296, 2364631813, 1076384785, 656003,
754974721, 34291978, 0, 1631865344, 666836301, 788695360, 167,
2492399756, 2147483650, 7962, 0, 4029411328, 283115520, 2684354561,
61486, 1879048192, 166, 9884, 0, 0, 2066880, 0, 0, 411904, 1785004032,
1175169, 47763456, 1805647872, 1, 0, 152640, 10461184, 5158, 566528, 0,
1192438688, 168, 75497472, 2418779906, 3625914306, 674481, 0, 0, 0,
568594683, 2264924160, 507, 451, 0, 0, 0, 504492032, 43609, 0, 90, 0,
520441856, 11005, 1896112128, 7941, 2078976, 520458240, 43393, 30884608,
0, 0, 494788608, 0, 0, 0, 587202560, 263602451, 0, 4026531840, 468844567,
3877581936, 527601833, 121448, 0, 739639296, 0, 0, 0, 0, 2794717184,
85963264, 531665403, 8292, 3759371264, 1778523075, 1122081, 0, 0,
19177472, 696713216, 2283034656, 278700424, 0, 1075764224, 6328,
1712536496, 526561296, 0, 1879048192, 7697, 2197815296, 50, 0, 534528,
434372608, 2068545, 0, 69265, 0, 272498688, 35631361, 35197435, 0, 0, 0,
369098752, 46, 100483, 0, 4208132096, 2921297424, 470, 0, 1373211648,
4145287378, 1, 266903552, 0, 0, 0, 2050080, 377913344, 127153, 32977408,
0, 976, 304631808, 807495702, 29, 792264704, 704643072, 341119233,
1808913271, 31, 2789605376, 683888, 285999104, 2664431616, 22,
2793209856, 0, 0, 0, 11076096, 0, 1526726656, 292, 334495744, 16490781,
0, 1035792, 0, 8930, 1073741824, 659034197, 28800, 0, 0, 4057552640, 483,
3892314112, 379453906, 882993445, 806852354, 660283271, 0, 0, 10748, 0,
0, 939524096, 363, 1265631232, 33131807, 2822242304, 2040928, 30879744,
0, 0, 0, 0, 380510208, 42567, 3758096384, 4617, 639614016, 48, 0,
2952790016, 709, 0, 0, 69437, 838535936, 3539017649, 4245792881,
267640999, 118902, 1073741824, 540, 2986344448, 304316459, 41909,
1911990784, 174, 30256, 0, 1165009843, 16, 2746351616, 0, 44126208,
70206, 0, 420216832, 1207992528, 53846049, 0, 3779414784, 188878870,
402653184, 269730285, 278921216, 2952790256, 7726, 0, 0, 1176502272, 31,
0, 1133936, 0, 1366294528, 29, 0, 1503536, 15745024, 6842, 1073741824,
413, 0, 0, 821035008, 0, 0, 3236954496, 488345865, 0, 3238730240,
150929692, 1192278017, 491802931, 2224149770, 3760786960, 568983825,
675105, 0, 744498137, 4050585090, 614, 1931200, 0, 989919743, 3231956234,
3633119843, 1174405121, 7, 0, 10730240, 2747203584, 3121586080, 32690339,
0, 0, 0, 0, 494936064, 0, 0, 868483496, 1, 0, 585105408, 1106377759,
7967, 2231369728, 263331587, 65289, 1912210176, 4227669922, 0, 518164480,
11051, 2969848576, 22875517, 905969665, 501, 0, 3221225472, 295305684, 0,
0, 0, 2179895552, 4138205436, 98673, 0, 0, 0, 513146880, 688576, 0,
3736140278, 821687300, 3999, 3356467088, 39366696, 2360346820,
3221225489, 4193390574, 4026714976, 379457785, 910167403, 1073741853,
7444, 2058112, 0, 12748, 268435456, 5794, 1260640, 0, 1570830804,
284807690, 4191686557, 3591347568, 47497465, 3436183552, 554603266,
178457172, 0, 286830592, 0, 3489660928, 188751685, 0, 0, 1604321280,
2685250079, 273, 2077200, 268496896, 118928, 11107072, 4221501440,
2062368, 0, 0, 2418008320, 787283992, 939524096, 518058344, 2646669789,
2432293647, 2646, 3741319168, 174072057, 3069181952, 2415919104, 3997,
1996488704, 3843, 69699, 10839040, 0, 3925868544, 41, 69688, 16431872, 0,
1426262352, 38, 1681958357, 2448640, 272957440, 2920343345, 453525669,
129196, 3232054528, 710, 14687568, 0, 2662398444, 16378383, 4107206656,
3993169681, 262066425, 73687, 2163861760, 475664286, 1, 0, 263256547,
1130497, 721489822, 3843006048, 1646841, 900796174, 3, 4236640256,
211648, 0, 549457339, 16706834, 0, 100144, 0, 0, 0, 607977472, 1190801,
520183808, 126114, 0, 4220321792, 15739169, 0, 74301, 0, 0, 1184960, 0,
1100022459, 1, 4119461888, 2684354561, 285, 7402, 0, 521142272,
1979836800, 272859305, 934281216, 30938352, 4085448704, 1037857, 0,
1006632960, 19007507, 0, 15731136, 0, 872415232, 10851859, 0, 15742736,
0, 0, 2434048, 625475584, 184320, 0, 3377, 33167872, 0, 0, 0, 66280,
32562688, 0, 2734686208, 489738247, 0, 787456, 2763522048, 1168784, 259,
760217600, 3500516098, 18, 0, 0, 0, 0, 149618688, 1487793, 0, 171966464,
2952790256, 208539889, 0, 0, 0, 2695149824, 570695185, 1493172225, 165,
2878407446, 268435457, 8057, 1577077808, 291946511, 819997915, 25887250,
2781478912, 3171941344, 271, 3840998510, 1353052673, 30, 838860800, 165,
1384120320, 10, 763822080, 2836379568, 173797875, 1423976334, 4026531850,
580721972, 679521, 279818240, 248512512, 18954523, 0, 587202560, 21, 0,
16436480, 4207804416, 3725220240, 5366011, 125007, 808391680, 3622240921,
1163632, 495800320, 0, 30426112, 0, 0, 466231296, 0, 16482560, 0, 0, 0,
3917479936, 2439614486, 169, 154400, 0, 1474418458, 3758096384,
1777537813, 2130706433, 266, 0, 805306368, 2717, 3826249840, 524034053,
2492473931, 19208706, 0, 0, 0, 0, 18121216, 0, 3776927104, 35,
2561714100, 10, 0, 0, 0, 0, 3316480, 189267968, 0, 0, 0, 0, 188612608, 0,
0, 0, 1073741824, 865279872, 3170893824, 42455080, 0, 4059086080, 468,
488358080, 490119435, 832569344, 2147483650, 782107288, 872598464, 5, 0,
3489660928, 117379584, 1208101152, 36, 2892, 2963898880, 34, 0, 0,
120650412, 29, 0, 2516582400, 34, 3637516002, 2709009, 0, 21776, 0, 7905,
16705536, 2700738560, 0, 294436864, 0, 3221225472, 426, 1476832, 5496832,
68440, 1895473408, 681, 0, 0, 0, 0, 0, 0, 263704576, 0, 1342177280,
3993176656, 671553, 0, 980418560, 2952790018, 3994619971, 1, 0, 0, 0, 0,
1677721600, 45, 2915042429, 16, 0, 0, 378847232, 0, 29, 0, 205408,
486682624, 0, 0, 2692677632, 0, 0, 4030726144, 2, 0, 0, 263897088, 12227,
0, 0, 2216596480, 472, 0, 0, 264110080, 1, 0, 0, 446208, 0, 2717908992,
254, 0, 0, 4223074304, 3724541952, 265, 698462875, 11229723, 2996764672,
2449527857, 455720996, 697303040, 1907529755, 6953, 2197815296, 14033056,
688915776, 1907527707, 310320848, 3875714672, 455684119, 42699,
536870912, 93262404, 0, 0, 4033871872, 2703106, 0, 0, 277438501, 11929,
0, 0, 2061216, 47427584, 0, 32861184, 1746468864, 1, 4112384, 92584, 0,
0, 4227858432, 9, 3311403008, 17, 634781696, 0, 0, 534843869, 3758096411,
862061213, 3004899264, 35, 0, 0, 0, 0, 0, 784464883, 1882340362, 2606,
453658272, 42401813, 2273386685, 28440607, 336855040, 16837264,
170820048, 2220883968, 1106455818, 4182776607, 2768240641, 378318592, 0,
3490277888, 5782, 0, 0, 0, 0, 3520397312, 2298478593, 494, 493881362,
1879048210, 698550940, 4280104048, 268, 1336, 1879048192, 4341, 0, 0, 0,
0, 0, 2026224, 1114112, 0, 0, 59375616, 2050143, 0, 124940, 537175552,
87493194, 1527401488, 171, 2365587456, 268435458, 7815, 855638016,
20971528, 3882879337, 2147483649, 4651, 2065622864, 18, 635548255,
3249691931, 766057253, 3774873600, 40603940, 129430, 0, 2992308224,
2921014689, 45, 626011562, 833770523, 766319397, 1478174096, 176525746,
11688, 557042944, 2991718412, 1343956241, 434, 0, 1881922048, 314638618,
1073916193, 287559848, 0, 1610612736, 700912088, 1946157056, 29,
942780808, 1553162, 2978349056, 2231369729, 54522289, 940572672,
1879048202, 3649569290, 203025, 4026904576, 641793089, 1907516187,
2993229989, 2954569345, 454606871, 405798912, 18980379, 2992701440,
2736465409, 506318871, 0, 251742464, 0, 0, 0, 2459021584, 3249606146, 79,
2751568208, 23, 0, 0, 0, 0, 0, 1960, 2434154496, 4143, 2069008, 0,
651167041, 2981260315, 586947366, 689328, 455536640, 64682, 2954436096,
2993295611, 1917025, 0, 1083179008, 3221225501, 2823749662, 0, 0, 0,
660992, 0, 2667696448, 284, 682625273, 18902299, 0, 3306153088,
303853568, 4231004160, 2175961360, 6952, 504380720, 490819754, 667005565,
2708358171, 6951, 2130706432, 455598514, 1886459910, 1073741824,
576719434, 1, 267632640, 400667252, 269014555, 2994215719, 1980910385,
44630450, 0, 0, 415367168, 2501581232, 454631857, 430027166, 28417307,
2997813248, 2904238817, 295457202, 714080256, 296921115, 207821591,
1627495920, 19, 2063598454, 1344392717, 2997230359, 1527916897,
455749884, 2711746819, 3221225488, 2692, 0, 0, 841027645, 539672578,
2995195929, 2233149537, 455623090, 2913010407, 10882582, 0, 108864,
7974912, 0, 1879048192, 2672, 822110864, 3841, 0, 536870912, 557060545,
1, 273285120, 721531569, 3489660955, 2998206770, 3004902209, 20087218,
2666528768, 1342526730, 2802123330, 637534208, 29, 0, 805306368, 7474,
1860175024, 361, 125035, 3786592000, 6956, 0, 0, 93977, 0, 0, 58064,
53268480, 3804233728, 4026531840, 6955, 0, 0, 3532763834, 2416668687,
2984968498, 3238016305, 455848151, 2229383635, 3760429578, 2790722229,
3590473264, 20094994, 2985416969, 2712777728, 645, 1627409968, 171425822,
770828419, 3518085147, 828775213, 318767104, 40, 1382088989, 1540626,
3000762368, 3659214257, 280052146, 761377495, 3776501019, 159,
3641689216, 455967154, 0, 0, 2999779328, 3407555777, 455909810,
913383683, 1092146962, 5813, 2059440, 52703232, 111296, 1073741824,
2999190194, 3357223985, 48431138, 65857, 838246912, 287514496, 0, 0, 0,
0, 776077312, 0, 0, 2063602704, 1056964864, 87629546, 0, 0, 1017118720,
16, 0, 1241513984, 497189029, 0, 1566720, 8781824, 1090049, 176463872,
6016, 1621437440, 280236429, 588983584, 170549262, 69691, 1353011712,
2982347305, 3925868545, 1, 2986357679, 1629124112, 4084, 0, 279531520,
2158011843, 2684354561, 4084, 2634022912, 1368229, 1526799388,
2432651018, 596250607, 1512001073, 42450961, 815792128, 1889704448,
523569757, 2600468480, 286339084, 111053, 3758842624, 11272910,
1158295151, 40, 0, 0, 0, 603979776, 521249265, 3958501667, 3237714447,
369565457, 1, 0, 0, 1073741824, 2956659246, 403761441, 494, 1609564160,
10, 0, 1677888960, 169, 3909092684, 10934528, 0, 2718586464, 42,
3009455609, 1359302671, 2771978808, 0, 171458560, 64862, 2415919104,
2774532426, 2058528, 378998784, 1569760682, 30879761, 173604864, 1191888,
518696960, 3546284032, 2426786048, 108659255, 1526917632, 466182507,
11269, 3221225472, 285215365, 1048129, 0, 121451, 0, 0, 2081483136,
525447186, 0, 2415919104, 146546065, 2024816, 24772608, 0, 18935040, 0,
0, 41578496, 397419985, 4026531841, 137629645, 0, 24719360, 753926144,
2635806, 0, 0, 0, 0, 2399210240, 681054392, 165248, 178020352, 0,
805306368, 561, 134217728, 3841, 0, 2810112, 677904384, 318767104,
42631423, 0, 2446942976, 4156, 0, 0, 0, 1890075136, 4612, 0, 0, 3446,
1106993920, 8043, 503316480, 18325971, 2236612608, 1608202, 0, 2037952,
0, 3046113280, 31, 0, 1577058304, 277754117, 92277, 16626688, 577437696,
1, 0, 3081114, 3489660930, 721558932, 3170893824, 34, 983969, 0,
18153472, 126815, 0, 113825, 3490007040, 505086643, 369098752, 494, 0,
1342177280, 395841540, 1459617792, 39, 2925655196, 805306378, 284230188,
1, 4027641856, 3905025232, 17821441, 0, 3556893728, 5, 0, 17117696,
772538368, 1054608, 0, 43095, 2415919104, 196548230, 2415919104, 471,
371, 1541888, 0, 187328, 0, 6323, 0, 585760768, 1241610672, 257, 0,
18539264, 4190633984, 1543545297, 6918434, 7802, 0, 0, 1067264,
532447232, 0, 301235968, 378, 64432, 0, 777106150, 805691163, 6958,
2937794192, 456028206, 2387, 268435456, 3001156102, 3523332577,
268345603, 3591372800, 1073741839, 604, 0, 0, 2034330500, 2708103169,
560529659, 2033457, 0, 240198948, 805306395, 6926, 0, 0, 6021, 32841728,
2828206080, 3858759680, 432, 1815196399, 3249728778, 147200814, 2656, 0,
2549088256, 104450, 3001745408, 212769, 30416896, 43694, 2952790016, 550,
0, 0, 425721856, 251661842, 4081254400, 1, 0, 677386741, 32976128,
2760966144, 805306368, 472, 8697, 30959616, 0, 0, 23793664, 1950,
828968960, 4271, 674176, 0, 0, 0, 3002728448, 15743441, 0, 792834805,
547963419, 3002669871, 1595617153, 456089762, 0, 0, 3002138624,
1562062593, 32, 4509, 32860416, 0, 2077616, 0, 41727, 0, 0, 0, 0,
3073450768, 994817, 556204032, 1486209, 0, 4137806988, 30682902,
3664707584, 738384817, 468, 2254446339, 2976459778, 3661631938, 14681105,
291627008, 1114730365, 29, 471924736, 0, 495067136, 1615791008, 0, 0, 0,
170876928, 71177, 268435456, 8000, 0, 465, 2155881875, 29, 0, 3892314112,
13, 2122323894, 2684354591, 398590134, 4044431408, 4030275837, 0, 0, 0,
385875968, 269774862, 2490368000, 547662102, 7565, 4042273328, 7, 0,
268435456, 8124, 2836038864, 23, 0, 0, 0, 0, 2613248, 6083, 31,
151060480, 0, 0, 2816481192, 2, 398786560, 0, 16035840, 0, 0, 0,
3154116608, 7319567, 2239758336, 10, 115867648, 0, 0, 128125, 1879048192,
4168155172, 1, 270352384, 0, 0, 0, 3926752816, 528363991, 3784353859,
805306383, 4658, 639022352, 276, 2515533824, 4029058335, 116072306, 0, 0,
0, 2952790016, 3157007636, 1, 303517696, 0, 0, 0, 0, 0, 787493115, 30,
4214620160, 3524397153, 40538384, 2366636032, 24, 0, 0, 36581376,
1483735040, 2149753344, 4659, 2052992, 4028686336, 313567330, 3239424287,
1752563810, 1094785, 0, 3607109098, 2704377600, 97, 117440512, 504, 0, 0,
0, 604076224, 175685901, 444596224, 27, 0, 0, 525389824, 1300234240,
3232219664, 4167311122, 1, 493608960, 11599, 1882018304, 758514388,
1292030928, 47505453, 3543144557, 271400962, 758190376, 3388997632, 34,
2764052091, 4026531840, 761463459, 2065504, 32010240, 3591384416,
554807298, 760480470, 1543629776, 45, 42152, 0, 1772748800, 2019953,
377540608, 0, 1693696, 0, 2266858160, 1, 0, 1084569600, 724, 0,
280154112, 0, 1084579584, 61449, 1912602624, 385187869, 1605369856, 10,
4099407872, 73217, 0, 189836065, 2952790017, 222, 1879725600, 1,
1522532352, 268435466, 4888, 637534208, 4028891307, 1849, 807846144,
278727261, 0, 0, 3373311396, 555794191, 838992098, 1, 0, 0, 2953027840,
2754806186, 0, 0, 67847, 0, 0, 0, 0, 505413632, 16515329, 0, 2298478592,
278896917, 2459037806, 1610612746, 4591, 1073741824, 41640100, 124780544,
1908183583, 61445, 15743552, 0, 42483, 0, 2771582976, 2264924160, 277,
550509041, 16999424, 574291968, 2001456, 0, 0, 2147483648, 2790591072,
51520128, 173301787, 384827392, 1879048194, 3903647802, 1, 47783936,
8679, 1879451648, 2651, 1879048192, 4026745120, 11374, 1076529408, 8067,
679392, 319414272, 2850029568, 10860544, 0, 2034656, 4829184, 0,
2952790016, 721879062, 1155664, 179638272, 1212153856, 16, 0, 1375908368,
281, 0, 0, 7824, 1480320, 38879232, 1069614229, 3285250, 0, 20752, 0, 0,
0, 846987264, 0, 41328640, 125249, 10881280, 2785738752, 1191182336,
380682405, 3004291159, 2754320, 0, 1864205760, 175796389, 792732854,
3758096400, 588, 0, 0, 2583691264, 829005599, 100, 0, 0, 74448896,
2880017, 0, 168736, 0, 11600, 3490376960, 2780500485, 3389002528,
12525570, 120154, 0, 2778398720, 1459617792, 45, 562047934, 2147483679,
4163572130, 3238002689, 165, 351280563, 3489660946, 2633, 0, 528732160,
379592756, 32017664, 526712832, 0, 0, 677380096, 2164557834, 4869, 33488,
494288896, 675282944, 10, 0, 452984832, 5922857, 42320, 1342177280,
2783449040, 0, 7053312, 5581, 16510976, 0, 1038624, 174571520,
2210526811, 30, 691339264, 369098752, 278, 0, 0, 404750336, 1, 0, 0, 0,
503578624, 1061408, 4808704, 0, 251806976, 0, 620756992, 165, 137405912,
16, 0, 2969567232, 165, 2126512128, 10829853, 0, 3405774848, 523854114,
126877696, 2, 86245376, 1067040, 0, 0, 0, 85721088, 15739137, 0,
3942645760, 866063, 0, 1121008, 0, 1530920960, 30511370, 0, 15742368,
495939584, 0, 1084581632, 2798788227, 28016, 269279398, 13166, 0, 0,
3137339392, 52007078, 0, 1879048192, 7815, 677536, 0, 3757, 805306368,
21831055, 520093697, 307101732, 3193, 2952790016, 497814109, 126736,
303493120, 1613758464, 1613579786, 4125, 676912, 180031488, 0,
2684616448, 29, 0, 0, 42487, 0, 2771845120, 2181038080, 295883226,
1722810368, 1610612738, 7986, 196400, 0, 8595, 0, 0, 2248146944, 39,
129156, 0, 0, 0, 2863104, 2242904064, 2969885, 1796014080, 2634022913,
29, 92530, 0, 508887040, 1049328, 0, 2604727381, 1342177290, 5762,
2081403248, 23851035, 1937, 2114018816, 872157176, 1046672, 267128832, 0,
2820352, 0, 116704, 0, 0, 2158354944, 217714680, 3053453313, 267931926,
3793840349, 3318814, 127208016, 0, 7016448, 0, 4026531840, 2781414088,
2568966240, 24, 0, 10875136, 0, 822198448, 165, 1016191065, 0, 0, 98640,
0, 0, 10854912, 0, 3875536896, 505, 72234, 3221225472, 1775964118, 96737,
25427968, 2446456678, 18879775, 0, 678752, 0, 49411227, 86546,
3659071488, 1476395009, 44101797, 4214226944, 1, 0, 251658240, 362, 0,
1342177280, 4564, 0, 293629952, 1159729542, 31, 715980800, 0, 0,
1414529024, 2625802, 673251328, 1090641728, 173920296, 1456546946,
2261002, 0, 170304, 530558976, 42278, 536870912, 4367, 3172973008, 165,
3178276172, 2, 2783182848, 0, 0, 65402, 2952790016, 4514, 3942645760,
495575203, 0, 1911051520, 2778137002, 2013291328, 255, 0, 822048256, 49,
0, 0, 275777566, 16742175, 0, 2030043136, 255, 121196, 1102878720, 40,
1141360, 14987264, 0, 805306368, 1778189107, 100663297, 304975913,
3176136704, 10637826, 0, 1426063360, 45912226, 3017801728, 30520578, 0,
1393690656, 38969506, 1294991360, 4043079952, 5777, 2684474880,
319303968, 0, 0, 0, 1032432, 0, 12723, 17606656, 0, 4076863488, 16609587,
142685162, 16694291, 4051238912, 197105, 0, 4056875184, 16749313,
4287627264, 2249302416, 472, 1218510737, 32832274, 0, 2013265920,
44347405, 1755316224, 19078914, 0, 2533497616, 378077456, 10477, 0,
4287561728, 0, 0, 2155872256, 1, 434438144, 0, 0, 0, 0, 0, 0, 45244416,
11490, 1611760896, 4445, 0, 0, 1859125248, 268435457, 7477, 67221504, 14,
12825, 2415919104, 8035, 0, 0, 0, 0, 4123066368, 3708796721, 521695486,
411042963, 1360024863, 118300440, 140352, 521678848, 3991938762, 15,
153223168, 387913760, 362, 0, 17720064, 3576168448, 654311425, 295817685,
3091322154, 3788512799, 276038177, 0, 273207296, 341835776, 4026531856,
2811698513, 0, 0, 446819493, 536870912, 540745042, 2617245696, 255,
2455767112, 313354, 2621440, 1006632961, 7225605, 6074, 3291648, 0,
3926915568, 305422360, 1048576000, 3221225482, 2602, 34064, 37773312, 0,
1074832128, 568, 671376, 0, 1437664053, 16623370, 0, 20688, 8732672,
554696704, 1610612976, 153, 1157685712, 291295735, 0, 554709248,
710410926, 2885681152, 41, 971108573, 30761986, 0, 2231369728, 265842692,
8638, 25931520, 0, 0, 0, 1986131925, 2147483650, 695, 2516582400,
303157503, 6079, 1613368320, 4222820154, 991904560, 5, 1381040020,
2258432, 0, 2801795072, 496, 0, 11036160, 683409408, 2077568, 0,
2218792558, 1201162, 0, 2348874352, 527486995, 787480576, 1075430144,
412, 1061968, 0, 64908, 3491348736, 786698665, 1897732480, 176570657, 0,
3251774720, 432412289, 3338665984, 25, 488729447, 2952790034, 74587560,
105553, 302780416, 3465543680, 583951, 0, 236944960, 171, 752879998, 10,
2869493760, 1819456, 496693248, 0, 491776, 1305935872, 2115055456, 255,
197176074, 569727489, 2869760417, 218309264, 36, 42285, 0, 0, 56336,
495157248, 8325, 16743168, 121503744, 0, 0, 0, 0, 0, 69504, 268013568,
6076, 3221225472, 791286336, 0, 0, 677380096, 2178089731, 4151119865,
3070230529, 268017687, 4189061120, 4027569423, 8038, 0, 3759857664,
510726335, 2952790047, 4059110819, 4026666577, 497, 526428857,
1879048192, 4089, 0, 5337088, 3426746684, 2147483649, 133, 1830649280,
178094331, 801204703, 1342177281, 7992, 1864346624, 37, 5546, 0, 0,
2818572288, 522137621, 754974720, 1343596305, 477437817, 2885875345, 21,
1903165440, 805306370, 398270242, 2885681152, 255, 3168916013, 16883714,
438435840, 1, 5402624, 4162920930, 3775350543, 5787, 788529152, 466,
1670448284, 2953990932, 612441958, 9936, 0, 4164018185, 4026531855,
3651015220, 2869950465, 288, 2948605186, 1104236032, 248123384,
3188717584, 340975650, 4013019963, 951297, 0, 0, 28721152, 1534066688,
2448927, 1876951040, 4093640705, 517087485, 1450181153, 536870914,
833487476, 2600468480, 27934754, 3109027840, 30909471, 0, 3808573936, 10,
331285421, 268950530, 499, 0, 0, 194634, 104960, 0, 555580752, 471,
1672599098, 29, 3593863168, 940687969, 493064662, 1664210482, 1372992541,
252976483, 220029680, 303231258, 4249989659, 3492668433, 520428898,
756752864, 455196706, 563098010, 2416011547, 55384844, 0, 0, 2735739346,
749073, 299433984, 3439329280, 178123184, 0, 4026531840, 3758428706, 1,
0, 0, 0, 0, 2466250752, 24, 0, 2491904, 0, 0, 523280384, 1680874687,
11228948, 2989359104, 738337809, 455258546, 800174633, 1639065345, 6946,
0, 0, 570437516, 2952790043, 2988777273, 1913638849, 455221264,
843055104, 0, 5220, 1125504, 0, 1991313026, 2433122306, 109452573,
2215667793, 275263750, 72302, 0, 4156489728, 2432696321, 377892869,
2995900861, 2147483650, 2795049331, 135712, 0, 1754334363, 1882104848,
43520104, 0, 0, 575738424, 536870943, 1803882787, 2048598833, 455282955,
1763710864, 1627820304, 4167958992, 1123058, 0, 0, 2415919104, 2572,
4043465296, 168599594, 584056832, 3489960209, 6948, 2449504016,
168607767, 2386623720, 10, 496377714, 1, 3227648, 0, 2175942400,
108993313, 2501868800, 521162919, 1755383435, 16, 110034944, 2366662881,
275300614, 594653752, 1370633755, 6947, 0, 455315456, 43612, 0,
711393280, 2333108592, 275337252, 1647378094, 3489660957, 13, 0,
496193536, 153099287, 3239710749, 7825, 0, 0, 1773209244, 2427012368,
4201, 0, 275369984, 3301965824, 1342177281, 287445546, 1242669489,
15864242, 610279599, 1102202139, 2860587812, 1224736768, 455377330,
3116367872, 805306370, 2990740010, 1092297761, 31465906, 1533092516,
2620160, 0, 0, 0, 111130, 536870912, 4650, 1476784, 0, 74052, 1374465792,
7534, 1028720, 0, 0, 1610612736, 7541, 2667577344, 275374342, 2106599939,
2150339341, 6299491, 151535, 522403840, 50331648, 16482321, 4133421056,
1, 0, 37748736, 2100242, 0, 0, 0, 8728, 1613404160, 1306530286, 125328,
0, 0, 23691776, 0, 1493172224, 33, 0, 31038464, 0, 3238002688, 500, 0,
1610612736, 191, 0, 0, 209715200, 1621146378, 2572, 1932432, 168570880,
548516364, 28445211, 3656646656, 236658929, 455135666, 129878, 33047296,
0, 1375731712, 10060028, 66867, 0, 0, 59536, 0, 2808087758, 3489660928,
19071200, 14, 377712640, 2307915776, 2138128, 0, 50331648, 497164540,
2256535552, 17368607, 0, 1479456, 0, 71338, 2216960, 0, 0, 0, 4483, 0,
398458880, 0, 7151616, 1315, 17971456, 861143040, 1192128, 0, 4480,
2175928576, 6944, 1087664, 26050560, 538978961, 3758251291, 2962297004,
2400259889, 453575088, 66681, 0, 0, 0, 0, 88091261, 16610589, 0, 0, 0,
361758720, 0, 4234018816, 158672, 0, 92196, 1611067392, 2883060238, 0, 0,
2483154511, 10, 84869120, 1962934272, 167, 0, 1073741824, 4267908976,
488542624, 46235692, 0, 16810496, 1758527488, 1046721, 0, 4252, 0,
46268416, 1164800, 0, 4172413835, 23597327, 551747584, 1046736,
273211392, 400556032, 3, 0, 2030043136, 267968796, 83008, 0, 0, 0,
39878656, 4171239512, 15, 556990464, 2734686209, 507, 0, 1879048192,
8090, 3003249056, 40292399, 83505, 1879048192, 357, 469762048, 302191057,
1857, 2541312, 58982400, 889192463, 39, 522264543, 2704404243, 488,
419430400, 499, 0, 16659712, 838139904, 4078116705, 177467697, 43989,
16851968, 0, 1335984, 280125440, 99614720, 825360411, 625414944,
4229111792, 320852273, 1035993088, 31, 56041377, 1207959567, 271, 71429,
0, 780795904, 1110896, 0, 1842348032, 2, 3517906944, 687865857, 47, 0,
536870912, 148117686, 0, 0, 0, 805306368, 121, 0, 286322688, 0, 0,
435355648, 1479632, 0, 531706362, 2435971091, 4895, 1480816, 0, 0,
268435456, 4526, 0, 0, 543240709, 1104703507, 4192801568, 3189711505,
15499624, 78350, 3509718016, 839455520, 118133697, 320897330, 2231, 0,
2783117312, 0, 175693824, 1041314331, 2435979267, 840176417, 286466401,
265826610, 198180864, 2684354570, 167774857, 658401, 43298816,
1704003162, 1896241168, 455282789, 1997147136, 37883907, 3529513381,
19037711, 106299392, 1074513, 44363776, 1717634663, 836085776,
2839351314, 3088082592, 275152935, 0, 270788096, 633479007, 671952, 0, 0,
0, 4186112000, 2885681153, 306, 553726479, 19, 478609408, 15739681,
518569984, 0, 2415919104, 61463, 36320, 532303872, 567279616, 1342177299,
477237351, 1, 0, 0, 0, 478216192, 504934385, 320991538, 0, 0, 664338432,
4076961424, 42, 4218492298, 3221225473, 4440, 0, 0, 0, 536870912, 87,
3221225472, 503, 3143698032, 3506859520, 108269670, 1913677617,
275190022, 3020947456, 24, 107741184, 672049, 0, 1736509049, 1627813648,
108859495, 2064672705, 275226886, 3290431488, 2963878673, 4440, 25488,
512491520, 565183083, 2952790017, 4554, 2061744, 0, 0, 3775299328, 4199,
369783392, 164, 0, 1375200768, 612565664, 2044272, 0, 1132536307,
1073741843, 4121367064, 471699217, 472, 92427, 0, 0, 1033440, 17903616,
0, 23674368, 0, 1183632, 0, 127847, 30940672, 4230348800, 856817936, 275,
121013, 0, 4177920000, 1, 0, 984612864, 3758096386, 7825, 0, 263208960,
333447168, 3, 0, 838860800, 2, 2801795072, 3506673439, 210968354, 0, 0,
1037, 16509696, 41680896, 4094897871, 18710834, 549, 0, 0, 1593835520,
290206196, 0, 0, 0, 2075456, 44339200, 186654607, 29, 0, 2061680,
53538816, 0, 2157992192, 2858289781, 2166330320, 305545508, 1170338007,
536870913, 3516338230, 318767105, 38, 0, 2130949376, 109316613, 0, 0,
1187, 19050496, 0, 0, 13271040, 1070724614, 2, 0, 3189705824, 272, 0,
1879048192, 101, 0, 0, 0, 2885632, 549060608, 1963975041, 172736519, 0,
3223973888, 438567635, 121841, 0, 1090523277, 1879048208, 166924305, 1,
0, 3489, 0, 0, 0, 520790016, 2835353300, 3758096385, 4098, 2072336, 0,
68036, 2415919104, 3648851925, 2023889, 271597568, 0, 2432465408, 7988,
0, 0, 3246, 816563200, 8040, 0, 0, 120751, 0, 0, 1258315136, 167,
2493514670, 30518528, 0, 0, 38952960, 4239394000, 1, 0, 182544, 26140672,
821035008, 31036688, 0, 2399141888, 9724403, 296747008, 2446855170, 4144,
1862270976, 488644861, 0, 18142464, 0, 2064400, 31559680, 11942,
3489660928, 206, 0, 341381120, 983847, 0, 458621008, 2049664, 0,
3113222144, 31, 0, 0, 0, 535822336, 251666706, 0, 3187671040, 497066007,
1546649600, 536870912, 398721645, 2818572288, 3843, 0, 833536,
2881814528, 0, 0, 8727, 0, 2968453120, 1109069569, 453959721, 0, 0, 203,
922746880, 35, 3811573760, 16470272, 0, 453686464, 28, 3136292823, 15, 0,
0, 0, 80740352, 19944720, 0, 0, 488316928, 3646955312, 2703409666,
273686321, 4061194240, 284434439, 372255634, 16, 20840448, 32608, 0,
3826253824, 271801600, 2804812362, 58144, 0, 128483, 0, 747241472,
1344112544, 304079215, 2467299328, 10, 520224768, 3774873600, 6,
2988506979, 1911863568, 370081864, 1, 0, 2167473279, 29, 2605, 0,
6201344, 2469408148, 2384144, 4125753344, 1086033, 170725376, 0,
3761385472, 153162005, 637534209, 290, 378535936, 3, 78249984, 553700000,
39137318, 8598, 30854144, 101646336, 2249194096, 516960761, 0, 805306368,
4242, 1476450928, 512323844, 3556769792, 251706385, 0, 170256, 0,
22020096, 19, 0, 0, 45592576, 0, 0, 0, 1359637456, 790809, 0, 2952790016,
2666, 2650800128, 294740328, 1428160512, 2446848, 0, 3070230528,
302239772, 0, 1133056, 0, 0, 29802496, 1178641587, 1, 149815296, 1, 0,
767557632, 2952790026, 4517, 2533359616, 268255244, 0, 1880212736, 61480,
704643072, 44265867, 0, 1610612736, 569379404, 205856, 13492224, 0,
32793856, 4227989504, 1090519040, 532435113, 0, 1342177280, 7441, 694752,
0, 128618, 10938624, 210698240, 270371168, 3758342413, 0, 536870912,
4105, 2214592512, 257, 983804, 384256, 3491168256, 1, 39350272,
270532608, 1629106960, 720236544, 2667577344, 290, 3204448256, 1,
4193910784, 2600588209, 488, 520101800, 1913361, 340066304, 0, 0, 8141,
3232114944, 4350, 0, 0, 347078656, 10991135, 0, 0, 0, 3226468352, 15,
108134400, 0, 526344192, 3395296989, 1073741824, 4097, 2248146944,
177832190, 74959, 1926912, 2838953984, 0, 184320, 0, 0, 0, 117552, 0,
881852416, 3221225475, 567, 139792, 0, 1333788672, 2149951248, 171704814,
3959422976, 13, 0, 2415919104, 4690, 45648, 0, 0, 536870912, 529793202,
0, 292642816, 2267113596, 10, 0, 369098752, 282, 74767, 1612489472, 6915,
131920, 12935168, 4176570604, 2952790016, 57, 605090128, 1, 126548,
806130944, 110, 0, 0, 7253, 2701862656, 4687, 3288392528, 50, 70461,
3221225472, 201, 0, 0, 0, 2983723264, 7433, 123136, 0, 0, 279524352, 261,
145424, 527585280, 3208714676, 17442063, 0, 3691017216, 392, 6379,
30463744, 210239488, 0, 0, 0, 2684354560, 8087, 0, 8327168, 0,
1610612736, 507252093, 0, 0, 128197, 24060928, 136052736, 1, 170758144,
129380, 1610612736, 415, 0, 4030238720, 0, 1170688, 0, 0, 0, 92961,
2180308480, 2605, 0, 34054144, 0, 0, 0, 1067536, 0, 121033, 32825856, 0,
1811939328, 51, 967901885, 240, 0, 52112, 0, 1845, 0, 0, 2060528, 0, 0,
269331200, 538, 114320, 0, 0, 1092898048, 16511035, 15, 0, 7591, 0,
540147712, 2802917185, 500, 0, 3489660928, 7453, 0, 53587968, 0, 0,
42008576, 904924753, 21, 2759852032, 16942352, 0, 15732048, 0,
2226132281, 2147483664, 101386865, 202385408, 361, 923800881, 2559745,
355401728, 2786050816, 488, 0, 18975232, 0, 50331648, 18096628, 66199,
23628800, 0, 1073741824, 511979880, 3896508416, 2, 3903652425, 15731233,
271101952, 260059685, 2147483888, 694, 907446800, 169, 0, 1610612736,
3608944355, 4127195137, 3840, 129595, 251848192, 652607488, 3019898880,
488, 0, 2684977408, 8037, 53632, 0, 0, 0, 19988480, 1308631920, 264,
3986755931, 4026531855, 2605, 0, 32100352, 2125332601, 1611979039,
480108551, 1930072832, 281570816, 376307825, 3775703314, 7200774,
1795337694, 5623296, 109180672, 1845520352, 6619214, 266339918,
3758498159, 3314613964, 2952790043, 528748680, 0, 4030263296, 3402629120,
3506145536, 7441, 0, 0, 0, 4026531840, 61454, 2401054896, 323031547,
3940548608, 30, 2839150592, 0, 0, 2711617536, 4027357718, 4230,
2197815296, 41783043, 1890582528, 25892639, 4849664, 1, 0, 262147585,
2173376000, 2707, 0, 0, 3012560000, 432159, 0, 0, 0, 1430378704, 31, 0,
33712, 528580608, 0, 3221225472, 4213705397, 2077073, 525266944, 0,
32710912, 453967872, 352997808, 46956709, 3365, 0, 0, 2365587456, 163, 0,
11091456, 754909184, 2583691264, 21340181, 975175680, 2147483888, 325,
2061472, 9928704, 7976, 3221225472, 362348746, 2785017856, 527778080,
5432, 1414912, 848560128, 2550136833, 21, 1569718272, 29, 2853765120,
1924512, 0, 1683038166, 10, 210108416, 1924448, 0, 101149, 805306368,
210763789, 1334512, 495607808, 3370126484, 16, 586612736, 83424,
33251328, 2701131776, 2236162, 383516672, 1999232, 0, 121110, 4026531840,
163, 0, 521781248, 1020269146, 16, 308084736, 3774873600, 304026069,
78763484, 3489660930, 58327128, 1, 10752000, 92724, 19023104, 0,
2852126720, 492732446, 58789895, 31, 2843213824, 1191384896, 432,
119537664, 28329243, 1759248384, 1, 285282304, 747634688, 10514688,
261488640, 0, 0, 1401951129, 30810143, 0, 16480, 4026859520, 9513, 0,
305922048, 503316480, 470, 6339, 0, 4236902400, 0, 306241536, 751764266,
2, 0, 0, 53260330, 68769, 3231800064, 3591373345, 1577058305, 161, 4696,
251887104, 3591241728, 721478545, 21, 0, 2147483648, 4102102369,
2550136833, 267182108, 11808, 2171539968, 870907962, 67108864, 269410577,
3987734528, 268435471, 1247, 522117200, 521241050, 1142960753, 17602321,
0, 1123248, 16846848, 2487222272, 465664, 4097114112, 194433, 2793472,
1621106151, 33259805, 694222848, 27248, 0, 336600929, 536870929, 613,
3439329280, 499, 2010239351, 2684354562, 4618, 4027679520, 494,
121634816, 1342680544, 57351, 2667577344, 288, 0, 1616384, 557121536, 0,
0, 41317, 3759483136, 61473, 2298478592, 279134244, 41315, 2857216,
2707554304, 3118272, 518397952, 664916420, 0, 0, 51448112, 49217553,
1533018112, 3224516610, 502006192, 0, 0, 0, 10929152, 594280448, 1, 0,
2283799208, 3489660929, 73, 2952840800, 262, 0, 0, 697965511, 2279605808,
289472872, 118965, 1358726144, 7936, 0, 0, 983942, 3506378240, 177146369,
2316347489, 266, 2211446784, 2952790046, 305859073, 2281701376, 36163331,
0, 2684354560, 296, 3709842176, 19451912, 2405433344, 2164172824,
481362216, 4060086272, 412037120, 26214400, 1879048194, 4307, 35920, 0,
2787181798, 2, 0, 0, 531877888, 64680, 536870912, 7535, 2037184,
411856896, 128721, 1872896, 37355520, 2904067215, 6742305, 0, 2434861824,
4162264449, 3053453313, 28, 0, 2955119360, 225509632, 2667577344,
797495307, 951058432, 1087878384, 550961782, 1933521, 0, 3564109824, 0,
780468224, 0, 31485952, 2823815168, 1, 472055808, 1141873, 0, 1005676973,
291074, 49086464, 2485097088, 22057448, 4038066176, 16, 2706505728,
1426063360, 271, 0, 0, 0, 2055280, 2125824, 3257925632, 1476111, 0,
2415919104, 34, 41297, 0, 2706636800, 2282892864, 254, 561117999, 31,
429785088, 0, 527097856, 92775, 1628903936, 4088859157, 1, 526934016,
3708882074, 1075973890, 566, 2060736, 0, 2837446656, 1610612767,
1800602333, 3926056225, 39293214, 2519733885, 2952790016, 3454,
1711463680, 257, 0, 17597696, 0, 3774873600, 17539241, 983845,
2168858880, 4100395307, 1125185, 0, 127509, 2164736, 0, 1196528,
320512000, 721420288, 30904849, 612, 1125216, 0, 723600940, 1344742161,
3806400897, 218208897, 17, 3824156672, 3758096384, 4115991050,
1929379841, 168489448, 0, 536870912, 8121, 1977856, 168497152, 41139,
1675520, 3906142208, 536992465, 307421225, 3913285632, 18920960, 0,
2415919104, 4028985372, 3909100390, 3034390, 0, 1109349440, 162, 0,
536870912, 2721787785, 2281721584, 14, 68028, 1084371968, 3545436107,
1040187393, 162, 92193, 10539008, 122028032, 3290371889, 13, 391127679,
32603423, 4051697664, 404690817, 507, 0, 0, 383057920, 0, 0, 8460517,
3221225474, 4278, 2936705328, 21, 0, 1623040, 2298146848, 1, 0, 0,
1388032, 0, 2801795072, 9, 2882535424, 3758096384, 715198978, 1153952,
35495936, 382730915, 2684354578, 12186, 1108192, 0, 2868903936,
268435458, 2572, 0, 15310848, 0, 0, 0, 0, 0, 0, 0, 0, 1007310512,
39383087, 334502978, 18, 0, 1978224, 0, 2934, 0, 0, 1192112, 304992256,
0, 19018240, 4231135232, 3642735472, 251, 0, 3221225490, 700, 2248340992,
25, 1993342976, 0, 0, 0, 0, 0, 0, 288620544, 3306158897, 378020106,
3953260328, 0, 0, 4279223344, 501, 306184192, 251735280, 0, 889192448,
23, 3815768064, 15, 0, 638717584, 3841, 0, 0, 0, 170208, 0, 1944059904,
17, 20250624, 1073741839, 530411691, 1192230912, 2399220225, 373362641,
469762049, 3841, 1735393280, 1342177282, 38994025, 4076863488, 5292320,
8940, 2838528, 655622144, 0, 26791936, 0, 805306368, 590741854, 89696,
2203648, 1579284161, 1881215745, 429068841, 0, 0, 278921216, 4059692546,
530, 805306368, 44981760, 78314, 631040, 0, 33554432, 38010918, 0,
3777080064, 3155825091, 4160749569, 1, 120715, 251803136, 0, 83886080,
512098785, 0, 2416106496, 233, 24768, 0, 1581254440, 1342177281, 2571,
2516672112, 168517916, 3745, 2415919104, 8008, 486539264, 48893967, 5725,
2164524544, 375390671, 0, 0, 1081093774, 3491126288, 375332098, 0, 0,
5723, 4059329536, 4499, 0, 174211072, 15728640, 4026531843, 713,
3488613552, 303407370, 1353711616, 3491340063, 380899266, 3405774849,
176206084, 2145386496, 2, 2842755072, 2986344448, 511742230, 1828726327,
1879048202, 4482, 0, 0, 0, 0, 0, 0, 168525824, 129465, 0, 475594752,
1474817, 289513472, 658505728, 2, 0, 235065264, 2, 0, 0, 0, 138160, 0,
3798999136, 2, 0, 2164285552, 14, 0, 2164902144, 7988, 1694498816, 251,
42082, 2952790016, 2757820977, 0, 0, 0, 2415919104, 409, 4110417920, 43,
1445986304, 1, 0, 3189580384, 4751410, 42084, 31526912, 0, 5760, 0,
1852962066, 803073, 18022400, 15, 44888064, 3146, 32607744, 183828480,
1057173825, 4027588620, 0, 804352, 1869873152, 3741492273, 501,
617685899, 4057217795, 4622, 1132928, 0, 0, 270013184, 3158319021, 1, 0,
8603, 2684354560, 206, 694272, 0, 5751, 0, 0, 3942645760, 28, 118933,
4026531840, 1777471440, 1, 530808832, 0, 3506446592, 438, 0, 0,
2562719744, 1785345, 0, 0, 0, 0, 0, 2856386560, 2533359616, 4030357529,
0, 0, 0, 286368128, 2465827, 120814, 0, 431423488, 1, 0, 0, 0, 0, 0,
4028923904, 74812, 0, 620953600, 1358954496, 254, 983219, 1890207744,
79626729, 1, 302755840, 2760900608, 1879048202, 2822048420, 0, 178540544,
43584, 3356928, 0, 1040884832, 37220386, 0, 279078400, 4896, 3893000512,
24, 0, 3758096384, 615, 0, 0, 0, 3489660928, 181, 0, 26742784,
1338093906, 960274, 0, 100663296, 7, 1419771904, 0, 429720374, 198880,
385425408, 0, 2952790016, 4100001953, 1, 0, 71264, 2836992, 9240576,
1174544033, 379269284, 1690346557, 2, 235601920, 0, 0, 1508900864, 10, 0,
1048656, 29999104, 0, 3489660928, 809959973, 2013265921, 29356285,
99617076, 0, 0, 676576, 0, 69999, 30944512, 0, 1326077248, 505,
2654994432, 3758096394, 2712, 0, 0, 2558525440, 10, 405274624,
2197815297, 259, 3356491776, 1610744320, 4656, 694336, 264163328,
2562719744, 2871818, 0, 694368, 0, 2630918525, 1880728607, 2709389403,
2902458368, 20, 3914334208, 0, 2709520384, 0, 0, 404750336, 10, 0, 0, 0,
0, 268435456, 61484, 0, 267354112, 0, 3221550592, 70, 0, 273018880, 0,
2434943488, 4047, 1041961040, 33, 129600, 0, 0, 0, 285458432, 0,
2695204608, 4355, 1427178560, 51, 92465, 0, 2724069376, 0, 529752064,
127171, 0, 0, 0, 0, 6308, 805306368, 163, 1070096, 266498048, 0, 0,
293863424, 84026032, 525799856, 0, 0, 0, 1711276032, 50, 3358588928, 1,
793444352, 2567027648, 266281002, 2364538880, 1090642462, 580, 0, 0, 0,
2684354560, 750, 1964951760, 495747544, 0, 0, 0, 0, 0, 3735034330,
16989440, 2767847424, 654513792, 500, 0, 1084316928, 2707685986, 0,
54190080, 41299, 3489660928, 4272, 0, 0, 0, 1063168, 0, 2048752, 0,
42889, 2717460992, 2598, 665232, 278904832, 2555379712, 536870913, 2598,
1158624, 170311680, 74628, 3302656, 0, 0, 292704256, 41360, 1879048192,
296, 0, 0, 198249262, 2954297883, 2986285835, 4144032177, 378937377,
4156555264, 1881348096, 180362015, 1, 286720000, 521253362, 1102180379,
1141375223, 2736463697, 455028761, 41305, 805306368, 2707423986, 0, 0, 0,
2092800, 235929600, 2785017856, 3, 181403648, 33240064, 2965372928,
3592096785, 453767174, 2969608590, 462608, 1753874432, 16777217, 23, 0,
17184512, 0, 1176347440, 7049243, 3979345920, 1, 104401483, 3674282497,
284512002, 0, 0, 0, 1931456, 0, 0, 1073741824, 260513046, 1729209296,
289, 12672, 33234176, 0, 2077376, 496025600, 0, 2694874880, 177340663,
2365634369, 16195744, 437262649, 1, 0, 3154116608, 5, 2085617664,
32826893, 4044095488, 2014149729, 160, 234881024, 18970625, 0, 0,
319152128, 1476395008, 2113567, 450691072, 2936012801, 34, 606076928, 2,
1748369408, 1, 527507456, 2844790971, 2415919135, 4272, 1197216, 0, 0,
569627136, 2802388965, 3843926720, 34451473, 0, 18498304, 1802305536, 1,
0, 310470948, 536870913, 270336674, 4160749569, 31, 3460300800, 1,
278659072, 4160749569, 32624809, 467775935, 3249650971, 2709920539, 0, 0,
3209693430, 17416719, 188022784, 1776545, 0, 458338742, 823509275, 6939,
672865168, 454783336, 2797600768, 1, 2981232640, 2954566417, 267071921,
128010, 0, 210370560, 3120562176, 507, 1088421888, 3522421268, 5184,
990957744, 294826023, 640681122, 2415919114, 620233029, 1628717312,
21328132, 1171324454, 1, 2709782528, 587867648, 13324791, 474067397,
555832091, 2982746908, 3338755521, 454844849, 3614441472, 268435471,
2982216006, 1156033, 0, 0, 2148158208, 5797, 0, 379871232, 3229614080,
27, 0, 152027872, 262, 67083, 0, 379060224, 0, 0, 4205838336, 0, 0,
2650800128, 16, 1577169358, 2981219329, 684661532, 3070320096, 454881284,
3671064576, 10900992, 2982805504, 1677721601, 22925316, 480182728,
2149870064, 622862235, 15735889, 7041024, 2954955524, 1344653072,
178323526, 3388997632, 4028415745, 1459625423, 28436993, 0, 3993065264,
36606385, 3393191936, 555862784, 343, 1241601808, 279994401, 2311172573,
2712787713, 6941, 3741319168, 454943153, 1764753408, 2417862914, 6941,
2919235584, 168, 3471903515, 296866304, 245504797, 3624054912, 454906112,
2582642688, 17606410, 2983198720, 1155601, 0, 127120, 571392, 0, 0, 0,
126555, 0, 541, 2053728, 0, 468648381, 3456121840, 28962843, 15735727, 0,
2823815168, 4026531871, 4096465700, 217062433, 4028366852, 1806807523,
28434688, 2984712990, 3842647729, 454967729, 10705, 1862383616,
403509807, 3019910721, 4028325633, 129645, 3758096384, 1751061061, 1, 0,
0, 1881720320, 541463087, 212561, 0, 1671430144, 2147483649, 5874,
654311424, 51, 2763125617, 807180573, 868621719, 1041310208, 293, 0,
1342177280, 212803382, 5072, 0, 0, 234891008, 666697728, 0, 0, 0,
1337088, 0, 1780297920, 20, 1870753628, 3782177025, 484, 1744830464,
22474772, 1673621337, 1621294337, 61466, 4009845744, 162, 43171,
2976866560, 27984227, 3489674799, 4028276741, 136249756, 2976863248,
606990361, 1, 45215744, 3097428388, 823536386, 27324442, 2666535455,
4028235521, 2560665084, 1642665994, 206, 3373385888, 268, 2203058176,
31052829, 514850816, 139040, 299319296, 0, 805306368, 4568, 990974544,
266867159, 0, 0, 0, 3154116608, 17, 0, 1073741824, 3648586468, 141809,
307449856, 2404456746, 805306369, 1157958232, 1325540705, 472,
1610723861, 2270481, 0, 672960, 39518208, 1612821011, 3760725521,
676201090, 151161056, 170, 0, 0, 299761664, 3758797745, 287175122,
32625216, 2985323549, 574562054, 3036676096, 169087477, 1158676480,
1879048193, 100663684, 755074145, 51, 4013948928, 17170703, 0, 589250176,
520491293, 1169172751, 4026531850, 4192542469, 721420289, 520474886,
96580285, 2952790047, 7941, 1197520, 172322816, 43156, 0, 0, 127264, 0,
307232768, 1195778, 4587520, 75854, 0, 492873338, 1074526227, 388, 0,
39133184, 1178599424, 1610612756, 7912, 1252656, 25448448, 12885,
33046016, 4045, 15742512, 0, 3395289088, 3758096386, 610599381,
2432696320, 42622990, 498073600, 29, 0, 0, 0, 0, 268435456, 4614,
1056964608, 35987962, 10390, 268435456, 1802166278, 4093640705, 30,
43307, 0, 0, 0, 486780928, 456140183, 0, 844955648, 1996618192, 35, 0, 0,
4222484480, 905969664, 42295336, 0, 0, 0, 654311424, 512770062, 83378,
11058432, 0, 3623878656, 305, 0, 2025984, 1745485824, 1073741825, 10, 0,
1641552640, 724701282, 587202560, 262, 0, 2415919104, 7549, 1023410176,
43495450, 0, 2147483648, 4137157347, 1, 0, 70202, 0, 211812352,
1427244544, 291, 0, 10723584, 0, 2801813648, 303526051, 9701, 2415919104,
542842774, 2484957377, 19, 41362, 17537792, 0, 0, 0, 41364, 2147483648,
2710637080, 2516582400, 161, 2190545393, 234783, 3565027328, 85804849,
491159913, 1195376640, 30698525, 389677056, 1, 0, 1685186768, 3758096415,
438, 75824, 23764992, 443557464, 2, 32178176, 1053392, 0, 128644,
1075898880, 648217269, 0, 0, 40936345, 537827357, 2794979790, 1610612736,
37253387, 415243837, 10722563, 0, 0, 23818240, 0, 0, 7962, 2516582400,
163, 0, 0, 0, 0, 0, 2118123520, 29, 148570112, 3506438144, 320958769,
78288, 3758096384, 25170718, 1, 28905472, 1276126400, 807715330,
616825420, 3322039376, 38563876, 1284515016, 2955201026, 617349708,
151145680, 38596631, 138281389, 1073741855, 28385032, 4213128638,
38498338, 1267737784, 2955196930, 616301131, 3187821520, 38531108,
1730150400, 2158406943, 833950214, 1192265265, 488685578, 78259,
3241260032, 249, 1908912, 0, 0, 0, 4248371200, 2581600704, 3759779329,
1891500447, 1845599489, 792010684, 1040187392, 3759808514, 104935425,
2425106, 3498447616, 118622913, 172896419, 98566144, 2972715521,
805704448, 538116241, 318783502, 14757901, 3223198739, 146019072,
1820240, 0, 4191, 2167411712, 806490628, 252903729, 318832944, 510656512,
21344019, 0, 1979878128, 289, 5896, 4029181696, 4196, 1181264, 520843264,
283115520, 815893266, 340789880, 1427202753, 31, 705810798, 2963377648,
2810511860, 2315942000, 161, 1923088384, 2685755394, 78060910,
1578677776, 527499285, 3053458788, 24, 0, 3372906400, 175620401,
481302688, 805306387, 3614572711, 1, 528195584, 0, 1402368, 369, 0,
29863936, 2937139224, 3345162, 0, 672996976, 285618646, 34680864,
4046462483, 807146241, 437453265, 44032304, 35695298, 19, 0, 738403696,
523243990, 45166634, 2435852307, 650711810, 587285744, 4587824, 0,
3758096384, 495059536, 738197504, 298320176, 0, 1343686144, 4379,
1593835520, 288186729, 916456747, 30959875, 0, 956301312, 270426416,
3381657600, 17, 0, 0, 4677632, 82837504, 2, 4004839424, 1711482481,
16392362, 2359296000, 2733058, 7523, 1925904, 0, 0, 3506721280, 79,
125936, 0, 78853, 30467840, 0, 188544, 319537152, 4700, 20187648,
872873984, 1, 378470400, 3720425527, 1362113540, 607392515, 756220705,
318959920, 1945108480, 11038225, 0, 1963042656, 26, 2258827388,
3223890434, 3502117696, 1291845633, 25018763, 20971520, 27, 0,
3055394256, 511889697, 0, 4026531840, 4337, 1125712, 0, 74217, 16562688,
608764166, 0, 527757312, 0, 0, 0, 0, 0, 3576692736, 2, 2335047680,
1327617, 0, 67812, 25897728, 2789998592, 738197504, 488022517,
3596617643, 1342177282, 1143278222, 469882849, 24178950, 194069544,
3791312403, 603, 2054256, 0, 0, 2819328, 0, 2969567232, 274801141, 0, 0,
0, 2231554816, 177635074, 0, 2010112, 0, 0, 0, 194676, 49836800, 0,
2214599168, 506, 73834, 2165127424, 686, 922746880, 531816843, 101182,
1911563520, 5776, 1878003072, 473, 264241152, 3, 0, 3036676096,
414384172, 2112, 0, 66912256, 587202560, 41820197, 4117835957,
1634667265, 816911115, 3003812561, 39043376, 119094, 0, 0, 1560281088,
177225735, 2959211274, 299294239, 25697684, 654437728, 531701777,
852500509, 3778064157, 4874, 0, 380792832, 3730833408, 2415919104,
320667892, 1942017, 0, 1265, 1615104, 849936384, 520093696, 395, 101146,
25891584, 2743599104, 0, 304308224, 175112192, 0, 57349, 2719412720,
280482074, 0, 234904064, 163381248, 2077232, 531677184, 69206016, 224, 0,
1476401504, 3584, 0, 0, 0, 3103784960, 496, 128597, 0, 224198656, 168976,
34263040, 0, 837964032, 4137491837, 1, 0, 3919577088, 1, 2334261248,
3758261153, 20103193, 1718616064, 30935552, 0, 1140951920, 26, 0,
286332416, 301, 0, 278769664, 2967470080, 2, 0, 1902208, 0, 3516931452,
805306383, 8192768, 15, 0, 0, 3758096384, 120455238, 150994944, 8, 0, 0,
0, 83296, 0, 42523, 0, 0, 2047869152, 19726369, 996147200, 1342177311,
301, 0, 19734528, 1247930697, 30714141, 0, 2770160160, 468, 1256314031,
30716189, 3567983947, 1919649, 491438080, 2433864566, 1073741855,
3568501441, 2198936849, 491471102, 1227882496, 2, 0, 637628608, 32313711,
1881148066, 31, 0, 3925868544, 8, 0, 17431808, 0, 0, 0, 70150, 0, 0,
35628848, 4026691858, 1780602015, 17957905, 0, 1504096, 491372818,
90288213, 1102074651, 6917, 2182808864, 16, 1715593501, 18259713, 0,
1041904, 0, 3491851051, 15, 399310848, 0, 5713920, 0, 2952790016,
51518869, 2785017856, 263536808, 2505048064, 2952790046, 3906138149,
162113, 0, 0, 1073741824, 5872, 1095104, 378621952, 123143, 0, 5791, 0,
5730304, 121463, 2178578688, 3622313383, 2097155857, 20099546, 0, 0, 0,
0, 0, 127904, 3221225472, 2673, 0, 17272832, 0, 0, 433979392, 1,
176533504, 3965, 0, 871628800, 0, 176361472, 0, 0, 0, 1045952, 26255360,
2487348345, 18039838, 0, 100663296, 467, 0, 0, 0, 1107987264, 31793162,
0, 4026531840, 7948, 0, 0, 0, 0, 0, 2382364672, 264, 1617031185, 0,
1770389504, 1, 304377856, 0, 1613219072, 134, 0, 0, 2639265792,
1075285264, 4553, 0, 0, 8993, 0, 1863319552, 9697, 0, 0, 1103616,
394985472, 3793676656, 16, 65207, 3489660928, 61493, 2936012800, 10, 0,
0, 0, 0, 0, 0, 18126336, 0, 1862270976, 362, 294649856, 3772250128,
67379003, 136481, 31576064, 2535456768, 17039389, 5971809, 16983246, 260,
941742678, 4028526064, 53018989, 0, 298405888, 0, 0, 0, 0, 0, 0,
536870912, 4024, 1198544, 494006272, 1510015856, 1672212, 0, 0,
525205504, 0, 0, 2824011776, 1476592, 0, 129312, 0, 744554496, 0,
33394688, 128105, 2749696, 0, 0, 0, 64706, 0, 873857024, 302141345,
40239412, 0, 268435456, 59973001, 0, 179671040, 0, 2952790016, 298848355,
1074193, 530898944, 2762022832, 288624129, 4260, 1309884624, 494,
4087349248, 251822870, 0, 1056688, 0, 43107, 1879048192, 5771, 1182064,
0, 2104492032, 1, 1765146624, 1493172225, 50, 127137, 0, 0, 0, 488497152,
83028, 0, 245301248, 1, 0, 3779081022, 2919244033, 605, 4026531840,
2097417, 3313500160, 17, 809762816, 1107306369, 319041840, 42529, 0, 0,
0, 0, 128273, 805306368, 4232380877, 86176, 0, 2814388617, 16508945, 0,
0, 0, 0, 0, 3894149120, 1140913, 0, 0, 536870912, 5773, 0, 0, 1763704832,
461073, 0, 1933872, 0, 2186358848, 4026711552, 809243395, 303236049,
319008819, 66299, 2684354560, 756, 3674210304, 6, 77672521, 3758394131,
809828545, 1246305, 0, 0, 17722112, 810352640, 1259537633, 319078704,
65171, 0, 302841856, 1, 0, 3049259008, 2415919104, 4253418170, 1039200,
527319040, 2180056410, 18047774, 0, 1610612736, 251, 1056041063,
4026531840, 574, 3491698864, 171581904, 2862612480, 30482432, 355729408,
721420288, 532451616, 0, 536870912, 4466, 0, 278892544, 3200253952, 10,
4466, 1040333920, 286331141, 92440, 25925632, 31719424, 0, 0, 194742, 0,
0, 2164270016, 11206683, 0, 24054272, 202637312, 3607101441, 22274550,
1347425382, 11037185, 340328448, 1342259280, 22564885, 1971322880,
29107229, 0, 1711276032, 13, 42905, 556052736, 378, 2902458368, 504,
2847932416, 2, 0, 1033872, 0, 3957, 0, 44171264, 0, 12066816, 1211110634,
2954153985, 246350155, 2886838240, 20983840, 1242562560, 269835521, 320,
0, 21012480, 2759852032, 31, 0, 2902477904, 10, 0, 3508175104, 7952, 0,
414830592, 1932525568, 1, 0, 806456240, 525173003, 2198874193, 268435458,
3776709257, 1, 0, 166723584, 805306397, 713, 95008, 495063040, 0,
271098112, 646, 0, 0, 0, 1610612736, 4496, 2231369728, 47, 1775239168,
3489660930, 504, 2046528, 0, 0, 3254284800, 702873863, 166928, 280145920,
3228570491, 15, 0, 605957792, 470, 11733, 30922752, 4043374592, 1, 0,
2850121913, 2130860560, 4874, 43584, 0, 28323865, 2952921883, 3565690184,
2250066065, 491286996, 1213322372, 3788800541, 265159193, 2835422928, 17,
9141, 1342177280, 171, 1509949440, 5, 0, 0, 0, 1070080, 270348288,
3145728000, 15, 257032192, 1224736769, 281268269, 3275820090, 16,
179830784, 504473040, 268, 814, 2983500288, 3566738761, 4062005649,
176247178, 3597784212, 836014594, 3566207723, 35473681, 491319460,
1796210688, 4027772701, 6935, 0, 0, 3649046061, 2708375055, 63111977,
2082150352, 454537649, 1239527801, 3518068481, 1748897984, 300947857,
4028199180, 385944585, 805306395, 2356091077, 1931155265, 454500785, 0,
2978764800, 2354518214, 2347768033, 379490049, 127379, 821981440,
4285530517, 1962934272, 531042320, 41303, 0, 2707030016, 2330987280, 10,
0, 17509376, 2706898944, 13184, 319533056, 1122048635, 3240381203,
4246999874, 201483712, 454595028, 110976, 1725184, 359202816, 2181093920,
454562225, 330373146, 1091073553, 831521338, 2015183248, 396, 1087474807,
4057206813, 2790199472, 1712899616, 490811788, 3326184553, 555069208,
3565818051, 369227153, 415703308, 2446396483, 3507861782, 4350, 0, 0,
2879324550, 3761116416, 25303832, 2147630895, 4028112641, 0, 3489660928,
356254353, 2333226368, 454599089, 2223102626, 836412426, 24583594,
2516682351, 44732884, 2811241979, 1880782849, 423, 2399141888, 378405138,
500170752, 2, 4265934848, 553648128, 11125044, 0, 808186880, 185669830,
872415233, 53186603, 1098910359, 2704329491, 523768588, 0, 175874048,
218181841, 1093934355, 818745668, 3474132161, 319611184, 425786391,
1076335131, 6937, 2566914048, 454656433, 390198186, 288407280,
2979201381, 2432817441, 454623665, 3143630848, 570074114, 564,
2064795392, 323137565, 1904214016, 2616834, 4194762752, 155905,
520982528, 915341680, 1862364701, 23860983, 1794119391, 37052161,
135345192, 1899243009, 211096386, 571687505, 323105076, 376373605,
1075893744, 683143190, 1594001264, 4027977473, 2278555648, 3490739999,
611, 352390672, 4028006448, 41313, 1611986944, 4180, 4127195136, 20,
3332379900, 24, 505937920, 2281819616, 10, 79691776, 3758096386, 111,
3238002688, 464, 0, 2954166272, 444137586, 1494431489, 500, 3270508544,
302096, 0, 0, 0, 0, 2335232, 781713408, 50331648, 255, 1966181449,
3247196161, 83102366, 2987386000, 3840, 101445, 2147848960, 8027,
1728148768, 296136717, 3283192895, 2667665432, 22474773, 2315299631,
42824168, 312475648, 3758096402, 408944903, 3841982464, 4027961808,
2256603929, 2130791681, 21696654, 2799704383, 361, 2448526413,
2147483678, 852138, 873448241, 415437196, 1225886773, 2415919135,
469631645, 1042100336, 415539210, 0, 2684354560, 559, 1209463680,
174559242, 1060120444, 10970112, 177537779, 1409286144, 22, 0,
3221225472, 251797255, 721420289, 520593445, 2469462945, 2415919105,
584457991, 15736896, 0, 19950, 0, 2883780608, 0, 0, 0, 1879048192,
556199964, 452984833, 281162231, 67410, 1464576, 0, 4060086272, 46150104,
974061892, 806770704, 61460, 1442908080, 35618838, 5717, 1862355456,
21557300, 1174413791, 4027875073, 319935628, 2164991261, 3566071827,
2013266817, 43323408, 0, 1093671168, 20779263, 1408242671, 4027826437, 0,
17312768, 0, 113376, 278519808, 67621, 699904, 4351, 2567996080, 464,
67625, 0, 2791374848, 3640655872, 500, 1211105280, 1073741853, 4261,
3221225472, 30482709, 376482449, 2158044416, 408883378, 673018224, 161,
452003996, 3518082587, 612506394, 638648768, 161, 186689819, 19,
3896581891, 1501457, 0, 285212672, 251776001, 170459136, 1, 168034304, 0,
3252293376, 7588, 0, 17297408, 400556032, 21376514, 0, 0, 0, 625044014,
823337200, 186523476, 1, 0, 0, 1060864, 1157169152, 99921, 11190272,
92644, 0, 1177354240, 1, 0, 128005, 1073741824, 7085991, 49567, 0, 77996,
4026531840, 2980840102, 2853903025, 433, 442610087, 1102161179,
3501464346, 3892314113, 263344167, 0, 2970554624, 807739220, 219879968,
454688802, 101413, 25953280, 570163200, 100663296, 280015244, 10426,
2702553856, 647, 33581872, 396, 3255893398, 2963869208, 2664, 4211081216,
254, 3161456640, 24, 105316352, 2768248096, 464, 987758592, 2685952799,
88535092, 2752650544, 8163579, 2594182386, 1879741442, 5779, 3926078832,
13103104, 322961408, 2685976074, 390, 369098752, 288, 2376146978, 2,
4037018136, 2415919105, 266047498, 2804940800, 2130448, 377028608,
2248146944, 10, 2557476864, 3237892096, 4362, 2164265712, 379380003,
2555379712, 2415919104, 317456997, 0, 0, 0, 3252232192, 2705, 39056, 0,
0, 805306368, 177864857, 0, 177680384, 852620272, 2416111890, 365,
689424, 0, 119534, 0, 0, 587246176, 12, 3666870272, 2415919119, 92279615,
4278190080, 414920721, 181, 822644736, 596, 2969567232, 496111870,
2878434093, 1880108559, 4011, 0, 39755776, 2870016690, 16429071,
4206231552, 3020925776, 262877434, 2353015945, 3758096414, 113,
3609158736, 15831305, 122918, 539558912, 3505397668, 2348810241,
40264112, 0, 2952790016, 4070, 0, 0, 1441866608, 4026531842, 573309527,
0, 39145472, 0, 1610612736, 718, 1895825408, 42, 2879432975, 17541391,
4206821376, 3255806944, 262914082, 73529473, 20182026, 0, 2484289088,
492, 1029780437, 557043987, 442045245, 1260800, 0, 287309824, 27,
533659648, 1326485473, 322801824, 0, 33252608, 2970943488, 320799825,
454115761, 318894143, 4026531841, 673386412, 2197958096, 42217512,
159447754, 536870913, 297603526, 3422652848, 262975738, 2894133961,
1627047695, 3993440172, 1, 0, 2885745345, 1879048207, 4207215213,
3272584256, 262938874, 1774203874, 3506089482, 1176965034, 2432709857,
40816922, 2829132543, 1631986961, 166663266, 2852321328, 341975290,
2858482343, 1090168079, 445452202, 2835349505, 262832378, 64949,
1881672448, 4204987008, 4144998944, 177352712, 2502994213, 1879048223,
4424, 637534208, 40591362, 0, 17044224, 0, 536870912, 37, 2286944256, 2,
672464896, 2365751504, 42094622, 1148190720, 397330, 0, 2070224,
497397760, 19910, 268435456, 3644726532, 3506438145, 278737067,
270532608, 836366609, 46994209, 1694498831, 9957635, 1379929760, 463120,
0, 520093696, 5177632, 893386752, 3761090835, 641277339, 1035456, 0, 0,
31054592, 0, 2215274256, 501, 42009952, 3489660959, 569765940,
1459617793, 384196633, 70743, 0, 1176240128, 504652241, 341963078,
171001368, 2954800642, 62526561, 1038832, 168120320, 501219328, 10,
701956096, 0, 0, 3495952384, 808713487, 78054060, 1622817, 0, 66795, 0,
0, 0, 0, 3871463226, 16, 0, 0, 0, 1633684468, 2556436, 1175519232,
2987680033, 318996525, 1807828493, 2995458, 2790921313, 2147483648, 32,
119095, 1342177280, 2836987996, 1979711488, 44581154, 1799425862, 2, 0,
1073796448, 290, 0, 3758096384, 131, 1092896, 305283072, 3029336064, 31,
469499904, 0, 0, 1358966446, 2426734593, 204476390, 721506641, 506,
68136, 805306368, 480641361, 1644253457, 281047041, 0, 0, 0, 2019776, 0,
626, 1509120, 0, 92480, 272003072, 10220, 286642432, 2706, 3422552064,
263929900, 0, 2684354560, 256774661, 3573547008, 298131470, 0, 1059840,
374734848, 1174405121, 3330083, 2721054720, 1343238672, 351280457,
3657433088, 505, 2257584128, 1, 0, 0, 299384832, 854589440, 252929,
497352704, 3288334337, 167, 0, 3221225472, 4685, 0, 40243200, 0,
271713024, 723001088, 1678804064, 24, 3277848576, 1879048208, 8084,
1225890864, 16, 0, 570147328, 3612417444, 1, 281219072, 704772015, 19,
386531328, 1192640, 171442176, 2531355520, 3521660975, 1172315928,
3792985617, 302022981, 3496035804, 806957072, 427, 3657510384, 341684549,
67731, 0, 0, 0, 0, 78499, 0, 2836922368, 0, 0, 0, 11115008, 0,
3288334336, 279068702, 917872, 771845632, 2711, 973078528, 24134104,
43605, 0, 4162977792, 1, 25604096, 1562461649, 1095095060, 3996128349,
3019898881, 341639445, 10114, 2952790016, 336, 0, 0, 547422225,
2416366355, 4267040789, 1544611712, 518184449, 0, 0, 3901292544,
2046820353, 38, 1543504239, 4261503744, 417, 285212672, 50540567,
235938519, 16814098, 0, 1258624, 37412864, 882900992, 11010835,
4003594240, 1, 0, 2539694085, 2, 1171587072, 3608167777, 341672261,
160432128, 1890059282, 1163730322, 16778081, 302633128, 2217738240, 1,
1163853824, 1089905, 44064936, 0, 0, 0, 1120288, 0, 0, 3267840, 0, 0,
518471680, 0, 11176192, 0, 2785017856, 3842, 355550669, 224, 1170800640,
3407109281, 341623109, 3325117893, 2150570242, 102700124, 0, 341590016,
802160640, 1059586, 0, 2069376, 0, 12740, 2439521024, 4080075549, 204145,
296157184, 1622214241, 11264532, 1174798336, 135553137, 52244806,
65024474, 2433247754, 31199149, 2734686208, 3842, 62978772, 268789258,
4208463789, 3591351664, 263016698, 0, 0, 571478144, 62528, 0, 0,
2173475072, 8098, 150994944, 378159119, 1663135562, 1040290306, 26739056,
2516583294, 3759767041, 0, 538902272, 4224, 3070248352, 276828521, 78675,
2437281536, 5215, 0, 265080832, 0, 1073741824, 412356692, 1044848,
26427392, 402522494, 3506620896, 25354263, 2162169918, 2948609, 101446,
234980352, 0, 2197815296, 44515695, 2463226357, 2148994560, 415227928,
2346719456, 3759721985, 3071279104, 15, 0, 1107920, 518406144, 0,
32912640, 0, 0, 0, 1288706358, 558235904, 1174017120, 4229193649,
266649925, 33674940, 771846402, 24633367, 1977620366, 3759631873, 128929,
2919332096, 351658007, 3306196928, 34, 3119513600, 2415919135, 388305128,
1242848960, 525926651, 1585530343, 2705713428, 1172509790, 3843317313,
341729605, 2465267104, 2, 1173749760, 6625, 0, 2474722802, 1363538945,
780211295, 3960758000, 341774594, 2937061376, 3489660944, 2872579166,
401606192, 38, 3751933013, 2, 266338304, 1040977, 0, 0, 0, 3640590336, 1,
286408704, 0, 2415919104, 4369, 2300420784, 415760780, 1130466440, 99082,
834732032, 0, 177635328, 0, 0, 4205903872, 3474954897, 473, 349245208,
1879048223, 23, 0, 4029997056, 0, 835822080, 7450, 689920, 0, 433181084,
268435485, 3516924187, 2652707345, 488239569, 0, 3775939072, 4226548533,
0, 0, 0, 1890028288, 574230577, 1, 0, 1292896795, 1879048202, 403, 67856,
0, 0, 0, 0, 1901136, 0, 2254438400, 3221225502, 4184743786, 4244635649,
20, 469762048, 2563869, 0, 570425344, 268, 1132582935, 838286090,
4214292841, 1376404305, 325, 3070230528, 3242545942, 6319, 1192800208,
27, 2947547136, 24, 0, 4143972352, 394, 119588, 3781775104, 4659,
319857312, 274, 0, 0, 0, 0, 0, 3095396352, 1879048194, 159, 103248,
25538560, 0, 1643657472, 2884899275, 189216, 31866880, 182457593, 29,
351731712, 1069920, 0, 5377, 17444608, 832905063, 83489, 521555968, 0,
33207552, 0, 20800, 521560064, 64505, 2147483648, 96017716, 0, 0, 0,
25883904, 3156082688, 171665, 0, 481305223, 2415919133, 3997303270, 1, 0,
3903848448, 30, 0, 62352, 378187776, 3263242929, 4026531867, 385945761,
1131009, 0, 0, 1628350208, 221, 253589200, 279150623, 118857, 23800832,
0, 3542029552, 287, 2616262270, 16, 0, 16777216, 39, 127328, 0, 0,
173280, 2519040, 3647011818, 1, 0, 3791857360, 264433951, 233959780,
3221225490, 132386969, 0, 0, 120701, 251811840, 0, 1056964608, 363,
920649728, 2952790018, 739315891, 685264, 4231168, 0, 0, 0, 1043616, 0,
0, 2684354560, 215, 118352, 0, 1895868186, 278953986, 28, 1778384896,
465817867, 0, 539619840, 4352, 2097152000, 160, 0, 3267584, 1803681792,
2583748801, 28, 0, 0, 0, 0, 8568832, 0, 1610612736, 709107104, 0,
518418432, 1853, 1610612736, 5813, 204320, 0, 124997, 0, 0, 486539264,
19775992, 1258, 513536, 0, 4078052048, 499, 120683, 3473099038,
579792948, 2052080, 524660736, 1038092890, 1879550210, 755309987,
2801795072, 7, 3756054460, 10500098, 0, 958350176, 53694624, 2440036352,
3775077122, 1306132695, 989855744, 380493984, 0, 3509721600, 2361264643,
1, 0, 4289724416, 15, 0, 0, 0, 2418025121, 834446081, 4870, 1624576,
31674368, 945815552, 17534209, 0, 2885681152, 415203344, 0, 2978788096,
713103564, 0, 0, 2111832064, 3489660928, 4493, 4043309056, 761,
558891008, 16711955, 0, 0, 0, 2015, 0, 51253642, 3339863169, 396, 101574,
3489660928, 530452762, 2936174960, 396, 794, 4026531840, 4145,
4145913200, 16, 4833, 0, 0, 1124076496, 49, 72215, 1611851264, 316808912,
1041248, 516521984, 72356581, 3758096413, 316677528, 2052336, 416088064,
127838, 0, 0, 0, 0, 221253512, 33007901, 0, 0, 0, 119010, 30979840, 0, 0,
11759616, 0, 255744, 173080576, 1, 8261632, 2399141888, 16, 0, 0, 0,
279974567, 1613830915, 824640272, 3808628992, 51429383, 312488232,
536870915, 823198481, 419631456, 51421233, 1493172224, 536870932, 4305,
2047021424, 5, 1497366528, 837324820, 5209, 1333536, 0, 0, 16484096,
1166868480, 1113633, 8187904, 1221591040, 31, 0, 0, 0, 3499098112, 16,
90243072, 38033, 0, 3277861148, 4029746434, 602407696, 402853968,
9719857, 1315972326, 2418337794, 590, 3775025280, 1, 1307583710,
270852098, 618791502, 3825356336, 38686756, 1299195094, 2418333698,
618267213, 3691138480, 38653988, 983097, 270848000, 617742925,
3556920624, 30642212, 2476736512, 2471680, 131334144, 905969664, 38, 0,
0, 0, 1409286144, 4, 92461, 32963584, 4245487616, 0, 0, 121126, 356352,
0, 14680912, 33034240, 1848710198, 31, 0, 35491520, 361, 0, 11079680,
339607552, 28993, 299196416, 0, 0, 0, 3372317280, 12980265, 0,
4044636160, 339215053, 1, 0, 194716, 1879048192, 2616, 0, 9, 92326,
10995456, 0, 4128231296, 45, 0, 1073741824, 4327, 1157627904, 43962402,
36, 0, 0, 1107296256, 43, 94436750, 514544, 0, 304038464, 527999242, 0,
2952790016, 842330170, 48496, 0, 129088, 17001984, 0, 1964853472,
270061734, 366, 2532352, 770310144, 2165878576, 267473221, 1193323501,
1627827476, 631, 1107420080, 160, 0, 0, 0, 0, 321069056, 2344745411,
2445054737, 715850545, 2069280, 279121920, 0, 18965248, 0, 1998542976,
340234564, 1126170624, 17, 0, 437330304, 17133828, 748748231, 805306384,
5784, 352321536, 444, 2108690128, 0, 3995533312, 1333313, 493957120,
3096444928, 10501904, 0, 4060272816, 51666974, 347080661, 2, 492371968,
2617275504, 341348857, 128969, 299225600, 7502, 130304, 299134976,
574739917, 299224607, 575605328, 1333216, 0, 963762079, 1879048432, 8085,
170880, 177328128, 68771, 2177989632, 423826519, 162993, 0, 1462763520,
20, 0, 537046400, 169, 0, 25958400, 65863680, 3725243168, 468, 2870,
25958144, 0, 15740464, 962560, 1384, 3777267456, 3596161333, 1140850689,
286289958, 983812, 567694848, 3596026680, 1, 0, 1643118592, 808611594,
90639002, 0, 0, 2160066560, 17437953, 523829248, 68608, 0, 1002451894, 3,
3597271040, 1795373857, 470, 118904, 2909184, 90439680, 3171943696,
492589525, 953168780, 836105987, 622271846, 0, 493232128, 260046848,
32808978, 454885376, 2499805184, 54112307, 5801, 4045545216, 7519,
4129119968, 29, 569444843, 1342177520, 444204255, 1929412177, 179720558,
0, 0, 253952000, 1427990256, 251, 2618304086, 540215818, 510329039, 0, 0,
0, 805306368, 4215541697, 1, 0, 0, 32547328, 0, 155872, 0, 10800,
2151424, 1773142016, 2969567233, 27, 78545, 0, 0, 2751463424, 23638034,
101405, 2955309312, 552, 0, 531914752, 120816, 31523072, 0, 0, 0,
688914432, 2, 4267180032, 28736, 0, 4265676833, 3768669441, 218,
2199781440, 501, 1813971720, 1, 0, 3925868544, 44986841, 2334140530,
1610612738, 126, 3036698640, 393, 0, 3758096384, 86, 3875536896,
269942824, 3766490838, 30, 0, 0, 0, 66035, 0, 0, 2051040, 12976128,
67733, 536870912, 148, 2019888, 798920704, 0, 470016, 3648454656,
2937918993, 512950736, 0, 1610612736, 258474133, 0, 0, 289406976,
32002833, 0, 1971200, 0, 3459261199, 15, 0, 2566914048, 251, 0,
1073741824, 8035, 0, 0, 6204, 0, 715063296, 3675249568, 306418128,
179425399, 1, 0, 0, 0, 72023, 0, 1792475136, 1, 0, 2454716416, 268435485,
382869333, 3741319168, 161, 0, 2387968, 3633577984, 1934673, 0, 2285, 0,
0, 721420288, 252, 2652897280, 2442513, 0, 3774873600, 161, 0,
2963296256, 153, 1358954496, 160, 0, 0, 684851200, 1392508928, 160,
2270167040, 10, 0, 0, 495648768, 1115753300, 2415919135, 7540,
3623878656, 179925008, 0, 808358656, 2639, 92208, 19771392, 1329668927,
16487946, 0, 2971642480, 489963521, 2620391424, 3775291136, 4197, 191568,
17584128, 1325442335, 10, 51511296, 675617, 0, 473956352, 3489660946,
3454, 0, 4027453440, 947912704, 18, 364838912, 1, 0, 2498757193,
4026531840, 2703, 68640, 0, 68920, 2178816, 0, 134217728, 9748945,
126119, 2165839872, 148, 0, 21286912, 74575942, 3790620703, 4031381651,
3793683633, 286, 0, 24021760, 1853489152, 1, 303874048, 113813, 0,
51052544, 15, 0, 1936719872, 805306368, 4548, 678144, 17313792, 74158,
23680256, 0, 677840, 527982592, 0, 0, 0, 0, 0, 0, 805306368, 8035,
1223695616, 11280882, 0, 32998400, 4084924416, 1914209, 7008256,
2362454712, 4026531862, 390, 0, 0, 1156579328, 18991114, 0, 0, 0, 0,
2694859520, 2704, 805486464, 465, 520, 547376384, 8010, 1241513984, 160,
3539927810, 15, 21037056, 656448, 0, 0, 0, 0, 1187056, 0, 1951472703,
567319040, 8104, 2717908992, 393, 1629487104, 987935, 2730229760,
2298478592, 276, 1349452473, 2684354578, 2730106657, 0, 0, 0, 3759226368,
7547, 682112, 0, 0, 3489660928, 87, 1292537152, 169, 0, 0, 44171264,
179199, 14389248, 743440384, 11095569, 4294508544, 0, 0, 1464867157, 0,
1778778112, 1, 0, 82961, 21238272, 572391424, 2685047153, 3842,
711983104, 2684354800, 282923406, 167840, 0, 770898227, 33011730,
2727870493, 0, 0, 1325401410, 1091475231, 4130738125, 6769, 0, 113748,
32809216, 0, 3223154480, 253, 0, 0, 4166124119, 1644167169, 488, 9718,
279351808, 4243461811, 0, 0, 1422917632, 1073741855, 4237951176,
167772160, 11272362, 0, 30616064, 0, 0, 378351616, 1072693248, 536870922,
438, 385875968, 378384546, 1354766069, 2439745034, 216596980, 0, 0,
2286944256, 22, 0, 1613376, 269987840, 1352664440, 2418654482, 137826896,
0, 177258496, 3121610752, 268435458, 405, 0, 413028352, 2657163833,
18994712, 597426176, 0, 0, 0, 268435456, 1799487996, 1073741825, 488,
11658, 3221225472, 2689007831, 1761607680, 5, 0, 816401408, 2689139383,
3590428112, 49, 3391094784, 268435458, 2308112489, 3087027009, 286318638,
4111466496, 2684354576, 4190838049, 1241632625, 169, 2286944256,
16618256, 2308374528, 420582737, 266420386, 3749707776, 285167108, 61475,
0, 301752320, 1875902464, 0, 0, 0, 0, 0, 0, 4242014208, 0, 0, 3011516778,
15, 148, 0, 0, 1913654639, 305152, 537591808, 170225, 31907840, 5430, 0,
1798635698, 1, 31158272, 0, 536870912, 7541, 3003121664, 34, 728, 0, 0,
1486896, 497139712, 128348, 2970217984, 750191097, 0, 517165056, 983710,
17920768, 0, 789719856, 48, 3610247168, 0, 0, 2034320, 0, 0, 3031808,
603258880, 520231680, 380641782, 43295, 16753920, 411369472, 666752,
41000960, 12653098, 805306608, 380370996, 1, 0, 0, 538259968, 266,
806344624, 21, 8283, 1391104, 0, 0, 0, 11947, 359424, 749207552,
2281701376, 26566669, 4819, 2684354560, 530513955, 0, 6135808, 0,
4026531840, 149684250, 1, 524681216, 0, 3352576, 0, 694528, 526491648,
53486211, 19, 0, 0, 0, 0, 806196480, 687341582, 2113929216, 46768129,
1868562432, 1, 0, 1409286144, 378286105, 66039, 0, 863830016, 4127195137,
490148201, 0, 11082240, 0, 0, 35971072, 0, 2417025792, 8040, 1042121840,
47, 0, 2415919104, 252712625, 1935520, 24051712, 2803898719, 17, 0,
1678796368, 275132678, 3953, 1879048192, 786044600, 69424, 379510784, 0,
0, 4146331648, 1811939329, 20, 9766, 23741696, 0, 0, 282050560,
1218445312, 4026531840, 166, 3623878656, 379416937, 72117, 18895616,
4182704128, 4110417922, 265, 3389071963, 536870914, 3650552462,
1241513985, 761, 4820, 0, 4182441984, 2885681154, 20054481, 839909376,
816268545, 4038, 71008, 0, 3291481817, 1573634, 2836529152, 141328, 0,
6504, 0, 0, 2231369728, 5, 3054501888, 539979023, 7571, 2600468480, 168,
3511753904, 1643148815, 4034134068, 1914533777, 20537840, 268435456, 0,
2781544448, 683824, 30892032, 793772032, 2415919121, 658506133, 1189216,
272683008, 2507145216, 288585758, 3967681247, 2250220593, 160, 0,
268435456, 553981601, 0, 495378432, 128184, 3024896, 0, 2499852064, 366,
2788204682, 10519830, 0, 2281805344, 160, 1298137088, 51200, 108789760,
1191616, 0, 74362, 3489660928, 604508582, 0, 0, 0, 0, 0, 336707984, 169,
1863391662, 3374877, 0, 2231369728, 44138502, 0, 0, 0, 3187698752, 15,
3963, 0, 425394176, 0, 3743744, 121394, 0, 863567872, 419430401,
304607593, 0, 0, 0, 0, 0, 65537, 1610612736, 347409050, 3388997632, 361,
43285, 536870912, 7824, 4093640704, 22, 69555, 0, 0, 0, 0, 0, 2150328832,
4658, 0, 0, 983129, 0, 0, 486713904, 49184512, 0, 0, 138870784, 1481665,
35344384, 2315255808, 10719242, 0, 4160749568, 165, 0, 0, 4242145280,
1120656, 503377920, 0, 536870912, 748164745, 67177344, 35901942, 73451,
356608, 731185152, 1190176, 0, 0, 1710848, 1854406656, 194305, 305205248,
1327510235, 18, 0, 15732272, 26574848, 357, 10521600, 2693791744,
2332033024, 160, 71320, 0, 290586624, 0, 0, 1244733943, 536870932, 12182,
1577058304, 279777562, 837812224, 3265802, 0, 1041351696, 36843558,
2423259136, 17461533, 2737045504, 0, 296230912, 2268, 33240320,
835125248, 1342177280, 25, 41779, 17049856, 586809344, 704818849, 260,
64807, 1879048192, 3545041458, 1, 0, 3283095411, 318334479, 7943,
1460740784, 40018193, 4234162193, 805306370, 4911, 0, 292, 301989888,
301270814, 4653, 3943700928, 271, 1571815424, 3522814225, 4910,
1811939328, 43, 5747, 2712685312, 2693005924, 1931696, 0, 0, 3489660928,
2692881785, 0, 0, 59780103, 0, 0, 1677721600, 496804118, 43137, 0,
3977052160, 1, 0, 0, 268506368, 4649, 0, 295546880, 772800512, 2241795,
0, 25184, 516603904, 100800, 806778112, 8120, 685184, 4255744, 9801,
1470720, 2743205888, 0, 494202880, 945815552, 10, 0, 2734693184,
797229074, 42501, 2706688, 0, 3791650816, 39505409, 0, 0, 281870336, 1,
0, 1963982848, 16, 0, 2736689472, 46, 0, 0, 0, 2952790016, 13, 0,
32309504, 670171136, 1048928, 14721024, 0, 10240, 0, 0, 0, 2627805768,
19030289, 264830976, 1, 0, 70476, 3520673536, 4519, 3489660928, 16,
925892608, 19, 0, 1142108240, 321929221, 0, 1610612736, 1760039216,
2936012801, 29, 1028653056, 268435459, 8108, 1612864, 305127424,
3640661969, 1621871617, 855638327, 1, 0, 1029701632, 3, 861011968,
201326592, 37, 1816133632, 17, 0, 151792, 380571648, 2389704704,
2972929041, 405869070, 0, 0, 3284334880, 270998273, 4179898258,
2251264562, 798117933, 2456939786, 2415919151, 236203922, 0, 0, 0,
3245317632, 1872562861, 791646913, 273408761, 121021, 829398784,
566034869, 3187758033, 289, 3400540670, 33275137, 13041664, 506433968,
798085881, 3343908864, 2684354590, 4238, 120960, 0, 0, 1612269568, 4113,
3172957552, 276, 1047527424, 2, 0, 0, 41762816, 0, 1685760, 3618504704,
1, 294387712, 129129, 3758096384, 443814703, 3674392417, 505, 983651,
49877248, 4178784145, 1142923330, 798048623, 2439030503, 2448751663,
2875331375, 1913760, 0, 43248, 49872896, 4177657856, 69170386, 797979385,
2421167281, 3400751, 1863057790, 3340154145, 175911200, 220200960, 16,
4178247680, 4130312354, 175468560, 1758656783, 1879048192, 4508, 0,
45101056, 66399, 0, 665845760, 0, 0, 2151677952, 3759199232, 2818053760,
520093696, 265895938, 0, 536870912, 7448, 270338208, 8, 43158, 0, 4374,
2734686208, 504, 0, 4026531840, 1782057513, 1, 25509888, 0, 0, 0,
4194304000, 1, 208666624, 1879574288, 3661564559, 1, 0, 0, 2684354560,
135212934, 0, 0, 2625634304, 3489660945, 4183822885, 1141039922,
798363938, 2519923044, 1358705711, 160575382, 3118705, 45207552,
2430599168, 29, 692060160, 3019898880, 798400983, 2529279049, 4076433199,
126557546, 0, 0, 128228, 4029768448, 3807183394, 100663297, 48,
992031730, 288616194, 827790143, 1209220816, 322850859, 0, 317184,
3639279616, 1543503873, 49, 0, 0, 0, 143968, 0, 9152, 0, 134545408,
570425345, 251, 342976745, 1342177283, 453123975, 1488208, 489754624,
3930062848, 2952790031, 284233857, 1358954496, 798294777, 2501980852,
1075708207, 4183240597, 1494253762, 798327545, 4049602989, 22, 0,
823165248, 276, 2484271426, 855196719, 4182126484, 1210022178, 276886265,
2492465152, 47, 0, 486539264, 13, 116470788, 2684684289, 871830335,
4111679361, 322920755, 2474705714, 47, 8027, 4161831456, 361, 42788,
2432459776, 706092982, 3118032, 798224384, 0, 1342177280, 4183097406,
2701131778, 361, 3341823152, 816058370, 821, 771751936, 296112417, 73796,
0, 0, 45088, 0, 73793, 1074809856, 3996849846, 1999697, 532054016, 0,
2717512192, 4356, 109344, 0, 6486321, 567900959, 4181012371, 4264530754,
5148674, 0, 268435456, 70844620, 52385, 0, 94042, 1344320768, 2624,
1511124800, 13365261, 0, 1610612736, 4229628108, 183824, 487198720,
126220, 32715520, 1867448320, 1, 0, 0, 3239276544, 12251193, 1946157056,
23634385, 13179, 1345405952, 4250403625, 204800, 0, 3477012591, 2,
3499163648, 1, 295489536, 4012900352, 17, 0, 638709584, 273928228,
194907, 2171122176, 3979149663, 1, 0, 1761728152, 29, 3760390144,
1927393, 7667712, 1764819916, 10516253, 360579072, 1981620768, 798335136,
0, 269590272, 4278, 0, 0, 129018093, 17628426, 0, 2533503664, 468,
1531974841, 2694871298, 625609352, 0, 493477888, 3947888640, 4044890383,
3599437731, 1, 0, 2245065274, 11034122, 4198367232, 1006649408,
262385914, 2490368000, 296804354, 2967345934, 1773041, 11886592,
2728458795, 1084941583, 4197384864, 755999456, 262324474, 1975517184,
1895442434, 4002, 16544, 0, 2719021602, 4042924047, 4196797038,
605004368, 262287610, 4291, 3774484224, 1170280352, 3272891425,
4029501765, 2233466880, 1095089930, 4195156185, 185573568, 262185210,
2691758600, 2684867343, 481, 167772160, 262181329, 204, 3758096384,
539951380, 2182062128, 262148137, 829487673, 1627010819, 4003,
3992977408, 38269096, 2734750257, 3489660943, 4197777478, 856662848,
262349050, 0, 4026531840, 807997494, 0, 531243008, 1942, 0, 4109959168,
3271557121, 44073226, 2707487255, 1090131215, 2861961121, 420677184,
169623802, 440480163, 19, 4195549184, 286236960, 262209786, 0,
3241257728, 833098522, 1511201425, 320500016, 58720256, 1093689312,
858128808, 1811939328, 169631773, 3333423104, 286546176, 4048, 520093696,
281, 10751, 0, 0, 0, 0, 2716862424, 1627004431, 2744254482, 3088341872,
270045509, 2188461488, 1095086879, 4196144219, 436389952, 341500154, 0,
2983201536, 2834239875, 150994944, 274, 0, 0, 0, 0, 31952896, 1511081375,
33006356, 216072192, 2635356608, 4649285, 1500595606, 2971656212,
519503996, 2517730208, 10453424, 62997932, 2415919104, 1168638492,
2853460625, 341487941, 1515202861, 2436060948, 2739, 3707764736,
341450759, 46137344, 27, 840957952, 2434466528, 34250783, 120188,
2339072, 0, 0, 14196736, 0, 510976, 226295808, 54592, 8200192,
1459619792, 29, 0, 3456106496, 7, 1842, 3221225472, 190710361,
1644167169, 264200230, 3578791655, 0, 0, 0, 0, 3212849972, 30772234,
1779761152, 1, 0, 379654803, 251701251, 165478400, 134217729, 14, 0,
1073741824, 61497, 403715856, 43999735, 0, 268945920, 216007236,
3440360880, 7761927, 2888955816, 17, 3778019328, 1158257, 36859904,
621805568, 240, 4155, 0, 4026707968, 624951296, 0, 3583508480,
2567052465, 469, 741343232, 3, 341049344, 2986344449, 491335847,
346094890, 1747424, 21954560, 320690446, 495161595, 1495397445, 1634333,
3993886741, 1912602625, 264, 0, 30846976, 2845048832, 0, 0, 0, 30764032,
3619356672, 1, 0, 1527903575, 0, 418185216, 45040, 267223040, 129664,
536870912, 324476206, 1, 0, 0, 30866432, 0, 0, 0, 125253, 0, 3606970368,
1, 0, 1740639215, 2147483650, 4080, 182368, 0, 93016, 2952790016,
4130144293, 1, 0, 3512858966, 0, 21233664, 1289753662, 3759411467,
342957397, 1577141984, 57364, 30704, 453701632, 1443972448, 3779420692,
4203548728, 2332170016, 262709498, 2825976456, 1358595599, 740364200, 0,
49012736, 786496128, 16, 4202954752, 2181211952, 262672634, 2531262464,
3223728906, 172, 4278190080, 36, 0, 2684354560, 4125, 50473360,
497349111, 3866099712, 1073741840, 53555078, 15, 180158464, 0, 0, 0,
3707764736, 264478761, 5630, 3774516992, 1164185512, 1712360161, 325,
77930, 0, 762249216, 2433722656, 262734074, 3322939728, 32609297, 0, 0,
0, 0, 0, 3760455680, 1090661969, 3759321094, 319816538, 3237637600,
530190246, 872415232, 3759357441, 587, 21240576, 0, 2248146944, 11264305,
1877999616, 3506085378, 1163399081, 1511282065, 11305285, 1431389524,
1900369428, 4204532821, 2584717744, 295358714, 2841705111, 1345423119,
682951284, 2566914048, 262766842, 0, 1238784, 0, 3892385072, 464,
2815490686, 2969205775, 4177989543, 1, 28700672, 4197449728, 15,
4202299392, 0, 384344064, 2806053493, 538480399, 4202237863, 1997514624,
262627578, 908177475, 268736799, 807538692, 152020640, 453239144,
2790324838, 821715983, 4006, 1744997712, 262566138, 7997, 23688704,
570490880, 1611638288, 39203066, 62914560, 1106355739, 758, 0, 453115904,
1488003185, 21335060, 566, 2079520, 25210880, 2754673220, 284836367,
4199026596, 1057989744, 262426624, 127382, 2439937536, 4198498757, 0, 0,
0, 3221225472, 4921, 0, 493645824, 740294656, 3506616336, 645857550,
1025792, 0, 0, 0, 0, 1059552, 0, 0, 17872896, 3490447360, 67108865, 34,
2764110413, 2302991, 293011768, 1326733552, 262463738, 92179, 0,
4234616710, 0, 49459200, 42041, 0, 0, 857678928, 12, 983735, 0,
1166016512, 117440513, 36, 1470186873, 4045423892, 73143383, 1996488704,
29229381, 0, 0, 622264320, 1, 0, 2846947932, 2686941194, 1166218328,
1578083825, 33222906, 66247, 2163890432, 4005, 4228980128, 46833828,
2770401875, 2426982415, 4200006115, 1427088736, 262488314, 0, 1610612736,
117768449, 1332992, 0, 1455423534, 2705681684, 1164378130, 1762766113,
341221701, 0, 2415919104, 753344376, 0, 0, 2428629393, 32606767, 0,
3204448256, 306974978, 64403, 536870912, 5207, 3724541952, 178323712,
369098752, 2, 0, 134217728, 761, 0, 0, 238485504, 100843168, 761, 0, 0,
0, 1094544, 0, 2953838592, 24, 0, 1428121824, 517111842, 0, 0, 0, 0,
266477568, 429916160, 17424403, 45285376, 3306258657, 487161877,
46137344, 1073741824, 3497725996, 3187671041, 52609282, 1700790272,
3254298112, 118, 183328, 0, 1551899061, 32845569, 3970564096, 268435457,
36647356, 3376414720, 27, 0, 126528, 0, 6579, 0, 0, 3070264736, 31789081,
0, 536870912, 331485263, 0, 0, 2491421633, 2684354590, 331223602, 0, 0,
0, 536870912, 229179433, 2056144, 20729856, 145757124, 1, 0, 2350854352,
19361808, 0, 1879048192, 8049, 3036795904, 30622198, 2494562304,
30885406, 0, 2701131776, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 851453053,
29, 0, 1034688, 33280000, 2775580672, 30508801, 4188078080, 1334497,
524148736, 381800899, 18, 2861301760, 1138000, 523882496, 0, 2147483648,
16, 1199264, 0, 0, 805306368, 376, 1627389952, 504, 0, 2252800, 55050240,
1946157057, 472, 100744, 3489660928, 47519370, 1088224, 0, 72099, 0, 0,
1198384, 0, 222298112, 3758096411, 332534172, 81168, 0, 128726, 18105088,
4131389757, 3540202145, 282, 11040, 0, 323026944, 0, 0, 0, 0, 0,
1175489184, 19, 1642070016, 2, 304414720, 681345, 17731584, 925892608,
2418136833, 4657, 3002073120, 290, 1022361600, 2684354561, 227,
973159648, 39, 1019219859, 3520434433, 556, 486539264, 273, 105980157,
823418352, 3583246619, 145681, 20156416, 870439139, 2701133825,
267721671, 1, 0, 83269, 2715276800, 307, 268451328, 20173267, 0,
2149922304, 4134076723, 15169, 0, 4930, 0, 323289088, 0, 0, 4928, 0, 0,
3525269424, 2, 530706939, 1374813471, 4060025923, 24145, 22396928,
522257062, 2180117791, 4059496552, 4177700609, 295453169, 2649879019,
3253857553, 4058980126, 4028571361, 339964170, 1760679219, 30749696,
3576758272, 3911130721, 522093041, 1399976070, 30748701, 3576496128,
2164372353, 1400854, 8553, 2954874624, 4035583752, 1881082001, 520646658,
4057, 1299968, 0, 3556769792, 19, 0, 3520405760, 591462442, 1124097856,
31, 3287291299, 1639744283, 467803474, 1928832, 0, 3284140032,
2684354587, 637796855, 3623878656, 19, 984617900, 3221225473, 431360614,
1, 1126400, 380646379, 17, 56885248, 80543, 0, 578818788, 18890769, 0,
1761607680, 179012055, 2384461824, 1909512192, 7811, 151136672, 25,
119585, 0, 0, 1509949440, 267, 2124418408, 3758096386, 736100732, 0, 0,
1757413376, 33064192, 0, 80480, 486645760, 147849216, 18, 288882688,
108593, 0, 581959680, 1881747696, 254870311, 1475489, 0, 2302672896,
1879048223, 4231, 0, 0, 2787115008, 17, 0, 1778384896, 271323163, 0, 0,
0, 1184896, 48467968, 2557476864, 1090441232, 16452096, 3607304416,
18001950, 43538, 0, 819593216, 1, 167800832, 5879, 0, 0, 67108864,
526704896, 625, 2446688768, 69, 771961584, 275349518, 562044915,
1091120658, 719585862, 2113969040, 33382872, 2693793103, 554909725,
4049542934, 2969647905, 175181843, 3149934388, 1911642370, 449713799,
1427991921, 521495025, 4289851731, 3522253058, 715, 3305252272, 258, 0,
1289472, 7429, 2348810240, 264, 291571021, 4026531858, 526, 0, 0,
2862625100, 2434804993, 330305825, 0, 0, 0, 1289984, 0, 2919235584, 19,
0, 0, 24379392, 1, 0, 0, 16680192, 0, 1122912, 302731264, 4835, 0,
282394624, 114032, 0, 1364197376, 0, 800980992, 1426063360, 2912544,
3184617751, 1, 0, 0, 0, 3738173440, 1360676609, 8096, 889192448,
31240467, 980418560, 560509953, 16255599, 4127195137, 15393024,
256901120, 17373456, 159907840, 2333085504, 34607380, 2826033713,
1610612765, 132, 193936, 0, 2231499238, 805851648, 139329669, 34128,
496640000, 2218788930, 628480, 139067392, 1275102384, 8704008, 548340459,
268435458, 132, 33840, 523907072, 1002482369, 3506613249, 15798341,
4010807073, 20689152, 1498480877, 2695272192, 15270203, 486545473,
3010836, 3064987648, 32776991, 834011136, 0, 0, 0, 3490968832, 315,
1933664, 0, 2589982720, 0, 126156800, 1140016, 44937216, 998358122,
1292033, 0, 2570033184, 532365672, 0, 2070784, 41877504, 1392508928, 266,
70180, 1177344, 0, 0, 4029636608, 2554331784, 16849711, 0, 2952790016,
385094139, 3759144960, 539366914, 61445, 3472883712, 287437160,
753931190, 16, 4276420608, 3036676096, 19, 357566332, 3222516754, 5771,
3003121664, 19, 0, 1361122304, 808780380, 3523215360, 32, 568328192,
536870929, 4227596512, 1479296, 0, 119606, 1353090048, 629, 0, 0,
2012217467, 3758096413, 7582, 2164432368, 493339129, 1896884813,
536870941, 758, 0, 0, 3925, 2415919104, 365433427, 3323366721, 291270933,
1737490432, 2715190301, 61448, 0, 0, 0, 0, 284622848, 2164397009, 470, 0,
30834688, 3496542208, 3117729, 0, 953155584, 1342177296, 4444,
3909091328, 282, 12136, 251809024, 0, 0, 81600512, 287351592, 18, 0,
2583691264, 9, 0, 2694869504, 266, 1962934272, 160, 9050, 3489660928,
4605, 1929379840, 10141856, 0, 268435456, 4360, 3657433088, 322539809,
2663383040, 286394397, 4127, 0, 0, 0, 0, 0, 1329696, 0, 2865758208,
20160778, 799145984, 856697456, 496734489, 2846951056, 3758096413, 7569,
1260096, 0, 55256, 0, 0, 702016, 0, 692060160, 2734275331, 4189925275,
3207568322, 798745337, 1409286144, 1880145695, 321261858, 1184320, 0,
1904214016, 0, 11010048, 570425344, 263364627, 656408576, 3490915603,
113, 1158320608, 14, 1017119511, 4028317954, 7573, 1122560, 302002176,
8354, 0, 495255552, 0, 33726464, 662895024, 318353939, 4189335451,
2232994034, 798707969, 2608003512, 2415919151, 12187, 1030352, 0,
1759510528, 49914129, 160444314, 2771360288, 798638841, 2589985172,
2197399855, 862334874, 2769397313, 30, 327234404, 1074797057, 4188799399,
3540132146, 798675225, 3843150342, 1909590018, 159784224, 69017616,
488649170, 41953, 1352963840, 3515088919, 3238036593, 530915372, 41955,
0, 2749366272, 0, 8712192, 1593835520, 1331743, 866975744, 453670001, 44,
707788800, 3, 270336000, 1695170144, 47, 1332865195, 33133312, 31981568,
402653185, 523571215, 0, 0, 273022976, 0, 532140032, 7459, 2178181632,
336, 167772160, 23589138, 0, 0, 79167488, 4211081217, 470, 1526801722, 1,
4040687616, 88849, 0, 648019968, 3, 2965569536, 3290107009, 22749616,
58720256, 1102103043, 6344, 0, 0, 3360694597, 24, 31522816, 2634111793,
360, 983653, 0, 599195648, 4211081216, 278508281, 195230205, 3808034591,
299970463, 1033984, 0, 651290801, 1880141296, 40169510, 15738415,
3891200, 643825664, 520253680, 61478, 15738496, 487919616, 1050673152, 1,
3510304768, 81553, 40337408, 2203058176, 4009909506, 4549, 2667577344,
4029092114, 1053823982, 32862721, 533331968, 2348882512, 20889607,
2670918132, 537190191, 4193780339, 81586, 5902336, 658505728, 166401,
551682048, 1156582945, 798884345, 879950307, 1123673346, 4192677790,
872551954, 798916867, 1008730112, 32574210, 0, 3842025280, 8, 2662408276,
3491862319, 27144094, 3056574206, 255, 2643552620, 18407215, 0, 659184,
46690304, 2644703707, 3271154991, 4192153501, 4096761314, 20918291,
506462208, 16, 363134976, 0, 51662848, 5284, 1610612736, 280174450,
1444038416, 279130115, 2237735565, 4026531869, 3896115518, 1029569, 0,
187700325, 17, 3645571072, 1, 46850048, 0, 17960448, 0, 3489742624,
453628665, 189857410, 318362641, 4191551807, 3624994178, 20906745,
983761, 3758909440, 302325526, 14913, 26898432, 2617440705, 586793775,
302067612, 3339367585, 798778105, 2625829321, 47, 0, 2919235584, 41,
13273, 2734279680, 576920993, 4012874960, 33386778, 2940274249,
2415919121, 784, 0, 0, 295711497, 3, 0, 972032480, 488, 975175680, 16,
4163043328, 603979778, 46494456, 43256, 0, 0, 668064, 0, 2582645408,
2165009967, 3619160578, 1, 0, 0, 0, 1804271616, 173345, 0, 119266,
268435456, 140451462, 939524097, 31871269, 0, 32275456, 791478272,
1241513984, 520863996, 42396, 889600, 162463744, 0, 0, 120728, 10863104,
4187172761, 321886498, 278094256, 2573247977, 833622319, 2771058803, 0,
0, 0, 49912320, 2773549056, 2650916672, 798610169, 2555574662,
1928955951, 12184, 3727661200, 526930402, 0, 0, 617086976, 2368706721,
798540537, 2564883263, 2426432815, 654577798, 1811939328, 160, 4295,
4026531840, 150669885, 285212673, 33734659, 875689607, 4026531842, 12183,
0, 0, 0, 815820544, 2566, 2719388320, 505, 0, 836951040, 282460289,
3674210304, 21217762, 123605, 18911232, 284688384, 2432779265, 798503077,
1631519435, 31, 3513581568, 4127195137, 473, 983762, 2684354560,
4184932675, 1931308610, 21250809, 2537748853, 1629107503, 76427159,
2400172752, 166, 0, 1879048192, 160046916, 2080546032, 798470905,
1551038539, 10, 0, 3323071696, 173678336, 0, 0, 2643, 0, 53841920,
2587885568, 1879048192, 2645, 0, 173993984, 128698, 1073741824, 5786,
1712475056, 471, 73733, 2952790016, 169, 1140112, 303570944, 0, 0, 0,
3809489232, 271, 9240, 1610612736, 8071, 0, 40202240, 3202351104,
2147483650, 2800554507, 0, 10158080, 0, 3758096384, 362873237, 0, 0,
1269825536, 805306368, 7586, 503316480, 48, 113796, 0, 0, 2181038080,
252, 0, 0, 4054, 0, 496484352, 0, 4027450624, 264443554, 1275172288,
17469800, 6843, 555862528, 3160672819, 3088915201, 9, 4582, 286720512,
847120947, 1745993792, 43212829, 113761, 4026531840, 714, 1845493760,
253, 0, 3758096384, 142, 3053453312, 523915758, 419430400, 32384000, 0,
0, 0, 64827, 1629799424, 24, 1140816, 14225408, 0, 17085952, 3623157760,
0, 0, 92206, 1073741824, 500, 108208, 0, 7006, 1342177280, 535495078,
2026369, 27713536, 0, 536870912, 384, 12336, 0, 41318, 10821632,
3583180800, 1112945, 3903488, 2783982197, 3148817, 753074176, 1097792, 0,
3558938265, 271351041, 221446612, 1056964608, 297844765, 3552582974,
270350849, 490209702, 906089328, 30625821, 3543144805, 268435457,
489685459, 771791520, 30588957, 124977, 0, 0, 974228464, 525828142,
2014314496, 2952790017, 8047, 0, 488919040, 73949, 0, 0, 0, 0, 0,
2147483648, 288948378, 756905905, 8761817, 2088767648, 19041309,
544669696, 1181505, 0, 101375, 25951744, 0, 2870525488, 27, 3756007298,
1073741825, 2346524050, 3625500625, 395, 101331, 25933824, 2343895040, 1,
0, 8330, 2710286848, 2343639228, 1, 81649664, 1855979520, 17175296,
4137615360, 220177681, 415150512, 12656755, 536870939, 101980351,
2785017857, 278, 0, 0, 534904832, 1811939328, 531021847, 4903,
1879048192, 2691, 82752, 29241344, 428867584, 31, 0, 3992977408,
25903120, 4188054519, 1076474370, 769, 0, 298217472, 2585830393,
1610612752, 132259562, 4213023424, 278540451, 2583691264, 16, 4027056128,
1980799505, 36, 71440, 2041600, 0, 1023410176, 20005124, 734073567,
536871152, 7563, 0, 0, 127799, 0, 30343168, 0, 285151232, 1430264173, 1,
0, 654311424, 165, 0, 0, 0, 1660944384, 488, 121119, 0, 371130368, 0, 0,
2602565632, 16947712, 0, 2517258352, 302797054, 2764046336, 24,
4000120832, 1, 10076160, 3934257152, 2, 4238802944, 1310556208, 497, 0,
1502720, 0, 1124073472, 2208138, 2755758661, 2173323032, 2320040502,
1259906177, 413442442, 0, 0, 0, 1325400064, 413454497, 2767194542,
269500952, 279189669, 1443047824, 413487498, 129800, 0, 0, 0, 0, 5000, 0,
271056896, 1143025, 303173632, 0, 1717504, 0, 15739520, 0, 2744224314,
3492298008, 681378437, 1075356624, 413397386, 0, 1610612736, 7989,
704707296, 50, 67413, 1342177280, 243, 2986344448, 47, 42147, 520242688,
4654, 0, 0, 0, 0, 2966749184, 131697, 286498816, 2752553968, 1889793304,
2750481192, 2499805184, 9, 1030750208, 31460627, 678232064, 166608,
171876352, 328207490, 3221225501, 4170580487, 2449473537, 28, 0, 0, 115,
0, 20000768, 657558060, 3507606273, 6306, 0, 0, 251669329, 5095936, 0,
1342177280, 495632554, 3096458062, 2952790038, 2956529688, 2317026209,
453214374, 2328887296, 2934557, 0, 3441407056, 40, 92969, 669184,
4221698048, 27665, 0, 100911, 11093504, 2318604451, 2568528673,
413352194, 2717978654, 562701080, 270080162, 2149098048, 339779858,
63879, 18143232, 0, 2197879920, 31645698, 120082, 2715091968, 3, 0,
261619712, 0, 25828096, 696320000, 521707968, 413262218, 1351615880,
503382301, 4212, 0, 28655616, 4264, 831137280, 80744488, 974692977,
296185907, 3244294144, 0, 4032954368, 70993, 0, 2130706432, 10796557,
2780692480, 908046400, 173486362, 0, 0, 3651338240, 2038417, 0, 0, 0,
2316435456, 890806545, 413217057, 128974848, 31, 0, 0, 285270016,
3768647179, 1076680719, 4262396286, 3692028128, 266387616, 194565,
3761194240, 363, 0, 0, 940584335, 2432265759, 4184677686, 0, 269557760,
2706378945, 1895405592, 2316966049, 697937, 0, 2765094912, 1391984671,
548209106, 1258291201, 1, 0, 32775424, 0, 2231369728, 291, 0, 10742784,
4184014848, 3976233536, 163, 2683406848, 294257176, 852823958,
3892973633, 413159474, 8383, 1630721024, 7881, 1191182336, 4029833221,
2694849018, 2710179096, 2316238968, 2014522785, 413204770, 762384611, 19,
4187553792, 58513, 267067392, 442505072, 10726685, 0, 667840, 169095168,
506462208, 29, 2315714560, 151150065, 30974346, 1126271477, 1636431617,
44308639, 4212694912, 413114761, 2680170234, 24, 4255514624, 0, 0,
3265379378, 3768804635, 338104341, 1744830464, 2883747, 43077, 30856192,
193986560, 1712317073, 163, 309199143, 1308698080, 57362, 537956736,
3759309244, 40906800, 1360047361, 178716693, 4261478928, 413127049,
3211788288, 2025743, 0, 2080440880, 249, 38861183, 553220097, 13, 0,
16945152, 715207337, 2147483667, 871240490, 1, 179703808, 0, 0,
785645568, 3272813280, 279842816, 41501, 10759936, 860815360, 0, 0,
41499, 0, 2719613533, 702550560, 321810596, 78556, 0, 0, 0, 413999104,
2605831862, 22, 18350080, 3909217166, 531268087, 2435711260, 2650872349,
18931729, 1410371214, 9089531, 0, 0, 0, 3170893824, 473, 286130449,
3456176096, 18157824, 333451598, 3759222273, 8668, 1641686784, 393207825,
0, 529182720, 2823943411, 1879490058, 63, 2035952, 0, 64919, 0,
4124966912, 2667577345, 3797264, 0, 10754560, 2753888256, 0, 5320704,
3247452112, 15, 0, 0, 0, 69454, 0, 3759603712, 2466569377, 47, 2296,
2147483648, 17633173, 1207959566, 10625273, 2492528975, 2861583, 0,
16777216, 279736364, 0, 2684354560, 260309651, 1845493760, 473,
2752381190, 2382431234, 579214643, 3403681937, 381210667, 4070580618,
1881232384, 103095639, 2058368, 286375936, 2880438272, 17336088, 0, 0, 0,
0, 301413632, 7448, 3791650816, 175157273, 104987634, 32924957,
1152909312, 1, 0, 0, 251791616, 0, 3539992576, 35, 1754267648,
2936232977, 7571, 1897442928, 489898487, 126596, 0, 4107665408, 677889,
4026798080, 552601823, 3224327690, 204149272, 4045082433, 12325296,
554738180, 4044407050, 94896315, 48288, 169947136, 1034953033, 1300993,
0, 136304, 12345344, 207623129, 1342177298, 8034, 3608220656, 532328467,
1163921917, 1090518047, 739, 1628530704, 43, 0, 2954970624, 673, 1140848,
0, 185640122, 1342177307, 126091303, 83886080, 47, 283121507, 32702466,
4189913088, 2987460208, 525496752, 2563832261, 1299728, 713031680,
3541030160, 19, 3811701912, 4026531855, 44368559, 15, 0, 2830173308,
537750033, 124785065, 0, 297902080, 2419064832, 2685508354, 4189389398,
721420288, 31, 1209017959, 3489660944, 4178706460, 2550136834, 17,
2337275904, 3489660929, 2688, 3288334336, 215, 1133510656, 1889627137,
4183229169, 1862270976, 51572897, 18874368, 104705, 0, 1828859712, 161,
2086666961, 4026531842, 4456, 1677721600, 307048815, 1994475055, 1,
608763904, 721420289, 49, 1217475307, 2971050002, 8059, 3927054480,
322855218, 0, 1534720, 2789736448, 0, 261914624, 73860, 1879048192, 260,
690800, 303595520, 3812622336, 268675599, 545133064, 4177714577, 37, 0,
3005952, 0, 771935824, 527409200, 1139802112, 1342177296, 573, 191648,
52158464, 3302079574, 1879048219, 422, 0, 517005312, 792723456,
838354193, 2803434286, 2399264816, 4, 4983, 220416, 0, 1092752,
179228672, 2434886450, 31, 0, 2667577344, 39387412, 0, 4029812736, 2734,
1107499616, 52105484, 680529925, 2147483664, 499122550, 0, 51515392, 0,
1342395648, 2668, 1937408, 0, 917915, 10965760, 0, 0, 0, 3155177896,
1106460417, 87756770, 158401, 0, 2829058048, 30531869, 4245291008,
201360, 0, 0, 0, 805437440, 603979777, 513003539, 0, 1879048192,
605028609, 143537, 0, 807403520, 3500190739, 493093441, 704643073,
798068752, 0, 805306368, 4864, 208864, 0, 176289184, 27, 258736128,
2062048, 0, 1761607680, 3489660928, 4911, 3758096384, 468, 0, 268435456,
567153221, 3573642897, 166, 23081378, 484627, 4188733440, 0, 453607424,
129826, 553254144, 4194049357, 49232, 0, 1512, 1882270976, 2592, 0, 0,
2037394999, 2415919133, 2592, 1902592, 12656640, 3235905536, 2684780544,
115, 49264, 0, 172060544, 31, 580976640, 855638017, 3584, 0, 0,
755367936, 3893337872, 22, 63992, 16381696, 359137280, 125728, 16859136,
78149, 0, 4188209152, 0, 516632576, 856750497, 1610612765, 61449,
1914656, 0, 531635566, 2684377856, 3620143231, 1, 270450688, 927059995,
1628706826, 48, 0, 24551424, 466616320, 3, 0, 1156752, 0, 0, 1542656, 0,
2717908992, 0, 343009599, 1630619667, 1780871202, 3489660929, 266, 0,
17064448, 0, 0, 497709056, 2860517554, 3254338845, 655, 1944160,
176615424, 0, 0, 4137, 587202560, 52138003, 0, 0, 268894208, 838860800,
318878203, 2170621749, 2952790047, 298255139, 1, 0, 0, 0, 0, 437251840,
20, 2151872646, 17, 0, 15741504, 293634048, 1102131839, 32004865,
589037568, 3004268577, 501, 1987246212, 881921, 326107136, 1059088, 0, 0,
569718016, 4212858725, 1113265, 261550080, 2040528896, 2, 583073792,
318767104, 293, 39966819, 16854035, 0, 1245760, 0, 29361251, 4037169409,
4868, 705789952, 1630682, 2159017984, 10637087, 0, 1308622848, 40837282,
3093299200, 2426771478, 875888721, 201326593, 505, 528489650, 10, 0,
252321680, 34934530, 9149, 1358549760, 198180874, 2063787200, 465, 9093,
2341632, 0, 3155892432, 35, 55578624, 2123776, 381157376, 2046820353, 37,
2634022912, 1342177295, 687, 2902458368, 22, 0, 4037328896, 594088305,
1595909185, 41, 0, 0, 0, 0, 378777600, 0, 10849024, 0, 147520, 497356800,
0, 1057792, 0, 179824, 0, 74837, 17000448, 527892480, 0, 0, 329316826,
807590930, 392432263, 3774873600, 249, 624994014, 347394, 13570819,
1174405121, 34, 0, 3221225472, 3608549028, 1545555617, 37, 356515840,
2415919133, 2978422169, 823571185, 12, 0, 17940736, 0, 0, 0, 64851,
3489660928, 3538686423, 1, 0, 1256194048, 1091480832, 4234874953,
2533359616, 384987388, 0, 1611150592, 87, 1480864, 0, 3370215948,
4052538370, 757, 13440, 0, 2258639805, 29, 844103680, 1610612736, 168, 0,
541952, 0, 0, 0, 0, 2954778880, 1761419188, 1, 0, 27262976, 21277962, 0,
66032, 0, 0, 0, 340918272, 3120562177, 505, 0, 2415919104, 7442, 169296,
18567168, 2060451840, 1661471, 788922368, 0, 279449600, 0, 17844224,
127664128, 1193086448, 416096762, 0, 536870912, 7550, 151904, 0,
783286272, 1073741825, 268571201, 0, 0, 3436, 301018880, 801, 2025712, 0,
0, 19054848, 0, 0, 496828416, 65916, 536870912, 7591, 1998554416, 366,
73743, 3221225472, 140308485, 1, 305672192, 128928, 32740352, 379453440,
1075553, 307253248, 92435, 32896000, 0, 2701285584, 18538665, 121415,
2164000768, 4458, 3992977408, 41894103, 64957, 4026531840, 136380653,
1066240, 0, 0, 30532864, 4138729472, 2382364673, 5943796, 0, 1058304,
610205696, 687865857, 292, 594542592, 270985234, 75, 3070436064, 473,
3693096591, 2952790031, 2733, 1061728, 0, 2851078144, 286940170, 4518,
3844054832, 4029853700, 524353766, 1359012864, 14815246, 3759148593,
269357312, 847319742, 1613127152, 2955281115, 605749873, 453136816,
128481, 3491589376, 1767116873, 1476881, 0, 820055709, 18261023, 0, 0,
45826048, 16777216, 1, 844759040, 0, 40611840, 3027238912, 16, 188481536,
0, 0, 3445620736, 23658241, 4102291456, 1, 0, 4220518400, 32746256,
458948608, 0, 31555584, 0, 2952790016, 257, 4177526784, 38, 233832448,
16, 4111073280, 156929, 379334656, 4126, 1344614656, 4243784279, 0, 0,
69948, 23646208, 0, 0, 0, 0, 0, 1853227008, 1, 377790464, 2622488576, 2,
23658496, 64929, 0, 64660, 0, 43974656, 570443583, 169, 815863461,
3758096386, 620, 335720688, 174170612, 0, 805306368, 200348483,
3038725904, 286552092, 2651977426, 28368144, 4099538944, 1075217, 0,
1400897536, 2, 0, 1929525472, 2, 2642417793, 31, 11141120, 605467247,
169, 3675194025, 2716954370, 1179711, 1644167169, 290, 7645, 32850176, 0,
0, 302342144, 288369944, 2746371, 0, 790566592, 266100905, 0, 536870912,
7434, 452984832, 292, 3822059705, 19080463, 0, 120560, 174182400,
1632632832, 815981826, 383, 637600080, 520143352, 2429550592, 16817430,
518324224, 1056964609, 272, 0, 0, 0, 2684354560, 4, 815, 0, 0,
2634022912, 278, 3400531968, 251852047, 4090953728, 1, 0, 0, 0,
172359680, 1, 0, 1324351488, 16, 8057, 82272, 285257728, 0, 1900390144,
5873, 0, 504664064, 0, 1879048192, 3656520262, 1, 0, 2881486848,
16903682, 317784064, 1, 10862592, 120527, 33266176, 3995860992, 1, 0, 0,
1073741824, 114, 2053712, 34942976, 1123024896, 540025874, 4275442095,
1093984, 268587008, 2906652672, 2165065488, 2847212326, 0, 0, 11247,
536870912, 2589, 0, 0, 1797259264, 2702134032, 380179545, 1, 0, 0,
3489660928, 39, 0, 496345088, 0, 2703419904, 4456, 116768, 501, 0,
536870912, 513, 0, 8380416, 0, 3489660928, 4395, 637558304, 273, 83353,
3238656, 0, 436207616, 494084143, 3887143343, 1, 3670016, 1901505, 0,
1601175907, 268435458, 7435, 236818256, 497, 42178, 2970648576, 2660, 0,
0, 0, 2716911616, 198, 536870912, 341528938, 2263884664, 17330461,
3657302016, 2078001, 292802560, 349175808, 224, 827129856, 1, 0, 0,
18256128, 0, 2051392, 295886848, 67858, 0, 0, 0, 0, 220211730, 268435485,
29, 1811939328, 290, 0, 0, 0, 2986344448, 42, 0, 3251712768, 37622000,
2078703, 0, 0, 3221225472, 630, 0, 0, 1851785216, 3224113664, 72614637,
72753, 0, 0, 0, 0, 0, 495230976, 4345, 805306368, 8059, 0, 0, 1348468736,
1, 0, 0, 22142976, 1282451575, 1610612765, 4216455392, 1, 0, 42016,
2684354560, 7562, 123872, 272637952, 71323, 3758096384, 331, 2050768,
178561024, 1346371584, 17081119, 542638080, 1, 0, 0, 0, 0, 771751936,
527249413, 0, 19076864, 0, 0, 292077568, 1377828864, 1480449, 550699008,
3456192896, 470, 128863, 0, 4221304832, 0, 22884352, 2334173041, 17,
4215144448, 2030043137, 444, 120755, 17852928, 611516416, 1191349713, 47,
1120927744, 17, 0, 0, 385060864, 0, 0, 2720727591, 436207616, 46,
954211745, 0, 0, 3120620704, 493670725, 3692036096, 2147483649, 805,
1996488704, 252, 3046154794, 1459970, 2720858112, 789193216, 162, 70104,
16861184, 3604283392, 3439329281, 472, 2718957568, 30918154, 0, 0, 0,
1578, 11122944, 0, 1728184848, 385122777, 72799, 0, 0, 0, 0, 0, 0,
2956918784, 1073741825, 496628144, 72213, 28328448, 620036096,
2063597569, 45051916, 3986620946, 805306369, 580649035, 536870913, 252,
0, 736512, 0, 402653184, 473, 2098200576, 30619423, 0, 0, 4028919808, 0,
0, 0, 0, 0, 983078, 0, 651362304, 0, 0, 0, 0, 702152704, 0, 0, 0,
17340928, 557187072, 2432696321, 167, 0, 0, 0, 123680, 0, 3115319296, 2,
0, 1713095248, 527573011, 2613122066, 299976479, 240, 3137339392,
319024896, 918552576, 2952790017, 4043, 0, 0, 437256192, 2150095619, 600,
3120562176, 497242158, 1254096896, 17327104, 50921472, 0, 267350016, 0,
0, 4248305664, 15731104, 38723584, 488700194, 2, 177274880, 2113929216,
253, 3978297344, 23714818, 542638080, 2365587456, 10, 0, 0, 642842624, 0,
0, 0, 1090064640, 109, 4128246640, 472, 0, 1356319744, 191, 722440528,
249, 41520, 1969664, 583008256, 4061106560, 215, 127781, 4026531840,
104271763, 4060086272, 488009752, 0, 4026531840, 61449, 0, 0, 0, 0, 0,
1092624, 0, 7624, 1881863168, 695277189, 3439329280, 45003248, 773849088,
996881, 0, 0, 2019328, 0, 1074181376, 31392508, 1138760528, 530321913,
457048495, 3456214240, 1754259482, 1029041, 0, 2240890434, 1353103617,
1178473572, 2400478193, 342102269, 0, 3511041024, 4214428771, 1879182241,
45, 3383754752, 805306369, 7548, 0, 0, 1684133960, 1610612756,
1778392940, 1, 0, 0, 0, 4181590016, 1020800, 0, 2472542208, 1090075407,
756416527, 0, 302125056, 399507456, 30799363, 0, 0, 494305280, 71908,
1073741824, 538, 0, 0, 3378511872, 32014351, 16253013, 889192448, 249,
63794, 538737664, 4178374695, 3440013856, 292, 12663, 0, 0, 0, 0, 4579,
0, 0, 0, 291348480, 1478557705, 2207490, 4097048576, 1, 0, 0, 0,
43188224, 97568, 50110464, 1669416503, 2686482196, 502600803, 890528576,
342057286, 0, 0, 58458112, 15, 9515008, 2431647744, 1093688576,
811343236, 2231406705, 18084164, 2636121650, 1073741840, 1145839469,
1308659793, 33476932, 1147225157, 2168735508, 5188, 2601796640,
340017422, 9397, 1076146944, 615580235, 2936163104, 38469668, 2215650477,
3223628545, 615055946, 2801945248, 38436900, 0, 0, 0, 180144, 0,
2425356288, 3489660928, 7478, 0, 0, 251668810, 28407824, 1144913920,
3725870065, 340004910, 1135690810, 1631861780, 4150, 941584576, 48406852,
1247814821, 1076142850, 614531658, 2667727392, 38404132, 1239418515,
3221225474, 585, 0, 0, 127801, 1889807616, 692, 806001584, 164, 0,
3489660928, 312, 771751936, 20508836, 3491836908, 1879048222, 2964848949,
3070230529, 432, 2556471597, 23596061, 1756233728, 1275068417, 37,
2374095202, 17, 0, 0, 0, 46203035, 16476432, 656, 0, 3760025600, 0,
10507776, 0, 2030043136, 51, 64703, 3500796672, 693960915, 3355443200,
494465067, 247542331, 2167552274, 842470179, 1493353249, 465846304,
3306273795, 3760419867, 275710505, 1024067009, 265281842, 69821, 0,
1143996416, 2937340705, 339959849, 1121010731, 4047777300, 3154117001,
3607109409, 339910907, 129901, 2393344, 0, 1593835520, 9887775,
2121269248, 827167, 420872192, 0, 488812544, 609225193, 815912211,
843125540, 1254385, 0, 653304281, 10606337, 843776000, 3556853169,
321155233, 1858159655, 0, 1143144448, 739267105, 339894525, 3388032031,
558113040, 5186, 0, 0, 771793000, 1613086481, 4184150097, 3103981825,
488, 1374724198, 16, 2690973696, 1127264, 520957952, 1184973929,
3768722708, 1147475014, 1729381985, 340164932, 2332033024, 1621238538,
122, 571494400, 162, 0, 30903552, 0, 1828716544, 295375138, 8008, 0,
4265279488, 109424, 518213632, 82911307, 1106268191, 4031906011,
3592357169, 304, 120932, 806947584, 8007, 1073741824, 413409783, 0, 0, 0,
570425344, 502, 2233466880, 29, 0, 1040187392, 527609345, 67043945,
3758096400, 826212974, 1174484288, 500, 128149, 4026531840, 387,
3154214480, 288, 0, 1073741824, 2720469161, 3506438144, 521437689,
2626682880, 29, 1146552320, 1328513, 170213376, 0, 2952790016, 539369315,
1, 0, 4044399142, 1, 2720595968, 0, 0, 1173439582, 289693716, 1146754118,
1343505841, 40419331, 2442068077, 2415919105, 5189, 0, 0, 0, 228608,
871567300, 0, 294903808, 71447, 0, 0, 142448, 0, 4197449728, 1, 0, 0, 0,
0, 29110528, 0, 0, 0, 548488275, 1631868170, 1146033221, 1007961345,
340074767, 550697156, 1392035338, 4173868940, 4043972770, 264552614,
850395136, 3758096415, 625, 3405774848, 797745912, 2361461937,
3807956783, 12172, 0, 46600192, 0, 251850752, 0, 805306368, 38,
1173450368, 3002646017, 573965114, 3895430128, 502, 1328545792, 3316993,
0, 4129259952, 26300921, 0, 31053824, 0, 0, 379392000, 2473709854,
251889424, 201326592, 103713, 0, 11945, 1610612736, 552, 3573611408, 41,
2108, 18925824, 0, 2969737104, 524415736, 2334324915, 1091307055,
201535371, 2684513345, 797671931, 0, 3489660928, 204, 1593914672, 160,
3097688226, 855155743, 4235341706, 439323216, 797601957, 2324701363,
1643131951, 2719220512, 0, 302817280, 2325936299, 1621122607, 4172218435,
1630505698, 160, 0, 0, 1748107264, 1168145, 169967616, 1020264448,
402434, 4205838336, 2063597569, 37745142, 2970625138, 271003679,
2830043697, 3338768400, 22, 0, 2062336, 9502720, 1478033, 0, 2373976064,
1879048221, 419962118, 0, 23187456, 1104233500, 922388, 1142358016,
419487169, 339845444, 1094713344, 3779335444, 3489858155, 181137, 0,
2113929216, 31, 0, 0, 0, 535863894, 3758096394, 2723742205, 663552, 0,
2938304624, 3509610250, 2723611042, 3489691264, 271352066, 1645410424,
2415919105, 12167, 0, 304545792, 1644167168, 2717095681, 806760327,
2130797024, 797434616, 1175527620, 2974025984, 5184, 1190048, 0, 74966,
18404352, 254083072, 3006236337, 797364257, 2263885694, 1084500015,
2754347409, 218103808, 11448361, 73923, 17723136, 411238400, 2803298384,
511888897, 849541215, 1644319, 0, 2919235584, 52523275, 0, 279194112,
2626, 120384, 0, 0, 0, 0, 0, 0, 2659201427, 1353114128, 1141641487,
1158886385, 339800371, 319894342, 815819018, 112, 1528627312, 41, 917807,
49827840, 848429056, 4046423312, 797258008, 775955409, 1928878097,
174731141, 103777681, 266694945, 784334848, 2694867712, 4166713733,
1526886498, 797294876, 2218981445, 1660438319, 154677124, 3114113,
14716928, 1079067652, 1900283412, 1140855872, 34670097, 339751236,
2228418638, 1342177327, 36, 134904592, 31, 0, 0, 0, 1154288, 41447424,
2026903823, 1610612746, 4356, 1862270976, 44, 0, 3489766400, 2813335205,
1124759552, 170, 0, 0, 0, 0, 0, 333447168, 828988432, 621809681,
1127187457, 38273784, 2940215930, 536870934, 605888138, 1, 0, 0,
1879048192, 7986, 0, 0, 2771396501, 22, 0, 1308622848, 321179954,
296865958, 18, 3640131584, 1946157057, 521740295, 4918, 1342177280,
150016323, 1, 44281856, 3299947084, 1257986, 0, 891095984, 289529875, 0,
2685612032, 544542981, 1, 530542592, 0, 2684354560, 7436, 1291845632,
290, 2308972671, 49847599, 436470445, 486672145, 4028907569, 72193,
3379712, 824573952, 100663296, 286130458, 0, 20121088, 436404224,
167772161, 306471169, 440409618, 18955523, 0, 823210944, 524247059, 0, 0,
834142208, 2079680, 0, 101281, 33289728, 2342715392, 738197505, 36130865,
2299533321, 825504815, 4170592137, 2553252178, 797537016, 2308034630,
166703, 0, 0, 0, 676409988, 823081235, 267260712, 2266122641, 321377016,
2290284681, 3221225519, 2836201766, 2315255808, 321433906, 2248275536,
49843229, 4170059134, 203714, 52047872, 0, 0, 3662217216, 922882545, 16,
0, 0, 0, 0, 466120704, 337641472, 18, 0, 0, 530296832, 12278, 33153792,
176947200, 2718110208, 30, 0, 690944, 0, 47760, 518041600, 3037724672,
30544415, 3524263936, 2885838385, 488698251, 550603691, 2446461469, 717,
1908880, 143360, 690041489, 17073683, 848106281, 1255649, 0, 64257, 0,
848625664, 2467506529, 17498418, 0, 10487040, 832569344, 269691248, 3842,
0, 0, 0, 0, 0, 97522812, 24091649, 4090232832, 1459684801, 7, 0,
1621810944, 581505426, 36464, 0, 299892736, 3492921091, 1783699108,
15742433, 0, 75001, 0, 824311808, 1946360576, 414056950, 60817408,
301356035, 6318, 1392508928, 28, 69206016, 18694429, 0, 0, 0, 965751060,
16, 0, 0, 0, 0, 0, 2332753920, 1543503873, 44957858, 2557476864, 29,
658898944, 704790224, 471, 210772788, 19051536, 866058240, 203680, 0, 0,
208896, 2332229632, 4143972353, 324, 2768240640, 2978676758, 1872429350,
2736191905, 277, 0, 17338624, 20119552, 1895825408, 37, 0, 25921280,
3914530816, 1191182337, 268562708, 1340181366, 562786066, 61493,
3405970624, 414757025, 3087202365, 3777297176, 533409667, 3441264593,
307220641, 4462, 1106151168, 53866549, 3254779904, 23756809, 2651949538,
805756952, 292886260, 3893344144, 413036937, 793772032, 303360,
2313748480, 2214592513, 413048873, 2663451889, 3769352984, 2314279070,
1036209, 31592448, 0, 3221225472, 4163895569, 840909970, 797119224,
904067124, 1358977536, 5975939, 286262737, 797151252, 0, 3489660928,
495849442, 1192217344, 797049094, 2640415191, 3247036696, 1749287208,
3709377953, 173097353, 2796681686, 15, 0, 3170893824, 500, 890435628,
2418165507, 3807452988, 3113713, 34447360, 2173702502, 3758096431,
291575447, 1477872288, 307290608, 1082223193, 855121169, 4162781205,
3113442, 289431552, 2648702976, 10635032, 0, 1174405120, 520462498,
2735743700, 1, 8081, 0, 0, 616562688, 270158090, 7458, 117568, 0, 7537,
3025664, 0, 1696476800, 278, 2625641648, 1106784536, 611, 4043486928,
292, 2402482194, 855118850, 4162203521, 2905571666, 512467212,
2637269460, 805306392, 82510087, 120272, 0, 1253242881, 586679057,
42020736, 1375815216, 796942703, 2155883320, 3221225519, 8113, 0, 0,
2628880844, 3515469336, 2312116380, 3524828401, 412946825, 2614200766,
4037132824, 4211480731, 3204448256, 307200161, 0, 24015872, 0,
4145137200, 323162404, 0, 17324800, 0, 0, 178778112, 0, 1904850944,
2310674587, 3155729297, 412856713, 945815552, 3054866, 0, 873085680,
45060361, 1358006721, 562676490, 2311395484, 3339336465, 412901769,
1678780951, 2, 584318976, 385875969, 174227200, 3239051264, 1352777743,
2678, 2986344448, 487076006, 0, 251849728, 347471872, 1, 0, 64506,
2969874944, 2309947688, 2970684737, 23888265, 0, 2148799744, 2662, 0, 0,
0, 24010240, 501809152, 3690987520, 303665429, 1453326336, 287298079,
56300029, 0, 0, 9443243, 14140191, 0, 0, 0, 3456207283, 1092388354, 6299,
1041800032, 41, 0, 3521939968, 4441, 4227858432, 6, 0, 805306368,
29957425, 144462, 283582464, 73665, 1344712960, 2702843742, 1121376,
303550464, 2579597725, 3783892760, 346953881, 3256110849, 16138513,
2929721344, 3221225482, 567877451, 0, 0, 2591032949, 2426775064,
2309757082, 3406908049, 470, 8815, 16651776, 2781675520, 2885681152,
488726571, 3059864083, 10876176, 0, 889323824, 4028833957, 0, 0,
4285071360, 1545116208, 412766373, 637612639, 3778172691, 844370725,
1795322465, 321204479, 65384, 0, 4285136896, 4026531840, 43, 3471878334,
15, 0, 0, 0, 3425798894, 1, 3524984832, 2417828289, 412676489, 562036736,
29, 61477, 131792, 0, 0, 0, 649723904, 2600468480, 412721545, 2364658889,
1104460033, 211687076, 3388997633, 168931796, 398458880, 1345112850,
3569229142, 69729, 26021888, 0, 1342177280, 112072375, 0, 377802752,
51380224, 1361088256, 860822860, 1342177281, 39899443, 650195563,
825387283, 845613723, 2081629825, 321282318, 3470, 0, 0, 1828716544, 306,
663749680, 1630696467, 569774887, 1863526193, 321327410, 1080, 18969600,
72155136, 2047914816, 321368370, 71082, 3489938944, 116, 0, 268115968, 0,
10748928, 71499776, 687865856, 31, 67395, 0, 1784020992, 1, 0, 0,
18241280, 0, 0, 0, 0, 0, 4232445952, 0, 289972224, 2312110080,
2717249309, 4631, 1070128, 0, 0, 0, 0, 3893794960, 452985002, 0,
30946816, 0, 0, 24834048, 3058797049, 1577184024, 560988538, 1,
303796224, 13100, 235007744, 32374784, 4076863502, 24801554, 191897208,
539044353, 3576634707, 2584727841, 491970593, 2193704381, 22, 617676800,
889192449, 492003797, 1380046115, 553533213, 240783289, 1921536,
491905024, 1388434731, 2983536925, 2762932855, 621442912, 285213141, 0,
1621692672, 7942, 1185568, 0, 389148193, 33038354, 0, 587202560,
23949785, 125258, 0, 0, 536870912, 264065284, 3756070930, 268435460,
2660, 639600928, 33259781, 75042, 0, 0, 0, 516374528, 8369, 0, 220798466,
100663296, 473, 3881828352, 1344864016, 7585, 4043317968, 36, 2380267520,
1092655133, 7951, 1846692752, 289, 0, 828902144, 4105117455, 1746877489,
470, 2211573998, 2970170624, 270016270, 1813974801, 521072681, 0, 0,
3999334400, 1, 0, 1696595968, 0, 1155989504, 166881, 0, 84947719,
1610612960, 3154253491, 905969665, 341971250, 12060, 29099264, 414777344,
0, 0, 2838569627, 2127104, 4031643648, 1254369, 11046912, 599785472,
1911574803, 168, 3992977408, 266, 0, 1360692480, 560660648, 1, 11071488,
682736705, 10731025, 4063686664, 922885873, 49881586, 2545985889,
284838678, 343939847, 3659204336, 26325462, 0, 0, 2960523264, 3992977409,
307155236, 57742383, 268435487, 617, 0, 265265152, 2053, 3222912768, 583,
25424, 1212416, 1404110976, 808574495, 578952457, 3659359761, 524566562,
639675189, 19158043, 824377344, 520093696, 26279985, 5656, 1614007808,
347279363, 0, 22319104, 1252, 20071424, 578879488, 2937058769, 20,
1282529514, 2147904000, 4900, 3070425056, 20, 475125474, 269257738,
210444035, 3507635104, 520310945, 757071872, 2490386, 715915264,
3960619424, 25, 129884, 2684354560, 623845301, 0, 4030169088, 3401681654,
16, 0, 1906912, 49577984, 133247094, 2305043, 571015168, 163681, 0,
128974848, 4026531859, 3666022658, 2030201377, 53129704, 2562719744,
4026531862, 295899283, 15742481, 0, 327165347, 3, 0, 1159530304, 25,
4051798777, 2685552399, 4213971119, 2198853168, 414179353, 2929822443,
3221225496, 2812549294, 0, 0, 0, 3489660928, 443023637, 218103809, 45,
2277510488, 31, 0, 1257056, 0, 101091, 1904928000, 432800084, 3910223361,
414089610, 0, 0, 4028, 353024256, 276, 2932873304, 4052414488,
2857900206, 4095258384, 26780042, 4335, 2685363456, 724898382,
3959422976, 307147044, 4155506688, 32839170, 0, 0, 305471488, 310378496,
805306384, 344268699, 2046820353, 488, 367001600, 2418722560, 33364141,
3726159280, 414044554, 0, 1073741824, 57346, 2048434832, 49815985, 64741,
2394624, 345112576, 3222839889, 47169545, 1323303856, 31, 94240768, 0,
492277760, 1279333505, 1308737536, 5865, 2415919104, 174612499,
2918257795, 3783975448, 36966566, 939524096, 1, 0, 3507784960, 17629738,
1090519040, 39391732, 0, 25832960, 0, 173792, 0, 41416, 1068288, 0,
1912602624, 4029788167, 361800138, 2978663442, 2714179756, 1846607712,
37, 64287, 1073741824, 113377994, 0, 81584128, 2906663141, 2173359896,
4255, 2518199680, 282, 129692, 1569024, 0, 0, 32251904, 0, 2868736, 821,
2068880, 263675904, 74925, 18916352, 2328952832, 3541609729, 307036554,
2883593228, 25870616, 343414956, 156976, 413941760, 129718, 4026531840,
22090261, 1, 0, 9501, 2164912384, 4290318790, 722454752, 29, 1614807040,
2570260, 202899456, 3170893824, 413909386, 1615924436, 20, 0, 0, 0,
83377, 17613056, 2328231936, 3357060177, 413954442, 466616320, 18109698,
815726592, 3474131217, 178397228, 150994944, 19, 0, 167810976, 47, 0,
806320384, 4200661749, 2483027969, 264442160, 927989760, 1629721601,
8097, 3187671040, 319389862, 3403806472, 1610612751, 497357576, 0,
13258752, 2809135104, 3489660944, 4038394389, 1846630833, 469, 0, 0,
2854420480, 0, 41205760, 2740040349, 24, 0, 1038032, 0, 3963625894,
10622223, 0, 67108864, 171, 1108344832, 17, 0, 0, 0, 2310016940, 2,
2996109312, 2518606577, 512209330, 774898359, 2952968192, 475,
1158311984, 37794059, 3579845970, 823210241, 48365611, 1476515184,
30781469, 721427789, 547583744, 166985771, 3456118288, 177709059, 0, 0,
0, 1140850688, 257, 152050571, 1198609, 3670016, 1291948143, 18,
2259681280, 1343375362, 396, 3204448256, 304435561, 0, 0, 0, 0, 0,
2470488561, 1345177110, 767691352, 0, 530706432, 11717, 2712064,
767557632, 0, 44920832, 0, 2147483648, 4164, 0, 0, 1735, 2955640320,
6226067, 15, 289566720, 128032, 1880965888, 496763348, 1224856704,
31064093, 919722630, 31, 294191104, 838860801, 33, 3213894389, 0, 0, 0,
0, 11713, 16624384, 420610048, 72688, 0, 1124073472, 18, 0, 0, 0,
4288675840, 2, 0, 1032896, 37838848, 2649751552, 16, 0, 1047008,
526438400, 507510784, 29, 845414400, 3321888768, 42, 0, 3231823872,
3547340522, 4160749569, 164, 1744, 10598912, 0, 3070230528, 161, 125028,
536870912, 793, 2550136832, 170, 0, 831129088, 707, 1946161504,
169595353, 129345, 539450624, 336273319, 1, 0, 68210, 1342177280,
335610555, 1, 0, 7934, 3245245696, 7558, 0, 0, 0, 1612254464, 409,
4177557824, 178737162, 70045, 1610612736, 667, 0, 531255296, 2419143636,
806984705, 4925, 0, 0, 0, 0, 245235712, 1997679232, 15, 487587840, 224,
4095213568, 1, 524107776, 0, 0, 306446336, 4210032784, 35, 904999231,
2147483888, 3937045, 436392271, 27410602, 0, 0, 595263488, 0, 320077824,
128515, 2477312, 349372416, 1186801, 303390720, 0, 93440, 2819817472, 0,
525254656, 828375040, 4044524573, 821, 3204448256, 524083699, 1007682080,
30468611, 3624796160, 1, 301756416, 3531669307, 566033, 0, 0, 0, 0,
1342177280, 8002, 0, 0, 0, 1073741824, 7949, 2786133184, 37, 100878, 0,
590413824, 857699137, 307454455, 128963, 0, 738197504, 703904, 0,
1374683136, 0, 0, 201326592, 51, 356515840, 20007699, 62193664, 0, 0,
80818528, 1093755153, 3989, 0, 287875072, 0, 1610612736, 4051,
3858864160, 3840, 70493, 33107200, 0, 922817776, 522199504, 4231987901,
32764433, 677380096, 166400, 0, 92959, 0, 2770206720, 471824128, 25, 0,
4026531840, 2715, 403349600, 52572554, 1364326877, 2, 772866048,
2566914048, 304718323, 2580545536, 2, 0, 2684354560, 28737561, 615588386,
2427069680, 3806265589, 3489766753, 10, 65609, 3023616, 8106, 419430400,
498, 6554, 2954404096, 306384942, 3625779872, 306, 663748608, 18,
168558592, 1, 377782272, 3051356160, 1612505110, 613745154, 15739568, 0,
0, 10988800, 0, 0, 937984, 1153477434, 29, 3561556642, 1260209281,
491037140, 1145164869, 1641301789, 3561037124, 1125991425, 491004372, 0,
0, 0, 1061632, 0, 1768947712, 4026531871, 764, 3221225472, 49549352,
2414870528, 315695, 0, 2035200, 271953920, 0, 33153024, 0, 0, 9781248,
1136748939, 3788783389, 3560512835, 4227872753, 490971497, 3195075961,
1641297665, 7491, 1593835520, 273, 3201376904, 33236224, 134152192, 0, 0,
2568083903, 2197352720, 4176680603, 4113534754, 797917944, 2405628151,
2180541999, 12175, 0, 42897408, 129331, 3807967744, 4177272752,
4263489874, 797954808, 2692866363, 1896884490, 12174, 2016382608,
494710791, 2283808834, 2, 581107712, 302153888, 42082344, 1434453603, 29,
0, 2070064, 0, 1430267583, 3489804061, 2741051209, 1025457776, 363,
2379292960, 1343852079, 479595070, 0, 171851776, 224461013, 2969622288,
4226227614, 0, 41873408, 2449515598, 1099647768, 240393863, 672140704,
50077866, 4048551936, 1928912918, 4175563326, 3828321810, 178660088,
2878406867, 758274, 193527808, 3506599136, 292688128, 500179673,
33118736, 4174446592, 2435812610, 797778089, 2369784709, 1660475183,
193867661, 1949273472, 9421092, 1339034503, 2952790045, 4175043918,
4076863490, 797815252, 1343345912, 18124317, 7503, 4145893344, 294867412,
100668, 268435456, 4499, 2349962112, 523542804, 0, 16611840, 2859335680,
520275072, 3, 2218797092, 1344832514, 57346, 201326592, 42025000,
2134968956, 13, 680525824, 0, 0, 2902522891, 2147483679, 4108, 0, 0, 0,
0, 2854027264, 2786069664, 269267108, 389021696, 2633747, 645, 169536,
277188608, 2620456469, 288454173, 661782656, 402653184, 524055008,
2189436952, 2150123522, 459604616, 0, 0, 879755264, 3758096400, 303,
104592, 525660160, 2166361930, 2439976982, 4247781942, 436207616,
299114778, 0, 1629080320, 748421413, 75040, 0, 626983081, 1, 0, 75008, 0,
0, 1612721664, 194, 15742720, 26738688, 0, 2684354560, 13, 687890176,
286880250, 580911104, 240, 827785216, 2483189377, 412819481, 0,
2147483648, 555, 1999264, 0, 3502370433, 16, 0, 0, 0, 621805568,
548017409, 3579646728, 1543503873, 322806229, 120163, 0, 0, 1249936, 0,
11450, 1360583680, 5788, 2115870288, 527237411, 9244, 805306368, 7985, 0,
0, 0, 18197504, 0, 0, 43061248, 0, 1073741824, 3515482115, 1, 384864256,
0, 1231872, 0, 0, 0, 1519386624, 1342177311, 7528, 3121809520, 493363239,
6544, 1610612736, 3668775177, 1, 267296768, 10369, 3758502144, 671683089,
3690994272, 8339461, 986, 16484864, 366936064, 3202358736, 9, 307232768,
3204662546, 4081062679, 2801795073, 266658076, 605037313, 1344799506,
4104782464, 1, 0, 0, 1879690240, 3598196643, 1996488705, 470, 0, 0, 0,
2450506064, 3840, 293601280, 18, 2842624000, 3355443200, 9, 121313,
4278415872, 433, 1157721648, 393, 3398434816, 251885073, 0, 3874502144,
11276648, 2257586064, 4043863296, 829817003, 4177570992, 34, 10731,
1805312, 0, 0, 491106304, 1194328064, 2415919120, 7493, 1136848,
491122688, 2404384768, 3491683088, 365894981, 2685055329, 491118619,
3217154066, 805306370, 4441, 3556769792, 0, 12350, 0, 0, 2449473536,
11301365, 0, 23824384, 0, 184549376, 5, 2657091584, 30697245, 3563454464,
503316481, 47, 121216, 1073741824, 3609402765, 1778516833, 503, 0, 0,
552206336, 1, 178274304, 3131047936, 15, 0, 2147483648, 27414784, 0,
2220544, 4146855936, 1174405121, 289546286, 4046576245, 1231632,
392298496, 3858759680, 305070091, 5985, 0, 0, 3422747056, 290984260,
5984, 2439936256, 3979870482, 1595758817, 3584, 0, 3513675264, 5862,
55856, 275030016, 3887071232, 3221225494, 4526, 0, 511868928, 3510673732,
30, 2705784832, 1358954496, 393, 2177892352, 22, 14352384, 1933984, 0,
3092250624, 2446555152, 2702, 114352, 0, 0, 0, 4234280960, 188864,
29282304, 64808, 0, 1754071040, 1179041, 21516288, 0, 0, 4162125824,
1525686977, 280301611, 1782579200, 28418333, 0, 0, 0, 2595296401,
1610612760, 629415756, 4093640704, 507, 164626432, 16484381, 0, 0,
171925504, 126262, 0, 4212785152, 687865857, 507, 0, 0, 13041664, 84943,
1187840, 2514485248, 2180349470, 174, 3372220416, 470, 126237, 32281344,
0, 0, 526348288, 0, 18640896, 0, 4278190080, 361, 1767899136, 4028478986,
547881121, 4177526785, 264118441, 0, 16709120, 0, 2565875744, 35,
1361165411, 2, 0, 0, 37154816, 0, 0, 594477056, 3875536897, 268304393,
43602, 2147483648, 4453, 184549376, 48517601, 2310023934, 2417917718,
504, 170064, 303464448, 2758803456, 536870914, 574233542, 956301312, 272,
3782257601, 1881796879, 479854808, 1428136721, 260, 4815, 2415919104,
46007043, 1258291215, 20, 1156579328, 16, 4048814080, 1459617793,
378409322, 1262, 806985984, 1246, 2751463424, 504463753, 69269, 25798144,
0, 0, 0, 0, 0, 0, 0, 0, 3832550982, 3758096384, 526, 1100912, 0, 121137,
1610612736, 328, 0, 0, 1083298115, 1, 4426, 3994453888, 21, 3699376128,
2415919106, 345244380, 76769, 493735936, 730923510, 2164853505, 459, 0,
0, 917600, 76800, 0, 4095697904, 361, 2686451712, 2165443584, 7553,
1107296256, 362, 884998144, 18199839, 4091609088, 2051537, 14024704,
93843, 536870912, 349766074, 14686817, 0, 10832, 3221225472, 451809549,
1, 0, 0, 45056, 0, 0, 0, 1215, 1470464, 59244544, 1, 0, 42881,
3223524352, 152378636, 151136449, 29, 190840832, 1, 0, 1611745872,
17809444, 1494220800, 16882207, 464453632, 84080, 2707456, 0, 0, 0, 0,
495652864, 73694, 31527424, 534249472, 3405774849, 14832112, 1184974205,
18679824, 430047232, 206848, 303067136, 0, 2914048, 0, 2735735616, 471,
0, 0, 0, 0, 46841856, 67110934, 28370944, 674430976, 2466415920, 40, 0,
3231979520, 2799043166, 452984832, 164, 92164, 1610612736, 81264746,
2384418800, 39686168, 111080, 0, 115671040, 0, 378359808, 0, 268435456,
488571405, 672225, 275402752, 0, 0, 0, 0, 290074624, 0, 0, 830144512, 0,
41562112, 620756992, 3253605151, 4550, 0, 0, 2088886531, 805306399, 4059,
0, 0, 3428853955, 3221225474, 442, 0, 0, 3359637504, 1610612766, 4166, 0,
0, 125134, 1610612736, 17240842, 1223699200, 524095649, 590348288,
2434950163, 4168356138, 1, 0, 1712366630, 17, 0, 0, 0, 278963236, 30,
2753757621, 1241513984, 161, 3515887623, 18253854, 3633840128, 923887681,
24388055, 4036033955, 1636391696, 191168524, 1250065, 497053696,
1243611136, 808676625, 444, 2785702720, 298393602, 118960, 1629296896,
2805467763, 0, 8589312, 1862270976, 18130717, 0, 402715456, 268,
477108792, 224, 0, 369098752, 286532065, 521142272, 271533056,
1778057588, 124737, 177168384, 0, 2834432, 83951988, 699952, 284180480,
10677, 0, 121831424, 2550136832, 14029084, 0, 0, 0, 0, 0, 0, 2701045504,
108, 1966576, 0, 3050307584, 2, 0, 436207616, 285290992, 2276462932,
18939951, 312541184, 672126593, 501, 0, 31072512, 0, 2785017856,
4026810538, 340787200, 2684354589, 20910410, 3607101440, 299012265, 0,
3289344, 500695040, 3373357744, 37, 0, 23723520, 1777926144, 3457925969,
161, 1272023396, 965650, 3612606464, 80177, 0, 758247035, 27, 437583872,
1780992, 169684992, 2588998563, 23619103, 344915968, 1, 0, 6106,
2158049024, 45810086, 906042223, 527876257, 0, 30607616, 0, 268494192,
504533027, 330301440, 1073741834, 3621592901, 486539264, 164, 568,
10565888, 0, 107648, 39792640, 0, 1104732672, 4676, 1476288, 796934144,
2860526519, 32773898, 0, 973078528, 493, 0, 3492722176, 697, 2001392, 0,
1015087904, 31, 0, 1778384896, 48287911, 1532042414, 1073741825,
478417140, 4211081216, 22765604, 3024157670, 10, 439484416, 162336,
520949760, 64566, 0, 0, 0, 0, 4546, 0, 0, 0, 0, 0, 16519168, 413343248,
2063456, 30900224, 2630877184, 28497162, 665321472, 1124073472, 254, 0,
3221225472, 4165, 0, 0, 1534131511, 1879048193, 439226691, 88896, 0, 0,
3758096384, 697, 2181038080, 21, 3553625975, 1610612753, 579666707,
1067168, 299057152, 123145, 537088, 0, 1040187392, 797401348, 0,
2684354560, 618, 2147483648, 29, 0, 2954639104, 4107, 0, 28770304,
187760832, 309791, 4271308800, 3187833984, 178807040, 0, 1610612736,
12648450, 1066705, 0, 0, 0, 0, 4177526784, 299082017, 1992414243,
28493066, 12129946, 1051553, 0, 0, 17623808, 217186304, 3825205249,
377925992, 43120152, 23606544, 4062052352, 2499991585, 379547667,
2575371466, 1372619286, 579010973, 1, 0, 3433037824, 18298639, 48365568,
193935, 0, 43124, 1342177280, 244257549, 184549377, 493, 1926234112,
32022016, 0, 3925868544, 20283888, 3109093558, 2148892687, 11669515,
3020950321, 42610944, 127005, 10610944, 556531712, 1152305, 488382464,
477103207, 0, 479985664, 55729, 8146944, 48234496, 2330641, 4284416000,
0, 0, 1864, 2971429376, 166461946, 0, 46108672, 830600999, 1879048221,
7562, 2617245696, 33, 0, 3758096384, 8016, 721420288, 12, 929048442,
30423583, 6321, 154096, 0, 0, 0, 0, 922751008, 504, 0, 23626752,
338362368, 3590324225, 44, 3491887720, 1342177282, 534, 2054880, 0, 0, 0,
3775135744, 1, 0, 316679173, 18700291, 0, 2634022912, 455860488, 12619,
539470336, 583473962, 32625, 30498816, 717225984, 2687163931, 478085148,
1, 0, 11916, 1879048192, 4354, 1936912, 48, 111288, 2175973632, 61448,
404704368, 51, 2636187892, 2954333697, 492044791, 1970720, 0, 0,
279002624, 8087, 1025461248, 264839329, 3119449007, 1880744216,
1304489991, 0, 0, 0, 268435456, 52, 101904, 0, 42664, 0, 0, 0, 28315648,
1406141349, 17619968, 420, 872415232, 3842, 3469737984, 32774401, 0, 0,
0, 0, 18100224, 0, 0, 39796736, 0, 4026531840, 4419, 0, 0, 1106320542,
805306385, 5874, 0, 289673216, 9573, 3489660928, 1159273256, 622088609,
518070299, 1365320013, 2168788756, 5201, 319086496, 340869445, 672137216,
3758096411, 2676, 4229638176, 271466785, 572522496, 18652416, 335872000,
3623878657, 45395969, 2297440335, 235000578, 1157758976, 303321137,
340811790, 1341169886, 1095041044, 2698973450, 520093696, 42135592, 684,
0, 1158545408, 268508929, 340857157, 3954263306, 3500827650, 5200,
134217728, 340824389, 2632974336, 1911959318, 213, 1940272, 0,
2607931663, 1073741834, 5763, 6688, 0, 2238720055, 2660098, 1156907008,
4162080609, 340762948, 1327580401, 1095037716, 3626964047, 3858759681,
289587361, 0, 1909975296, 88867478, 1, 0, 0, 3489660928, 714, 0, 0, 0,
3231744, 2699100160, 1058130448, 33419535, 3663724544, 2165782018, 4076,
74480, 0, 92183, 1881696000, 650, 0, 455561216, 0, 2415919104, 174659318,
2073185, 4028710912, 1921063388, 2148953866, 651, 0, 0, 716177408,
28473602, 31916032, 788739038, 19050546, 118917, 246272, 0, 1140886560,
166, 1582, 1410048, 0, 822083584, 506273834, 4270968846, 4026531857,
684134485, 1070256, 0, 7860, 268667392, 57374, 3523317840, 252,
3412149570, 1631929359, 75620382, 336876528, 341053693, 354418688,
3510975491, 653005907, 0, 19013632, 954270734, 31, 0, 0, 36896768,
100847, 0, 1160773632, 3923778945, 504520193, 1388357466, 4047842580,
1160189010, 689197697, 340959557, 3295674368, 1634333954, 256906322, 0,
0, 1400980791, 2695098132, 1160975443, 890524481, 36536645, 0, 558182656,
5203, 2399141888, 171, 0, 1342177280, 8001, 2886770960, 254, 1568669696,
4026531871, 4251648631, 587202560, 180216134, 1376863520, 826614292,
1159467330, 503990865, 280609093, 0, 0, 0, 0, 16834560, 320930261, 18, 0,
1067248, 0, 2023686261, 17725953, 0, 0, 0, 0, 0, 340590592, 50331649,
3840, 0, 17617152, 0, 0, 0, 2438987776, 3489660938, 4297, 0, 0,
3884055375, 15, 1159987200, 1053441, 0, 10081, 1342177280, 61493, 0,
521805824, 65882, 32962048, 0, 3909149008, 42, 1988100096, 292492319,
109, 1181360, 0, 0, 0, 577110016, 112368, 0, 1121976320, 17997841, 0, 0,
0, 0, 3221225472, 661192725, 956301312, 35, 0, 0, 0, 0, 0, 42515, 0, 0,
3288420592, 3840, 0, 1423616, 617938944, 1308622848, 32493830, 5562, 0,
0, 1248624, 0, 0, 1018624, 4453, 0, 281997312, 0, 1909473024, 216272915,
1101409, 43356160, 2688548864, 1877526, 0, 1056964608, 3, 2646605824,
3489660930, 7582, 195488, 28422144, 3777041449, 15, 60030976, 0,
49020928, 0, 1424128, 0, 3089069024, 168804373, 41774, 1151232, 0,
1325400064, 289497123, 41776, 4028763136, 3520331998, 1, 304168960,
4028628992, 22, 2312830976, 1862270977, 287015415, 2958101251, 16,
565837824, 0, 17240064, 3456227198, 2432784144, 215158989, 1101153,
23261184, 3438349517, 3238841104, 4239986892, 755065568, 281813038,
93969, 0, 0, 1121824, 0, 0, 0, 0, 1711276032, 30, 0, 2415919104,
11476923, 3222276865, 4, 1778454305, 1, 0, 0, 50151424, 1664090112,
4026531841, 3656916355, 235576193, 276, 1663041536, 807928321, 588780114,
1073832705, 40967680, 0, 268806400, 640, 1131328, 0, 1323386092,
2168778516, 1156055576, 3925957617, 340701508, 1539309568, 1084720641,
2810317432, 3993066448, 495129040, 180355072, 3774917904, 347,
2836400768, 48759040, 42875, 1621588224, 371, 2030043136, 42700840,
169935009, 16818960, 69599232, 2550136833, 43610364, 921777006,
3241370131, 4918, 2383415888, 7, 0, 20149760, 863109120, 3339925329,
322375703, 938554236, 2972940051, 586547702, 3843033568, 251, 10457,
1362330624, 864162616, 2148640961, 322441523, 4272947200, 805306383,
856490611, 0, 523358208, 0, 1879048192, 7825, 2197815296, 6, 1539309568,
28403210, 0, 668000, 0, 93999, 2686428416, 3154510049, 1678389569, 433,
444674618, 29, 3155886080, 118473297, 267, 163577856, 23731472, 0,
3624084992, 279748648, 0, 0, 30015488, 14, 465571840, 70502, 16815872, 0,
1184144, 465604608, 1089479000, 1610612753, 4920, 11584, 465612800,
1869689757, 2972948994, 865604409, 2499871985, 322531635, 984691615,
4026531840, 5185393, 15, 0, 985740203, 2436081683, 866521914, 2735946353,
34509107, 0, 3221225472, 511, 0, 0, 2384461824, 805306369, 190382569,
1200129, 3759894528, 82837504, 29, 0, 2600468480, 303055321, 3225419776,
1073741851, 688, 2987044672, 53133312, 3228640124, 1879048219, 7108,
1068224, 0, 2838560922, 17, 29229056, 148046, 19054592, 74259, 234994432,
0, 905969664, 42, 402653184, 805306385, 420, 1358954496, 27, 594542592,
3, 746455040, 0, 0, 92503, 2415919104, 3914788871, 1444322609, 32, 4034,
0, 0, 0, 0, 0, 1613876736, 32834120, 1, 301875200, 12747, 0, 2828083012,
1194240, 0, 43150, 251671040, 81522691, 1024478609, 10616874, 43139,
1610612736, 7429, 3539992576, 280, 0, 0, 0, 1147152, 527667200, 1596, 0,
0, 201436000, 260, 1932652142, 1344248861, 2747794208, 1174405120,
321163570, 0, 2952790016, 620, 0, 0, 753926144, 1563632, 0, 0, 527339520,
351272960, 300948224, 4043, 2231369728, 22, 464519168, 806865949, 7428,
151136960, 306983238, 2317436415, 2437283359, 4419, 2382364672,
287216110, 41602, 4050162688, 4676, 2181226608, 267, 0, 0, 0, 13488,
291221504, 0, 10735360, 0, 0, 5615616, 2996830208, 1353225994, 627769848,
2282372384, 162, 2250336540, 1, 4132634624, 2051905, 378875904,
1826628197, 29112832, 537526272, 1158384, 4027174912, 0, 2434832896,
6300, 4094336176, 226468322, 1795162112, 1518592, 2736914432, 1151712,
49016832, 1775, 19202304, 3595436032, 4062012465, 36, 126614, 2147483648,
2326268554, 504932977, 413831335, 2863762092, 3515526680, 2326796458,
1616625, 0, 0, 562737408, 1752301930, 3036718689, 413876618, 2875203646,
2150293272, 3610319019, 3642272673, 16829953, 501227806, 49866464,
1751580672, 1407196609, 29, 43149, 2432567040, 107217393, 83886080, 254,
583137921, 2476561, 6488064, 1627391520, 413786112, 4245776427,
2173346560, 464652982, 1616448, 413818880, 66589, 285154816, 69668930,
2076881, 0, 1109400855, 16, 0, 588385280, 272777476, 1569760842, 1, 0,
2902458368, 265642007, 123732087, 1073771776, 7, 2030045088, 491520,
115343471, 3221253376, 7536646, 1895827232, 458752, 106954855,
1073767680, 7012358, 1761609376, 425984, 258078200, 136722, 142671872,
4110442497, 302981408, 0, 1073741824, 833356152, 3355443200, 266825777,
1025507328, 32720131, 0, 2348810240, 496, 25167036, 1610612752,
2813788668, 2382558736, 288, 1866, 0, 0, 454026000, 272732207, 121391, 0,
388956160, 20000, 33480704, 2765104699, 539394817, 646251112, 2483185728,
7709066, 2762999652, 2955575809, 2325349026, 2618428273, 413774218,
783327441, 2415919106, 2698124664, 23264, 266772480, 69732, 2952790016,
2698256292, 125680, 292749312, 0, 2952790016, 23925120, 1, 2641920,
2817624704, 294289944, 2323912872, 2249762865, 268644746, 2617245696, 2,
506527744, 2298478592, 493642122, 1243712139, 3247082768, 188684456,
3122178273, 413728785, 43141, 805306368, 4606, 0, 294576128, 0, 0, 0, 0,
0, 0, 3489660928, 45416596, 15, 286134272, 100981, 1636464384,
2323191975, 2063771265, 226324874, 408986118, 2576386, 0, 0, 265814016,
923795456, 18, 660741955, 185200, 0, 1048576, 268435680, 621543808,
285212673, 294568297, 2334213455, 10, 1162477568, 1293178049, 341107013,
1416636367, 286261524, 4522, 0, 0, 1368511770, 3760126749, 28967446, 14,
0, 1360122217, 836047901, 3574996305, 403796369, 30171605, 1355815787,
4026531858, 3574521883, 270356689, 35459541, 421628519, 2173331714, 6310,
135833248, 491811285, 0, 11047424, 0, 181312, 31653888, 2802944626,
831157272, 514529447, 3070230528, 526999584, 0, 3521941248, 567,
1862270976, 25231396, 0, 0, 338296832, 1184193, 0, 2481983831,
2978638877, 2322471078, 1880663761, 413593994, 1640073820, 3507893258,
709499045, 538486256, 44, 0, 2417840128, 4084992649, 2650800129, 252,
78056, 2891520, 820314112, 1, 0, 10902, 0, 821297152, 1510116993,
413503882, 249681303, 1342784275, 3496809231, 4145, 0, 4157606242,
1648642, 2321743872, 1696114209, 413548938, 955318116, 583170, 0, 116816,
41857024, 0, 1610612736, 2829717640, 0, 488906752, 442368470, 2415919106,
31071946, 1776295358, 49172954, 7353, 2684838400, 8070, 0, 175370240,
7991, 2707968, 0, 0, 0, 0, 2415919104, 2796297585, 149568, 25247744, 0,
3221225472, 479, 0, 0, 2564816896, 2168845087, 4443, 146800, 319680512,
4254081920, 1073741841, 87, 3305111552, 291176492, 2244080475, 536870934,
3647017307, 1117953, 0, 0, 18955008, 7477, 0, 24281088, 2585792941,
536870914, 667156559, 1031552, 51699712, 0, 0, 4037214208, 84099041,
81645571, 0, 0, 1747779584, 1, 0, 1851785216, 2002689, 0, 2986344448,
180187148, 1167134775, 16, 0, 0, 264900608, 483262923, 224, 30343168,
3454016782, 3759992321, 1376908079, 537759506, 4231913501, 14112,
489816064, 2084569088, 29, 0, 1483136, 0, 72988, 825600, 536936448, 1,
176836608, 298855912, 1, 28901376, 3976388302, 3759898669, 1777205693,
3253954570, 57371, 671088640, 5681172, 470810624, 1342177504, 29630330,
3269467230, 3759947265, 2410545608, 1577174557, 182059682, 956301313,
45642222, 0, 2165574912, 2764251000, 721420288, 48103447, 1094724559,
30526737, 0, 1526726656, 41849136, 1766915195, 21322783, 0, 0, 0,
3727728976, 10570498, 0, 1308622848, 169091233, 1914705699, 29, 0,
4026531840, 23699716, 1655769756, 1104428298, 7491, 663584, 0,
1927282688, 1898138625, 3518959681, 2013265921, 264114543, 0, 0,
111673344, 1, 504631296, 1806696448, 1, 0, 0, 529969152, 0, 2415919104,
81072281, 3115984, 0, 983557, 0, 0, 0, 0, 3223392413, 17880322,
688521216, 3115952, 0, 0, 3232280832, 2293575563, 3071839041, 44110216,
2340522169, 2441657112, 3637183073, 1608641, 0, 121433, 2173222400,
2294284667, 3256388593, 411832712, 2352056516, 1367918104, 6284, 1819904,
0, 2192579638, 2955430658, 327418504, 234881024, 272454137, 1987051520,
2717079810, 4683, 603979776, 30986566, 42890, 3241175808, 812124810,
1762805937, 180150576, 652314798, 4046480896, 2293373066, 25633, 0,
2708471808, 3112991, 669253632, 756221696, 49443576, 116435079,
235003667, 31842334, 3809674958, 3760082433, 2171611151, 539502338,
679936262, 1488560, 0, 566243684, 4261538335, 2965836367, 3306190081,
47108528, 41177, 2147483648, 4494, 184549376, 34, 41179, 0, 2698510336,
3707764736, 160, 2329944324, 3369245, 325517312, 94737, 10637312,
1914699776, 18464769, 570556416, 1, 0, 0, 0, 0, 2046496, 266010624, 0, 0,
388235264, 3825299968, 28348921, 292630785, 556858898, 765526542,
3221916176, 39, 0, 1093732096, 4277928609, 2046915344, 319832071, 11682,
0, 765788160, 2701131776, 31834504, 2317364640, 1099474200, 2292652170,
3456225169, 411729922, 2302742979, 836210200, 202, 690624, 32841728, 0,
2448868352, 139985329, 2056129, 41234432, 120849, 0, 0, 2332033024, 392,
2294384781, 3761454104, 2291210376, 2466409873, 411640200, 0, 0,
134938624, 2516582400, 411652488, 2305820055, 2432959768, 2291931273,
2651004993, 411685256, 3467718922, 2435909632, 4880, 1006705664, 278, 0,
1630605568, 83493558, 4278396193, 319873275, 291582228, 3507894803, 633,
303242368, 18333951, 4082184477, 2971021334, 823722540, 387125665,
319914289, 120898, 2150213888, 4155510726, 956301313, 285102578,
1300317399, 1165844, 1154678784, 3574877505, 340615492, 2351955968,
536870942, 4213641636, 385875969, 507, 43179, 0, 46989312, 3758268448,
340660548, 1303463130, 3510950932, 835327053, 1, 340627456, 2536574192,
555522818, 389160704, 2132777249, 499, 0, 3281920, 0, 3607213584, 273,
2424307712, 3768636688, 285, 1375731712, 2355701, 2617323806, 1344369418,
6279, 486539264, 256, 3349157680, 1630610689, 614929170, 553653057,
319955249, 313607375, 558158099, 5197, 0, 0, 1918972212, 554342913,
825103123, 739447537, 320000305, 42513, 33030656, 763559936, 922956368,
305, 100471, 2173204736, 2289768583, 2098336769, 294891912, 2256636009,
2427107096, 818, 3810035392, 51, 2299527168, 3490553886, 657523058, 0,
268574720, 9437184, 3, 0, 706699344, 166, 129293, 25715456, 2288320512,
1729660481, 411459976, 121221, 1610612736, 477, 2067088, 176574464, 7637,
3492531456, 1167792262, 1914210033, 411505032, 0, 1954816, 0, 1342177280,
4026724855, 291, 2952790016, 826081406, 940774369, 320049457, 570508825,
16566529, 3597468287, 436386545, 493281606, 0, 3221225472, 1175920394, 1,
341966848, 0, 0, 216334336, 92449, 0, 411041792, 30497283, 111804416,
1488657, 0, 3523215360, 4026531842, 7990, 1121456, 41664512, 1702952877,
2701254173, 7525, 604054032, 265498669, 1711354301, 3508180253,
2717583903, 1595762112, 19030486, 907138665, 556909312, 834736924,
3204522577, 320594225, 138412032, 1878768, 216530944, 352321537, 49, 0,
1928990976, 4195556662, 1630511394, 53739531, 2707552188, 2197428527,
4094898081, 637534209, 279, 2404392684, 49945090, 4196139008, 3121586,
277319680, 2689725791, 1123682351, 4195164070, 3121297, 0, 2135949312,
2687090434, 4098949171, 221225121, 799064826, 2699229711, 47, 514326641,
0, 0, 0, 268435456, 243736440, 2013952993, 264, 0, 3221225472, 2683,
146304, 0, 1728146240, 2, 0, 0, 0, 1630610128, 536870932, 89653933,
2468070241, 3840, 848297984, 49938450, 4194435184, 3123683346, 799027505,
0, 3088896, 25231360, 66432, 0, 1951399936, 16, 0, 4194304000, 168,
911212544, 3, 233963520, 0, 0, 67252, 1897280000, 516366058, 1125165424,
502, 591396864, 17, 554631168, 1711400992, 32112129, 831456051,
3187762207, 605, 2069168, 493096960, 356515840, 536871136, 629, 15741680,
0, 4110417920, 1, 4248825858, 2533359616, 492, 1713492355, 17437440,
724571903, 0, 0, 3288375501, 3187202, 2697854976, 2818572288, 48, 171,
2150671360, 816504834, 200496, 3759525888, 455081984, 18, 653328384,
2785017856, 303759408, 170960020, 288628251, 211688202, 1179376, 0,
317727460, 1612100097, 551489473, 2751463424, 453661104, 74159, 0,
564920380, 3590435921, 52994408, 9201, 2399300096, 4681, 1846659616, 360,
0, 2986016768, 543752557, 93185, 23937024, 269594880, 4054908443,
305601295, 0, 0, 0, 18965760, 0, 0, 0, 92339, 1610612736, 361, 0,
179388416, 129639, 1928989440, 4093910674, 1426063361, 171, 0, 23801856,
0, 855638016, 18, 0, 2684354560, 8086, 3187849104, 1347592, 2721054720,
31082518, 0, 922746880, 277266705, 42167, 0, 0, 0, 0, 0, 0, 267517952,
698737, 265015296, 0, 4026531840, 76814007, 2183039504, 178589722,
417333248, 18, 0, 0, 0, 0, 30413824, 78970880, 85553, 4029005824, 0,
2710528, 0, 0, 21884928, 0, 3489660928, 333, 2751463424, 21917988, 0,
234978304, 1779695616, 1006632961, 528040409, 0, 17096960, 435035859, 0,
1110016, 419430400, 224, 829227008, 1081408, 0, 0, 2180466176,
4113367784, 15738337, 48332800, 0, 2842368, 481034240, 1728053248, 432,
0, 1879048192, 151, 0, 524845056, 42705, 0, 776863744, 0, 0, 859832320,
3221225473, 718143511, 772816944, 320651763, 67587, 3307008, 25755648,
2315255822, 3759693313, 10684, 2716370688, 5806, 4127195136, 31,
2577399808, 31, 0, 1486464, 27156480, 100405, 31536896, 0, 1409286144,
22671617, 129892, 268435456, 5788, 1307579120, 179384345, 2721146937,
18473759, 2873622528, 0, 304152576, 3263171177, 11200258, 325713920,
1189648, 36593664, 4072669184, 3222375446, 4260566702, 0, 380555264,
3311404196, 281601, 0, 1610612736, 48123915, 92643, 268435456, 4066,
197488, 323088384, 1107296256, 19, 0, 1125680, 0, 11803, 2684354560,
2590, 1614352, 169783296, 0, 2117888, 226164736, 3422552064, 169791491,
1103170116, 2147483667, 551097999, 4027227905, 323063816, 1101014338,
32943379, 4165402624, 1, 0, 2964324352, 2, 3648323584, 788529153,
292311325, 1920035372, 1, 0, 3825205248, 501, 6073, 0, 398131200,
437711536, 518184961, 367001600, 1373270802, 4116, 3875536896, 260, 3474,
0, 398524416, 1660944384, 303415795, 0, 3221225472, 8056, 0, 51703808,
973198801, 2446709506, 827588899, 3472958432, 492634581, 0, 3789195264,
59, 0, 19111936, 858783744, 3489660929, 291, 0, 19103744, 1851785216, 29,
0, 1191182336, 367, 495845747, 2985986, 4180606976, 179585, 0,
1537213479, 3252009757, 475464290, 142176, 524009472, 1545721281,
1104528157, 2795838812, 3205589776, 487936469, 1554109897, 299223837,
1761020526, 3340590177, 273564117, 1017, 2415919104, 94830623, 0,
288112640, 3853583593, 2963744015, 8027, 4060086272, 482, 119195,
268435456, 518980318, 1761607680, 6, 811597824, 2, 572981248, 1149920,
277762048, 0, 1610612736, 7700, 4177526784, 41652725, 71324, 2577408,
3599302656, 2266851457, 493380054, 2317353217, 3367178, 0, 0, 0,
2516582400, 2689453313, 4116840818, 176529, 0, 1732253174, 2686524701,
3597730321, 1926913, 0, 498073600, 1114122, 159580160, 4110417920, 21,
270536809, 2685430530, 275579142, 2130773696, 493347286, 1317131901,
2694963216, 555294055, 352423504, 493314081, 490733568, 32052737, 0,
3053453312, 301748256, 0, 17099776, 0, 0, 0, 69297, 806746624, 771426975,
0, 0, 42614, 1440000, 0, 4143972352, 21, 1743781888, 1627067658, 4371,
2952790016, 471, 1607472825, 4026531841, 676659671, 704733184, 272,
2166358016, 3253275166, 351, 90096, 0, 1605372256, 1, 3489792000,
1196673, 0, 212860928, 3522706432, 4647, 0, 0, 1575044534, 20, 36306944,
0, 0, 12182, 2164013312, 547560207, 1, 0, 174071305, 3492047633,
674038401, 2936177872, 0, 0, 0, 81461248, 674464, 378417152, 0, 11174656,
3898408960, 1929379841, 527458339, 3499098112, 32913935, 0, 0, 267284480,
2472542208, 1149469, 435748864, 2501736352, 47, 3306172105, 2141697,
508297216, 197472, 208896, 4085293612, 16, 378929750, 7297, 42749952,
1110443152, 2324994, 0, 436892112, 15, 41512, 2415919104, 2719355041,
872415232, 18, 10405, 0, 0, 3187671040, 489992480, 518107230, 3226890,
4002611200, 3960086257, 4028849665, 23068672, 3489660930, 6275, 663312,
0, 833619889, 536870943, 485822715, 838860800, 42357007, 267430744,
1498643, 0, 2483027968, 298267130, 0, 0, 0, 134864, 296255488,
2446327808, 1, 0, 1610612736, 341676464, 377487360, 4057460192,
108926045, 2073408, 0, 382599535, 224, 4325376, 1140851728, 274432,
72351814, 1879066624, 4849668, 1275069584, 307200, 80740430, 4026552320,
5373956, 1409287440, 339968, 89129046, 1879070720, 5898245, 1424, 0,
918559961, 268871697, 812, 0, 0, 0, 0, 744030208, 1155312, 0, 0,
30420736, 0, 0, 0, 1514143744, 20, 84475904, 0, 489811968, 4264558592,
15, 0, 2048672, 304779264, 0, 0, 4246274048, 0, 413052928, 477107755, 29,
0, 0, 0, 0, 0, 456916992, 1131760, 496058368, 126217, 0, 0, 805306368,
277246384, 0, 30626304, 2882076672, 1360734528, 504, 3387956468,
1073741839, 301072472, 22256, 33042432, 49295550, 3509724955, 673782530,
1770160, 0, 2423267096, 1610612746, 282460942, 3992977409, 13, 243269632,
17, 162856960, 1, 0, 8223, 1074832640, 221650343, 1, 496820224, 113712,
2985569792, 472648345, 1308622849, 41, 67691, 2415919104, 4611,
487801264, 502, 127366, 0, 0, 1493279344, 1327358, 1464860672, 10492191,
0, 0, 0, 2636192371, 1610612746, 7574, 1543503872, 13, 0, 0, 0, 0, 0,
1449242903, 1641507842, 6929, 369182016, 292, 11835, 268435456, 61449, 0,
0, 0, 539878912, 4028371154, 1, 0, 4229955584, 1, 0, 1940288, 530198528,
3060793344, 4037504784, 4614, 0, 0, 0, 1073741824, 2971336742, 656085441,
43163930, 1755316224, 0, 0, 196480, 2211840, 74550, 17004032, 527,
177168, 263438336, 129894, 1891328, 0, 0, 516534272, 3522166784, 0,
114556928, 1, 268214272, 129589, 2164057600, 8081, 553648128, 290, 19941,
0, 0, 318918800, 256, 2254505028, 537176863, 4056, 0, 8232960, 0, 0, 0,
134217728, 520228881, 9739, 18658560, 0, 956301312, 295731693, 0,
1879048192, 4512, 3321888768, 256, 2845835264, 3347231, 1869545472,
201326593, 44388522, 826280380, 788538130, 7555, 620756992, 39522350,
873463808, 269748253, 461, 1049664, 0, 1728060019, 2001664, 0, 134217728,
524825065, 3030397349, 1, 0, 0, 51531776, 1131413504, 3758096385, 4612,
2054720, 0, 77950, 4026531840, 37, 1308622848, 489902583, 2675965952,
16762143, 3643408384, 1224736769, 32, 0, 1612107776, 2677, 234881024,
267, 119255, 0, 4088987648, 4127195137, 495661065, 447748731, 17, 0, 0,
0, 299898355, 16, 0, 4028602112, 47046677, 0, 0, 367984640, 3875536896,
173588953, 127958, 1896059648, 4650, 181552, 4202496, 5620, 1610612736,
368116421, 0, 264761344, 0, 2684354560, 83, 0, 18853888, 1135607808,
23675921, 589955072, 2248146944, 320360463, 0, 0, 0, 503316480,
270500133, 70455, 0, 487981056, 1, 0, 0, 0, 0, 1905680, 0, 0, 805306368,
8055, 1070352, 0, 1713373184, 10, 0, 973078528, 41299994, 2343567360,
2147483677, 4373, 1895825408, 35, 64302, 3522502144, 607, 3355443200,
302158297, 121306, 2449920, 753664000, 2046863376, 3584, 1263469298, 16,
0, 3873441648, 22528051, 1715512934, 128778, 0, 14681888, 0, 0,
1308651264, 50593895, 1979818496, 32, 2613051392, 536870929, 2853569149,
2113929216, 488, 2699041092, 1610612752, 771219462, 0, 23904256, 12358,
2147483648, 798232581, 4194304000, 499, 43699, 536870912, 2864320923,
1241513984, 50933808, 12360, 2309120, 809762816, 137856, 175816704, 2227,
805306368, 809632201, 2585020816, 340373828, 1228933430, 1631884564,
5193, 2432696320, 340336964, 3740270592, 18361090, 478281728, 3474213457,
161, 1241597087, 3510935828, 2956790351, 1141982161, 340386074,
2432696320, 1610612752, 2957057889, 2854196385, 504, 64395, 287125504,
608181636, 1, 0, 83088, 0, 1149966071, 2383694033, 340324676, 1216431239,
2684877076, 573, 1037920, 340279296, 74924, 0, 0, 2466250752, 307, 0, 0,
0, 59616, 0, 0, 2147483648, 4189134245, 1, 0, 0, 19174656, 0, 0, 0,
3344033808, 536870939, 174916047, 14448, 0, 268435456, 19098399,
4110942208, 2600468481, 501, 3711959040, 3489660930, 2716340677,
101326672, 488, 917558, 2257664, 0, 1193696, 497303552, 74835,
2686701568, 4111, 1179056, 277155840, 3739222016, 17516802, 0, 738197504,
500, 1862290900, 805306384, 4230422383, 1140850688, 33, 3633315840,
788769793, 4626, 0, 0, 1211188354, 268435476, 1148584638, 3407103905,
340254734, 522273903, 1900311306, 4280027679, 3943309104, 3174433,
50331648, 17900304, 2966290432, 3424324849, 177930672, 0, 2147483648,
228, 0, 277274624, 1277167167, 558154516, 557908500, 3205776832,
340525380, 212971722, 3242507035, 5195, 0, 47857664, 1829775662,
21286402, 622657536, 3256110225, 340570368, 246415360, 3779380738, 3452,
3909091328, 44, 0, 30520832, 36569088, 2097152015, 41, 2431647744,
2446411551, 7546, 0, 47710208, 1265714358, 2426701332, 1152521291,
3020947073, 340480324, 0, 268435456, 589435979, 2055297, 0, 197132288,
16, 0, 1051632, 0, 107019715, 16906770, 0, 126000, 0, 0, 0, 35127296, 0,
0, 3914334208, 33055247, 314245120, 1, 0, 2561671168, 31, 0, 26992, 0, 0,
0, 689831936, 2197815296, 32, 3710993765, 2, 4289986560, 195872, 0,
3525323355, 2, 541720576, 218103808, 473, 0, 805306368, 4229, 1906480, 0,
2433864532, 16, 0, 16965296, 259, 2857369600, 2171542274, 7105,
3019931520, 361, 0, 2952790016, 1152319564, 1329921, 0, 1254180011,
539725076, 1151795511, 906001409, 340434990, 859961254, 3489660946, 585,
0, 0, 0, 0, 605356032, 150240, 0, 0, 1610612736, 114, 0, 0, 1678770176,
1862470687, 4255, 0, 4026609664, 109051904, 240, 0, 4212236368, 47853783,
0, 2952790016, 715, 2467414176, 9662478, 2420113408, 4026531856,
35921321, 3441273312, 497278720, 983248, 16965632, 4238737408,
1258291200, 37, 1692401664, 0, 50528256, 1310672321, 495087621, 428,
375296, 719716352, 0, 0, 407, 0, 0, 0, 23773184, 73464, 0, 303497216,
3456251409, 165, 125097, 2684354560, 717750787, 128768, 529018880,
179306496, 29, 4000972800, 2550207345, 291, 0, 2954952704, 5780,
2197815296, 51851313, 0, 3741380608, 3622375582, 3959595232, 9773102,
1025507328, 805306370, 4106355258, 1, 0, 3110076416, 31, 0, 0, 0, 8709,
251796736, 0, 0, 0, 0, 32855552, 37814272, 2057760, 0, 2675042375,
2703513616, 4030471904, 1, 0, 2184185222, 3760575262, 1749486237,
3892314113, 9, 66330, 0, 0, 0, 0, 66317, 3238202112, 4144, 0, 0, 0, 0,
51576832, 1061185, 0, 399510562, 16, 0, 14256, 0, 42624, 2147483648,
4265673255, 3087007744, 42, 0, 0, 5793, 0, 0, 12745, 1342177280,
232458772, 0, 531976192, 0, 1558784, 193593344, 1243443233, 4214800,
127761, 1610612736, 2648, 2013277824, 3584, 0, 23819776, 232718336, 0,
18935808, 0, 3159040, 4268752896, 0, 0, 0, 0, 442695680, 1, 494706688,
3963617280, 1342177282, 4922, 2971533408, 503373824, 0, 0, 3620405248, 0,
0, 1536234012, 2983571997, 3585285953, 1, 0, 1532089773, 24084253, 0,
2952936192, 494035413, 41280, 0, 0, 1192368720, 501, 865075200,
540096784, 4217901472, 1042608, 0, 0, 0, 354156544, 1393202240, 32505870,
12925, 0, 0, 2046820352, 268308522, 0, 0, 4153933824, 15738593, 0, 0, 0,
0, 1962934272, 260, 0, 1091684352, 4634, 2751463424, 492462364,
465687968, 18, 1871708160, 2650800129, 494125557, 569376768, 234907935,
57351, 2058432, 0, 11441, 899072, 0, 697552, 0, 2744196126, 10640144, 0,
1210029184, 162, 0, 2415919104, 8073, 0, 487047168, 297795584,
3238478867, 4240904708, 0, 3758530560, 0, 1342177280, 4078961362,
788529153, 47, 0, 3489660928, 8053, 0, 0, 167772160, 4028606448,
4105048486, 1779864673, 432, 64587, 268435456, 7810, 0, 518066176, 0, 0,
0, 2853252288, 5, 1340, 2684354560, 8060, 3170893824, 488, 0, 2952790016,
1796473240, 3573547009, 512246260, 0, 1342177280, 248, 1762735744,
32694745, 0, 32561664, 0, 2550136832, 487293429, 1924143377, 33215517, 0,
2936012800, 20148729, 293666401, 1985307, 0, 1032768, 6639616, 0, 0, 0,
195008, 0, 0, 1283840, 0, 3523896800, 7192850, 0, 1610612736, 7543,
2197815296, 302587933, 2953844000, 4026842624, 4369, 15730000, 0,
229763199, 2037023, 0, 3221242368, 292, 0, 268435456, 618856890,
3305111553, 276, 110874, 1342177280, 4004774034, 135745, 0, 68322,
2418085120, 2770145416, 0, 179032064, 1320200892, 270373634, 2873557809,
2026352, 4027424768, 0, 3489660928, 845021732, 1250144, 378011648, 0,
20015104, 743047168, 1932288, 0, 0, 1879048192, 4261223841, 1309659568,
291, 10047, 0, 0, 0, 488165376, 603979939, 2533120, 0, 1193456, 0, 66888,
0, 0, 0, 28741632, 128111, 536870912, 8120, 470427504, 267272235,
2634143707, 31, 0, 0, 0, 8887, 807173888, 4450, 2035536, 0, 0, 2241280,
0, 2801925424, 285, 2688548864, 268435485, 8086, 1191984, 0, 548405248,
3758096385, 3778544031, 1, 0, 2030108825, 3221225474, 8100, 3942645760,
361, 2401, 2250752, 0, 1199680, 377839616, 0, 1610612736, 805, 1065984,
0, 3911262613, 1879048207, 4633, 0, 302559271, 3010, 2702363904,
2718106268, 1862270976, 465, 119152, 3221225472, 568, 0, 319963136,
2098265356, 3758096384, 3451, 64832, 31236096, 78080, 0, 2718236672, 0,
0, 418425531, 18, 0, 504565856, 9564448, 10663, 0, 3543277493, 1,
288051200, 506462208, 10, 0, 4077018864, 5, 508559360, 10, 561446912,
352984608, 50, 203423744, 2684354589, 4079, 1505312, 522301440, 0,
11122176, 0, 0, 524226560, 2111832064, 1911602946, 175178126, 0, 0,
2494605523, 31, 0, 2013265920, 48329209, 3072428905, 16, 0, 0, 494534656,
3257925632, 1, 316211200, 656346833, 521077207, 0, 0, 2825977856,
1845493760, 295571957, 3032481792, 3221225503, 540351898, 1125841,
278687744, 1955664686, 2, 0, 2199434800, 414597592, 2307, 0, 0, 1181968,
385167360, 0, 0, 4223598592, 117233, 0, 440, 1342177280, 624103616, 1,
40783872, 0, 2059776, 3514171392, 1, 281022464, 2546991104, 1074131231,
1751130011, 1045505, 48537600, 68737, 536870912, 478613715, 2064649888,
20, 246420599, 31085840, 343212032, 2483027968, 268, 5247, 0, 843644928,
92224, 0, 206572480, 32794141, 0, 2400025584, 160, 92756, 3489660928,
297408162, 2248272897, 3758354724, 4129301019, 15, 741605376, 2283751984,
288195054, 1892682699, 2, 619708416, 2072720, 0, 101192, 2684354560,
280565408, 0, 0, 118982, 17918208, 4881, 1249520, 319889408, 0, 0, 0, 0,
0, 2237661184, 1073741824, 647299704, 1130864, 0, 196176435, 2684354562,
423, 855638016, 32, 0, 2147483648, 8000, 0, 4028948480, 3131167604,
2708091423, 369487875, 2001840, 0, 120479, 29114880, 0, 2955909856, 251,
2709590747, 1074037789, 4253, 2717908992, 470, 68030, 0, 500301824, 0,
268435456, 0, 1610612736, 481, 1262240, 269430784, 2678128887,
1104707887, 356, 16777216, 9580904, 1678862652, 1, 0, 1198768, 23330816,
92677, 988672, 0, 251658240, 3840, 0, 1342177280, 637141348, 2584355104,
23339169, 0, 3221225472, 3622177357, 137136, 0, 43859, 20155136,
798490624, 0, 0, 0, 1446400, 4240965632, 1927584, 493395968, 1771050511,
1891101, 1778581504, 235064657, 22, 11018, 0, 0, 0, 283770880,
3405903307, 1446686, 0, 268435456, 22, 120920, 2448563456, 221, 111744,
0, 4066377728, 32412944, 663420928, 2583691264, 270, 3753902080,
3777266959, 7447, 0, 0, 1195376640, 20077056, 0, 0, 33292288, 9889,
1879048192, 113, 14240, 13381632, 0, 805306368, 289075239, 1344178576,
33185833, 608174080, 19003392, 0, 0, 0, 19938, 0, 0, 2449526304, 25, 0,
1610612736, 2703098239, 0, 0, 917770, 1603584, 0, 0, 0, 4098883584, 16,
0, 2333516176, 42504238, 1971322880, 2, 152633344, 0, 0, 0, 0, 0,
738197504, 395, 2722114497, 19140886, 869203968, 0, 378486784, 98692210,
18, 4254400512, 0, 2023424, 128026, 16665088, 62652416, 337548560, 506,
73740, 0, 573112320, 2058209, 0, 2250313313, 29, 0, 0, 40640512,
3553624064, 25842718, 4274847744, 0, 0, 0, 805306368, 3492872436,
890224865, 279334958, 0, 2418856704, 197923115, 676224, 0, 3147825152, 1,
4091478016, 3355458513, 166, 3016, 0, 0, 2684354560, 378921433,
549456830, 1, 0, 1493172224, 530125305, 0, 1610612736, 565321426,
939524096, 503, 65377, 2399157760, 111282810, 3707764736, 251,
2991587328, 4052242442, 2287081604, 1410893073, 288035208, 2236713046,
1904760856, 6277, 1936384, 288059392, 2101446745, 2710067981, 2287802501,
1360561601, 411427076, 2248247393, 536870936, 3164346502, 1997686561,
251, 2622616426, 31, 0, 3825205248, 3842, 2142240768, 29, 3807707136, 1,
0, 4209085247, 25707777, 2286354432, 1224830049, 411337096, 2225178699,
3246935320, 2778011780, 907227440, 474, 0, 0, 0, 2382364672, 4030198085,
179306496, 1909560095, 775684229, 0, 323047424, 1555080521, 1, 2756911,
1504047, 22847488, 3537907264, 2426677009, 371527949, 1480944, 0,
357633249, 4059370464, 348, 3120562176, 22855845, 42276, 3221453824,
2782986378, 3759285392, 23736606, 3395484079, 553690640, 4298, 1051120,
269148160, 128399, 4026531840, 4298, 0, 6709248, 10966, 234892032,
3498639360, 1, 0, 8172, 0, 0, 0, 26107904, 0, 30968832, 0, 0, 0, 0,
1092226048, 468783064, 3658485648, 268, 3362786247, 554468368, 214241480,
2365689857, 281592076, 3378580632, 539757584, 2286162121, 301995841,
281645451, 118874, 2695000320, 8012, 336731968, 532049921, 74234,
19001856, 590282752, 1946157056, 512004258, 2696008085, 2, 34078720,
2904475935, 25628939, 2190548376, 2978491416, 2284722306, 806784913,
411234696, 1174506268, 2178205202, 2284974114, 856701985, 411246984,
4007722262, 1636316945, 315889795, 1606529, 411279360, 1242629389,
269897489, 792857130, 3457155632, 35, 5710, 3491399168, 4075, 0,
285597696, 93323264, 18, 374538240, 134217728, 275, 2178946640, 10654744,
201463938, 620848544, 411189640, 73768, 30439936, 0, 1929379840,
294797571, 0, 0, 4152819712, 1257713, 528687104, 0, 0, 0, 301989888, 444,
11261, 0, 570228736, 3825205248, 43, 2187459026, 24, 0, 1252688, 0,
3676307456, 15, 0, 1125376, 0, 3437326114, 10982928, 0, 0, 378241024,
2421161984, 1084657936, 4465, 3724541952, 414318866, 2164361233,
538172440, 2334529665, 1901777, 3002368, 74646, 0, 3902603264, 33554433,
36, 2175895580, 18193944, 0, 0, 288043008, 0, 1319680, 0, 15740096, 0,
72351, 0, 3758817280, 1, 0, 2167506964, 1367873048, 2283280513,
437813617, 411144584, 2152731502, 1904740376, 6272, 0, 49991680, 0,
16513792, 0, 0, 0, 4149215232, 540221442, 4893, 195856, 0, 2973761536,
3246915585, 2281837052, 68714513, 1438088, 68764, 0, 0, 1175088, 0,
1485932553, 2710047498, 2282559616, 253264065, 36917640, 4054, 805306368,
4496, 3508370656, 269848597, 0, 0, 365953024, 3473017440, 496341495, 0,
0, 2601, 2867867456, 8, 5589, 3490342912, 366086696, 1902240, 46514176,
0, 268435456, 4913, 0, 0, 3034578944, 31, 533135360, 2074960, 4029607936,
0, 2415919104, 353, 1828923184, 474, 1633691587, 3312385, 3621715968, 1,
23150592, 10945, 0, 3157131264, 3909091329, 278810910, 734003200,
2952790033, 353, 2835349504, 23163140, 0, 1610612736, 4300, 102714896,
300826883, 0, 18012672, 760807424, 234881024, 380719600, 2214602784,
4029186050, 38933040, 134381632, 42008616, 983899, 2952790016,
2687631576, 50331648, 3874829, 1567621120, 2687729664, 4109505061,
152993, 504524800, 423624704, 17, 0, 1970816, 0, 1646264320, 1627310849,
188947986, 335544321, 504537134, 0, 1076349440, 506732050, 15739776, 0,
1648361472, 21333505, 596967424, 90721, 0, 3920638405, 836957726,
1307574626, 1713208944, 52220348, 2328887296, 579344, 0, 1797070272,
38035960, 1553024391, 1900382239, 4397, 3204505392, 24059955, 4000395719,
1628132113, 834343708, 1252289, 320573440, 3330277929, 3489660955,
382015159, 3942645760, 320655377, 2855350747, 3263007, 314703872,
16777217, 22, 4183912341, 1097831190, 1872303865, 2534557313, 52191599,
815792128, 240, 0, 1125280, 4029689856, 0, 1073741824, 759, 0, 0,
3667918848, 554082831, 352, 1644167168, 8, 2542915680, 1358863872,
2859790384, 0, 1343488, 3355443200, 1073741840, 3776643424, 85265,
23093248, 4030726144, 1879048193, 2867858061, 755064880, 296648717,
519123412, 2971590930, 835653833, 157329, 303955968, 41635, 0, 836307586,
3608201889, 23097649, 1640038467, 4027975681, 4893, 1252800, 279760896,
0, 20047872, 837156864, 3825871249, 320753969, 859933051, 3222669834,
2306807959, 68720609, 412614673, 4046555523, 1091704322, 369694872,
132144, 0, 824180736, 29, 3652190208, 15736929, 0, 169869312, 18,
183500800, 218283328, 266092566, 1471160780, 20, 3658219520, 419520129,
491241973, 0, 2147483648, 562, 18110400, 529105258, 1590689792,
287447809, 2306087063, 1979801249, 380785033, 1589741944, 831093249, 674,
4278247920, 22974946, 517026284, 2972838163, 385028894, 92928, 33529856,
567279616, 1073741842, 22155543, 2937171553, 22, 1268843280, 3311617,
1797914624, 1, 379219968, 10211, 1879048192, 3639022401, 3892314113, 505,
0, 0, 570228736, 2902458369, 304177187, 0, 2952790016, 4048, 687865856,
265322520, 2602565632, 1663773, 0, 805306368, 362, 3857804888, 648726,
1850212352, 1108796705, 294293870, 3847297213, 284968726, 1851004644,
1528226817, 378646894, 2323773130, 2976796177, 1851330614, 1242663441,
384078190, 0, 0, 190520725, 2735802593, 3, 2377246844, 703489, 0,
855638016, 180272898, 0, 294217472, 2305367310, 1796773505, 269910409,
497125741, 3783880467, 4148435094, 2165872385, 45, 0, 0, 2774859776,
1044544, 0, 12884, 1881072384, 7953, 0, 0, 68779, 17609216, 2303918080,
1426063361, 412434825, 2506139491, 2173262104, 1752438933, 1494423841,
412467459, 3838836736, 292442134, 2304644837, 1611865553, 412479881,
506504623, 1343340051, 1866862865, 1611345, 0, 0, 3500529152, 520946386,
1999024, 0, 3222316542, 0, 2772303872, 1493172224, 290038254, 2903506944,
17, 0, 220172912, 412389395, 2494662988, 3492361240, 2303727764,
1377342705, 265413001, 1310790805, 2684354561, 7910, 77984, 0, 0,
3221225472, 4117, 0, 46604288, 1913651200, 805306378, 734200011, 0, 0,
2998996928, 3758096386, 545063245, 0, 21872640, 0, 32921344, 4194435072,
2332033025, 501, 128510, 1610612736, 571, 0, 44802048, 0, 1342479872,
316481305, 0, 296706048, 529, 0, 693764096, 1459790432, 497365034,
2479923833, 24, 2725904384, 1912606224, 259, 954204160, 2912496,
2726035456, 0, 0, 3032481792, 817666, 836894720, 1252881, 0, 3284140032,
2, 551813120, 1277112512, 503, 2838536570, 2940191, 2708078592,
1058030288, 393, 2483128641, 2441691928, 2708603202, 1192793152,
412377481, 2468448563, 1073741848, 6291, 1226344528, 48, 544223303,
3231816176, 798953526, 0, 0, 416284672, 10592275, 646840320, 2835349504,
269615265, 3928066347, 3246992642, 2301565074, 3055063777, 412287142,
3364880384, 15, 0, 0, 4030251008, 2471594294, 3783866392, 2302283825,
1074866305, 412332035, 680528064, 1895946003, 10949416, 1, 0, 12357,
10597120, 0, 0, 0, 441450496, 2684354800, 4290382345, 285212672,
24678147, 1873805312, 2, 0, 0, 0, 198180864, 1, 277217280, 3338665984,
28, 3635505345, 10848257, 4128505856, 1, 0, 0, 536870912, 4904,
2315451136, 500, 1758528263, 2684354577, 835586570, 1, 286912512,
2019557376, 1, 0, 0, 168448000, 961544192, 805306384, 2569, 3020556816,
20, 0, 268435456, 348590659, 4026565025, 286, 173015040, 3, 0,
1056964608, 51024138, 0, 16967168, 0, 0, 0, 175178829, 2415919107, 8029,
199184, 291733504, 0, 17128448, 666173440, 0, 465776640, 1307574272, 31,
0, 2164260864, 19, 319821848, 1278738, 257097728, 522022049, 18, 72223,
0, 0, 0, 285630464, 0, 0, 0, 1845493760, 325, 0, 0, 0, 0, 530817024,
4953, 0, 0, 1332976, 300863488, 65688, 3492252928, 219, 0, 266625024,
459351079, 3492381459, 833622065, 1746082577, 320524613, 1766850560,
16620305, 4273471488, 3070400256, 320569649, 0, 2952790016, 4117,
2717908992, 292, 0, 0, 846200832, 1904192, 525070336, 0, 33174016,
84541440, 0, 0, 3278897152, 18289179, 0, 143648, 487976960, 2448545939,
18196226, 0, 0, 0, 1300234240, 1, 454426624, 469762048, 42, 988807168,
19, 0, 5552, 0, 3392222135, 1621257743, 867373883, 2534449121, 322638116,
26283621, 17, 730923008, 3189606736, 306, 0, 0, 2599, 1111424, 0, 0,
1353315840, 4166, 3339726880, 271909171, 2635071488, 1, 741801984,
3288334336, 503, 41730, 0, 7995, 1042752, 170889379, 0, 805306368, 2575,
4261412864, 162, 1742733312, 1, 2696151040, 201359040, 305, 0,
2976531200, 2696081417, 0, 0, 1169287322, 569398272, 4032168548,
1309705585, 50123112, 815870915, 2704523536, 532939332, 3155377137,
322687283, 4016173224, 1, 0, 1007663328, 291938698, 3107991575,
3778268184, 868881212, 3356703921, 322736435, 3110076416, 4026531864,
4590, 0, 172613632, 3555731184, 1073741826, 4213899707, 3355597233,
301781298, 78535, 0, 665059406, 2044080, 0, 101273, 17010432, 0, 0,
267489280, 4226809856, 547826176, 7499, 130464, 0, 3543266332,
1107002910, 518790802, 1, 0, 6696, 30617344, 0, 201326592, 17, 0,
30969856, 3629776896, 2348810241, 30826535, 8601, 17470976, 4180017152,
2231392417, 42, 0, 0, 0, 73136, 0, 4074766336, 10648834, 716505088,
3238002688, 281, 0, 10649344, 0, 2516582400, 488202290, 10498,
4043628032, 264, 3472883712, 278798595, 97520205, 2954955803, 555490053,
1770896, 453341184, 988807168, 31, 0, 0, 0, 0, 0, 354680832, 3473943600,
503365670, 142606336, 3768780306, 560005632, 3590324225, 494510092, 0,
10683392, 2735210496, 66062864, 163, 1268776960, 17, 0, 822083584, 505,
66853, 1610612736, 473109305, 1677902033, 257, 2264934780, 22, 0,
3590324224, 288, 100479, 835794176, 216, 2070368, 0, 2516654530,
2415919126, 278204468, 2059489, 455901184, 365956185, 17, 0, 0, 36929536,
78153, 2415919104, 2727, 1936288, 414838784, 0, 0, 0, 1980804960,
385200600, 46137344, 1641668099, 2734293372, 2231369728, 471, 747634688,
27, 4113760256, 1188609, 305340416, 2308964352, 33126175, 2782658560, 0,
0, 2261778432, 10859805, 2734358528, 1713045728, 46940411, 983506,
1627180544, 87367040, 1811939329, 165, 473963104, 10880000, 4110548992,
1140850689, 165, 0, 3310592, 290455552, 185236577, 3758416133, 0,
2125312, 0, 0, 29696000, 1938830238, 2074882, 4079226882, 252777745, 499,
2813329408, 2684354589, 532815271, 4127195137, 272, 1882199458,
1073741826, 4179303689, 671088641, 2, 2718964925, 2, 298647552, 0,
41660416, 68320, 1418240, 0, 4496, 0, 42622, 1417216, 0, 22208, 0, 10504,
2952790016, 575931088, 1, 0, 0, 0, 0, 0, 15003648, 2408579072,
2970795805, 4678, 85344, 453582848, 72319, 2894080, 191365120, 855638017,
260, 3065007555, 4027422223, 503251417, 1186464, 0, 1158, 1325612800,
4609, 2063597568, 19849223, 1413480448, 1641072669, 3577814356,
622679041, 492052483, 1405156278, 3760338973, 432610643, 991777665,
385036757, 0, 0, 0, 195600, 0, 567279616, 19211537, 4192927744, 129329,
0, 526385152, 23712283, 0, 0, 0, 256901120, 805306395, 36704391, 90288,
0, 0, 0, 0, 1922304, 494227456, 1674654176, 3788852992, 13507924,
1259413216, 492085717, 8168, 18710016, 0, 318767104, 512151299, 0,
3490568704, 83561060, 1, 525914112, 8400, 0, 0, 3741319168, 38039582,
72791, 0, 0, 722574432, 6942980, 917861, 3489660928, 6943, 0, 0, 0,
2952790016, 6943, 2451251104, 18, 1313934950, 31, 481951744, 118528, 0,
121181, 0, 834863104, 4261412864, 17149956, 1215299584, 10782730,
3645243392, 3003121665, 48, 68902, 3190528, 0, 1901232, 39583744,
783357106, 18, 0, 0, 14995456, 0, 807616000, 7997, 823706944, 493,
232789990, 3253545472, 242, 1186416, 26632192, 3033530368, 31042818, 0,
0, 0, 0, 3489660928, 778, 0, 385265664, 2797612022, 16609282, 4239196160,
0, 385380352, 3174047328, 2, 3657105408, 554763809, 176803843, 406847488,
19, 870121472, 2533359616, 50, 1457530546, 597505, 140517226, 67196593,
495141152, 1455542616, 1073741825, 166403896, 2868903936, 22466866,
1821571577, 10, 3155755008, 3640727905, 1036553, 73672, 805306368, 575,
0, 0, 2577399808, 2848541, 0, 3372220416, 51, 0, 17829120, 0, 520093696,
275, 3177190973, 536870927, 140382275, 1795162113, 3842, 0, 0, 0,
2113929216, 367, 1124073472, 796432, 576978944, 1065712, 0, 1121976320,
16, 0, 22976, 226205696, 728760320, 2149376283, 2599, 1040187392,
319901702, 0, 1895737600, 276, 320586176, 170348585, 0, 3489660928,
93722822, 1623776, 494002176, 720371712, 1880998672, 4111990987,
487723777, 43970605, 2555472750, 1880789272, 2307528856, 2348844609,
412660105, 2563869070, 3489660952, 2355568024, 4228966321, 277364898,
765530149, 4055016714, 549253157, 370704432, 3843, 101480, 0, 0,
2684455888, 173322674, 2648702976, 28483871, 0, 1392594352, 290, 13004,
0, 0, 0, 23281664, 0, 2415919104, 355, 1879048192, 51745035, 12870,
2164170496, 355, 2785017856, 23289880, 0, 1879048192, 295574900,
2399142689, 40431983, 0, 31090176, 0, 1493172224, 261, 4448, 1641692672,
431823812, 21137, 43581440, 0, 25983232, 0, 0, 0, 0, 1342177280, 781, 0,
0, 8812, 286351872, 542, 2064384, 0, 2588936249, 18614289, 4220059648, 1,
0, 2111836700, 805306381, 156107034, 0, 29954048, 101477, 536870912,
12164, 0, 0, 0, 1342177280, 4171170429, 2, 0, 194718, 0, 4206690304,
1358954496, 7, 0, 0, 40828928, 15, 415739904, 15800922, 18204959, 0,
287282112, 37, 70843, 0, 0, 4011803104, 176910387, 0, 295424, 78970880,
0, 0, 12958, 0, 347996160, 1610612737, 41, 495, 4037210112, 498, 0,
25997312, 3730902873, 1084419585, 262, 3976200192, 302170274, 70832,
1076164864, 61485, 1811939328, 3584, 790626304, 10, 0, 101488, 0, 43996,
2059264, 0, 668624, 44273664, 71953, 0, 533856256, 176400, 493621248,
642, 0, 843776000, 0, 54185984, 868292878, 10, 0, 668656, 0, 0, 0, 0, 0,
0, 2593136876, 1, 0, 3070230528, 39, 4145089176, 1, 0, 1912602624,
19501559, 702545920, 16543489, 3646685184, 1546618321, 464, 1090525952,
1800450, 0, 664720, 294789120, 2595297760, 17, 0, 55744, 0, 326107136,
1889682178, 2595, 251658240, 3843, 0, 10633472, 2722430976, 687998368,
532336686, 128219, 1073741824, 7883, 3808428032, 272830737, 403812995,
16, 4167565312, 771751938, 319365625, 1365288198, 30874898, 25559040,
4211205121, 385253644, 3384877605, 1610612766, 4165534131, 130178, 0, 0,
2684354560, 297, 0, 19517440, 571543363, 2147483888, 297, 1996488704,
176943146, 194645, 24052480, 0, 184736, 1380352, 0, 1879048192,
509084415, 1610612736, 501, 2045841588, 1075759874, 516431270,
3557803680, 23363634, 13010, 2952790016, 7470, 0, 0, 66654, 0, 852492288,
553648128, 17, 13011, 2439616768, 852565271, 252854576, 274, 873463808,
3489660938, 3634631198, 2315924481, 385245618, 126094, 3518139392,
3614507364, 1137217, 0, 0, 3221225472, 356, 0, 23371776, 1687225146,
1344427777, 2612, 2214756304, 259, 0, 805306368, 863117125, 1660944384,
496, 437256192, 10, 659161088, 924750480, 396, 0, 0, 0, 3844056720, 466,
2850029568, 17, 140570658, 3170893824, 471, 1839202304, 3781706240,
56623931, 2382364672, 36749776, 3935305728, 1, 867696640, 1207959552, 20,
2889875456, 4026531842, 824, 2550156608, 54317107, 943731589, 24062211,
487587840, 0, 0, 2463106868, 2684354590, 823, 0, 512942080, 0,
1614007296, 3651207452, 2003633, 291106816, 0, 17541888, 0, 1996670368,
367, 2454759211, 31, 0, 2003792, 54042624, 13274, 3489660928, 3284895,
1092977, 488214528, 2253394425, 562843183, 12166, 3114544, 497344512,
2249324310, 2695034159, 2353270900, 4095578769, 521732258, 7910,
536870912, 2748842031, 4143972352, 494555167, 3288336373, 268435480,
8198340, 0, 0, 3291414612, 10680088, 523632640, 3389199824, 39059507,
71056, 1133312, 371195904, 3103784961, 47, 2452660796, 31, 0, 3607101440,
341397937, 0, 30879232, 0, 0, 178716672, 0, 2083840, 410255360, 0,
273469440, 129657, 997888, 0, 211200, 0, 66582, 0, 0, 167789248,
54309142, 12945, 10803968, 204734464, 1110576, 17965056, 3016765376,
33168129, 0, 1912560, 496893952, 4236247040, 2, 372310016, 252691488,
294977829, 13209, 0, 0, 754974720, 43, 1186014358, 1106751007, 474,
3187698128, 176963876, 65831, 0, 214106112, 1998268161, 434, 156237824,
807744272, 140, 0, 0, 0, 0, 864485376, 2885681152, 12857357, 3324086563,
1099506944, 2301040786, 3457716833, 263917618, 2459959296, 240920, 0,
2401077360, 14, 0, 0, 0, 1459617792, 529609071, 92455, 3221225472, 4027,
1392508928, 385331370, 302055285, 0, 0, 3691147920, 287, 2774532096, 16,
0, 1930858848, 255, 0, 1627353344, 3642168392, 1, 0, 0, 3237966336,
443613905, 1946157057, 255, 1015021568, 328195, 0, 3976200192, 433, 0,
833744640, 4507, 0, 0, 3464495104, 0, 0, 4112443440, 279974170, 0,
10780928, 0, 0, 0, 43094, 1342177280, 182261493, 144561, 0, 0,
1610612736, 4124250442, 3573549633, 385298698, 2440130352, 2441681432,
2300319889, 504926641, 412209545, 2448493768, 1370507544, 727388682,
1998259328, 54095923, 603979776, 805306399, 388567609, 0, 529170432,
3265265664, 805306370, 208411921, 2001632, 0, 811597824, 4026531843,
4139982752, 1, 304857088, 1073741824, 805306399, 305922751, 1023410177,
39, 13275, 2830592, 870055936, 891194576, 4026712226, 3410097167,
1610612738, 8072, 855638016, 523325602, 0, 0, 0, 0, 15802368, 827326464,
29, 0, 0, 0, 387025558, 2166660096, 2611, 1935904, 291553280, 0,
1613994496, 2611, 201326592, 171135372, 346040566, 11008530, 0, 0, 0,
3741, 0, 0, 659552, 525586432, 3982, 2417042432, 48897737, 0, 0, 13131,
0, 0, 3254779904, 36020264, 0, 0, 0, 3019898880, 17915949, 0, 0, 0,
1560281088, 3584, 69814, 2954514176, 863375887, 2836532992, 51, 69808,
3489660928, 513867923, 1143616, 495345664, 1177617358, 31, 0, 3540661136,
160, 289420149, 1, 0, 2868903936, 503, 709885952, 98307, 0, 16980176,
162, 994063290, 3, 0, 668592, 289521664, 3093299200, 3397648, 867172352,
771963664, 257, 3632267264, 3758096386, 3561823945, 205777, 54358016,
2752512000, 280598, 0, 0, 0, 0, 1331968, 1793458176, 3137339393,
54218803, 12719, 0, 4252237824, 739446192, 168, 0, 3075584, 2351366144,
1, 54046720, 3692077548, 10632975, 685441024, 352321536, 488, 0,
279067904, 4146, 1474944, 516468736, 0, 18905344, 2859859968, 369098752,
25645452, 2717908992, 1342177311, 122, 0, 54444032, 13206, 3489660928,
542179510, 319448321, 54116748, 43238, 808683008, 824, 211168, 0, 5242,
536870912, 8009, 1912602624, 177483802, 127539, 536870912, 3993112922,
3825205249, 161, 3522166784, 538213903, 864099604, 155344, 0, 92751,
1340928, 363659264, 1946157057, 167850004, 495976448, 2121234, 257949696,
3003121664, 45, 993128721, 17811971, 4045408786, 3070442449, 51,
304095009, 824463391, 7953, 1928144, 4029947904, 308282078, 1610612767,
312024849, 2568950417, 495489277, 850461767, 30845450, 8585216,
2248815279, 174325766, 2689597440, 33186333, 2697658368, 2147483648, 43,
11506, 816273664, 3969712957, 788529153, 163, 852499418, 10, 0, 0, 0,
1796210688, 16786442, 4276224000, 3489873168, 264265779, 2101413102, 1,
441712640, 3859896960, 53113096, 2689667468, 1173264, 0, 1089552, 0, 0,
30518016, 0, 3976882640, 278946116, 3898605568, 18187521, 535166976, 1,
0, 3029345820, 1, 569049088, 1, 528666624, 1654777915, 1342177281, 4151,
3556860624, 21, 0, 2415919104, 354, 90816, 385220608, 1652555776,
1657857, 0, 253433456, 7073958, 0, 0, 0, 0, 14540800, 736, 269588736,
560595311, 3221318689, 23810263, 2021654528, 3491156253, 3619815788,
553648128, 263659532, 1782585038, 2147483649, 379657522, 3925868544,
23744534, 1854971955, 1, 417005568, 1124073473, 23781654, 0, 1881361664,
354, 0, 0, 3917551202, 1867806, 0, 0, 28590080, 2596274176, 17, 0, 0,
264654848, 983891, 33272064, 834994176, 113825, 295321600, 3911231670,
32938518, 2792559002, 681008, 512327680, 2826960896, 547930369, 4506,
2059504, 295346176, 0, 1444864, 71499776, 1115633, 0, 3854565376, 15, 0,
1778384896, 385450243, 41013, 0, 188022784, 922746880, 160, 1920994017,
805306397, 4169208331, 2, 0, 695400576, 1, 2830630912, 2451552144,
177623044, 188813490, 1610612754, 56, 0, 0, 926949306, 33188368,
253034496, 335544320, 43, 1696669788, 1, 0, 419443312, 496, 1023410176,
29128192, 0, 0, 0, 17954449, 18187037, 4029218816, 1, 22863872, 0,
1484288, 0, 150994944, 502, 2644508672, 4057393424, 61448, 3036676096,
304263460, 0, 3271068160, 4127, 0, 0, 1994391552, 2, 711524352, 1107600,
0, 93, 2804224, 0, 3942645760, 31, 1128267776, 20, 0, 3659337104, 361,
1143996416, 3788998401, 4442, 0, 0, 5232, 10498304, 2687303680,
3305111552, 168, 0, 49845248, 361627648, 2919396033, 28983555,
2182099838, 24, 0, 603979776, 322707487, 0, 1342177280, 741151548,
16838112, 289, 0, 20177664, 3911319552, 738197505, 498, 0, 20177152,
4218290176, 1846536256, 34, 0, 1073741824, 2800026402, 1921264, 0, 0,
1896778240, 828, 671088640, 29, 93831, 0, 0, 211408, 0, 64516, 0,
2687434752, 15742560, 167915520, 916467633, 835805424, 7727, 0, 0,
3929014272, 548021776, 345, 1136976, 303534080, 914361905, 567428336,
2702117393, 721420288, 4030124070, 13251, 1610612736, 182452615,
2785017856, 33284373, 66483, 2415919104, 27, 0, 167944192, 40999,
1106866688, 444, 174240, 304926720, 8324, 268435456, 184357444,
1696403712, 4029116708, 0, 2415919104, 685637706, 3306154704, 54280243,
2315263637, 33288221, 0, 1459617792, 304, 77907, 2658816, 2689728512,
2550136832, 269037825, 978331746, 16, 0, 0, 171892736, 0, 805306368,
4307, 2399141888, 4029931523, 3274660, 1879048202, 4072, 0, 22609920, 0,
0, 0, 0, 291147776, 0, 0, 0, 15741968, 0, 66839, 0, 203882496,
3774873601, 279080982, 352414263, 1057127197, 823, 0, 492904448, 0,
536870912, 270467900, 687865857, 271962472, 0, 2415919104, 848167459,
687957824, 378528106, 1314914304, 2251796, 0, 1895825408, 170,
1511070821, 17, 0, 0, 52604928, 4520, 3221225472, 41423314, 15,
798453760, 3046224034, 15, 226557952, 0, 0, 174174366, 28352283, 0,
166832, 302526464, 1638924288, 1879332354, 4077, 0, 0, 0, 2147483648,
12183, 15740832, 288509952, 3620, 1879048192, 4553, 0, 304128000, 0,
3066880, 61997056, 1085169, 525701120, 110768, 0, 0, 3607307696,
4029026050, 2113929216, 1073741824, 1754730504, 2115012353, 287199272,
1958749123, 2686859805, 4067, 137264, 0, 0, 806460416, 4055, 924227232,
507, 574684240, 17328146, 244711424, 1342177281, 271, 113821, 3109632,
55181876, 1063553, 0, 0, 4026531840, 4495, 553648128, 444, 3931111424,
805306384, 4642, 3307077888, 168813043, 0, 0, 0, 124368, 0, 3264227051,
1610612752, 4608, 0, 0, 746592706, 240, 237502464, 1125472, 264826880,
121481, 0, 0, 2348810240, 257, 2839479022, 2715322369, 483, 872415232,
471, 43058230, 536870942, 460655282, 1275068416, 487006369, 2259681280,
3760532746, 719, 0, 0, 64423, 0, 819396608, 2751616880, 17, 118845,
1879048192, 2860654492, 2196769152, 270, 2666528768, 1342177296,
189006536, 0, 51929088, 0, 547370496, 2298368, 1577126638, 523616616,
2660305517, 30450433, 342753280, 1616880, 0, 2735669438, 2415919133,
5811, 0, 0, 415, 0, 0, 1426146288, 7, 0, 0, 293076992, 0, 0, 94500125,
1093768731, 297, 113296, 0, 819986432, 2684354579, 2759264890,
1828854592, 292, 0, 2963813120, 658, 0, 0, 0, 0, 4251516928, 2751655296,
505, 3784310784, 927234, 0, 15731408, 0, 11521, 3221728768, 2982677158,
1, 0, 0, 536870912, 74385991, 134388833, 502, 0, 1073741824, 2631,
1776640, 172429312, 0, 0, 740687872, 2031977424, 177746424, 83259,
4026531840, 5771, 587202560, 6393900, 2356150272, 1365914902, 4328,
3115728, 0, 961544192, 2887711, 0, 15740528, 0, 72760, 2687550976,
64229343, 86545, 0, 1366489248, 2479361, 42860544, 86431, 0, 66832,
3489660928, 337, 0, 0, 2343567360, 536870912, 42730180, 3054488367, 12,
129974, 3758096384, 2729, 1761607680, 3840, 3517978868, 2952790016, 616,
3943529888, 21, 128527, 3489660928, 8073, 1251648, 0, 119119, 4026531840,
12184, 1660944384, 1007621, 0, 16572416, 0, 2332033024, 473, 0, 0, 0,
189680, 0, 2442133504, 2727953, 4273864704, 1907872, 0, 13163, 30932736,
0, 1623744, 0, 0, 805306368, 297, 3005167728, 44, 0, 2147639296, 37,
3355580480, 502, 43635, 1375379200, 2871005743, 0, 0, 13160, 3254356480,
4094036561, 1678849681, 38, 69261, 1879048192, 509739592, 0, 0,
1266686724, 0, 4173463552, 2, 0, 0, 1363506688, 5207, 696624, 295010304,
0, 3758096384, 84869691, 1107296257, 501, 66848, 1610612736, 4125885176,
3114961, 10428416, 223346688, 2952790016, 1165234180, 1, 304373760,
70836, 3237938432, 340, 1677721600, 362, 0, 3758096384, 4161081342,
1996690449, 513045240, 123193, 0, 596508672, 103778129, 16970217,
275886342, 3506492443, 634519810, 102436912, 797385168, 0, 2233600,
72220672, 385875969, 16978085, 6380, 17052928, 3517382656, 1, 39116800,
100621, 3783855872, 820123792, 3642265857, 412164352, 3249602780,
1610612753, 6289, 0, 0, 867182009, 31015426, 0, 86240, 0, 2634217877,
1660523537, 414716138, 0, 0, 0, 251660032, 343080960, 2835362352, 270,
1051721728, 11222559, 3540647936, 696705, 0, 0, 2684354560, 596840753,
1224819824, 465, 0, 31001344, 0, 0, 0, 28439702, 2415919344, 558301639,
1, 0, 0, 0, 116916224, 1999152, 0, 0, 16606208, 862322688, 721420288, 28,
2518688923, 31, 106496000, 122624, 0, 0, 0, 244908032, 1, 0, 404750336,
30434817, 0, 0, 0, 0, 294192128, 2298875986, 135827537, 1819017,
2425456906, 2978548760, 6288, 0, 46485504, 40991, 3221225472, 8082,
2902458368, 4, 40993, 0, 2686320640, 700240, 14303232, 1012924416, 31,
2297430016, 4061695729, 81707400, 3249637620, 1365790464, 2297960591,
1609585, 528556032, 0, 2441672960, 2298163097, 4244766081, 412074376,
2413922559, 3246981400, 801, 1200240, 0, 129950, 3221225472, 4061336147,
134217729, 362, 3095396352, 33259551, 4227137536, 603979777, 464, 0, 0,
2296709120, 3875536897, 411984264, 2390853865, 2710104856, 2297239694,
3674331521, 412016686, 43260, 3758096384, 4051, 2518583136, 396,
710978507, 2, 2775908352, 0, 52518912, 0, 0, 7434, 2365587456, 166,
1146093568, 3758096401, 8120, 1141504, 0, 2341470208, 3223061039,
542442071, 1831832432, 453058730, 0, 1057100544, 8043, 3356510384, 167,
0, 2158551552, 827527197, 0, 0, 2456857187, 2892810, 0, 139920, 30957568,
2376144558, 24, 4085841920, 2852182097, 530313689, 69264, 0, 546635776,
907159025, 488, 0, 2700897280, 790958656, 2214765920, 178651497,
1959788544, 268435458, 688660104, 3344, 176918528, 120581, 268435456,
8003, 3741493552, 411939088, 2379319518, 294182936, 2296512574,
3826814481, 411971976, 2364639440, 1851416, 0, 0, 0, 2408579072,
10794498, 4132175872, 1, 17301504, 585113079, 31055626, 0, 0, 265502720,
711027066, 2441660931, 2295077004, 3457715377, 411881864, 630198439, 2,
2719875072, 3607101440, 3, 2367785171, 3493010968, 280101120, 13456,
411926551, 68522, 11131136, 3630039040, 687865857, 28, 41505, 1093888512,
7938, 34352, 0, 66629, 1879048192, 271908942, 0, 272928768, 2532311040,
23642143, 4266459136, 0, 0, 1823473664, 301407489, 710545476, 2332033024,
164, 1151336448, 3221505552, 4164, 0, 0, 1866465280, 2434828546,
400695184, 0, 0, 4034920448, 22, 0, 637534208, 47, 3943695217,
3221225473, 4072, 0, 0, 3107979264, 16466191, 3909287936, 1, 46059520,
129395, 18395904, 0, 117440512, 497700869, 0, 0, 564666005, 555576193,
252, 831590436, 2, 0, 0, 0, 3652, 0, 0, 385875968, 1, 0, 268435456,
3909419101, 1, 15970304, 1220542464, 2695574538, 2632, 0, 49090560,
813768731, 19, 720109568, 0, 172597248, 78610, 16836608, 856429361,
2366845137, 321957912, 827405076, 1898078995, 569184270, 0, 0, 837890846,
3775626003, 4229563084, 387133856, 322011443, 0, 3758096384, 165615817,
3506438144, 11465204, 0, 3489660928, 620, 4278190080, 22626306, 7028,
25989120, 0, 687865856, 307, 4088397824, 2952790038, 435, 1131696, 0,
3350319299, 537494046, 5876, 1929264, 18968576, 0, 1640192, 1306198016,
0, 0, 3347054592, 3758096384, 525, 0, 0, 1019215872, 1896100866,
539236080, 0, 0, 838860800, 19, 654901248, 0, 529817600, 847328039,
1630741779, 857936690, 554906177, 9826611, 2398093312, 2165711382, 2575,
4060086272, 8802335, 3367, 288567296, 858526515, 705901281, 25956659,
2338324480, 22, 725352448, 1929379840, 36, 1037116462, 2, 525402112, 0,
0, 0, 0, 794689536, 438274560, 505, 18874368, 17, 0, 2903153344, 3842, 0,
3489660928, 243339345, 1, 22110208, 429916160, 24051999, 0, 0, 0,
3526370564, 2952790032, 797, 1196608, 172498944, 2506107821, 22, 0,
2063653072, 172507300, 0, 0, 645726208, 1343291648, 415817763, 810613913,
29, 0, 974192736, 4026646577, 3852, 1896423424, 741671676, 67108864, 468,
2906664082, 2687496706, 2292981248, 33554433, 40407508, 195019, 0, 0,
196416, 0, 0, 30620928, 2993553408, 167473, 10006528, 10918, 2415919104,
605618238, 30832, 0, 953155584, 49925663, 3159883776, 2384281953, 256,
71303168, 4026531842, 753992149, 1624080, 2121728, 1098907648,
1073741853, 825, 2751477136, 473, 2332033024, 21293334, 0, 0, 0,
2778726400, 22, 3609526272, 1561357041, 6, 796, 2952790016, 445518360,
2417960497, 177717530, 3128950784, 3776614154, 4269735965, 2466250752,
500, 0, 0, 2813657088, 687885152, 179556630, 4029677568, 3074816,
220266496, 3103784960, 43888671, 7578, 0, 690094080, 3439526848, 33, 0,
2445056, 0, 12544, 0, 0, 0, 2879455232, 0, 179970048, 38841247, 16954898,
0, 2684354560, 171, 3051400092, 2, 2801860608, 1074640, 320815104, 0,
2149269248, 354934810, 194816, 0, 3124759942, 816219402, 4094694198,
703073, 39972864, 0, 556920832, 837878267, 1746089617, 322335027, 8710,
30452736, 265486336, 1482512, 291659776, 0, 2415919104, 8053, 3875562800,
319430693, 1207959552, 805306378, 117, 673744, 0, 2491487765, 1090358045,
861405521, 0, 22835200, 9675, 538391552, 14, 101376, 0, 1069547520,
16517377, 0, 771751936, 512197082, 74138, 4045511424, 1750671195, 1, 0,
779091968, 2, 0, 1744830464, 320024578, 616627866, 2167631105, 596111412,
1, 0, 1205936860, 1610612746, 560792231, 939700960, 268, 0, 0, 0, 0,
268685312, 3727687680, 1752577, 0, 1101888, 0, 2439106742, 547366175,
7951, 637534208, 160, 1625367288, 2508817, 0, 671088640, 160, 2112885754,
2685221389, 2790134084, 4211081216, 22093843, 1866465280, 1308959,
4250337280, 1224736768, 17, 0, 11255552, 0, 4160749568, 49860627, 127037,
1610612736, 4687, 0, 0, 3600809984, 816561167, 99, 0, 0, 447743321,
2549728, 2881159168, 72960, 0, 0, 0, 2881028096, 2718590608, 295522321,
0, 268435456, 718606305, 1934480, 0, 12542, 16727296, 19202048, 1,
42905600, 0, 0, 772997120, 0, 0, 131199102, 2971978783, 738918843,
2014348816, 496, 9336, 3769008640, 511052475, 51363232, 251, 1074796130,
1621625373, 1852108808, 1, 0, 69401, 1879048192, 739574080, 1996488704,
17502229, 1087373312, 2687131922, 359989644, 469863520, 304410892, 5492,
2415919104, 360251402, 2000848, 0, 68198, 268435456, 8026, 3254779904,
49, 1285488676, 1, 0, 2617330864, 40030679, 615639321, 19025409,
215416832, 1, 0, 2702180352, 31, 0, 1107296256, 3, 1803, 1467648, 0,
1662085376, 5656598, 2891, 0, 4228710400, 1090519040, 380911627,
1477537431, 737026, 0, 1628560016, 22, 0, 285044992, 613490490,
1191182336, 11, 2308967878, 805306369, 7576, 0, 35110912, 75625335,
1610612755, 4448, 486539264, 278, 12096, 0, 2962817024, 2584830081,
267383216, 2571108352, 1467933, 0, 0, 0, 449880745, 2147483651, 37683984,
1067423, 0, 162570923, 2415919131, 2728919584, 2903716880, 273252514,
125196, 1896130048, 4169, 1503904, 14221312, 64863, 31084544, 0,
318767104, 277860841, 0, 0, 0, 1610612736, 474, 2605711360, 567336991,
4260959887, 0, 273072128, 0, 0, 0, 1917152, 0, 0, 0, 0, 0, 0, 2368733184,
2164500253, 763, 655808, 0, 0, 3221225472, 4164288661, 1, 0, 64940,
4028662016, 4104461632, 1662550929, 4079941, 0, 1087744, 1163788288,
504797041, 32, 1657917531, 17, 0, 1442840576, 298369057, 40983, 32049920,
822542336, 152178304, 305025513, 2364551438, 1073741853, 2685796980,
2069936, 0, 447741952, 1879048223, 57347, 454238656, 6, 3698327552, 4, 0,
1141808, 31936512, 1902195572, 3221225474, 3512598734, 1199041, 0, 78488,
0, 0, 3456106496, 37683701, 1488987966, 2684354562, 62915073, 3724541953,
321491114, 0, 0, 150077440, 2818572289, 2081041, 128585, 32393984, 0, 0,
0, 0, 31987200, 4163436544, 2, 0, 2687500288, 1, 0, 0, 0, 41634,
279095040, 782569824, 0, 0, 3113264324, 279636240, 2728722635, 672592352,
2052144, 2526113569, 1879048194, 406, 1475072, 291557376, 2526019584,
18946561, 856162304, 287230464, 26624473, 5526, 33010944, 0, 1478016,
39641088, 120832, 10676736, 0, 3892314112, 380780578, 117559635, 1, 0,
1083872, 304656384, 128605, 1610612736, 4527760, 2868903951, 259, 5027,
0, 332201984, 2751463424, 19, 0, 1286656, 0, 101296, 0, 0, 10515456,
606470144, 1, 0, 978321408, 1342177281, 235798860, 1845493760, 377512096,
2691705777, 2952790017, 406, 2017264, 7028736, 983691, 3456188416,
2687041574, 1056964608, 179236353, 1556086784, 1286161, 2687172608,
2701131776, 29888531, 1374683136, 18, 1383714, 1, 4028821504, 0, 0,
2880110592, 703136, 0, 2106717547, 3489660929, 12197153, 1795162127,
179998986, 3123774395, 10, 863899811, 36817, 0, 3023111098, 2415919105,
482, 939524096, 6, 2424307712, 3768604701, 54337428, 4127195136, 360,
120247, 10510336, 0, 1778560144, 160, 506331445, 25997824, 0, 285910368,
278, 0, 4045030912, 451222288, 192801, 21770240, 917817, 3489660928,
20449860, 14, 280236032, 917815, 2952790016, 2628, 2466250752, 172270039,
2989494136, 3760998658, 7584, 1979711488, 416022543, 329252864,
2952790240, 57363, 1342177280, 48984228, 983695, 0, 0, 1344233248,
42918139, 752970197, 30900241, 0, 319446096, 6, 2810192371, 3758663455,
3506833963, 1, 0, 93952, 17019136, 2604, 681248, 170643456, 933311355,
2395155, 4194828288, 100663297, 453431301, 0, 3741361664, 2783715193,
2483027968, 43, 0, 2978795264, 4507, 1593995840, 298299561, 2267021312,
10656541, 785055744, 2617245696, 2183330, 3968872091, 536870927,
4224327308, 369098753, 266, 4377, 2952790016, 429982232, 1577269393,
279482619, 1010827264, 1879048202, 483, 186590736, 472, 65820,
1342177280, 508365468, 0, 179351552, 124847037, 1067027, 551553720, 1,
495910912, 3084915032, 1362131978, 813305937, 2013968369, 319263024,
2228224000, 567802397, 62659930, 1896527825, 252, 0, 3489660928,
4222747249, 1207959552, 3840, 3084922374, 15, 0, 2650800128, 2580642,
120960, 1342177280, 68358433, 1488272, 0, 2165309440, 1610692894, 8099,
956301312, 30494976, 1734388610, 10818049, 3619028992, 68200416,
45977644, 350224384, 2, 2876637184, 1712339952, 273, 92990, 1881789184,
491, 603979776, 2584852, 135344256, 822315795, 1165037920, 1, 0,
143668217, 1084986643, 813959865, 1460865105, 271679749, 144745869, 19,
0, 0, 0, 1347464059, 1362136848, 814547516, 2333280481, 319340848, 0,
46080, 4619, 3187671040, 51912963, 43896, 536870912, 2876836535,
251658240, 45, 1141966033, 270269697, 677249369, 2701220080, 42197270,
1481650239, 3489923860, 323, 81872, 21213184, 2882609379, 1073995521,
2862350544, 666352, 302624768, 162621851, 1074613523, 4348, 2332121392,
272330923, 1274112299, 2444562, 3903127552, 702769, 178921472,
1838228612, 268435485, 2745, 1138944, 179904512, 128709, 1613278720, 615,
165600, 179888128, 1412509853, 3241187858, 62198537, 2501052817,
319381808, 3092328681, 2703294218, 770, 0, 179855360, 3572567723,
1611008, 171245568, 604682305, 504, 10209, 1073920, 590479360,
1089480800, 25936165, 0, 16862976, 113770496, 1023410176, 15, 371195904,
3791069456, 652, 2852137808, 1286179, 2840670503, 15, 0, 176416,
21839872, 6940, 4026531840, 3558285057, 285212673, 33443841, 1454374912,
20, 840433664, 2953492592, 21790737, 2833258653, 1570058, 620167168,
2769420448, 44737008, 121069, 0, 0, 150994944, 10, 2326, 656640,
56688640, 1, 0, 931135488, 3221882634, 3644396337, 3858824385, 361,
12233, 2434304, 0, 2820606816, 28, 0, 33177088, 111345664, 1, 0,
2329935872, 17023744, 4039245824, 2399141889, 42, 758120722, 475888,
151584768, 884017, 12832768, 2333081600, 2684354577, 600, 131152, 0,
739246080, 1502218, 0, 1153920, 81674240, 741386900, 10, 126025728, 0, 0,
0, 0, 0, 1308726272, 12271978, 125221, 2970321152, 265226806, 669472, 0,
129601, 0, 0, 4688, 0, 909180183, 10, 693305344, 136960, 0, 741462067,
2971684097, 108, 3338728384, 302027255, 0, 18932992, 61472768, 671537, 0,
0, 1073741824, 61407964, 4009754625, 472, 128080, 0, 0, 0, 0, 139467240,
536870930, 4673, 3523215360, 34, 3337617408, 367360, 0, 0, 0, 1730150400,
17252353, 0, 838860800, 326, 1938824106, 808536593, 36503868, 1410622543,
170, 0, 0, 0, 131632, 4988928, 3120562176, 1090598927, 5805, 0,
520138752, 0, 0, 0, 989855744, 342044998, 0, 2695278592, 2832732513, 0,
0, 0, 0, 24182784, 2785017857, 166, 121159, 33161216, 510787584,
3372220416, 26120359, 3355443200, 939294, 248, 437348720, 530637072,
796917760, 16, 0, 1174405120, 27439592, 126120, 1610612736, 4167, 0,
34443264, 3757167335, 4, 622723072, 0, 25047040, 727711744, 10, 0,
1930046320, 180122044, 72427, 0, 0, 436874128, 42, 192947517, 1074139392,
264642422, 1, 0, 129420, 0, 534839296, 1073741825, 361, 591525802,
1342177298, 263455042, 2583691264, 179356148, 64818, 0, 1798504448, 1,
304648192, 1169173269, 16, 3910270976, 1, 32264192, 3258046702,
1073741848, 184163649, 159280, 0, 42817, 821977600, 732, 0, 291921920, 0,
0, 0, 1123184, 0, 0, 0, 0, 0, 0, 1053897102, 31, 0, 0, 46243840, 0, 0,
544931840, 0, 0, 74595, 0, 2787311616, 0, 0, 3180405597, 10, 0,
2852126720, 170, 1856098659, 10, 0, 1038816, 0, 4002458422, 2147483663,
2670, 236940176, 481, 43540, 1342177280, 488702747, 1376989873, 913907,
45088768, 17, 0, 0, 0, 42605, 0, 0, 0, 0, 835715072, 2952790035,
3507884849, 1, 0, 2492507828, 2432507935, 1177555761, 3171983841, 4,
835715072, 0, 1145896960, 2199143377, 16855291, 0, 268435456, 699867060,
51659664, 473, 1654717204, 808677396, 5188, 162176, 0, 65088, 2685445632,
8116, 3439329280, 41, 3101, 31540224, 0, 181968, 0, 969945531, 2,
297467904, 0, 52129792, 0, 1073741824, 591858346, 2601570513, 52121346,
73940, 0, 0, 184549376, 49164319, 907018240, 1373189138, 607588609,
672289, 0, 369098752, 16, 271777792, 4060086273, 469, 321912832, 3, 0, 0,
0, 0, 0, 0, 3541110144, 266, 4405, 2180337664, 241180544, 184549377, 500,
2853175296, 2701608961, 7519, 3858759680, 3, 1603285809, 1627080477, 97,
3389029488, 30, 0, 135680, 0, 3791650816, 46, 68422, 2810624, 2740912128,
1131136, 0, 7896, 17069056, 3590651904, 1, 530051072, 94033, 1343792896,
2732727048, 285212672, 320032815, 2243952640, 10676510, 0, 1940768,
273702912, 4140826624, 2952790031, 4126, 3808428032, 34160802, 150994944,
4026531857, 8039, 520125504, 286629909, 394264576, 23823120, 153092096,
0, 0, 0, 0, 0, 503316480, 493, 19913, 29115648, 0, 1188464, 44875776,
748683264, 4031642634, 4265347628, 3607768240, 761, 0, 268435456, 61443,
3238175392, 54137335, 0, 0, 330, 1761607680, 170434610, 11532, 0,
3605069872, 7073, 0, 2769289216, 10670607, 2732392448, 2835349504,
319463728, 742391808, 2686145025, 61444, 3758096384, 1912994, 983915, 0,
0, 138848, 285417472, 64801, 0, 0, 185574864, 47, 69666, 1879567616,
3519942634, 685553, 0, 0, 0, 0, 2752588848, 492, 4113563648, 18907137, 0,
0, 9646080, 198193014, 1362142224, 163648266, 1247793, 319426560, 0,
17507328, 565903360, 1, 0, 198192165, 2704324627, 647107339, 504564592,
291081985, 3050, 0, 817889280, 2886929425, 319549720, 0, 536870912, 5765,
1114272, 0, 43883, 0, 818479104, 3338665985, 319586608, 2467311175,
1879048194, 680, 1970864, 0, 1501560832, 2969415188, 655103628, 136128,
0, 8195, 10795776, 243924992, 117440512, 249, 2647654400, 17835542,
2723151872, 1117664, 322105344, 0, 569990656, 8061, 0, 32440320,
4216394381, 0, 0, 1914608, 0, 207696069, 1093714707, 118100748, 1248288,
306769920, 745579195, 467722, 4220256256, 201993280, 170693110,
3386900480, 18392578, 745144320, 1006632960, 169349387, 0, 0, 0,
1509949440, 254, 3584034872, 15, 494993408, 1476395008, 49029282,
436207616, 4026532064, 563286200, 1186081, 0, 640679936, 1898025216,
4221964246, 1, 0, 74854, 18039296, 0, 989855744, 473, 743508871,
270251530, 57370, 1176375424, 289, 0, 214784, 504299520, 0, 0, 92202,
1373166848, 153951761, 637534209, 28, 3172997623, 10, 0, 0, 0,
2923557824, 17086986, 805961728, 3088780576, 453840643, 64924,
3240151808, 570753615, 1, 304111616, 0, 30420480, 413859840, 20465,
25493504, 2404384768, 3791018262, 4158988213, 1, 0, 5032, 0, 0,
2852126720, 19, 3370123264, 10931729, 0, 212704, 265703424, 2382364672,
2337040, 7727, 4076863488, 280113623, 1452397928, 2983553565, 361635158,
1711342816, 492204501, 1444009312, 567632413, 2715615259, 1578117696,
492171733, 0, 30429952, 34340864, 754974720, 289, 126559, 0, 678625280,
688032560, 318861601, 97517568, 17, 7541, 1086016, 0, 437256192,
18954002, 0, 0, 0, 0, 0, 0, 87120, 384118784, 3455129775, 2301185,
559153152, 1, 0, 908066816, 2130730241, 553, 1133120, 0, 0, 18392832, 0,
3539992576, 40, 1435568197, 2955975453, 651894101, 1444762960, 492138965,
13128, 836063744, 7509, 0, 0, 2872049664, 3777055519, 407441940,
1175589968, 171, 74049, 0, 0, 0, 0, 1714421760, 10, 3494645921, 1,
378867712, 2073109701, 32318751, 0, 4110417920, 167, 119251, 0, 0,
1207959552, 24, 1324351488, 3253744386, 4149412347, 536870913, 27, 0,
1611336704, 34807650, 682208, 0, 2588015456, 3758096394, 185270497,
155136, 0, 270532608, 536870913, 853611310, 1929379841, 471, 1716561511,
3489660938, 3897823437, 754974721, 497, 120421, 251689984, 0, 1711437968,
306995670, 87154950, 17, 3597074432, 1075671905, 512999473, 436207616,
1076225042, 786, 2062576, 294354944, 359661568, 18, 833159168, 33554432,
275, 0, 443904, 0, 0, 487223296, 231, 3777083136, 33, 0, 0, 128074,
31063808, 291373056, 4211250560, 289, 4037, 0, 372703232, 0, 0, 0,
536870912, 4902, 754974720, 304267708, 0, 4026531840, 7905, 0, 305078272,
1792110362, 1360025856, 1753088619, 1, 0, 498128829, 2, 0, 0, 0, 0,
2717016576, 454164556, 939524096, 280, 0, 0, 0, 0, 0, 41500, 2684434176,
407704098, 1487808, 277225472, 1828716544, 31462685, 4642, 0, 0, 69667,
2179466496, 574493229, 681425, 0, 0, 0, 0, 603979776, 162, 2444230979,
2684354590, 532875884, 285212672, 18, 4630, 0, 575406080, 1813194001,
378810378, 1761607680, 1879048202, 157, 1058444192, 361, 1000276013,
816227073, 4240514318, 1711400096, 35790890, 74623, 0, 42532864, 0, 0, 0,
805565696, 175378755, 11281, 0, 1240593211, 2179872512, 582, 3707764736,
31, 0, 0, 0, 2298478592, 46, 42848, 16620800, 0, 1131088, 0, 2051, 0, 0,
0, 0, 8466, 1184256, 555221521, 353423040, 34811922, 0, 4027715584,
12163, 1504400, 31969280, 4084203520, 1775382, 0, 0, 0, 0, 2173952,
554369024, 822083584, 34799649, 3028287488, 31, 4213833728, 1112849, 0,
65849, 0, 815988736, 3959476224, 33, 6102, 1356288, 346947584,
1325400064, 506, 0, 268435456, 2726, 0, 0, 40894464, 32945939, 0, 0, 0,
5292, 0, 347474540, 63520, 0, 1793, 0, 0, 4009754624, 254, 0, 0, 0,
1627601456, 284946469, 74383, 3489660928, 4509, 687184, 0, 1285554176, 1,
2859401216, 85184, 527130624, 4015039118, 1594895, 0, 536870912, 13,
3244305667, 1634289681, 471663212, 1291845632, 518451467, 1309713245,
4026531840, 7996, 1978256, 0, 766509056, 10702610, 2740387840, 0, 0, 0,
32831488, 85131264, 1, 295505920, 41800, 0, 2740125696, 236072480,
27320687, 77882, 1073741824, 2693, 0, 0, 1760559104, 31, 0, 83886080,
303124771, 691011584, 2970674194, 839712787, 3642712768, 282, 72408,
1342177280, 4566, 1644167168, 5, 0, 2702890752, 191, 3590324224, 282, 0,
1881297664, 12163, 665888, 0, 2204106752, 821857327, 2758291331, 2003616,
0, 0, 3223062528, 2734, 4227858432, 290, 74534, 0, 4041146368,
1979711489, 305254902, 2183135232, 3310127, 588382656, 318767105, 291,
3147954071, 807745290, 300621173, 1526934289, 272, 2187423319,
2963346479, 4270855812, 354222944, 23953569, 2189426688, 269375023,
4218560439, 1948235569, 32317947, 3256877056, 2, 408223744, 0, 0,
2024994849, 31, 0, 956367232, 267616511, 0, 0, 613810176, 0, 0,
4074831663, 3237948687, 4281012210, 688541312, 267550975, 4083220279,
1090467087, 4281536499, 823128864, 174854399, 3127902208, 2446353674,
444664389, 1095856, 172343296, 4066384924, 1074262799, 269094898,
554693152, 172335359, 281018368, 10, 2702770176, 387376544, 178311329,
3243245568, 49818113, 2879717376, 838860800, 167, 8487, 1879048192,
831979808, 0, 49868800, 100414, 268435456, 488, 0, 0, 136321470,
536870929, 4046, 0, 0, 0, 518400, 0, 2365587456, 294338601, 1646264320,
816529152, 1147928753, 1728223233, 797028522, 638582784, 3221225491,
2675, 45200, 525463552, 2958032896, 1879048192, 482678410, 1328688,
279740416, 2960130048, 0, 0, 45296, 0, 11465, 0, 0, 218103808, 28, 41332,
3157248, 0, 0, 0, 333457051, 4045451807, 4421, 1149808, 0, 0, 0,
2866610176, 3858759680, 289746975, 0, 19080960, 4279304192, 990948448, 2,
8752, 1611966464, 100998402, 872415232, 36307441, 0, 0, 0, 1998309152,
47, 66874, 264960, 0, 3171019920, 270073858, 128493, 18038272, 747307008,
0, 339931136, 106954752, 2702395632, 748486905, 1092458512, 521183729,
1077014852, 32589585, 3910467584, 1409331825, 499, 2808128149, 16,
698220544, 3121889296, 49824209, 3995116183, 2415919105, 470684195,
2097152000, 324, 0, 2952790016, 7569, 3942645760, 2, 4012992815,
11042818, 2970419200, 1, 32772096, 0, 17764864, 0, 352321536, 267, 0,
32839424, 418054144, 1, 29827072, 94066, 0, 0, 2785017856, 340217876,
3898605568, 268435456, 5191, 3777986944, 280, 128480, 0, 0, 604127072,
466223428, 6802, 10663168, 81330176, 0, 0, 2713714688, 2426581776, 2683,
2987673120, 162, 83037, 3761402368, 175, 1912832, 0, 2449473536, 17, 0,
3068134048, 280, 0, 3490555392, 278397564, 1, 294342656, 0, 16864000, 0,
2044192, 303984640, 43065, 0, 450, 52176, 0, 370147328, 1897451536, 4498,
0, 0, 0, 0, 4186963968, 2063597569, 2, 1074790400, 1073741842, 554505872,
1, 179834880, 52428800, 32288029, 436928512, 3741319168, 3840,
2432696320, 30, 0, 3238002688, 324, 0, 0, 3641704448, 3089053441,
294441448, 1406140416, 3491674653, 1784819584, 3113185, 492093440,
2987519098, 0, 2762801152, 207360, 48381952, 818937856, 2415919122, 4367,
0, 504446976, 7178, 0, 0, 236945680, 8056877, 0, 1897316608, 3588882870,
1164113, 53202944, 1233125376, 2399294978, 2835742821, 0, 44310528,
1227882496, 3221225492, 7556, 0, 0, 0, 1880627456, 804, 2550181600,
20308222, 252749568, 29, 0, 2417044640, 259, 2965486708, 16, 0, 1093760,
302063616, 2952910961, 2952790032, 1151734275, 520128161, 266055708, 0,
0, 422313984, 1064113, 286117888, 0, 0, 0, 0, 378949632, 1590808674,
3404061, 4188405760, 1151409, 0, 2686451712, 2059521, 0, 2683319008,
340382056, 2615148544, 17, 0, 3993016064, 12, 397410304, 2952790016,
2734, 0, 280010752, 1284, 18881536, 0, 2148813904, 294818068, 0,
805306368, 1153958420, 1330289, 0, 353370112, 24008194, 495714304, 0, 0,
30408704, 1897930770, 2647, 32496, 29499392, 406977472, 3, 4121034752,
503316481, 6594590, 73801, 0, 37158912, 702687, 40853504, 228, 2661888,
0, 1358954496, 286974312, 2138165391, 3490102538, 537137151, 149632, 0,
66868, 539047424, 360, 2046820352, 171, 0, 2684354560, 2744, 1444864688,
53252348, 1218454638, 1353419796, 97, 3136303936, 27873304, 2668634551,
17933312, 0, 4127195136, 288399527, 1889533952, 555287818, 3996387962,
1694503009, 6, 2637251665, 1342177311, 8047, 0, 528064512, 2829058048,
10, 4171169792, 102705, 0, 0, 24061184, 0, 2869019040, 531259412, 43666,
0, 0, 2052688, 52760576, 123596, 18903552, 590544896, 0, 0, 187765540,
11172864, 0, 1035952, 486658048, 0, 2446994688, 4003796638, 2046820353,
11473184, 1162990621, 3788775178, 3558939969, 1074414977, 490873194, 0,
2415919104, 523, 285885792, 490840530, 307352078, 279611393, 3559981158,
857555713, 45543892, 1111610405, 1613164317, 3559464258, 721494081,
490906068, 864069537, 4026531857, 706613650, 1070368, 488001536, 0,
1342177280, 268698321, 1, 489938944, 2731, 0, 268828672, 2516582400, 288,
0, 0, 739442688, 0, 0, 0, 11180544, 0, 2027280, 0, 0, 2852352, 8019,
207600, 504659968, 0, 18962432, 3622109184, 0, 0, 788607729, 19,
1142292480, 806633953, 275, 1098907648, 20, 0, 0, 466161664, 4050649088,
16616720, 772669440, 1184304, 524558336, 386924544, 2440002562,
3899989916, 2316363953, 29614336, 0, 2247168, 0, 386959568, 8,
2924484923, 1075694608, 548343780, 1308622849, 529973292, 0, 292490496,
5880, 2835538464, 43921681, 967, 286860544, 4619, 102192, 50409472,
2417011593, 29, 7974, 30176, 179793920, 3724542822, 3758096385,
501481950, 1728067264, 3592195, 920657393, 4037287680, 2863398966, 73008,
0, 3607101440, 221969, 57147987, 1677844096, 3575811, 3736083930,
2684577025, 500957238, 1795162112, 3235843, 0, 0, 0, 0, 0, 0, 1073741824,
4278, 1392508928, 164, 0, 3146752, 0, 469762048, 164, 1539309568, 20,
556662784, 73776, 296321024, 1559232512, 2, 0, 1459617792, 363,
557916796, 1086721, 0, 989855744, 7, 127189, 0, 3497066496, 2717908993,
511881468, 668926780, 251820546, 8054, 0, 0, 667951721, 240, 0, 0, 0, 0,
805306368, 464, 2684427968, 296140970, 74484, 0, 0, 2065418160,
528560418, 831520768, 3489660928, 699, 0, 3448832, 16777216, 18133250,
107937792, 3103784960, 276, 857735168, 0, 0, 0, 0, 120594, 805306368,
4386, 922957552, 259, 127172, 1272064, 0, 0, 0, 0, 0, 186122240, 0, 0,
357631303, 2321424, 174194688, 1, 53211136, 2779774976, 2164895744,
61493, 3018853808, 276, 2818643132, 10, 0, 0, 0, 2390817652, 4028441117,
49283112, 536990224, 30523421, 1222642901, 2955644946, 4568, 1174443376,
377942382, 3501195935, 2686257665, 43778086, 805316128, 30437543,
1930435867, 4026695690, 488114810, 1946276080, 15994882, 100742, 0,
151650304, 1, 0, 4605, 3247016192, 26806934, 1163361, 489840640, 0,
2970836736, 373096509, 185153, 0, 1865426706, 18092290, 0, 0, 0,
3294625792, 1342177282, 2776375197, 184048, 0, 556793856, 2165426689,
7986, 1040187392, 282100001, 92562, 3221225472, 8118, 2076992, 0,
3696272969, 15, 689176576, 2652877376, 47, 42140, 0, 0, 158192, 16384000,
3493862661, 170241, 464, 3422552064, 30, 0, 0, 164429824, 4244635648,
470, 2450522112, 536870934, 668, 303895712, 493, 3615490048, 1175057,
583532544, 1, 0, 1708, 2415919104, 61475, 1778384896, 286613774, 8813,
272896, 0, 2970718672, 288551411, 0, 1879048192, 4521, 120256, 0,
4129292288, 1, 237961216, 1771136, 0, 106963168, 18415899, 0, 2098923072,
291, 70185, 19161600, 0, 1258484784, 275, 6252, 0, 0, 0, 271843328,
3686793216, 3759906575, 322510722, 270486001, 464, 0, 2395392, 116195328,
2751463424, 488, 3826322275, 2520065, 0, 1476396512, 495325191, 0, 0, 0,
0, 0, 11237, 33068288, 0, 3707764736, 28524550, 3346048496, 1610612753,
7550, 855638016, 30, 951058432, 2684354591, 2882804493, 101790064, 292,
897588648, 19020544, 0, 973078528, 5976369, 0, 0, 0, 24064, 0, 0,
1927424, 0, 0, 51585024, 0, 86016, 492109824, 0, 0, 950009856, 31, 0,
1053744, 4030328832, 2168498230, 30, 0, 2852126720, 50, 0, 0, 0,
3472883712, 465, 590413356, 3522926354, 441, 0, 45588480, 2087, 0, 0,
2019984, 379891712, 2623537152, 535318, 136970240, 0, 29151232,
2777679901, 268435473, 136516356, 469762048, 278, 2463105024, 17, 0,
1157627904, 35823632, 0, 0, 4196663296, 113057, 288419840, 128135,
2684354560, 4078305766, 35729, 511856640, 2413943074, 0, 462422016, 0, 0,
0, 2684354560, 453517026, 0, 0, 0, 0, 0, 0, 4026773504, 2739999526, 0,
2962096128, 1258291201, 175145251, 0, 0, 0, 2734686208, 280, 916455424,
805625361, 4640, 805306368, 160, 0, 235776, 4378, 203232, 0, 225445406,
3489660930, 4040, 1193872, 0, 1276189703, 243457, 0, 0, 0, 676335529,
18392081, 1152581632, 973078529, 282, 3322008666, 27, 0, 2281701376, 273,
1161822208, 29, 0, 320685344, 491134986, 3318746217, 17721346, 0,
3725872032, 252, 81798750, 3239266075, 6916, 1770656, 0, 0, 270957312,
2958159915, 1325545009, 453312944, 762314752, 33037834, 413270016,
1122849, 0, 1777, 1881648640, 4360, 738875360, 275, 0, 823258880,
392499601, 2350581696, 520188195, 760217600, 10, 640221184, 666944,
25497600, 3720458976, 2147483650, 7427, 41600, 288423936, 0, 1074680320,
4401, 1151616, 0, 145826606, 17, 0, 0, 285757440, 264241152, 2415919104,
4360, 3113856, 285749248, 0, 0, 0, 0, 495398912, 2552233984, 31, 0,
588295728, 489, 119188, 1879048192, 7583, 0, 0, 3846176768, 1862446593,
3623420597, 1, 378900480, 8298, 0, 0, 3238002688, 251, 126650, 0,
321519616, 1, 0, 3856662528, 2715393, 0, 0, 0, 120764, 0, 0, 55328,
286937088, 2318401536, 2684354589, 162, 0, 306819072, 0, 0, 11272192,
1795162112, 288436243, 3294627681, 1, 0, 132112, 0, 2720006144,
3758096415, 420223790, 1711276033, 177615017, 9807, 0, 439812096,
1031665, 0, 3266314240, 1073741851, 3658154665, 1, 49348608, 2990538752,
15, 0, 2214690096, 530375023, 0, 76544, 558694400, 1477696, 0, 111338,
829002752, 192, 1504848, 385228800, 0, 18032640, 3804626944, 1, 0,
3358591509, 2, 0, 1207959552, 502, 2565865472, 1879048223, 7428, 0,
29507584, 2713784753, 806052352, 3622896054, 704643072, 29, 1355811651,
21278218, 0, 3456106496, 482, 2897256718, 805306384, 2723, 99504,
40878080, 2236653840, 1073741846, 2701987871, 1903472, 494247936, 94016,
3254016, 0, 2014454544, 175542539, 0, 0, 4048158720, 1904097, 46612480,
72348, 0, 0, 0, 0, 456065563, 2684354563, 57, 1442840576, 307031808,
1768950930, 1373017629, 3600555369, 2031970737, 46710817, 1760629554,
3490483741, 3600031080, 2266122721, 493424652, 947991433, 20154131,
3599499264, 2231488529, 12, 956380049, 1897410835, 864881303, 773011649,
322478090, 73897, 1345120256, 73, 1862270976, 504, 0, 2446827776,
3626507655, 2048750417, 10690561, 0, 0, 0, 2617246288, 27, 827446944,
3490482449, 7529, 673016368, 493490214, 0, 0, 0, 3858759680, 255, 100625,
0, 2299723776, 2835349505, 494, 2436897684, 2147483672, 7984, 470870592,
292712723, 3443523584, 1, 2297495552, 2031953, 527306752, 1922039808,
2983773713, 202, 0, 28876800, 438304768, 17, 0, 185692832, 291233824,
68241, 1895742208, 12162, 0, 3190784, 3069307013, 3515492879, 536940816,
884464, 0, 3113222144, 2684354561, 271, 2348810240, 3, 828375040, 2, 0,
12512, 44576768, 0, 1643738112, 3654684672, 704643073, 411955468, 92244,
1879048192, 6959, 70016, 48279552, 12961, 2147483648, 2680, 1461227552,
24, 2415984817, 456472, 177078272, 1, 0, 194945, 0, 204275712, 184549377,
3840, 764, 2952790016, 2720, 144528, 0, 2988447823, 2, 0, 0, 0, 0, 0, 0,
1207959552, 471, 0, 0, 0, 1151536, 6053888, 3809476608, 667394, 0,
788529152, 291, 2394947584, 1569816, 0, 2852126720, 273, 0, 2427064576,
661455270, 69904, 0, 2369855495, 2685365016, 6923, 0, 0, 100942, 0, 0, 0,
31481856, 0, 1610612736, 6308, 286827776, 168841476, 1385168896,
2147483658, 805638674, 1040187392, 48308591, 0, 444672, 0, 620756992, 28,
589309047, 3, 462356622, 0, 0, 67751, 3221225472, 4264231335, 788529152,
280137733, 983574, 10551552, 656539648, 0, 0, 2768341251, 10552080,
271777792, 15730720, 4029206689, 592448056, 554396945, 4077, 0, 0,
119660, 0, 0, 471808928, 289485267, 2734751151, 376320, 0, 99632, 0,
74775, 0, 2325746088, 4278190081, 505, 0, 0, 712769536, 1479712, 0, 5834,
1592832, 0, 193376, 6553600, 64309, 805306368, 4090826961, 1501377,
36380672, 2557476864, 657951, 0, 3113696, 0, 1234, 1882405632,
2962496265, 2316870577, 453586963, 2749407558, 32516888, 0, 0, 0, 0,
10569984, 0, 940724912, 161, 0, 0, 0, 1056964608, 161, 0, 2836736, 0, 0,
0, 0, 0, 631570432, 2533473408, 528318768, 2824863744, 1073741826,
52494870, 15, 0, 2189434764, 807428618, 2821390854, 1481120, 10633216, 0,
10571008, 0, 2449511824, 272105499, 3289382912, 16, 0, 0, 526573568, 0,
0, 0, 1035136, 0, 458348798, 18, 0, 0, 0, 148904855, 2164096496, 4568,
1561369696, 2904508, 0, 480256, 0, 3374154304, 453271583, 1277233320,
1367990289, 2313093135, 285395969, 28958881, 4125097984, 806877206, 6302,
320379600, 161, 2598371328, 25764376, 27, 2635635456, 255, 2026897408,
268435487, 2301171858, 671088641, 393, 43215, 0, 0, 144832, 0, 246526186,
1092886555, 661, 1613520, 264765440, 763297927, 1610612754, 294854568,
1811939329, 49967153, 127030, 805963264, 748, 687865856, 4, 0, 659456,
84082688, 2986344449, 531877635, 0, 788531712, 61489, 1073788560, 465,
713037452, 17934083, 0, 335544320, 4029734922, 0, 17928192, 0,
2483027968, 500, 2646605824, 2904605, 789970944, 169385344, 414155113,
842006528, 3, 2312437760, 1613249, 520298496, 1146221902, 1879048210,
163909679, 2031131889, 53617139, 0, 2415919104, 7436, 0, 0, 889192448,
31, 2309488640, 1948066161, 173801637, 558991786, 29, 0, 2383624704,
274080017, 0, 1807616, 252575744, 2214592512, 280219921, 1425014784, 10,
463142912, 0, 0, 0, 1342177280, 591732531, 696688, 9637888, 119316,
25796864, 2308964352, 15730833, 0, 43664, 0, 804585472, 704643072,
45326641, 65233, 10553344, 0, 436267568, 41, 1773271598, 10553856,
3997696, 117440526, 496169121, 730978771, 2952790016, 278142349, 0, 0,
1674588993, 31, 0, 0, 0, 129879, 4043380736, 4256, 2046928, 0, 0, 0,
89063424, 1193633, 29175808, 1771114902, 2354689, 2311716864, 3607101441,
264831004, 0, 0, 0, 0, 0, 13122, 3221274368, 562630938, 2602494240, 251,
3575644160, 1084256271, 7437, 0, 0, 35752338, 25792799, 2308177920,
2348821169, 1, 100758, 562664704, 2308442755, 3640661361, 174817307, 0,
0, 0, 1612176, 303267840, 1807745024, 2415919104, 7457, 1996488704, 24,
0, 1687552, 262144, 15, 0, 3911188480, 455168, 0, 2787079520, 473, 9018,
0, 0, 2870388144, 21, 2069889024, 31, 18612224, 129728, 0, 74001,
1627626496, 1780416960, 2017153, 0, 528486698, 31, 0, 2602085792, 259,
2915048460, 1073741848, 213915822, 679537, 0, 3003188896, 1621426959,
169285806, 1006632960, 499, 0, 4044887552, 240, 0, 0, 0, 0, 467408528,
1191182336, 362, 3982556404, 1683968, 0, 773231632, 5222438, 0,
251662336, 3603103744, 125969, 0, 0, 0, 554303488, 1183873, 0, 934281216,
1610612746, 3994356279, 3507915537, 171413533, 1147210529, 825361,
279838720, 1, 0, 2718959078, 16, 0, 1291845632, 47, 0, 0, 841547776,
3741349729, 321019937, 690090126, 17, 0, 3573589472, 30, 0, 18532864,
121765888, 3120562177, 286990800, 573649444, 288498195, 840962850, 1, 0,
1733, 657408, 0, 0, 169926656, 904921088, 1821727, 0, 285212672, 28, 0,
0, 3607035904, 1933265, 0, 0, 23677184, 0, 2248146944, 29372689,
356515840, 0, 487849984, 385875969, 502, 4153534515, 22, 0, 1560463360,
361, 0, 0, 0, 402653184, 393, 0, 0, 0, 0, 0, 11948, 2417710848, 50200614,
1526726671, 43417614, 0, 2435020800, 163, 0, 526114816, 0, 807515648,
477638541, 2851090448, 4029640725, 2586, 805306368, 51909082, 15, 0,
70847, 0, 0, 469941168, 280, 427826843, 17, 1753022464, 1, 298897408, 0,
3783914496, 657264988, 15730656, 0, 2199982481, 30, 4175298560, 2,
487321600, 0, 3490660096, 52369569, 3942645775, 470, 55667564,
3489660955, 61472, 3573547008, 760, 0, 2985362944, 2318921775, 905969665,
265224586, 102760448, 25835760, 2820997120, 1614464, 0, 899678208,
1824784, 0, 0, 0, 2730534948, 805306368, 2821068959, 1629332688,
48202001, 2388699171, 536870914, 4175757757, 3321959010, 169562113,
194792, 20163072, 0, 1008562176, 252, 2510359035, 1342836480, 7109,
838860800, 413339940, 129280, 1342177280, 749, 1476395008, 503, 59768832,
32812034, 0, 906075904, 10641700, 513, 270121472, 4178911010, 4028463201,
253, 2519728128, 2952790038, 79900558, 2030043137, 494, 852535440,
3489660947, 12174, 3054571600, 25, 577765376, 3, 0, 2348810240,
527396873, 66620, 0, 0, 1118304, 0, 0, 4027616768, 619905715, 1007727952,
320057649, 1978662912, 2, 0, 0, 48771072, 43928, 0, 0, 2568393888, 171,
3206589334, 536870927, 457310802, 2019744, 0, 0, 11247104, 73531392,
1049024, 291041280, 0, 491520, 2878996480, 13232, 0, 0, 2149167360,
4242341969, 1845493760, 41, 0, 1344565504, 605492916, 1190752, 529911808,
3024094406, 3489660930, 2858356966, 1476527200, 264712474, 538987973,
18503664, 18808832, 3909091328, 0, 1946157056, 10, 4269015040,
2115979744, 34, 2445279232, 2426459906, 442900102, 2952790017, 20,
127559, 0, 4038197248, 1947354785, 26685465, 2534414706, 1667073,
349569024, 1, 0, 2464165722, 2173305878, 116984508, 1480112, 0,
1093533963, 1, 0, 1614144, 0, 0, 3758096384, 291242304, 587207713,
21020690, 2548039680, 1879048239, 321, 1276225360, 467, 2600468480,
3221225489, 8122, 0, 0, 0, 18712832, 0, 3003121664, 499, 0, 0, 211943424,
369098752, 394, 146901529, 29, 2315976704, 4178618481, 413172002, 120746,
25824256, 833224704, 1224736768, 384102652, 0, 1073741824, 8089, 176432,
41201664, 3233808384, 1344677647, 114622513, 3456106496, 4030427396, 320,
0, 199819264, 1191182336, 25, 1817256687, 2985393154, 4051574551,
2902537729, 521662485, 387051890, 2716955679, 4051042642, 1006686577,
521630168, 1382033778, 1, 280887296, 1879134928, 277983729, 857735168,
3489660959, 415, 4261412864, 251, 41868, 32978688, 0, 1359140304,
51622164, 3057654747, 1168898, 0, 0, 0, 412215306, 31, 340787200, 0, 0,
403710943, 824367647, 25891287, 1610700448, 17813509, 0, 1330176,
400621568, 1426735504, 20, 120530, 835763456, 4404, 2600468480, 506,
908075942, 17, 0, 0, 13119488, 192, 269302016, 4134280573, 86129, 0,
1721761792, 2165262593, 208, 2701217552, 37, 0, 1342177280, 536,
1291865792, 21950476, 1286615714, 3492333842, 334, 0, 21970944,
3396337664, 3489660930, 568, 0, 0, 2486252074, 10986781, 4170907648, 1,
0, 588294496, 4046598163, 841880354, 739451601, 321040690, 3146785895,
1073741825, 7984, 0, 494108672, 1649410048, 17, 0, 27520, 0, 450887680,
3758096386, 212078897, 1, 0, 73084, 268435456, 745, 2919423888, 268, 0,
2952790016, 2725392256, 0, 0, 2160069916, 4043097391, 12160, 114144,
321081344, 709885952, 0, 0, 2334104608, 268, 3511749775, 18976000,
585039872, 0, 0, 0, 0, 446038016, 3456106496, 281620519, 0, 0, 0, 0,
29134848, 7586, 2778112, 0, 73696, 0, 70084, 1610612736, 466878529,
2434635392, 268, 3150899, 16, 0, 678304, 306581504, 127823, 4027855104,
745, 1728053248, 12, 1537, 2417244160, 271057452, 872493168, 306, 0,
2147483648, 70, 0, 303374336, 3603955712, 17, 239992832, 840681072, 13,
71298, 32766720, 377880971, 3018852257, 39, 1080038445, 1610612737,
2712473685, 3355443200, 13820182, 113740, 1822464, 0, 56112, 31248384,
3713014464, 4026531844, 11997366, 3911126656, 290042352, 10636, 32887040,
0, 1260352, 0, 989855744, 3222909971, 3804233998, 3858759681, 273145897,
239202531, 1643177247, 7950, 3776006608, 521019888, 0, 538265600,
356911622, 0, 292327424, 3186627906, 1, 357236736, 2248146944, 306, 0,
2952790016, 711656126, 1762661552, 42635304, 123606, 1342177280,
2764382083, 0, 8437760, 3161456640, 1, 0, 620756992, 284, 205,
2971310592, 5860, 3154274400, 177180697, 0, 268435456, 1851588952,
1610700785, 255, 1706040277, 2, 0, 201414704, 796946479, 0, 1342177280,
444, 3875536896, 42307614, 837822617, 568897538, 729616649, 1713349936,
33, 3060798936, 0, 366673920, 0, 17887232, 0, 1075173120, 366610950, 0,
53829632, 5590, 3508163072, 624762119, 52309025, 291737638, 64633,
268435456, 3658551651, 1139633, 0, 0, 1827072, 0, 922746880, 43868201, 0,
2684354560, 7535, 3491138752, 13713446, 0, 537240576, 7441, 1108483552,
3840, 2206205346, 4026531871, 7559, 0, 0, 0, 1610612736, 493617360,
1900849, 0, 144774707, 422673, 580714496, 0, 0, 0, 0, 0, 0, 0, 43626, 0,
209, 2013265920, 50, 0, 3776490752, 4140237014, 1, 0, 2193620992, 31,
4267507712, 0, 0, 870318080, 33002256, 277610496, 1, 0, 919601152,
2248705, 0, 0, 0, 0, 837357056, 61455, 1828716544, 259, 0, 0, 605749248,
39424, 0, 3372, 0, 316407808, 113937, 0, 2150629376, 22, 0, 0, 0,
3516923904, 0, 4128768, 1619743, 15876096, 1055916032, 31, 2842954411, 0,
290, 0, 788766208, 431821396, 0, 495587328, 0, 17819904, 3648651264,
2248146945, 294748201, 2630877184, 29, 3653697536, 4192213857, 496497113,
0, 0, 0, 652221248, 13, 917938, 0, 362151936, 1828716545, 473,
2332039949, 2415919121, 81584154, 1060385, 298057728, 446693376,
570018528, 696, 3456214560, 27, 4043373728, 3489660943, 7434, 134217728,
280399920, 121320, 1352192, 441843712, 1, 0, 0, 805306368, 4147,
3909091328, 263549193, 2759852032, 1392112150, 12189, 4026531840,
798831353, 0, 301411840, 431501213, 2704252192, 41, 74544, 805613568,
1751974653, 3120993, 529612800, 11545, 4057378048, 289931472, 176752,
286158848, 3896, 805306368, 184, 3976200192, 164, 808520235, 2033155,
221577216, 0, 0, 0, 2952790016, 4889, 0, 28852224, 432079112, 1342177299,
470221240, 2348922992, 48296435, 0, 993536, 0, 2038320, 0, 3156280835,
18432001, 0, 2836536880, 378933411, 3573547008, 17086737, 0, 0,
496619520, 3055550464, 2434628367, 548, 3021964608, 9768994, 2451643755,
22, 0, 1376404144, 47, 3665821696, 15, 0, 0, 518574080, 0, 0, 493355008,
1, 0, 0, 0, 492896256, 3271557121, 482, 0, 0, 345178112, 1, 511807488, 0,
2147483648, 726598072, 2015243520, 28848489, 9600, 0, 0, 0, 0, 0,
10764800, 3623419904, 0, 2691072, 2665480192, 1880190255, 5806,
436207616, 494, 4468, 0, 292028416, 3759265504, 506216489, 570425344, 31,
0, 70229600, 31596545, 2144412083, 2147483648, 292687842, 0, 524644352,
464519168, 10, 0, 1946819552, 471, 221249536, 18, 0, 2366249920, 4,
837816675, 2684354563, 703, 1181680, 176185344, 4056945983, 4045625858,
4150591698, 1, 0, 0, 0, 3164536832, 1073249, 274755584, 0, 0, 191561728,
1, 0, 0, 0, 455, 0, 19939328, 8297, 1879048192, 2674, 3004189456, 260,
1138753536, 1, 473694208, 1895825409, 17, 12135, 1142784, 0, 1778400528,
179515409, 0, 0, 22544384, 0, 0, 0, 23613440, 4223336448, 1981743408,
530534685, 0, 536870912, 498862721, 2635936368, 251, 0, 0, 0, 0,
506355712, 394264576, 2955402269, 493297468, 1, 521158656, 3365928960,
1073741840, 553, 0, 0, 751957419, 2030622, 4123983872, 1, 0, 0, 0,
613220352, 1, 299397120, 480247808, 2, 0, 1477513408, 464, 70868,
1720064, 0, 2214592512, 284, 217055232, 2684354589, 542580268, 70721,
43347968, 7760, 0, 404692847, 2533359617, 501, 0, 2320896, 606797824, 1,
0, 0, 0, 2806579200, 3087677408, 20, 2960254990, 2206465, 657850368,
2014329184, 528584741, 0, 2444276480, 2964593419, 1, 0, 0, 1362272768,
2858949387, 1660944384, 30, 1349517312, 20094210, 0, 35584, 0, 0,
2684354560, 220727896, 4093640704, 31527172, 69237, 519680, 176947200,
133921, 524128256, 0, 4278269440, 20193081, 921703231, 175435796,
847184176, 520171025, 3506897451, 553648129, 275, 0, 0, 0, 153216,
13709312, 1109397568, 536870913, 237, 0, 0, 985661440, 3508367647,
299631115, 2500918208, 492, 0, 0, 0, 2063597568, 360, 1785724928,
1325476609, 19468573, 670044815, 176258817, 3867212713, 251732751,
493027328, 134217729, 268, 0, 536870912, 7489, 3556769792, 482,
296747008, 17578240, 34865152, 0, 4029677568, 0, 1343040000, 3512472023,
117527601, 279, 0, 0, 150601728, 0, 0, 304021794, 4278264048, 468250641,
821039568, 4027691475, 295633178, 240, 4148237118, 1, 0, 0, 0, 0,
1169408, 506232832, 983933, 0, 0, 3221308448, 523620380, 4106223616,
1073741826, 4070, 0, 25911296, 43344, 536870912, 2660, 0, 4027678720,
291569623, 1099614960, 2328490001, 3538948385, 4027646207, 125034,
25873920, 3620536320, 1579121136, 525238278, 65483, 0, 4291035136, 0,
488300544, 2087724099, 2, 4292542464, 1358954496, 273441020, 3376, 0,
2329214976, 2349512193, 50, 800063488, 1368053267, 372, 235023840,
4027637505, 2677997836, 2418523650, 3162632208, 116396145, 4027604737,
747634688, 1294366, 0, 3305111552, 471, 9812, 1141760, 493494067,
637534209, 500, 123608, 16455168, 0, 3355443200, 260, 513802240, 17,
8060928, 1593835534, 413987104, 2386686898, 805306368, 2661, 66064448,
523599617, 269418753, 4009820144, 16642063, 2802982399, 42934745,
3533713983, 617489, 624033792, 1325400064, 494284547, 3548482243,
3783967232, 54395548, 2785017856, 500, 8451, 1073741824, 275455394,
2063313, 0, 0, 0, 0, 637602096, 299389289, 0, 1136896, 16384000,
988811167, 4027543812, 431089877, 1325462528, 15863966, 1442905487, 3843,
92666, 3741538560, 61496, 603979776, 173117453, 64437, 30416896,
634650624, 3456, 5738496, 0, 0, 0, 0, 45572096, 3346011784, 0, 0, 0, 0,
65895, 2684354560, 550437072, 3991932641, 4027502336, 245496389,
2936072688, 577175726, 0, 453509120, 125829120, 3758096386, 783358727,
186592, 0, 0, 4028972544, 4161802316, 1761607681, 43, 3617587200,
1342177297, 61, 3422621344, 493715921, 1824, 2684354560, 2731737527,
1970656, 302096384, 0, 824372736, 14950224, 3606056319, 179535616,
1276051668, 520147472, 61453, 1058089216, 255, 2375024640, 10, 0,
2969567232, 492, 128608, 0, 3616931840, 419430401, 48115459, 1174405120,
1, 0, 2348810240, 520802317, 425731086, 16, 380305408, 1930832, 0, 13124,
0, 2807758848, 0, 0, 3719365825, 32849410, 4122738688, 1, 0, 12448,
299524352, 544998192, 1999905, 0, 0, 0, 4002676736, 654311425, 269,
129470, 235005952, 0, 0, 0, 0, 23668992, 0, 0, 0, 0, 1610612736, 7817, 0,
44933120, 92208, 0, 1307049984, 822083584, 35024931, 0, 1879048192, 473,
2197815296, 503, 1072822857, 3758096403, 4927, 2281701376, 270, 0,
4026531840, 2303328866, 203393649, 281104849, 194703, 536870912,
1792021312, 1, 0, 0, 0, 375980032, 1140949633, 13529250, 3768648326,
2969732098, 224268329, 3254779904, 176156938, 673190270, 16, 3976724480,
2097152001, 17, 679546856, 3238168336, 43126825, 2516582401, 171540738,
693174924, 825312272, 42864681, 2534418673, 271110304, 3871416380, 1, 0,
0, 9097216, 2557555027, 556880129, 28185365, 1276318976, 320135473, 0,
1265920, 324403200, 1426063360, 305, 67118, 3222752256, 806, 0,
305057792, 83390, 1266944, 29032448, 1342177280, 22392851, 230806323,
1073742064, 585, 1377638080, 19, 3382709964, 251826974, 3624861696,
3374298145, 290, 4068474880, 23615490, 42532864, 2751463439, 49525238, 0,
268435456, 292, 74848, 0, 3040935459, 10, 0, 2938063216, 4, 8356,
1342177280, 292, 0, 19136512, 368128349, 3241237267, 440341269,
1444091297, 19145009, 2550265282, 2684354607, 7810, 1913264, 532148224,
1855, 3758096384, 7987, 805306368, 296235277, 734003200, 30976003, 0,
771751936, 28016658, 983427, 18942208, 304676864, 1359997840, 384368387,
4648, 1910067456, 3977768984, 519051233, 32063749, 399512106, 18657264,
304939008, 125152, 0, 43187, 1593975296, 426, 0, 0, 0, 1090831360, 61464,
0, 35008512, 1263534080, 3221225482, 448011547, 0, 19095552, 0,
2684354560, 39256635, 74512, 494608384, 587202560, 1, 511901696, 655904,
26271744, 589305679, 953601, 381026304, 268510032, 798560755, 0,
16615424, 709951488, 0, 19935232, 128717, 3761029888, 190, 655936,
31150080, 4622, 0, 0, 0, 0, 0, 5101056, 0, 152039856, 18, 0, 1611794432,
657, 2034560, 24403968, 423624704, 1182448, 26017792, 220034623, 18,
548340111, 837360896, 17498808, 3119553, 49975296, 2386565111, 251755549,
3473408, 2046820367, 4028055297, 569311624, 251754497, 832700416,
2684450001, 272666929, 68646, 2399246848, 349639209, 0, 18976768,
273678336, 2399245853, 289, 3573635680, 20, 3264151935, 2685719312, 289,
3657433088, 18993172, 0, 11130112, 2784821248, 2030043136, 165,
131072000, 18, 0, 1326587328, 44, 2338334838, 1218050, 105381888, 84032,
0, 435163793, 3492565011, 4889, 2416002800, 290, 0, 0, 0, 922746880,
21418265, 4757, 2952790016, 311427398, 3539992576, 21438718, 73044, 0, 0,
0, 30556160, 452984832, 224, 604504064, 1043025, 377774080, 0, 1426944,
0, 3373262640, 21, 91226112, 1359749405, 500367920, 3288334336,
286806036, 867177666, 1426450, 348127232, 2499805184, 21831701,
2889880775, 2684354576, 4066, 3271557120, 3841, 917504000, 805306399,
4678, 1627389952, 252, 1695547392, 2952790047, 8083, 138112, 0,
2621440000, 1343645487, 110899100, 35455104, 18, 4305, 1611792640,
302385821, 0, 21655552, 1246762173, 2415919105, 304546164, 4144056880,
41, 630266065, 1180928, 0, 147328, 303284242, 1147213251, 1, 1761214464,
3641359313, 8, 0, 0, 0, 2701131776, 507, 1954545664, 1, 4279042610,
4127195136, 6, 0, 0, 360513536, 201326592, 285733030, 120749, 4026531840,
57618332, 1158330319, 501, 616630822, 18997531, 4242800640, 0, 0,
3950969708, 1468672, 318832640, 1811939328, 22, 3804239464, 2415919105,
449, 1795162112, 22, 4866, 0, 319094784, 1073488, 0, 2678191618,
251771649, 28442624, 101917327, 19, 2747337781, 3204559105, 278532291,
1098817, 41459712, 1082135296, 16, 0, 738351152, 516968716, 781231854, 0,
0, 76432, 3759820800, 1903234071, 17458186, 0, 0, 24436736, 715128832,
32739841, 0, 3691064016, 263811568, 423624704, 1344373010, 4451, 1139568,
19587072, 0, 2715268352, 2848985280, 235569920, 268, 713124666,
1073741825, 718, 2013265920, 51, 0, 0, 0, 4043309056, 33759250,
203433305, 18, 0, 1258291200, 23, 125201, 2417160704, 4507, 4110427360,
18, 4854, 1321984, 105185280, 81984, 455331840, 292552704, 3221225474,
815602467, 60560, 455319552, 0, 538112000, 158, 2885714240, 7,
2730491904, 2, 0, 0, 19636224, 0, 3489660928, 164102443, 3373998849,
19628201, 0, 0, 0, 1025183648, 380780288, 0, 3489660928, 1757937927,
1901905, 0, 429916160, 17, 0, 4076863488, 266608681, 569376768, 32394525,
0, 1909216, 0, 2533364553, 10, 694484992, 3404732672, 37879853,
2012346910, 3001610, 0, 2231490992, 302932011, 4941, 1308631552,
323486267, 84176, 0, 72298, 1265152, 323616768, 0, 21540864, 407905433,
2444381936, 328, 1677831104, 21561363, 0, 805306368, 2588, 3558713360,
525242655, 814753034, 816056065, 2786987980, 3760144208, 265113851,
983442, 0, 0, 0, 299184128, 407896064, 271224064, 470, 1459695744, 21,
557845557, 3758096411, 357761328, 73664, 0, 5465, 0, 0, 153008, 0,
2509370787, 21238558, 0, 2533359616, 264, 0, 0, 828571648, 1308622849,
3585, 917833, 234966016, 0, 49312, 0, 0, 1879048192, 383779258,
736105760, 20, 1905262592, 17081344, 0, 1392677952, 53563422, 0,
285879296, 6946, 0, 455225344, 584056832, 31093019, 0, 2499805184,
299343616, 0, 1593855232, 61442, 674496, 0, 41943040, 240, 0, 1964842336,
471, 69386, 30433536, 829227008, 1778384897, 320258353, 0, 0, 2971467776,
603979777, 39915532, 0, 2415919104, 7426, 0, 0, 2915041280, 2,
2802843648, 1224748208, 496099072, 1312826605, 2801409, 8454144, 15, 0,
983153, 4026531840, 4124050129, 1, 37072896, 2197815296, 1879048209,
3538099581, 67108865, 272211993, 3976268568, 1612956674, 584454124,
1250881, 12812288, 1018172085, 1296897, 313524224, 2063597568, 4694050,
390075337, 288452627, 829297431, 3356694257, 21815315, 1319108608,
2417215234, 829955426, 3323139985, 285626387, 74146, 0, 0, 1247872,
16109568, 0, 3158272, 3898540032, 1, 0, 194759, 268435456, 2761036867,
520093696, 3759439892, 120357, 24058880, 499384320, 60800, 0, 1023410176,
31, 313655296, 1495220080, 16, 128742, 2936051968, 4623, 73488,
493912064, 0, 1102084864, 2960720530, 1998260129, 453476784, 1389427959,
1322496, 618, 82368, 0, 400634237, 3237645331, 4202894103, 906019568,
3585, 332333449, 3096544, 0, 33564608, 500, 983464, 3241329408,
2801074665, 1026192, 487297024, 2431647744, 22, 0, 0, 35299328,
444596224, 10, 0, 402716176, 525357104, 0, 0, 416088121, 469834624, 281,
126594, 0, 257884160, 1930640, 0, 0, 30427904, 3642490880, 1, 49340416,
12599, 0, 0, 115632, 0, 27262976, 240, 0, 1821072, 320495616, 0, 0, 0,
2602506960, 396, 3090255002, 10, 0, 603979776, 36118546, 0, 0,
1804206080, 2165324097, 6734316, 1537313459, 2427117570, 26936007,
3488614481, 171, 0, 2294272, 0, 922786336, 277172388, 0, 2695136512,
6293, 0, 0, 1281403617, 536870913, 7531, 0, 28893184, 64147, 1040264192,
438964390, 0, 0, 3973125313, 3123714, 3658743808, 2466250753, 47546395,
975, 2701210368, 10, 3557845616, 166, 2057306112, 1, 0, 1128112, 0, 9818,
2684354560, 2631, 2196767120, 172462098, 7062, 806519040, 310772448,
3877465920, 360, 435200414, 3204534282, 832307619, 1308735632, 3841, 0,
3222439168, 21301831, 2148510207, 262750226, 890241024, 1879048192,
21045071, 1358954511, 3760116184, 355467264, 807737584, 23793716,
988812575, 44, 4118899536, 251686912, 701628416, 115168, 19832832, 12053,
2415919104, 302, 3892380848, 280231982, 1562382163, 0, 23134208,
2097807567, 296091668, 3878617443, 3489660958, 546046254, 655584,
19824640, 9077, 805922816, 316215753, 0, 0, 3534749696, 30, 20512768,
973078543, 3841, 1551897306, 10, 83492864, 1258291200, 290, 120384,
31027200, 0, 3724541952, 4027957266, 129044, 2684354560, 7442, 1025680,
0, 1691357912, 29, 123731968, 3037702128, 512454686, 918631100,
2444236042, 452395687, 1644167169, 50028794, 916455424, 1610612746,
4101505046, 2987013777, 44, 0, 805306368, 4007, 0, 494473216, 119053,
3788574464, 7440, 0, 0, 565186481, 1341699, 491913216, 1409944033, 15,
11366, 0, 0, 1326057920, 271, 0, 3489660928, 744, 1897009408, 530984978,
983918, 0, 0, 0, 503427072, 1809842176, 1208863, 3895329194, 1962934273,
274837522, 4726, 838549504, 7698, 1971104, 0, 4210032640, 1073741824,
867041783, 1, 525492224, 0, 538079232, 3897233880, 1, 6782976, 41831,
805306368, 2615, 2885681152, 53702661, 0, 2147483648, 4201710102,
1225406288, 492970234, 0, 836043264, 462953808, 3692012640, 38, 0,
1073741824, 151, 0, 0, 1330762996, 2178216477, 258085450, 4129116048,
488444372, 2399261948, 2983524881, 3573554511, 319922353, 262447135,
1279267433, 251675423, 0, 2147483648, 41771262, 1322374380, 2446649885,
297009571, 3994898192, 491712980, 3093303917, 536870913, 308809785,
1200880, 495964160, 4256169984, 1611820545, 308936950, 154000, 26144768,
3999268864, 2, 0, 0, 267935744, 0, 1375216896, 32051256, 1185841, 0,
747645916, 3489660929, 446699139, 1, 0, 3078684541, 31, 550371328, 72721,
3758350336, 751828992, 20146945, 0, 76928, 0, 65475, 3758096384,
439353644, 76961, 0, 2693860528, 555110658, 220, 2081633872, 255, 0, 0,
438501376, 1122000, 517009408, 0, 536870912, 4219079349, 3221225473,
267907122, 0, 1003264, 0, 0, 0, 4239392768, 28351490, 0, 2198840752,
262471948, 2778726400, 15, 0, 0, 34627584, 0, 251867648, 0, 2885681152,
18, 2780823552, 3237768470, 420, 0, 0, 121363, 268435456, 457186687,
3707764736, 464, 93809, 24014848, 820903936, 186475760, 9, 1938, 0, 0, 0,
0, 3860977190, 22, 0, 1500960, 9383936, 0, 0, 4187291648, 788529153, 42,
876609536, 268435472, 262, 285212672, 32763648, 0, 0, 151781376, 0, 0,
2475687936, 30, 563871744, 1, 0, 3944742912, 24016128, 1853627766, 1, 0,
3963687378, 808585216, 7471614, 15, 15998976, 12349, 2131456, 4292476928,
60208, 23011328, 3962568704, 3489660928, 2725, 2048112, 0, 0, 71680,
3979083776, 284170625, 7757875, 0, 3774858752, 473893522, 4244635648, 45,
0, 25988352, 0, 2214713456, 40996909, 182562989, 3249580827, 292952842,
1772192, 0, 983441, 1343744, 0, 140096, 0, 1888527070, 23641373, 0,
889192448, 4029514000, 3358523797, 2147483675, 2707882409, 469972048,
524194051, 2401239040, 1342177280, 61463, 1728053248, 15, 41205, 0, 0,
85632, 0, 41207, 4028422144, 2700349696, 4177526784, 285233312,
2775580672, 10, 355205120, 2516582400, 39, 4213178368, 1830400, 0, 0, 0,
2685532742, 0, 468451328, 193216, 0, 129201, 2685961216, 106, 3925868544,
27, 900855061, 19197706, 710868992, 940193248, 3522842, 0, 2415919104,
704712960, 2785686976, 492, 71898, 1902758144, 8035, 134217728, 168,
2215641088, 22, 0, 3053453312, 15, 225443840, 2952790043, 2605, 1200960,
0, 65292, 28367872, 256311296, 3625651632, 453874096, 2423259136,
1792030, 3503620340, 1156177, 0, 875560960, 2776579, 0, 0, 0, 74082, 0,
0, 1224797200, 501, 2195727780, 17, 613875712, 9488, 16379904, 789577728,
10, 140312576, 1, 0, 1568679459, 2983582493, 8127235, 2802002768,
378990752, 0, 0, 0, 703792, 0, 791676649, 1879678730, 134, 905969664,
6299926, 93044, 0, 510853120, 1924800, 378851328, 10955, 0, 830472192,
2130858401, 520327473, 1577136514, 537879325, 3588037982, 3741462257,
492691925, 414307817, 2715151105, 3588557414, 3877461569, 492724693, 0,
0, 0, 3875536896, 38191109, 0, 0, 0, 1032576, 0, 2154823680, 3759842846,
803, 2667577344, 171327652, 131072000, 4044673248, 7429, 0, 171319296,
128413, 4026531840, 518849341, 0, 0, 0, 3221225472, 5770, 4211081216,
169, 0, 1027328, 0, 536870912, 513089818, 2838495232, 622608, 0, 0, 0,
69952, 0, 717553664, 0, 0, 0, 0, 4131258368, 691729, 174149632, 0, 0, 0,
1057996096, 26517970, 2660356670, 2687594506, 3526958919, 2164260865, 6,
0, 30553856, 0, 84096, 0, 2997878784, 0, 0, 0, 0, 128220, 197120,
53149696, 0, 3758288896, 3132138756, 3758096399, 4513, 62320, 304500736,
12087, 279407360, 204210813, 123952, 0, 43496, 0, 0, 670032, 267804672,
64614, 16459776, 415825920, 1728053248, 10, 121234, 1610612736, 634,
4061115200, 2445317, 0, 2963337472, 4045, 3992977408, 160, 3242268475, 0,
313458688, 1143168, 0, 2747269120, 2, 0, 49248, 0, 0, 1879048192,
25825665, 49408, 0, 4184866816, 0, 8067, 1140857472, 306901256, 0, 0, 0,
4143972352, 9048228, 3513906391, 17, 4168092215, 302075393, 5, 13155,
3791113472, 2614, 3942781568, 171364355, 0, 0, 3, 754974720, 33, 0,
16764672, 554762240, 1946322368, 51, 2366636032, 1643121922, 266739458,
2417030257, 529035279, 0, 0, 0, 0, 0, 64758, 25842432, 0, 145536, 0,
1645224916, 31, 390266880, 1082656, 0, 0, 2684354560, 257298987, 1147744,
36036608, 2152827474, 22, 3614965760, 1, 0, 2266091541, 2666754, 0,
1962934272, 16462326, 0, 2952790016, 187826689, 1, 496848896, 128218, 0,
0, 0, 0, 1587654689, 1344901642, 652083444, 2332033024, 285159924,
2941324358, 2415919126, 2851930177, 2802846384, 171237422, 3249537024,
1003792, 771686400, 3156058240, 4251920, 1710269759, 268435458,
262668422, 1097984, 495718400, 0, 3490980096, 2612, 4211081216, 37728258,
0, 0, 0, 2034272, 0, 65179, 2206976, 3495821312, 1, 0, 190840832, 0, 0,
301989888, 37101853, 8489, 286659584, 24445301, 3657606657, 17,
166852198, 1, 2699362304, 2566978096, 278974736, 243282925, 10,
2768961536, 0, 516444160, 2130717719, 2715411201, 689, 1091312,
268312576, 42382, 2147483648, 650907731, 696256, 512401408, 895483904,
536870922, 4452, 1073935696, 520360432, 70265132, 2320159, 4875, 0,
52826112, 0, 268435456, 379, 0, 35602432, 897622242, 2684354570,
2699233845, 3556769792, 164, 103919714, 32285467, 0, 1713279792, 18,
3696236356, 28324097, 308352669, 2785029312, 453398820, 4704, 2147483648,
10559240, 0, 0, 4706, 0, 308609024, 0, 0, 0, 0, 0, 2751463424, 488337414,
0, 1106540288, 250, 118609648, 286368015, 1322262842, 1073741855,
166338305, 14992, 19390464, 0, 0, 0, 75664, 0, 662700032, 2415919105,
3611562438, 2902458369, 176558111, 664808433, 114433, 99155968, 75728, 0,
0, 0, 0, 2768377680, 9, 6690, 4026531840, 831130266, 2299168241,
10953009, 3911188480, 2, 230031360, 1476395008, 505, 1190139365,
32402442, 596246528, 1928192, 496730112, 882969883, 3221225490, 4231,
1909536, 24408064, 0, 2969756416, 2710, 0, 0, 504365056, 17867011,
84082688, 2868903936, 18, 4200599175, 0, 370278400, 487630529, 488,
2168574499, 16766218, 3900833792, 3439424673, 379355391, 2664431616,
1491722, 3631677440, 3590324225, 255, 129365, 1879048192, 2742, 0, 0,
4223598755, 15, 0, 150994944, 2, 911212544, 240, 31653888, 113536, 0,
928, 0, 0, 2501292912, 302989327, 0, 0, 795934720, 3422552064, 288,
3952082944, 0, 0, 0, 0, 2213609226, 4026531862, 4115, 0, 0, 128811, 0, 0,
0, 302440448, 0, 1345507072, 4260, 1962934272, 31162417, 4216399128, 2,
0, 2734686208, 16388143, 2658143272, 1610612758, 474, 2768240640, 1, 0,
4027589120, 497753905, 2953471424, 29, 0, 2952790016, 2792296467,
4076863488, 35553640, 1231028224, 10, 186515456, 1481680, 0, 0, 3322624,
0, 2618726624, 286076942, 120437, 836141824, 3597864984, 1912602625, 470,
3269553768, 824318208, 1853363942, 1695999985, 33288558, 3858852592,
3491694358, 1852249831, 402823073, 384176138, 0, 2559488, 0, 771751936,
259, 0, 1910119936, 4104716805, 1862270977, 287027219, 0, 417536, 0,
2449473536, 528359448, 66386, 16549120, 0, 0, 0, 3874497562, 2439932438,
14685926, 840361663, 384221196, 7793, 0, 0, 3573748672, 27095402, 67650,
2416939520, 2751, 142592, 30347264, 0, 0, 0, 1543503872, 47095841, 0, 0,
0, 1778593856, 471, 0, 0, 3657498624, 1, 28753920, 3948008993, 23777536,
105250816, 522019264, 12669398, 110593, 0, 0, 0, 380485632, 4053915153,
1909854992, 3591176443, 253583553, 377856470, 547477017, 2715163395,
291970401, 387801408, 492921302, 66660, 0, 0, 555467648, 304558131,
1619121673, 1084687901, 4121756410, 1, 0, 1982857216, 24109855,
204472320, 156752, 0, 2303732558, 268435458, 320805034, 220154256,
17854952, 0, 1343075584, 31854873, 0, 0, 0, 1793024, 0, 0, 19886080,
128200, 0, 0, 0, 42520576, 70839, 0, 0, 3038678032, 512286996, 348256663,
251740400, 20905984, 4278190095, 468, 0, 19212288, 613679104, 1,
495525888, 326119297, 805306608, 646, 0, 0, 0, 2147483648, 3897690753,
1375731713, 51904257, 11384, 1342177280, 4246543748, 3154116608, 22, 0,
0, 3611951104, 2768914833, 36253734, 12664, 2147483648, 824, 4194972784,
255, 2179989504, 797194, 0, 0, 0, 926, 18433024, 0, 0, 0, 878749725, 10,
3779985408, 668817, 0, 109051904, 2956040961, 300286472, 872464689,
271556971, 176231061, 3221225474, 4877, 520161360, 517026044, 65563,
3522764288, 2870018226, 1409447664, 37663194, 2462177829, 2684354589,
8098, 553648128, 168, 43794, 21290752, 2870280192, 131344, 528924672,
12973, 0, 0, 2466250752, 23593433, 779091968, 0, 0, 0, 0, 1691436258,
33161503, 3507945472, 1, 0, 19919, 16520192, 2864578560, 0, 38842368,
71115, 11186432, 0, 1331376, 0, 3304062976, 1, 0, 0, 465608704,
3538944000, 1909978881, 831135598, 0, 269021184, 983143, 268435456,
72029264, 1187856, 43012096, 0, 29118208, 4242997248, 1327455680, 264,
2209349632, 3489660950, 4253094991, 436367184, 7, 83886080, 32719874,
276430848, 49392, 521150464, 3141533696, 553557272, 685834862, 0, 0,
9106, 17255936, 0, 0, 176283648, 0, 67840, 0, 0, 0, 4056940544,
2952790032, 3, 0, 0, 891415839, 3221225482, 7905, 2685023504, 163, 41795,
10806528, 0, 4278878608, 530075649, 879755264, 3, 0, 50331648, 434,
893391219, 10551050, 2700804096, 1709183344, 284979217, 3048210432,
4026531871, 2700996630, 1900992, 0, 2887778304, 2426630431, 4227400093,
1124073473, 1892715, 2412773376, 2, 3453, 3875536896, 27214114, 0,
1879048192, 2290413589, 537024209, 12689670, 0, 788623872, 7828, 1929936,
0, 2734686208, 25858847, 3489988608, 2870095505, 264851470, 3291487812,
1015297, 0, 2040160, 0, 1709178880, 4043544577, 2290485835, 3825205249,
379621540, 2989611619, 11012352, 3638558720, 69969, 0, 9587, 2149191424,
203169652, 503316480, 3585, 0, 3456179456, 536744454, 520287024, 3585,
3343915553, 15, 0, 453055536, 413769217, 229638144, 17, 582680576, 49280,
9613312, 0, 2301440, 3648061440, 1879048193, 1020265, 0, 17772544, 0,
3573547008, 215, 3125805056, 254722, 3637968896, 1917777, 301907968, 0,
5105920, 36569088, 4059043360, 47, 983862, 3507558400, 4191427969,
3792727201, 367, 2170620339, 801034, 137756672, 0, 497459200, 3805282304,
1, 695, 2115946992, 270, 0, 10724864, 2745827328, 2768240640, 306876579,
3712087718, 3033088, 489488384, 1933569, 0, 242347169, 18, 0, 1933728, 0,
1761617379, 10725407, 1157365760, 3339773665, 292, 72736, 1879048192,
41287873, 973269679, 3843, 0, 0, 3154968576, 939582849, 468, 0,
2717260544, 1854013995, 3053453313, 500, 0, 32401408, 0, 753935376,
4028153893, 0, 10808320, 291635200, 452984832, 177836077, 373421598, 0,
0, 2231369728, 253, 0, 0, 0, 2484808800, 10408193, 71231, 1642155776,
232595168, 0, 0, 2743, 0, 596180992, 119502848, 168, 813694976, 646144,
561840128, 504927120, 494, 1818230784, 2165690890, 708706863, 1901088,
178774016, 128598, 0, 4118544384, 1610609, 269733888, 1989191379,
23826176, 0, 571575856, 271, 125106, 0, 192479232, 890260897, 379445418,
0, 2952790016, 553786759, 1, 176218112, 1167065088, 536870930, 4232, 0,
0, 479199232, 1, 0, 0, 81596416, 0, 2130867200, 2745368861, 4160749568,
226303746, 194663, 49833472, 4167630848, 3406463522, 5640665, 12869,
536870912, 578, 0, 0, 2233591919, 805306415, 4687, 3114304, 0,
2260831184, 31018543, 310575104, 3019929249, 271, 840957952, 0, 0,
106368, 10354688, 0, 318264832, 2345807748, 1276169281, 3, 68824,
2701971968, 12165, 0, 4029333504, 65464, 0, 0, 1331536, 0, 2090961224,
805306378, 336138167, 1577058305, 760, 0, 0, 406061056, 111120, 0,
1789919232, 3758096413, 406982862, 2181038080, 274, 0, 554296064,
4170911950, 536880322, 528842790, 696254464, 32972528, 4093116416, 1,
487034880, 0, 1902724352, 252975887, 1107296257, 289726477, 194639, 0, 0,
0, 797310976, 1930436233, 2830080, 4188209152, 590322290, 276083184,
3780311467, 49919489, 4189257728, 1006664098, 474, 133169152, 224,
716570624, 3892314112, 274, 4168089600, 905729, 149880832, 1045248, 0,
7614, 0, 787021824, 703488, 277921792, 0, 2150258944, 7727, 0, 0, 8960,
1342177280, 4147974130, 1, 288251904, 0, 805306368, 4082, 0, 0,
877658112, 2415919133, 815727332, 0, 453595136, 0, 2147483648,
2802786235, 0, 0, 1820371631, 3492726557, 26423191, 4211081231, 9,
459404928, 10991633, 0, 0, 0, 0, 0, 0, 2583691264, 260, 465567744,
2701147153, 76946828, 1082529, 520167424, 3875602234, 1, 153026560,
1904433, 33722368, 43572, 0, 225574912, 419430400, 51376139, 1544552448,
2426881024, 4082634676, 2933919937, 32510444, 1098907648, 0, 57933824,
1308622863, 4317197, 1090619741, 16755200, 1755906048, 50348753,
525794817, 128940, 234947840, 43581440, 419585503, 433, 0, 520321280,
272, 704660016, 498, 0, 3790632192, 3602128132, 170337, 412508160,
831389954, 19156497, 0, 3991939408, 412491815, 68255, 2684354560,
3544388134, 2971178545, 52924669, 0, 0, 0, 217067008, 168, 551550976,
1610612754, 61485, 3707764736, 3842, 71954, 0, 0, 0, 493580288, 70663,
705280, 0, 4177526784, 18, 4428, 3221225472, 61485, 0, 179576832,
19922944, 2684354590, 498, 1745956736, 48841200, 43812, 16643840,
36896768, 1093440, 52420608, 2540699648, 24, 0, 1185760, 385232896,
727711744, 1073741824, 617, 1906688, 0, 2358247424, 22, 473759744, 0, 0,
3534749696, 4026531855, 3993902354, 3573547009, 28, 792725981, 271401473,
2726629559, 2017424, 47439872, 2058361839, 3244925442, 11, 185472,
303165440, 0, 1243648, 0, 4244635648, 18, 2775583458, 806549533, 503,
1913744, 466112512, 71133, 20082688, 0, 4094726176, 265, 0, 0, 670695424,
93488, 294359040, 66728, 808192, 0, 1410486704, 4029362460, 2757754880,
3490979074, 8094, 2920277856, 18698745, 0, 268435456, 791, 2181038080, 1,
2296390274, 1610612765, 2723, 0, 287182848, 3824163892, 837302274,
4173337160, 3640655874, 305164542, 8160, 49856768, 0, 0, 0, 2884753841,
3405569, 0, 3116080, 486871040, 2358247424, 47, 587792384, 1, 0,
2316404902, 2247727, 6282, 571525264, 273191344, 2801795072, 2416875264,
61477, 3306211584, 43925547, 41202, 25782784, 0, 0, 797757440, 3842,
2704369408, 828769033, 1694655473, 305, 2300618260, 1358771472,
828518303, 2147483649, 488321330, 513880705, 1928888863, 12191, 0, 0,
751907532, 2704460307, 848953466, 2316511425, 47759617, 2172649472, 0,
852492288, 3459221761, 43700530, 281129227, 2712733979, 4208270096,
152768641, 16, 194699, 0, 861667328, 2402262976, 37790002, 0, 3760852224,
418324255, 3927808033, 761, 195041, 0, 0, 0, 378109952, 7886, 1710592,
437780480, 154115616, 798933486, 717232663, 3758096402, 582291872,
1060497, 0, 127478, 0, 437846016, 2499805184, 49, 0, 0, 4288806912,
2064880, 40914944, 2266047151, 47, 47775744, 15, 0, 3089104896,
569444353, 522198287, 3305111552, 797662978, 769849520, 268435696,
580194576, 2059137, 0, 1766979539, 1879048193, 4887, 1392508928, 43,
2719, 0, 4226744320, 0, 0, 1976630929, 1879048202, 46341986, 4076983583,
282, 0, 3993067264, 4166, 15739040, 0, 3990880256, 268435457, 4079, 0, 0,
0, 536870912, 812, 2466424000, 3843, 3651145939, 0, 449118208, 721420289,
305451259, 3404767466, 1, 2699755520, 3909091328, 31, 1293951625,
1342309392, 2699891153, 572330160, 527769600, 3473003898, 2953202690,
3581287767, 2015188817, 49156565, 1460786546, 836072477, 421403991,
1159550673, 492236830, 1843396608, 2952790016, 666, 1923152, 7925760,
1477455101, 836076573, 3581812056, 2149406673, 492302805, 3420456129,
2448706319, 51, 0, 0, 66748, 2828800, 3778215936, 1, 305373184, 0,
1075963136, 741416467, 1260262160, 13, 3066159410, 23726863, 0, 0,
504582144, 0, 251868416, 253755392, 669601, 14061568, 127965, 1879456256,
4100, 1062272, 529575936, 412164933, 32030474, 0, 0, 3760128, 410120496,
10, 795607040, 2080374784, 296529969, 1863319552, 1610612767, 7956,
3642692480, 521155065, 573, 2415919104, 713, 2036528, 0, 2912944128,
2684354577, 717, 1761671376, 290, 0, 0, 0, 2003808, 0, 42195, 31536640,
4233756672, 0, 497115136, 2387607552, 32944669, 552009728, 3221225472,
274051073, 9717, 0, 0, 0, 0, 3064010982, 31, 3613851648, 1494212433, 305,
72390, 3489660928, 7994, 1198272, 0, 127798, 1073741824, 4453, 0,
49958912, 125074, 31090432, 0, 0, 0, 0, 3240313600, 748359635,
2415919104, 33, 0, 2913536, 0, 1192464, 0, 83254, 18635776, 1161363456,
1, 0, 142735773, 16, 0, 0, 0, 0, 2433280, 0, 12096, 512995328, 272730118,
1858843, 0, 0, 0, 308345745, 10589456, 0, 1509949440, 499, 0, 0,
595722240, 975049009, 45, 0, 0, 0, 1193088, 465649664, 2908751618,
2983565840, 3583778137, 2652723665, 492433877, 1286606369, 3506271773,
830084854, 2518505809, 41882069, 983060, 553568000, 61441, 1677721600,
523382801, 0, 0, 0, 2701131776, 44, 1290797056, 0, 0, 0, 32, 0,
1613330432, 543, 1276170288, 506245621, 1485952392, 2983561757,
647372120, 1243437264, 492368339, 636485632, 10785538, 4038787072,
2248146945, 492335573, 1290797893, 18530333, 50921472, 2734686223, 44,
78154, 17963776, 826671104, 681697, 489943040, 3352375619, 1093747215,
826346115, 1075741969, 13, 296941791, 3251855901, 2850689019, 2017328, 0,
2533359616, 2734258479, 4238946199, 1076860704, 378679621, 2561671168,
1095056943, 588116011, 2533359616, 287445753, 194968, 2685583360, 12188,
738197504, 287338542, 0, 4027761152, 2997092608, 3305111553, 521453586,
3973122657, 31032321, 0, 2667577344, 18, 0, 0, 3912368128, 3172499681,
169, 41340, 1342177280, 20972145, 661329, 38985728, 0, 2147483648,
2314340961, 1, 3758333952, 100506, 0, 0, 0, 37548032, 2178983079,
2684354590, 2314207358, 1, 411787264, 12768, 1940992, 0, 0, 530665472,
1840250880, 17633053, 2853896192, 1646087040, 516386849, 3678483128,
1899148801, 850531115, 2937269073, 321585458, 1220616266, 1073741855,
690422179, 2046820352, 226402570, 2290158205, 22, 0, 0, 296488960, 0,
4026531840, 4607, 3390928928, 290, 0, 1113856, 3561947136, 1918209,
491053056, 3491877971, 2446610704, 3562472138, 1918337, 491085824,
2287009834, 47, 1966080, 170911, 0, 0, 251676160, 440532992, 2069824,
491507712, 3586171466, 17508879, 2722955264, 3254779904, 282, 0,
1610612736, 2722828236, 0, 0, 742470338, 288538643, 380572460,
3138595825, 321638706, 1178602961, 836002077, 148373951, 3305111552,
277524786, 0, 0, 0, 0, 265072640, 0, 137472, 273874944, 0, 0, 0, 0, 0,
193296, 0, 3100643280, 1, 322633728, 788529153, 488, 3059, 805306368,
50727582, 15, 524259328, 964694020, 2953253632, 84, 2130706432, 41279739,
69398, 0, 21889024, 486539265, 506, 2053184208, 1342177290, 4174, 205840,
302850048,
};
| 365,791 | 4,914 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/fcntlmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/calls/calls.h"
#include "libc/calls/ioctl.h"
#include "libc/calls/struct/flock.h"
#include "libc/errno.h"
#include "libc/sysv/consts/f.h"
#include "libc/sysv/consts/fd.h"
#include "libc/sysv/consts/lock.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/fileobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/pyconfig.h"
/* clang-format off */
PYTHON_PROVIDE("fcntl");
PYTHON_PROVIDE("fcntl.FD_CLOEXEC");
PYTHON_PROVIDE("fcntl.F_DUPFD");
PYTHON_PROVIDE("fcntl.F_DUPFD_CLOEXEC");
PYTHON_PROVIDE("fcntl.F_EXLCK");
PYTHON_PROVIDE("fcntl.F_FULLFSYNC");
PYTHON_PROVIDE("fcntl.F_GETFD");
PYTHON_PROVIDE("fcntl.F_GETFL");
PYTHON_PROVIDE("fcntl.F_GETLEASE");
PYTHON_PROVIDE("fcntl.F_GETLK");
PYTHON_PROVIDE("fcntl.F_GETLK64");
PYTHON_PROVIDE("fcntl.F_GETOWN");
PYTHON_PROVIDE("fcntl.F_GETSIG");
PYTHON_PROVIDE("fcntl.F_NOCACHE");
PYTHON_PROVIDE("fcntl.F_NOTIFY");
PYTHON_PROVIDE("fcntl.F_RDLCK");
PYTHON_PROVIDE("fcntl.F_SETFD");
PYTHON_PROVIDE("fcntl.F_SETFL");
PYTHON_PROVIDE("fcntl.F_SETLEASE");
PYTHON_PROVIDE("fcntl.F_SETLK");
PYTHON_PROVIDE("fcntl.F_SETLK64");
PYTHON_PROVIDE("fcntl.F_SETLKW");
PYTHON_PROVIDE("fcntl.F_SETLKW64");
PYTHON_PROVIDE("fcntl.F_SETOWN");
PYTHON_PROVIDE("fcntl.F_SETSIG");
PYTHON_PROVIDE("fcntl.F_SHLCK");
PYTHON_PROVIDE("fcntl.F_UNLCK");
PYTHON_PROVIDE("fcntl.F_WRLCK");
PYTHON_PROVIDE("fcntl.LOCK_EX");
PYTHON_PROVIDE("fcntl.LOCK_NB");
PYTHON_PROVIDE("fcntl.LOCK_SH");
PYTHON_PROVIDE("fcntl.LOCK_UN");
PYTHON_PROVIDE("fcntl.fcntl");
PYTHON_PROVIDE("fcntl.flock");
PYTHON_PROVIDE("fcntl.ioctl");
PYTHON_PROVIDE("fcntl.lockf");
PYTHON_PROVIDE("fcntl.lockf");
/* fcntl module */
/*[clinic input]
module fcntl
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=124b58387c158179]*/
static int
conv_descriptor(PyObject *object, int *target)
{
int fd = PyObject_AsFileDescriptor(object);
if (fd < 0)
return 0;
*target = fd;
return 1;
}
/* Must come after conv_descriptor definition. */
#include "third_party/python/Modules/clinic/fcntlmodule.inc"
/*[clinic input]
fcntl.fcntl
fd: object(type='int', converter='conv_descriptor')
cmd as code: int
arg: object(c_default='NULL') = 0
/
Perform the operation `cmd` on file descriptor fd.
The values used for `cmd` are operating system dependent, and are available
as constants in the fcntl module, using the same names as used in
the relevant C header files. The argument arg is optional, and
defaults to 0; it may be an int or a string. If arg is given as a string,
the return value of fcntl is a string of that length, containing the
resulting value put in the arg buffer by the operating system. The length
of the arg string is not allowed to exceed 1024 bytes. If the arg given
is an integer or if none is specified, the result value is an integer
corresponding to the return value of the fcntl call in the C code.
[clinic start generated code]*/
static PyObject *
fcntl_fcntl_impl(PyObject *module, int fd, int code, PyObject *arg)
/*[clinic end generated code: output=888fc93b51c295bd input=8cefbe59b29efbe2]*/
{
unsigned int int_arg = 0;
int ret;
char *str;
Py_ssize_t len;
char buf[1024];
int async_err = 0;
if (arg != NULL) {
int parse_result;
if (PyArg_Parse(arg, "s#", &str, &len)) {
if ((size_t)len > sizeof buf) {
PyErr_SetString(PyExc_ValueError,
"fcntl string arg too long");
return NULL;
}
memcpy(buf, str, len);
do {
Py_BEGIN_ALLOW_THREADS
ret = fcntl(fd, code, buf);
Py_END_ALLOW_THREADS
} while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
if (ret < 0) {
return !async_err ? PyErr_SetFromErrno(PyExc_IOError) : NULL;
}
return PyBytes_FromStringAndSize(buf, len);
}
PyErr_Clear();
parse_result = PyArg_Parse(arg,
"I;fcntl requires a file or file descriptor,"
" an integer and optionally a third integer or a string",
&int_arg);
if (!parse_result) {
return NULL;
}
}
do {
Py_BEGIN_ALLOW_THREADS
ret = fcntl(fd, code, (int)int_arg);
Py_END_ALLOW_THREADS
} while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
if (ret < 0) {
return !async_err ? PyErr_SetFromErrno(PyExc_IOError) : NULL;
}
return PyLong_FromLong((long)ret);
}
/*[clinic input]
fcntl.ioctl
fd: object(type='int', converter='conv_descriptor')
request as code: unsigned_int(bitwise=True)
arg as ob_arg: object(c_default='NULL') = 0
mutate_flag as mutate_arg: bool = True
/
Perform the operation `request` on file descriptor `fd`.
The values used for `request` are operating system dependent, and are available
as constants in the fcntl or termios library modules, using the same names as
used in the relevant C header files.
The argument `arg` is optional, and defaults to 0; it may be an int or a
buffer containing character data (most likely a string or an array).
If the argument is a mutable buffer (such as an array) and if the
mutate_flag argument (which is only allowed in this case) is true then the
buffer is (in effect) passed to the operating system and changes made by
the OS will be reflected in the contents of the buffer after the call has
returned. The return value is the integer returned by the ioctl system
call.
If the argument is a mutable buffer and the mutable_flag argument is false,
the behavior is as if a string had been passed.
If the argument is an immutable buffer (most likely a string) then a copy
of the buffer is passed to the operating system and the return value is a
string of the same length containing whatever the operating system put in
the buffer. The length of the arg buffer in this case is not allowed to
exceed 1024 bytes.
If the arg given is an integer or if none is specified, the result value is
an integer corresponding to the return value of the ioctl call in the C
code.
[clinic start generated code]*/
static PyObject *
fcntl_ioctl_impl(PyObject *module, int fd, unsigned int code,
PyObject *ob_arg, int mutate_arg)
/*[clinic end generated code: output=7f7f5840c65991be input=ede70c433cccbbb2]*/
{
#define IOCTL_BUFSZ 1024
/* We use the unsigned non-checked 'I' format for the 'code' parameter
because the system expects it to be a 32bit bit field value
regardless of it being passed as an int or unsigned long on
various platforms. See the termios.TIOCSWINSZ constant across
platforms for an example of this.
If any of the 64bit platforms ever decide to use more than 32bits
in their unsigned long ioctl codes this will break and need
special casing based on the platform being built on.
*/
int arg = 0;
int ret;
Py_buffer pstr;
char *str;
Py_ssize_t len;
char buf[IOCTL_BUFSZ+1]; /* argument plus NUL byte */
if (ob_arg != NULL) {
if (PyArg_Parse(ob_arg, "w*:ioctl", &pstr)) {
char *arg;
str = pstr.buf;
len = pstr.len;
if (mutate_arg) {
if (len <= IOCTL_BUFSZ) {
memcpy(buf, str, len);
buf[len] = '\0';
arg = buf;
}
else {
arg = str;
}
}
else {
if (len > IOCTL_BUFSZ) {
PyBuffer_Release(&pstr);
PyErr_SetString(PyExc_ValueError,
"ioctl string arg too long");
return NULL;
}
else {
memcpy(buf, str, len);
buf[len] = '\0';
arg = buf;
}
}
if (buf == arg) {
Py_BEGIN_ALLOW_THREADS /* think array.resize() */
ret = ioctl(fd, code, (void*)arg);
Py_END_ALLOW_THREADS
}
else {
ret = ioctl(fd, code, (void*)arg);
}
if (mutate_arg && (len <= IOCTL_BUFSZ)) {
memcpy(str, buf, len);
}
PyBuffer_Release(&pstr); /* No further access to str below this point */
if (ret < 0) {
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
if (mutate_arg) {
return PyLong_FromLong(ret);
}
else {
return PyBytes_FromStringAndSize(buf, len);
}
}
PyErr_Clear();
if (PyArg_Parse(ob_arg, "s*:ioctl", &pstr)) {
str = pstr.buf;
len = pstr.len;
if (len > IOCTL_BUFSZ) {
PyBuffer_Release(&pstr);
PyErr_SetString(PyExc_ValueError,
"ioctl string arg too long");
return NULL;
}
memcpy(buf, str, len);
buf[len] = '\0';
Py_BEGIN_ALLOW_THREADS
ret = ioctl(fd, code, buf);
Py_END_ALLOW_THREADS
if (ret < 0) {
PyBuffer_Release(&pstr);
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
PyBuffer_Release(&pstr);
return PyBytes_FromStringAndSize(buf, len);
}
PyErr_Clear();
if (!PyArg_Parse(ob_arg,
"i;ioctl requires a file or file descriptor,"
" an integer and optionally an integer or buffer argument",
&arg)) {
return NULL;
}
// Fall-through to outside the 'if' statement.
}
Py_BEGIN_ALLOW_THREADS
ret = -1; // ioctl(fd, code, (void*)arg);
Py_END_ALLOW_THREADS
if (ret < 0) {
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
return PyLong_FromLong((long)ret);
#undef IOCTL_BUFSZ
}
/*[clinic input]
fcntl.flock
fd: object(type='int', converter='conv_descriptor')
operation as code: int
/
Perform the lock operation `operation` on file descriptor `fd`.
See the Unix manual page for flock(2) for details (On some systems, this
function is emulated using fcntl()).
[clinic start generated code]*/
static PyObject *
fcntl_flock_impl(PyObject *module, int fd, int code)
/*[clinic end generated code: output=84059e2b37d2fc64 input=b70a0a41ca22a8a0]*/
{
int ret;
int async_err = 0;
#ifdef HAVE_FLOCK
do {
Py_BEGIN_ALLOW_THREADS
ret = flock(fd, code);
Py_END_ALLOW_THREADS
} while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
#else
{
struct flock l;
if (code == LOCK_UN)
l.l_type = F_UNLCK;
else if (code & LOCK_SH)
l.l_type = F_RDLCK;
else if (code & LOCK_EX)
l.l_type = F_WRLCK;
else {
PyErr_SetString(PyExc_ValueError,
"unrecognized flock argument");
return NULL;
}
l.l_whence = l.l_start = l.l_len = 0;
do {
Py_BEGIN_ALLOW_THREADS
ret = fcntl(fd, (code & LOCK_NB) ? F_SETLK : F_SETLKW, &l);
Py_END_ALLOW_THREADS
} while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
}
#endif /* HAVE_FLOCK */
if (ret < 0) {
return !async_err ? PyErr_SetFromErrno(PyExc_IOError) : NULL;
}
Py_RETURN_NONE;
}
/*[clinic input]
fcntl.lockf
fd: object(type='int', converter='conv_descriptor')
cmd as code: int
len as lenobj: object(c_default='NULL') = 0
start as startobj: object(c_default='NULL') = 0
whence: int = 0
/
A wrapper around the fcntl() locking calls.
`fd` is the file descriptor of the file to lock or unlock, and operation is one
of the following values:
LOCK_UN - unlock
LOCK_SH - acquire a shared lock
LOCK_EX - acquire an exclusive lock
When operation is LOCK_SH or LOCK_EX, it can also be bitwise ORed with
LOCK_NB to avoid blocking on lock acquisition. If LOCK_NB is used and the
lock cannot be acquired, an OSError will be raised and the exception will
have an errno attribute set to EACCES or EAGAIN (depending on the operating
system -- for portability, check for either value).
`len` is the number of bytes to lock, with the default meaning to lock to
EOF. `start` is the byte offset, relative to `whence`, to that the lock
starts. `whence` is as with fileobj.seek(), specifically:
0 - relative to the start of the file (SEEK_SET)
1 - relative to the current buffer position (SEEK_CUR)
2 - relative to the end of the file (SEEK_END)
[clinic start generated code]*/
static PyObject *
fcntl_lockf_impl(PyObject *module, int fd, int code, PyObject *lenobj,
PyObject *startobj, int whence)
/*[clinic end generated code: output=4985e7a172e7461a input=3a5dc01b04371f1a]*/
{
int ret;
int async_err = 0;
#ifndef LOCK_SH
#define LOCK_SH 1 /* shared lock */
#define LOCK_EX 2 /* exclusive lock */
#define LOCK_NB 4 /* don't block when locking */
#define LOCK_UN 8 /* unlock */
#endif /* LOCK_SH */
{
struct flock l;
if (code == LOCK_UN)
l.l_type = F_UNLCK;
else if (code & LOCK_SH)
l.l_type = F_RDLCK;
else if (code & LOCK_EX)
l.l_type = F_WRLCK;
else {
PyErr_SetString(PyExc_ValueError,
"unrecognized lockf argument");
return NULL;
}
l.l_start = l.l_len = 0;
if (startobj != NULL) {
#if !defined(HAVE_LARGEFILE_SUPPORT)
l.l_start = PyLong_AsLong(startobj);
#else
l.l_start = PyLong_Check(startobj) ?
PyLong_AsLongLong(startobj) :
PyLong_AsLong(startobj);
#endif
if (PyErr_Occurred())
return NULL;
}
if (lenobj != NULL) {
#if !defined(HAVE_LARGEFILE_SUPPORT)
l.l_len = PyLong_AsLong(lenobj);
#else
l.l_len = PyLong_Check(lenobj) ?
PyLong_AsLongLong(lenobj) :
PyLong_AsLong(lenobj);
#endif
if (PyErr_Occurred())
return NULL;
}
l.l_whence = whence;
do {
Py_BEGIN_ALLOW_THREADS
ret = fcntl(fd, (code & LOCK_NB) ? F_SETLK : F_SETLKW, &l);
Py_END_ALLOW_THREADS
} while (ret == -1 && errno == EINTR && !(async_err = PyErr_CheckSignals()));
}
if (ret < 0) {
return !async_err ? PyErr_SetFromErrno(PyExc_IOError) : NULL;
}
Py_RETURN_NONE;
}
/* List of functions */
static PyMethodDef fcntl_methods[] = {
FCNTL_FCNTL_METHODDEF
FCNTL_IOCTL_METHODDEF
FCNTL_FLOCK_METHODDEF
FCNTL_LOCKF_METHODDEF
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(module_doc,
"This module performs file control and I/O control on file \n\
descriptors. It is an interface to the fcntl() and ioctl() Unix\n\
routines. File descriptors can be obtained with the fileno() method of\n\
a file or socket object.");
/* Module initialisation */
static int
all_ins(PyObject* m)
{
if (PyModule_AddIntMacro(m, LOCK_SH)) return -1;
if (PyModule_AddIntMacro(m, LOCK_EX)) return -1;
if (PyModule_AddIntMacro(m, LOCK_NB)) return -1;
if (PyModule_AddIntMacro(m, LOCK_UN)) return -1;
/* GNU extensions, as of glibc 2.2.4 */
#ifdef LOCK_MAND
if (PyModule_AddIntMacro(m, LOCK_MAND)) return -1;
#endif
#ifdef LOCK_READ
if (PyModule_AddIntMacro(m, LOCK_READ)) return -1;
#endif
#ifdef LOCK_WRITE
if (PyModule_AddIntMacro(m, LOCK_WRITE)) return -1;
#endif
#ifdef LOCK_RW
if (PyModule_AddIntMacro(m, LOCK_RW)) return -1;
#endif
#ifdef F_DUPFD
if (PyModule_AddIntMacro(m, F_DUPFD)) return -1;
#endif
#ifdef F_DUPFD_CLOEXEC
if (PyModule_AddIntMacro(m, F_DUPFD_CLOEXEC)) return -1;
#endif
#ifdef F_GETFD
if (PyModule_AddIntMacro(m, F_GETFD)) return -1;
#endif
#ifdef F_SETFD
if (PyModule_AddIntMacro(m, F_SETFD)) return -1;
#endif
#ifdef F_GETFL
if (PyModule_AddIntMacro(m, F_GETFL)) return -1;
#endif
#ifdef F_SETFL
if (PyModule_AddIntMacro(m, F_SETFL)) return -1;
#endif
#ifdef F_GETLK
if (PyModule_AddIntMacro(m, F_GETLK)) return -1;
#endif
#ifdef F_SETLK
if (PyModule_AddIntMacro(m, F_SETLK)) return -1;
#endif
#ifdef F_SETLKW
if (PyModule_AddIntMacro(m, F_SETLKW)) return -1;
#endif
#ifdef F_RDLCK
if (PyModule_AddIntMacro(m, F_RDLCK)) return -1;
#endif
#ifdef F_WRLCK
if (PyModule_AddIntMacro(m, F_WRLCK)) return -1;
#endif
#ifdef F_UNLCK
if (PyModule_AddIntMacro(m, F_UNLCK)) return -1;
#endif
#ifdef F_GETOWN
if (F_GETOWN && PyModule_AddIntMacro(m, F_GETOWN)) return -1;
#endif
#ifdef F_SETOWN
if (F_SETOWN && PyModule_AddIntMacro(m, F_SETOWN)) return -1;
#endif
#ifdef F_GETSIG
if (F_GETSIG && PyModule_AddIntMacro(m, F_GETSIG)) return -1;
#endif
#ifdef F_SETSIG
if (F_SETSIG && PyModule_AddIntMacro(m, F_SETSIG)) return -1;
#endif
/* LFS constants */
#ifdef F_GETLK64
if (PyModule_AddIntMacro(m, F_GETLK64)) return -1;
#endif
#ifdef F_SETLK64
if (PyModule_AddIntMacro(m, F_SETLK64)) return -1;
#endif
#ifdef F_SETLKW64
if (PyModule_AddIntMacro(m, F_SETLKW64)) return -1;
#endif
/* GNU extensions, as of glibc 2.2.4. */
#ifdef FASYNC
if (PyModule_AddIntMacro(m, FASYNC)) return -1;
#endif
#ifdef F_SETLEASE
if (PyModule_AddIntMacro(m, F_SETLEASE)) return -1;
#endif
#ifdef F_GETLEASE
if (PyModule_AddIntMacro(m, F_GETLEASE)) return -1;
#endif
#ifdef F_NOTIFY
if (PyModule_AddIntMacro(m, F_NOTIFY)) return -1;
#endif
/* Old BSD flock(). */
#ifdef F_EXLCK
if (PyModule_AddIntMacro(m, F_EXLCK)) return -1;
#endif
#ifdef F_SHLCK
if (PyModule_AddIntMacro(m, F_SHLCK)) return -1;
#endif
/* OS X specifics */
#ifdef F_FULLFSYNC
if (F_FULLFSYNC && PyModule_AddIntMacro(m, F_FULLFSYNC)) return -1;
#endif
#ifdef F_NOCACHE
if (F_NOCACHE && PyModule_AddIntMacro(m, F_NOCACHE)) return -1;
#endif
/* For F_{GET|SET}FL */
#ifdef FD_CLOEXEC
if (PyModule_AddIntMacro(m, FD_CLOEXEC)) return -1;
#endif
/* For F_NOTIFY */
#ifdef DN_ACCESS
if (PyModule_AddIntMacro(m, DN_ACCESS)) return -1;
#endif
#ifdef DN_MODIFY
if (PyModule_AddIntMacro(m, DN_MODIFY)) return -1;
#endif
#ifdef DN_CREATE
if (PyModule_AddIntMacro(m, DN_CREATE)) return -1;
#endif
#ifdef DN_DELETE
if (PyModule_AddIntMacro(m, DN_DELETE)) return -1;
#endif
#ifdef DN_RENAME
if (PyModule_AddIntMacro(m, DN_RENAME)) return -1;
#endif
#ifdef DN_ATTRIB
if (PyModule_AddIntMacro(m, DN_ATTRIB)) return -1;
#endif
#ifdef DN_MULTISHOT
if (PyModule_AddIntMacro(m, DN_MULTISHOT)) return -1;
#endif
#ifdef HAVE_STROPTS_H
/* Unix 98 guarantees that these are in stropts.h. */
if (PyModule_AddIntMacro(m, I_PUSH)) return -1;
if (PyModule_AddIntMacro(m, I_POP)) return -1;
if (PyModule_AddIntMacro(m, I_LOOK)) return -1;
if (PyModule_AddIntMacro(m, I_FLUSH)) return -1;
if (PyModule_AddIntMacro(m, I_FLUSHBAND)) return -1;
if (PyModule_AddIntMacro(m, I_SETSIG)) return -1;
if (PyModule_AddIntMacro(m, I_GETSIG)) return -1;
if (PyModule_AddIntMacro(m, I_FIND)) return -1;
if (PyModule_AddIntMacro(m, I_PEEK)) return -1;
if (PyModule_AddIntMacro(m, I_SRDOPT)) return -1;
if (PyModule_AddIntMacro(m, I_GRDOPT)) return -1;
if (PyModule_AddIntMacro(m, I_NREAD)) return -1;
if (PyModule_AddIntMacro(m, I_FDINSERT)) return -1;
if (PyModule_AddIntMacro(m, I_STR)) return -1;
if (PyModule_AddIntMacro(m, I_SWROPT)) return -1;
#ifdef I_GWROPT
/* despite the comment above, old-ish glibcs miss a couple... */
if (PyModule_AddIntMacro(m, I_GWROPT)) return -1;
#endif
if (PyModule_AddIntMacro(m, I_SENDFD)) return -1;
if (PyModule_AddIntMacro(m, I_RECVFD)) return -1;
if (PyModule_AddIntMacro(m, I_LIST)) return -1;
if (PyModule_AddIntMacro(m, I_ATMARK)) return -1;
if (PyModule_AddIntMacro(m, I_CKBAND)) return -1;
if (PyModule_AddIntMacro(m, I_GETBAND)) return -1;
if (PyModule_AddIntMacro(m, I_CANPUT)) return -1;
if (PyModule_AddIntMacro(m, I_SETCLTIME)) return -1;
#ifdef I_GETCLTIME
if (PyModule_AddIntMacro(m, I_GETCLTIME)) return -1;
#endif
if (PyModule_AddIntMacro(m, I_LINK)) return -1;
if (PyModule_AddIntMacro(m, I_UNLINK)) return -1;
if (PyModule_AddIntMacro(m, I_PLINK)) return -1;
if (PyModule_AddIntMacro(m, I_PUNLINK)) return -1;
#endif
return 0;
}
static struct PyModuleDef fcntlmodule = {
PyModuleDef_HEAD_INIT,
"fcntl",
module_doc,
-1,
fcntl_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_fcntl(void)
{
PyObject *m;
/* Create the module and add the functions and documentation */
m = PyModule_Create(&fcntlmodule);
if (m == NULL)
return NULL;
/* Add some symbolic constants to the module */
if (all_ins(m) < 0)
return NULL;
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_fcntl = {
"fcntl",
PyInit_fcntl,
};
| 22,642 | 699 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/spwdmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/methodobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/moduleobject.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/clinic/spwdmodule.inc"
/* clang-format off */
PYTHON_PROVIDE("spwd");
PYTHON_PROVIDE("spwd.getspall");
PYTHON_PROVIDE("spwd.getspnam");
PYTHON_PROVIDE("spwd.struct_spwd");
/* UNIX shadow password file access module */
/* A lot of code has been taken from pwdmodule.c */
/* For info also see http://www.unixpapa.com/incnote/passwd.html */
/*[clinic input]
module spwd
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=c0b841b90a6a07ce]*/
PyDoc_STRVAR(spwd__doc__,
"This module provides access to the Unix shadow password database.\n\
It is available on various Unix versions.\n\
\n\
Shadow password database entries are reported as 9-tuples of type struct_spwd,\n\
containing the following items from the password database (see `<shadow.h>'):\n\
sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max, sp_warn, sp_inact, sp_expire, sp_flag.\n\
The sp_namp and sp_pwdp are strings, the rest are integers.\n\
An exception is raised if the entry asked for cannot be found.\n\
You have to be root to be able to use this module.");
#if defined(HAVE_GETSPNAM) || defined(HAVE_GETSPENT)
static PyStructSequence_Field struct_spwd_type_fields[] = {
{"sp_namp", PyDoc_STR("login name")},
{"sp_pwdp", PyDoc_STR("encrypted password")},
{"sp_lstchg", PyDoc_STR("date of last change")},
{"sp_min", PyDoc_STR("min #days between changes")},
{"sp_max", PyDoc_STR("max #days between changes")},
{"sp_warn", PyDoc_STR("#days before pw expires to warn user about it")},
{"sp_inact", PyDoc_STR("#days after pw expires until account is disabled")},
{"sp_expire", PyDoc_STR("#days since 1970-01-01 when account expires")},
{"sp_flag", PyDoc_STR("reserved")},
{"sp_nam", PyDoc_STR("login name; deprecated")}, /* Backward compatibility */
{"sp_pwd", PyDoc_STR("encrypted password; deprecated")}, /* Backward compatibility */
{0}
};
PyDoc_STRVAR(struct_spwd__doc__,
"spwd.struct_spwd: Results from getsp*() routines.\n\n\
This object may be accessed either as a 9-tuple of\n\
(sp_namp,sp_pwdp,sp_lstchg,sp_min,sp_max,sp_warn,sp_inact,sp_expire,sp_flag)\n\
or via the object attributes as named in the above tuple.");
static PyStructSequence_Desc struct_spwd_type_desc = {
"spwd.struct_spwd",
struct_spwd__doc__,
struct_spwd_type_fields,
9,
};
static int initialized;
static PyTypeObject StructSpwdType;
static void
sets(PyObject *v, int i, const char* val)
{
if (val) {
PyObject *o = PyUnicode_DecodeFSDefault(val);
PyStructSequence_SET_ITEM(v, i, o);
} else {
PyStructSequence_SET_ITEM(v, i, Py_None);
Py_INCREF(Py_None);
}
}
static PyObject *mkspent(struct spwd *p)
{
int setIndex = 0;
PyObject *v = PyStructSequence_New(&StructSpwdType);
if (v == NULL)
return NULL;
#define SETI(i,val) PyStructSequence_SET_ITEM(v, i, PyLong_FromLong((long) val))
#define SETS(i,val) sets(v, i, val)
SETS(setIndex++, p->sp_namp);
SETS(setIndex++, p->sp_pwdp);
SETI(setIndex++, p->sp_lstchg);
SETI(setIndex++, p->sp_min);
SETI(setIndex++, p->sp_max);
SETI(setIndex++, p->sp_warn);
SETI(setIndex++, p->sp_inact);
SETI(setIndex++, p->sp_expire);
SETI(setIndex++, p->sp_flag);
SETS(setIndex++, p->sp_namp); /* Backward compatibility for sp_nam */
SETS(setIndex++, p->sp_pwdp); /* Backward compatibility for sp_pwd */
#undef SETS
#undef SETI
if (PyErr_Occurred()) {
Py_DECREF(v);
return NULL;
}
return v;
}
#endif /* HAVE_GETSPNAM || HAVE_GETSPENT */
#ifdef HAVE_GETSPNAM
/*[clinic input]
spwd.getspnam
arg: unicode
/
Return the shadow password database entry for the given user name.
See `help(spwd)` for more on shadow password database entries.
[clinic start generated code]*/
static PyObject *
spwd_getspnam_impl(PyObject *module, PyObject *arg)
/*[clinic end generated code: output=701250cf57dc6ebe input=dd89429e6167a00f]*/
{
char *name;
struct spwd *p;
PyObject *bytes, *retval = NULL;
if ((bytes = PyUnicode_EncodeFSDefault(arg)) == NULL)
return NULL;
/* check for embedded null bytes */
if (PyBytes_AsStringAndSize(bytes, &name, NULL) == -1)
goto out;
if ((p = getspnam(name)) == NULL) {
if (errno != 0)
PyErr_SetFromErrno(PyExc_OSError);
else
PyErr_SetString(PyExc_KeyError, "getspnam(): name not found");
goto out;
}
retval = mkspent(p);
out:
Py_DECREF(bytes);
return retval;
}
#endif /* HAVE_GETSPNAM */
#ifdef HAVE_GETSPENT
/*[clinic input]
spwd.getspall
Return a list of all available shadow password database entries, in arbitrary order.
See `help(spwd)` for more on shadow password database entries.
[clinic start generated code]*/
static PyObject *
spwd_getspall_impl(PyObject *module)
/*[clinic end generated code: output=4fda298d6bf6d057 input=b2c84b7857d622bd]*/
{
PyObject *d;
struct spwd *p;
if ((d = PyList_New(0)) == NULL)
return NULL;
setspent();
while ((p = getspent()) != NULL) {
PyObject *v = mkspent(p);
if (v == NULL || PyList_Append(d, v) != 0) {
Py_XDECREF(v);
Py_DECREF(d);
endspent();
return NULL;
}
Py_DECREF(v);
}
endspent();
return d;
}
#endif /* HAVE_GETSPENT */
static PyMethodDef spwd_methods[] = {
#ifdef HAVE_GETSPNAM
SPWD_GETSPNAM_METHODDEF
#endif
#ifdef HAVE_GETSPENT
SPWD_GETSPALL_METHODDEF
#endif
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef spwdmodule = {
PyModuleDef_HEAD_INIT,
"spwd",
spwd__doc__,
-1,
spwd_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_spwd(void)
{
PyObject *m;
m=PyModule_Create(&spwdmodule);
if (m == NULL)
return NULL;
if (!initialized) {
if (PyStructSequence_InitType2(&StructSpwdType,
&struct_spwd_type_desc) < 0)
return NULL;
}
Py_INCREF((PyObject *) &StructSpwdType);
PyModule_AddObject(m, "struct_spwd", (PyObject *) &StructSpwdType);
initialized = 1;
return m;
}
| 7,286 | 238 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/xxsubtype.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/calls/weirdtypes.h"
#include "libc/time/time.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/listobject.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("xxsubtype");
PYTHON_PROVIDE("xxsubtype.bench");
PYTHON_PROVIDE("xxsubtype.spamdict");
PYTHON_PROVIDE("xxsubtype.spamlist");
PyDoc_STRVAR(xxsubtype__doc__,
"xxsubtype is an example module showing how to subtype builtin types from C.\n"
"test_descr.py in the standard test suite requires it in order to complete.\n"
"If you don't care about the examples, and don't intend to run the Python\n"
"test suite, you can recompile Python without Modules/xxsubtype.c.");
/* We link this module statically for convenience. If compiled as a shared
library instead, some compilers don't allow addresses of Python objects
defined in other libraries to be used in static initializers here. The
DEFERRED_ADDRESS macro is used to tag the slots where such addresses
appear; the module init function must fill in the tagged slots at runtime.
The argument is for documentation -- the macro ignores it.
*/
#define DEFERRED_ADDRESS(ADDR) 0
/* spamlist -- a list subtype */
typedef struct {
PyListObject list;
int state;
} spamlistobject;
static PyObject *
spamlist_getstate(spamlistobject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":getstate"))
return NULL;
return PyLong_FromLong(self->state);
}
static PyObject *
spamlist_setstate(spamlistobject *self, PyObject *args)
{
int state;
if (!PyArg_ParseTuple(args, "i:setstate", &state))
return NULL;
self->state = state;
Py_INCREF(Py_None);
return Py_None;
}
static PyObject *
spamlist_specialmeth(PyObject *self, PyObject *args, PyObject *kw)
{
PyObject *result = PyTuple_New(3);
if (result != NULL) {
if (self == NULL)
self = Py_None;
if (kw == NULL)
kw = Py_None;
Py_INCREF(self);
PyTuple_SET_ITEM(result, 0, self);
Py_INCREF(args);
PyTuple_SET_ITEM(result, 1, args);
Py_INCREF(kw);
PyTuple_SET_ITEM(result, 2, kw);
}
return result;
}
static PyMethodDef spamlist_methods[] = {
{"getstate", (PyCFunction)spamlist_getstate, METH_VARARGS,
PyDoc_STR("getstate() -> state")},
{"setstate", (PyCFunction)spamlist_setstate, METH_VARARGS,
PyDoc_STR("setstate(state)")},
/* These entries differ only in the flags; they are used by the tests
in test.test_descr. */
{"classmeth", (PyCFunction)spamlist_specialmeth,
METH_VARARGS | METH_KEYWORDS | METH_CLASS,
PyDoc_STR("classmeth(*args, **kw)")},
{"staticmeth", (PyCFunction)spamlist_specialmeth,
METH_VARARGS | METH_KEYWORDS | METH_STATIC,
PyDoc_STR("staticmeth(*args, **kw)")},
{NULL, NULL},
};
static int
spamlist_init(spamlistobject *self, PyObject *args, PyObject *kwds)
{
if (PyList_Type.tp_init((PyObject *)self, args, kwds) < 0)
return -1;
self->state = 0;
return 0;
}
static PyObject *
spamlist_state_get(spamlistobject *self, void *Py_UNUSED(ignored))
{
return PyLong_FromLong(self->state);
}
static PyGetSetDef spamlist_getsets[] = {
{"state", (getter)spamlist_state_get, NULL,
PyDoc_STR("an int variable for demonstration purposes")},
{0}
};
static PyTypeObject spamlist_type = {
PyVarObject_HEAD_INIT(DEFERRED_ADDRESS(&PyType_Type), 0)
"xxsubtype.spamlist",
sizeof(spamlistobject),
0,
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
spamlist_methods, /* tp_methods */
0, /* tp_members */
spamlist_getsets, /* tp_getset */
DEFERRED_ADDRESS(&PyList_Type), /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)spamlist_init, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
/* spamdict -- a dict subtype */
typedef struct {
PyDictObject dict;
int state;
} spamdictobject;
static PyObject *
spamdict_getstate(spamdictobject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, ":getstate"))
return NULL;
return PyLong_FromLong(self->state);
}
static PyObject *
spamdict_setstate(spamdictobject *self, PyObject *args)
{
int state;
if (!PyArg_ParseTuple(args, "i:setstate", &state))
return NULL;
self->state = state;
Py_INCREF(Py_None);
return Py_None;
}
static PyMethodDef spamdict_methods[] = {
{"getstate", (PyCFunction)spamdict_getstate, METH_VARARGS,
PyDoc_STR("getstate() -> state")},
{"setstate", (PyCFunction)spamdict_setstate, METH_VARARGS,
PyDoc_STR("setstate(state)")},
{NULL, NULL},
};
static int
spamdict_init(spamdictobject *self, PyObject *args, PyObject *kwds)
{
if (PyDict_Type.tp_init((PyObject *)self, args, kwds) < 0)
return -1;
self->state = 0;
return 0;
}
static PyMemberDef spamdict_members[] = {
{"state", T_INT, offsetof(spamdictobject, state), READONLY,
PyDoc_STR("an int variable for demonstration purposes")},
{0}
};
static PyTypeObject spamdict_type = {
PyVarObject_HEAD_INIT(DEFERRED_ADDRESS(&PyType_Type), 0)
"xxsubtype.spamdict",
sizeof(spamdictobject),
0,
0, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
0, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
spamdict_methods, /* tp_methods */
spamdict_members, /* tp_members */
0, /* tp_getset */
DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)spamdict_init, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
static PyObject *
spam_bench(PyObject *self, PyObject *args)
{
PyObject *obj, *name, *res;
int n = 1000;
time_t t0, t1;
if (!PyArg_ParseTuple(args, "OU|i", &obj, &name, &n))
return NULL;
t0 = clock();
while (--n >= 0) {
res = PyObject_GetAttr(obj, name);
if (res == NULL)
return NULL;
Py_DECREF(res);
}
t1 = clock();
return PyFloat_FromDouble((double)(t1-t0) / CLOCKS_PER_SEC);
}
static PyMethodDef xxsubtype_functions[] = {
{"bench", spam_bench, METH_VARARGS},
{NULL, NULL} /* sentinel */
};
static int
xxsubtype_exec(PyObject* m)
{
/* Fill in deferred data addresses. This must be done before
PyType_Ready() is called. Note that PyType_Ready() automatically
initializes the ob.ob_type field to &PyType_Type if it's NULL,
so it's not necessary to fill in ob_type first. */
spamdict_type.tp_base = &PyDict_Type;
if (PyType_Ready(&spamdict_type) < 0)
return -1;
spamlist_type.tp_base = &PyList_Type;
if (PyType_Ready(&spamlist_type) < 0)
return -1;
if (PyType_Ready(&spamlist_type) < 0)
return -1;
if (PyType_Ready(&spamdict_type) < 0)
return -1;
Py_INCREF(&spamlist_type);
if (PyModule_AddObject(m, "spamlist",
(PyObject *) &spamlist_type) < 0)
return -1;
Py_INCREF(&spamdict_type);
if (PyModule_AddObject(m, "spamdict",
(PyObject *) &spamdict_type) < 0)
return -1;
return 0;
}
static struct PyModuleDef_Slot xxsubtype_slots[] = {
{Py_mod_exec, xxsubtype_exec},
{0, NULL},
};
static struct PyModuleDef xxsubtypemodule = {
PyModuleDef_HEAD_INIT,
"xxsubtype",
xxsubtype__doc__,
0,
xxsubtype_functions,
xxsubtype_slots,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit_xxsubtype(void)
{
return PyModuleDef_Init(&xxsubtypemodule);
}
| 12,466 | 337 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_categorynames.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const char _PyUnicode_CategoryNames[31][3] = {
"Cn",
"Lu",
"Ll",
"Lt",
"Mn",
"Mc",
"Me",
"Nd",
"Nl",
"No",
"Zs",
"Zl",
"Zp",
"Cc",
"Cf",
"Cs",
"Co",
"Cn",
"Lm",
"Lo",
"Pc",
"Pd",
"Ps",
"Pe",
"Pi",
"Pf",
"Po",
"Sm",
"Sc",
"Sk",
"So",
};
| 550 | 39 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_isunifiedideograph.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* These ranges need to match makeunicodedata.py:cjk_ranges. */
int
_PyUnicode_IsUnifiedIdeograph(Py_UCS4 code)
{
return
(0x3400 <= code && code <= 0x4DB5) || /* CJK Ideograph Extension A */
(0x4E00 <= code && code <= 0x9FD5) || /* CJK Ideograph */
(0x20000 <= code && code <= 0x2A6D6) || /* CJK Ideograph Extension B */
(0x2A700 <= code && code <= 0x2B734) || /* CJK Ideograph Extension C */
(0x2B740 <= code && code <= 0x2B81D) || /* CJK Ideograph Extension D */
(0x2B820 <= code && code <= 0x2CEA1); /* CJK Ideograph Extension E */
}
| 1,487 | 22 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_functoolsmodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "libc/assert.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/classobject.h"
#include "third_party/python/Include/descrobject.h"
#include "third_party/python/Include/dictobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/tupleobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_functools");
PYTHON_PROVIDE("_functools._lru_cache_wrapper");
PYTHON_PROVIDE("_functools.cmp_to_key");
PYTHON_PROVIDE("_functools.partial");
PYTHON_PROVIDE("_functools.reduce");
/* _functools module written and maintained
by Hye-Shik Chang <[email protected]>
with adaptations by Raymond Hettinger <[email protected]>
Copyright (c) 2004, 2005, 2006 Python Software Foundation.
All rights reserved.
*/
/* partial object **********************************************************/
typedef struct {
PyObject_HEAD
PyObject *fn;
PyObject *args;
PyObject *kw;
PyObject *dict;
PyObject *weakreflist; /* List of weak references */
int use_fastcall;
} partialobject;
static PyTypeObject partial_type;
static PyObject *
partial_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *func, *pargs, *nargs, *pkw;
partialobject *pto;
if (PyTuple_GET_SIZE(args) < 1) {
PyErr_SetString(PyExc_TypeError,
"type 'partial' takes at least one argument");
return NULL;
}
pargs = pkw = NULL;
func = PyTuple_GET_ITEM(args, 0);
if (Py_TYPE(func) == &partial_type && type == &partial_type) {
partialobject *part = (partialobject *)func;
if (part->dict == NULL) {
pargs = part->args;
pkw = part->kw;
func = part->fn;
assert(PyTuple_Check(pargs));
assert(PyDict_Check(pkw));
}
}
if (!PyCallable_Check(func)) {
PyErr_SetString(PyExc_TypeError,
"the first argument must be callable");
return NULL;
}
/* create partialobject structure */
pto = (partialobject *)type->tp_alloc(type, 0);
if (pto == NULL)
return NULL;
pto->fn = func;
Py_INCREF(func);
nargs = PyTuple_GetSlice(args, 1, PY_SSIZE_T_MAX);
if (nargs == NULL) {
Py_DECREF(pto);
return NULL;
}
if (pargs == NULL || PyTuple_GET_SIZE(pargs) == 0) {
pto->args = nargs;
Py_INCREF(nargs);
}
else if (PyTuple_GET_SIZE(nargs) == 0) {
pto->args = pargs;
Py_INCREF(pargs);
}
else {
pto->args = PySequence_Concat(pargs, nargs);
if (pto->args == NULL) {
Py_DECREF(nargs);
Py_DECREF(pto);
return NULL;
}
assert(PyTuple_Check(pto->args));
}
Py_DECREF(nargs);
if (pkw == NULL || PyDict_Size(pkw) == 0) {
if (kw == NULL) {
pto->kw = PyDict_New();
}
else if (Py_REFCNT(kw) == 1) {
Py_INCREF(kw);
pto->kw = kw;
}
else {
pto->kw = PyDict_Copy(kw);
}
}
else {
pto->kw = PyDict_Copy(pkw);
if (kw != NULL && pto->kw != NULL) {
if (PyDict_Merge(pto->kw, kw, 1) != 0) {
Py_DECREF(pto);
return NULL;
}
}
}
if (pto->kw == NULL) {
Py_DECREF(pto);
return NULL;
}
pto->use_fastcall = _PyObject_HasFastCall(func);
return (PyObject *)pto;
}
static void
partial_dealloc(partialobject *pto)
{
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(pto);
if (pto->weakreflist != NULL)
PyObject_ClearWeakRefs((PyObject *) pto);
Py_XDECREF(pto->fn);
Py_XDECREF(pto->args);
Py_XDECREF(pto->kw);
Py_XDECREF(pto->dict);
Py_TYPE(pto)->tp_free(pto);
}
static PyObject *
partial_fastcall(partialobject *pto, PyObject **args, Py_ssize_t nargs,
PyObject *kwargs)
{
PyObject *small_stack[_PY_FASTCALL_SMALL_STACK];
PyObject *ret;
PyObject **stack, **stack_buf = NULL;
Py_ssize_t nargs2, pto_nargs;
pto_nargs = PyTuple_GET_SIZE(pto->args);
nargs2 = pto_nargs + nargs;
if (pto_nargs == 0) {
stack = args;
}
else if (nargs == 0) {
stack = &PyTuple_GET_ITEM(pto->args, 0);
}
else {
if (nargs2 <= (Py_ssize_t)Py_ARRAY_LENGTH(small_stack)) {
stack = small_stack;
}
else {
stack_buf = PyMem_Malloc(nargs2 * sizeof(PyObject *));
if (stack_buf == NULL) {
PyErr_NoMemory();
return NULL;
}
stack = stack_buf;
}
/* use borrowed references */
memcpy(stack,
&PyTuple_GET_ITEM(pto->args, 0),
pto_nargs * sizeof(PyObject*));
memcpy(&stack[pto_nargs],
args,
nargs * sizeof(PyObject*));
}
ret = _PyObject_FastCallDict(pto->fn, stack, nargs2, kwargs);
PyMem_Free(stack_buf);
return ret;
}
static PyObject *
partial_call_impl(partialobject *pto, PyObject *args, PyObject *kwargs)
{
PyObject *ret, *args2;
/* Note: tupleconcat() is optimized for empty tuples */
args2 = PySequence_Concat(pto->args, args);
if (args2 == NULL) {
return NULL;
}
assert(PyTuple_Check(args2));
ret = PyObject_Call(pto->fn, args2, kwargs);
Py_DECREF(args2);
return ret;
}
static PyObject *
partial_call(partialobject *pto, PyObject *args, PyObject *kwargs)
{
PyObject *kwargs2, *res;
assert (PyCallable_Check(pto->fn));
assert (PyTuple_Check(pto->args));
assert (PyDict_Check(pto->kw));
if (PyDict_GET_SIZE(pto->kw) == 0) {
/* kwargs can be NULL */
kwargs2 = kwargs;
Py_XINCREF(kwargs2);
}
else {
/* bpo-27840, bpo-29318: dictionary of keyword parameters must be
copied, because a function using "**kwargs" can modify the
dictionary. */
kwargs2 = PyDict_Copy(pto->kw);
if (kwargs2 == NULL) {
return NULL;
}
if (kwargs != NULL) {
if (PyDict_Merge(kwargs2, kwargs, 1) != 0) {
Py_DECREF(kwargs2);
return NULL;
}
}
}
if (pto->use_fastcall) {
res = partial_fastcall(pto,
&PyTuple_GET_ITEM(args, 0),
PyTuple_GET_SIZE(args),
kwargs2);
}
else {
res = partial_call_impl(pto, args, kwargs2);
}
Py_XDECREF(kwargs2);
return res;
}
static int
partial_traverse(partialobject *pto, visitproc visit, void *arg)
{
Py_VISIT(pto->fn);
Py_VISIT(pto->args);
Py_VISIT(pto->kw);
Py_VISIT(pto->dict);
return 0;
}
PyDoc_STRVAR(partial_doc,
"partial(func, *args, **keywords) - new function with partial application\n\
of the given arguments and keywords.\n");
#define OFF(x) offsetof(partialobject, x)
static PyMemberDef partial_memberlist[] = {
{"func", T_OBJECT, OFF(fn), READONLY,
"function object to use in future partial calls"},
{"args", T_OBJECT, OFF(args), READONLY,
"tuple of arguments to future partial calls"},
{"keywords", T_OBJECT, OFF(kw), READONLY,
"dictionary of keyword arguments to future partial calls"},
{NULL} /* Sentinel */
};
static PyGetSetDef partial_getsetlist[] = {
{"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict},
{NULL} /* Sentinel */
};
static PyObject *
partial_repr(partialobject *pto)
{
PyObject *result = NULL;
PyObject *arglist;
Py_ssize_t i, n;
PyObject *key, *value;
int status;
status = Py_ReprEnter((PyObject *)pto);
if (status != 0) {
if (status < 0)
return NULL;
return PyUnicode_FromString("...");
}
arglist = PyUnicode_FromString("");
if (arglist == NULL)
goto done;
/* Pack positional arguments */
assert (PyTuple_Check(pto->args));
n = PyTuple_GET_SIZE(pto->args);
for (i = 0; i < n; i++) {
Py_SETREF(arglist, PyUnicode_FromFormat("%U, %R", arglist,
PyTuple_GET_ITEM(pto->args, i)));
if (arglist == NULL)
goto done;
}
/* Pack keyword arguments */
assert (PyDict_Check(pto->kw));
for (i = 0; PyDict_Next(pto->kw, &i, &key, &value);) {
/* Prevent key.__str__ from deleting the value. */
Py_INCREF(value);
Py_SETREF(arglist, PyUnicode_FromFormat("%U, %S=%R", arglist,
key, value));
Py_DECREF(value);
if (arglist == NULL)
goto done;
}
result = PyUnicode_FromFormat("%s(%R%U)", Py_TYPE(pto)->tp_name,
pto->fn, arglist);
Py_DECREF(arglist);
done:
Py_ReprLeave((PyObject *)pto);
return result;
}
/* Pickle strategy:
__reduce__ by itself doesn't support getting kwargs in the unpickle
operation so we define a __setstate__ that replaces all the information
about the partial. If we only replaced part of it someone would use
it as a hook to do strange things.
*/
static PyObject *
partial_reduce(partialobject *pto, PyObject *unused)
{
return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
pto->args, pto->kw,
pto->dict ? pto->dict : Py_None);
}
static PyObject *
partial_setstate(partialobject *pto, PyObject *state)
{
PyObject *fn, *fnargs, *kw, *dict;
if (!PyTuple_Check(state) ||
!PyArg_ParseTuple(state, "OOOO", &fn, &fnargs, &kw, &dict) ||
!PyCallable_Check(fn) ||
!PyTuple_Check(fnargs) ||
(kw != Py_None && !PyDict_Check(kw)))
{
PyErr_SetString(PyExc_TypeError, "invalid partial state");
return NULL;
}
if(!PyTuple_CheckExact(fnargs))
fnargs = PySequence_Tuple(fnargs);
else
Py_INCREF(fnargs);
if (fnargs == NULL)
return NULL;
if (kw == Py_None)
kw = PyDict_New();
else if(!PyDict_CheckExact(kw))
kw = PyDict_Copy(kw);
else
Py_INCREF(kw);
if (kw == NULL) {
Py_DECREF(fnargs);
return NULL;
}
if (dict == Py_None)
dict = NULL;
else
Py_INCREF(dict);
Py_INCREF(fn);
pto->use_fastcall = _PyObject_HasFastCall(fn);
Py_SETREF(pto->fn, fn);
Py_SETREF(pto->args, fnargs);
Py_SETREF(pto->kw, kw);
Py_XSETREF(pto->dict, dict);
Py_RETURN_NONE;
}
static PyMethodDef partial_methods[] = {
{"__reduce__", (PyCFunction)partial_reduce, METH_NOARGS},
{"__setstate__", (PyCFunction)partial_setstate, METH_O},
{NULL, NULL} /* sentinel */
};
static PyTypeObject partial_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"functools.partial", /* tp_name */
sizeof(partialobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)partial_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
(reprfunc)partial_repr, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)partial_call, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
PyObject_GenericSetAttr, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC |
Py_TPFLAGS_BASETYPE, /* tp_flags */
partial_doc, /* tp_doc */
(traverseproc)partial_traverse, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
offsetof(partialobject, weakreflist), /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
partial_methods, /* tp_methods */
partial_memberlist, /* tp_members */
partial_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(partialobject, dict), /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
partial_new, /* tp_new */
PyObject_GC_Del, /* tp_free */
};
/* cmp_to_key ***************************************************************/
typedef struct {
PyObject_HEAD
PyObject *cmp;
PyObject *object;
} keyobject;
static void
keyobject_dealloc(keyobject *ko)
{
Py_DECREF(ko->cmp);
Py_XDECREF(ko->object);
PyObject_FREE(ko);
}
static int
keyobject_traverse(keyobject *ko, visitproc visit, void *arg)
{
Py_VISIT(ko->cmp);
if (ko->object)
Py_VISIT(ko->object);
return 0;
}
static int
keyobject_clear(keyobject *ko)
{
Py_CLEAR(ko->cmp);
if (ko->object)
Py_CLEAR(ko->object);
return 0;
}
static PyMemberDef keyobject_members[] = {
{"obj", T_OBJECT,
offsetof(keyobject, object), 0,
PyDoc_STR("Value wrapped by a key function.")},
{NULL}
};
static PyObject *
keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds);
static PyObject *
keyobject_richcompare(PyObject *ko, PyObject *other, int op);
static PyTypeObject keyobject_type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"functools.KeyWrapper", /* tp_name */
sizeof(keyobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)keyobject_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)keyobject_call, /* tp_call */
0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
0, /* tp_doc */
(traverseproc)keyobject_traverse, /* tp_traverse */
(inquiry)keyobject_clear, /* tp_clear */
keyobject_richcompare, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
0, /* tp_methods */
keyobject_members, /* tp_members */
0, /* tp_getset */
};
static PyObject *
keyobject_call(keyobject *ko, PyObject *args, PyObject *kwds)
{
PyObject *object;
keyobject *result;
static char *kwargs[] = {"obj", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:K", kwargs, &object))
return NULL;
result = PyObject_New(keyobject, &keyobject_type);
if (!result)
return NULL;
Py_INCREF(ko->cmp);
result->cmp = ko->cmp;
Py_INCREF(object);
result->object = object;
return (PyObject *)result;
}
static PyObject *
keyobject_richcompare(PyObject *ko, PyObject *other, int op)
{
PyObject *res;
PyObject *x;
PyObject *y;
PyObject *compare;
PyObject *answer;
static PyObject *zero;
PyObject* stack[2];
if (zero == NULL) {
zero = PyLong_FromLong(0);
if (!zero)
return NULL;
}
if (Py_TYPE(other) != &keyobject_type){
PyErr_Format(PyExc_TypeError, "other argument must be K instance");
return NULL;
}
compare = ((keyobject *) ko)->cmp;
assert(compare != NULL);
x = ((keyobject *) ko)->object;
y = ((keyobject *) other)->object;
if (!x || !y){
PyErr_Format(PyExc_AttributeError, "object");
return NULL;
}
/* Call the user's comparison function and translate the 3-way
* result into true or false (or error).
*/
stack[0] = x;
stack[1] = y;
res = _PyObject_FastCall(compare, stack, 2);
if (res == NULL) {
return NULL;
}
answer = PyObject_RichCompare(res, zero, op);
Py_DECREF(res);
return answer;
}
static PyObject *
functools_cmp_to_key(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject *cmp;
static char *kwargs[] = {"mycmp", NULL};
keyobject *object;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:cmp_to_key", kwargs, &cmp))
return NULL;
object = PyObject_New(keyobject, &keyobject_type);
if (!object)
return NULL;
Py_INCREF(cmp);
object->cmp = cmp;
object->object = NULL;
return (PyObject *)object;
}
PyDoc_STRVAR(functools_cmp_to_key_doc,
"Convert a cmp= function into a key= function.");
/* reduce (used to be a builtin) ********************************************/
static PyObject *
functools_reduce(PyObject *self, PyObject *args)
{
PyObject *seq, *func, *result = NULL, *it;
if (!PyArg_UnpackTuple(args, "reduce", 2, 3, &func, &seq, &result))
return NULL;
if (result != NULL)
Py_INCREF(result);
it = PyObject_GetIter(seq);
if (it == NULL) {
if (PyErr_ExceptionMatches(PyExc_TypeError))
PyErr_SetString(PyExc_TypeError,
"reduce() arg 2 must support iteration");
Py_XDECREF(result);
return NULL;
}
if ((args = PyTuple_New(2)) == NULL)
goto Fail;
for (;;) {
PyObject *op2;
if (args->ob_refcnt > 1) {
Py_DECREF(args);
if ((args = PyTuple_New(2)) == NULL)
goto Fail;
}
op2 = PyIter_Next(it);
if (op2 == NULL) {
if (PyErr_Occurred())
goto Fail;
break;
}
if (result == NULL)
result = op2;
else {
PyTuple_SetItem(args, 0, result);
PyTuple_SetItem(args, 1, op2);
if ((result = PyEval_CallObject(func, args)) == NULL)
goto Fail;
}
}
Py_DECREF(args);
if (result == NULL)
PyErr_SetString(PyExc_TypeError,
"reduce() of empty sequence with no initial value");
Py_DECREF(it);
return result;
Fail:
Py_XDECREF(args);
Py_XDECREF(result);
Py_DECREF(it);
return NULL;
}
PyDoc_STRVAR(functools_reduce_doc,
"reduce(function, sequence[, initial]) -> value\n\
\n\
Apply a function of two arguments cumulatively to the items of a sequence,\n\
from left to right, so as to reduce the sequence to a single value.\n\
For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates\n\
((((1+2)+3)+4)+5). If initial is present, it is placed before the items\n\
of the sequence in the calculation, and serves as a default when the\n\
sequence is empty.");
/* lru_cache object **********************************************************/
/* this object is used delimit args and keywords in the cache keys */
static PyObject *kwd_mark = NULL;
struct lru_list_elem;
struct lru_cache_object;
typedef struct lru_list_elem {
PyObject_HEAD
struct lru_list_elem *prev, *next; /* borrowed links */
Py_hash_t hash;
PyObject *key, *result;
} lru_list_elem;
static void
lru_list_elem_dealloc(lru_list_elem *link)
{
_PyObject_GC_UNTRACK(link);
Py_XDECREF(link->key);
Py_XDECREF(link->result);
PyObject_GC_Del(link);
}
static int
lru_list_elem_traverse(lru_list_elem *link, visitproc visit, void *arg)
{
Py_VISIT(link->key);
Py_VISIT(link->result);
return 0;
}
static int
lru_list_elem_clear(lru_list_elem *link)
{
Py_CLEAR(link->key);
Py_CLEAR(link->result);
return 0;
}
static PyTypeObject lru_list_elem_type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
"functools._lru_list_elem", /* tp_name */
sizeof(lru_list_elem), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)lru_list_elem_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
0, /* tp_doc */
(traverseproc)lru_list_elem_traverse, /* tp_traverse */
(inquiry)lru_list_elem_clear, /* tp_clear */
};
typedef PyObject *(*lru_cache_ternaryfunc)(struct lru_cache_object *, PyObject *, PyObject *);
typedef struct lru_cache_object {
lru_list_elem root; /* includes PyObject_HEAD */
Py_ssize_t maxsize;
PyObject *maxsize_O;
PyObject *func;
lru_cache_ternaryfunc wrapper;
PyObject *cache;
PyObject *cache_info_type;
Py_ssize_t misses, hits;
int typed;
PyObject *dict;
int full;
} lru_cache_object;
static PyTypeObject lru_cache_type;
static PyObject *
lru_cache_make_key(PyObject *args, PyObject *kwds, int typed)
{
PyObject *key, *keyword, *value;
Py_ssize_t key_size, pos, key_pos, kwds_size;
/* short path, key will match args anyway, which is a tuple */
if (!typed && !kwds) {
Py_INCREF(args);
return args;
}
kwds_size = kwds ? PyDict_Size(kwds) : 0;
assert(kwds_size >= 0);
key_size = PyTuple_GET_SIZE(args);
if (kwds_size)
key_size += kwds_size * 2 + 1;
if (typed)
key_size += PyTuple_GET_SIZE(args) + kwds_size;
key = PyTuple_New(key_size);
if (key == NULL)
return NULL;
key_pos = 0;
for (pos = 0; pos < PyTuple_GET_SIZE(args); ++pos) {
PyObject *item = PyTuple_GET_ITEM(args, pos);
Py_INCREF(item);
PyTuple_SET_ITEM(key, key_pos++, item);
}
if (kwds_size) {
Py_INCREF(kwd_mark);
PyTuple_SET_ITEM(key, key_pos++, kwd_mark);
for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) {
Py_INCREF(keyword);
PyTuple_SET_ITEM(key, key_pos++, keyword);
Py_INCREF(value);
PyTuple_SET_ITEM(key, key_pos++, value);
}
assert(key_pos == PyTuple_GET_SIZE(args) + kwds_size * 2 + 1);
}
if (typed) {
for (pos = 0; pos < PyTuple_GET_SIZE(args); ++pos) {
PyObject *item = (PyObject *)Py_TYPE(PyTuple_GET_ITEM(args, pos));
Py_INCREF(item);
PyTuple_SET_ITEM(key, key_pos++, item);
}
if (kwds_size) {
for (pos = 0; PyDict_Next(kwds, &pos, &keyword, &value);) {
PyObject *item = (PyObject *)Py_TYPE(value);
Py_INCREF(item);
PyTuple_SET_ITEM(key, key_pos++, item);
}
}
}
assert(key_pos == key_size);
return key;
}
static PyObject *
uncached_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
{
PyObject *result = PyObject_Call(self->func, args, kwds);
if (!result)
return NULL;
self->misses++;
return result;
}
static PyObject *
infinite_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
{
PyObject *result;
Py_hash_t hash;
PyObject *key = lru_cache_make_key(args, kwds, self->typed);
if (!key)
return NULL;
hash = PyObject_Hash(key);
if (hash == -1) {
Py_DECREF(key);
return NULL;
}
result = _PyDict_GetItem_KnownHash(self->cache, key, hash);
if (result) {
Py_INCREF(result);
self->hits++;
Py_DECREF(key);
return result;
}
if (PyErr_Occurred()) {
Py_DECREF(key);
return NULL;
}
result = PyObject_Call(self->func, args, kwds);
if (!result) {
Py_DECREF(key);
return NULL;
}
if (_PyDict_SetItem_KnownHash(self->cache, key, result, hash) < 0) {
Py_DECREF(result);
Py_DECREF(key);
return NULL;
}
Py_DECREF(key);
self->misses++;
return result;
}
static void
lru_cache_extricate_link(lru_list_elem *link)
{
link->prev->next = link->next;
link->next->prev = link->prev;
}
static void
lru_cache_append_link(lru_cache_object *self, lru_list_elem *link)
{
lru_list_elem *root = &self->root;
lru_list_elem *last = root->prev;
last->next = root->prev = link;
link->prev = last;
link->next = root;
}
static PyObject *
bounded_lru_cache_wrapper(lru_cache_object *self, PyObject *args, PyObject *kwds)
{
lru_list_elem *link;
PyObject *key, *result;
Py_hash_t hash;
key = lru_cache_make_key(args, kwds, self->typed);
if (!key)
return NULL;
hash = PyObject_Hash(key);
if (hash == -1) {
Py_DECREF(key);
return NULL;
}
link = (lru_list_elem *)_PyDict_GetItem_KnownHash(self->cache, key, hash);
if (link) {
lru_cache_extricate_link(link);
lru_cache_append_link(self, link);
self->hits++;
result = link->result;
Py_INCREF(result);
Py_DECREF(key);
return result;
}
if (PyErr_Occurred()) {
Py_DECREF(key);
return NULL;
}
result = PyObject_Call(self->func, args, kwds);
if (!result) {
Py_DECREF(key);
return NULL;
}
if (self->full && self->root.next != &self->root) {
/* Use the oldest item to store the new key and result. */
PyObject *oldkey, *oldresult, *popresult;
/* Extricate the oldest item. */
link = self->root.next;
lru_cache_extricate_link(link);
/* Remove it from the cache.
The cache dict holds one reference to the link,
and the linked list holds yet one reference to it. */
popresult = _PyDict_Pop_KnownHash(self->cache,
link->key, link->hash,
Py_None);
if (popresult == Py_None) {
/* Getting here means that this same key was added to the
cache while the lock was released. Since the link
update is already done, we need only return the
computed result and update the count of misses. */
Py_DECREF(popresult);
Py_DECREF(link);
Py_DECREF(key);
}
else if (popresult == NULL) {
lru_cache_append_link(self, link);
Py_DECREF(key);
Py_DECREF(result);
return NULL;
}
else {
Py_DECREF(popresult);
/* Keep a reference to the old key and old result to
prevent their ref counts from going to zero during the
update. That will prevent potentially arbitrary object
clean-up code (i.e. __del__) from running while we're
still adjusting the links. */
oldkey = link->key;
oldresult = link->result;
link->hash = hash;
link->key = key;
link->result = result;
if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link,
hash) < 0) {
Py_DECREF(link);
Py_DECREF(oldkey);
Py_DECREF(oldresult);
return NULL;
}
lru_cache_append_link(self, link);
Py_INCREF(result); /* for return */
Py_DECREF(oldkey);
Py_DECREF(oldresult);
}
} else {
/* Put result in a new link at the front of the queue. */
link = (lru_list_elem *)PyObject_GC_New(lru_list_elem,
&lru_list_elem_type);
if (link == NULL) {
Py_DECREF(key);
Py_DECREF(result);
return NULL;
}
link->hash = hash;
link->key = key;
link->result = result;
_PyObject_GC_TRACK(link);
if (_PyDict_SetItem_KnownHash(self->cache, key, (PyObject *)link,
hash) < 0) {
Py_DECREF(link);
return NULL;
}
lru_cache_append_link(self, link);
Py_INCREF(result); /* for return */
self->full = (PyDict_Size(self->cache) >= self->maxsize);
}
self->misses++;
return result;
}
static PyObject *
lru_cache_new(PyTypeObject *type, PyObject *args, PyObject *kw)
{
PyObject *func, *maxsize_O, *cache_info_type, *cachedict;
int typed;
lru_cache_object *obj;
Py_ssize_t maxsize;
PyObject *(*wrapper)(lru_cache_object *, PyObject *, PyObject *);
static char *keywords[] = {"user_function", "maxsize", "typed",
"cache_info_type", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kw, "OOpO:lru_cache", keywords,
&func, &maxsize_O, &typed,
&cache_info_type)) {
return NULL;
}
if (!PyCallable_Check(func)) {
PyErr_SetString(PyExc_TypeError,
"the first argument must be callable");
return NULL;
}
/* select the caching function, and make/inc maxsize_O */
if (maxsize_O == Py_None) {
wrapper = infinite_lru_cache_wrapper;
/* use this only to initialize lru_cache_object attribute maxsize */
maxsize = -1;
} else if (PyIndex_Check(maxsize_O)) {
maxsize = PyNumber_AsSsize_t(maxsize_O, PyExc_OverflowError);
if (maxsize == -1 && PyErr_Occurred())
return NULL;
if (maxsize == 0)
wrapper = uncached_lru_cache_wrapper;
else
wrapper = bounded_lru_cache_wrapper;
} else {
PyErr_SetString(PyExc_TypeError, "maxsize should be integer or None");
return NULL;
}
if (!(cachedict = PyDict_New()))
return NULL;
obj = (lru_cache_object *)type->tp_alloc(type, 0);
if (obj == NULL) {
Py_DECREF(cachedict);
return NULL;
}
obj->cache = cachedict;
obj->root.prev = &obj->root;
obj->root.next = &obj->root;
obj->maxsize = maxsize;
Py_INCREF(maxsize_O);
obj->maxsize_O = maxsize_O;
Py_INCREF(func);
obj->func = func;
obj->wrapper = wrapper;
obj->misses = obj->hits = 0;
obj->typed = typed;
Py_INCREF(cache_info_type);
obj->cache_info_type = cache_info_type;
return (PyObject *)obj;
}
static lru_list_elem *
lru_cache_unlink_list(lru_cache_object *self)
{
lru_list_elem *root = &self->root;
lru_list_elem *link = root->next;
if (link == root)
return NULL;
root->prev->next = NULL;
root->next = root->prev = root;
return link;
}
static void
lru_cache_clear_list(lru_list_elem *link)
{
while (link != NULL) {
lru_list_elem *next = link->next;
Py_DECREF(link);
link = next;
}
}
static void
lru_cache_dealloc(lru_cache_object *obj)
{
lru_list_elem *list;
/* bpo-31095: UnTrack is needed before calling any callbacks */
PyObject_GC_UnTrack(obj);
list = lru_cache_unlink_list(obj);
Py_XDECREF(obj->maxsize_O);
Py_XDECREF(obj->func);
Py_XDECREF(obj->cache);
Py_XDECREF(obj->dict);
Py_XDECREF(obj->cache_info_type);
lru_cache_clear_list(list);
Py_TYPE(obj)->tp_free(obj);
}
static PyObject *
lru_cache_call(lru_cache_object *self, PyObject *args, PyObject *kwds)
{
return self->wrapper(self, args, kwds);
}
static PyObject *
lru_cache_descr_get(PyObject *self, PyObject *obj, PyObject *type)
{
if (obj == Py_None || obj == NULL) {
Py_INCREF(self);
return self;
}
return PyMethod_New(self, obj);
}
static PyObject *
lru_cache_cache_info(lru_cache_object *self, PyObject *unused)
{
return PyObject_CallFunction(self->cache_info_type, "nnOn",
self->hits, self->misses, self->maxsize_O,
PyDict_Size(self->cache));
}
static PyObject *
lru_cache_cache_clear(lru_cache_object *self, PyObject *unused)
{
lru_list_elem *list = lru_cache_unlink_list(self);
self->hits = self->misses = 0;
self->full = 0;
PyDict_Clear(self->cache);
lru_cache_clear_list(list);
Py_RETURN_NONE;
}
static PyObject *
lru_cache_reduce(PyObject *self, PyObject *unused)
{
return PyObject_GetAttrString(self, "__qualname__");
}
static PyObject *
lru_cache_copy(PyObject *self, PyObject *unused)
{
Py_INCREF(self);
return self;
}
static PyObject *
lru_cache_deepcopy(PyObject *self, PyObject *unused)
{
Py_INCREF(self);
return self;
}
static int
lru_cache_tp_traverse(lru_cache_object *self, visitproc visit, void *arg)
{
lru_list_elem *link = self->root.next;
while (link != &self->root) {
lru_list_elem *next = link->next;
Py_VISIT(link);
link = next;
}
Py_VISIT(self->maxsize_O);
Py_VISIT(self->func);
Py_VISIT(self->cache);
Py_VISIT(self->cache_info_type);
Py_VISIT(self->dict);
return 0;
}
static int
lru_cache_tp_clear(lru_cache_object *self)
{
lru_list_elem *list = lru_cache_unlink_list(self);
Py_CLEAR(self->maxsize_O);
Py_CLEAR(self->func);
Py_CLEAR(self->cache);
Py_CLEAR(self->cache_info_type);
Py_CLEAR(self->dict);
lru_cache_clear_list(list);
return 0;
}
PyDoc_STRVAR(lru_cache_doc,
"Create a cached callable that wraps another function.\n\
\n\
user_function: the function being cached\n\
\n\
maxsize: 0 for no caching\n\
None for unlimited cache size\n\
n for a bounded cache\n\
\n\
typed: False cache f(3) and f(3.0) as identical calls\n\
True cache f(3) and f(3.0) as distinct calls\n\
\n\
cache_info_type: namedtuple class with the fields:\n\
hits misses currsize maxsize\n"
);
static PyMethodDef lru_cache_methods[] = {
{"cache_info", (PyCFunction)lru_cache_cache_info, METH_NOARGS},
{"cache_clear", (PyCFunction)lru_cache_cache_clear, METH_NOARGS},
{"__reduce__", (PyCFunction)lru_cache_reduce, METH_NOARGS},
{"__copy__", (PyCFunction)lru_cache_copy, METH_VARARGS},
{"__deepcopy__", (PyCFunction)lru_cache_deepcopy, METH_VARARGS},
{NULL}
};
static PyGetSetDef lru_cache_getsetlist[] = {
{"__dict__", PyObject_GenericGetDict, PyObject_GenericSetDict},
{NULL}
};
static PyTypeObject lru_cache_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"functools._lru_cache_wrapper", /* tp_name */
sizeof(lru_cache_object), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
(destructor)lru_cache_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
(ternaryfunc)lru_cache_call, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC,
/* tp_flags */
lru_cache_doc, /* tp_doc */
(traverseproc)lru_cache_tp_traverse,/* tp_traverse */
(inquiry)lru_cache_tp_clear, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
lru_cache_methods, /* tp_methods */
0, /* tp_members */
lru_cache_getsetlist, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
lru_cache_descr_get, /* tp_descr_get */
0, /* tp_descr_set */
offsetof(lru_cache_object, dict), /* tp_dictoffset */
0, /* tp_init */
0, /* tp_alloc */
lru_cache_new, /* tp_new */
};
/* module level code ********************************************************/
PyDoc_STRVAR(module_doc,
"Tools that operate on functions.");
static PyMethodDef module_methods[] = {
{"reduce", functools_reduce, METH_VARARGS, functools_reduce_doc},
{"cmp_to_key", (PyCFunction)functools_cmp_to_key,
METH_VARARGS | METH_KEYWORDS, functools_cmp_to_key_doc},
{NULL, NULL} /* sentinel */
};
static void
module_free(void *m)
{
Py_CLEAR(kwd_mark);
}
static struct PyModuleDef _functoolsmodule = {
PyModuleDef_HEAD_INIT,
"_functools",
module_doc,
-1,
module_methods,
NULL,
NULL,
NULL,
module_free,
};
PyMODINIT_FUNC
PyInit__functools(void)
{
int i;
PyObject *m;
char *name;
PyTypeObject *typelist[] = {
&partial_type,
&lru_cache_type,
NULL
};
m = PyModule_Create(&_functoolsmodule);
if (m == NULL)
return NULL;
kwd_mark = PyObject_CallObject((PyObject *)&PyBaseObject_Type, NULL);
if (!kwd_mark) {
Py_DECREF(m);
return NULL;
}
for (i=0 ; typelist[i] != NULL ; i++) {
if (PyType_Ready(typelist[i]) < 0) {
Py_DECREF(m);
return NULL;
}
name = strchr(typelist[i]->tp_name, '.');
assert (name != NULL);
Py_INCREF(typelist[i]);
PyModule_AddObject(m, name+1, (PyObject *)typelist[i]);
}
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__functools = {
"_functools",
PyInit__functools,
};
| 41,210 | 1,356 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "libc/fmt/fmt.h"
#include "libc/intrin/bits.h"
#include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Include/floatobject.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/longobject.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/objimpl.h"
#include "third_party/python/Include/pycapsule.h"
#include "third_party/python/Include/pyctype.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/ucnhash.h"
#include "third_party/python/Include/yoink.h"
#include "third_party/python/Modules/unicodedata.h"
#include "third_party/python/Modules/unicodedata_unidata.h"
/* clang-format off */
PYTHON_PROVIDE("unicodedata");
PYTHON_PROVIDE("unicodedata.UCD");
PYTHON_PROVIDE("unicodedata.bidirectional");
PYTHON_PROVIDE("unicodedata.category");
PYTHON_PROVIDE("unicodedata.combining");
PYTHON_PROVIDE("unicodedata.decimal");
PYTHON_PROVIDE("unicodedata.decomposition");
PYTHON_PROVIDE("unicodedata.digit");
PYTHON_PROVIDE("unicodedata.east_asian_width");
PYTHON_PROVIDE("unicodedata.lookup");
PYTHON_PROVIDE("unicodedata.mirrored");
PYTHON_PROVIDE("unicodedata.name");
PYTHON_PROVIDE("unicodedata.normalize");
PYTHON_PROVIDE("unicodedata.numeric");
PYTHON_PROVIDE("unicodedata.ucd_3_2_0");
PYTHON_PROVIDE("unicodedata.ucnhash_CAPI");
PYTHON_PROVIDE("unicodedata.unidata_version");
/* ------------------------------------------------------------------------
unicodedata -- Provides access to the Unicode database.
Data was extracted from the UnicodeData.txt file.
The current version number is reported in the unidata_version constant.
Written by Marc-Andre Lemburg ([email protected]).
Modified for Python 2.0 by Fredrik Lundh ([email protected])
Modified by Martin v. Löwis ([email protected])
Copyright (c) Corporation for National Research Initiatives.
------------------------------------------------------------------------ */
/*[clinic input]
module unicodedata
class unicodedata.UCD 'PreviousDBVersion *' '&UCD_Type'
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=6dac153082d150bc]*/
#include "third_party/python/Modules/clinic/unicodedata.inc"
/* ------------- Previous-version API ------------------------------------- */
static PyMemberDef DB_members[] = {
{"unidata_version", T_STRING, offsetof(PreviousDBVersion, name), READONLY},
{0}
};
static PyObject *
new_previous_version(const char *name,
const _PyUnicode_ChangeRecord* (*getrecord)(Py_UCS4),
Py_UCS4 (*normalization)(Py_UCS4))
{
PreviousDBVersion *self;
self = PyObject_New(PreviousDBVersion, &UCD_Type);
if (self == NULL)
return NULL;
self->name = name;
self->getrecord = getrecord;
self->normalization = normalization;
return (PyObject*)self;
}
/* --- Module API --------------------------------------------------------- */
/*[clinic input]
unicodedata.UCD.decimal
self: self
chr: int(accept={str})
default: object=NULL
/
Converts a Unicode character into its equivalent decimal value.
Returns the decimal value assigned to the character chr as integer.
If no such value is defined, default is returned, or, if not given,
ValueError is raised.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_decimal_impl(PyObject *self, int chr,
PyObject *default_value)
/*[clinic end generated code: output=be23376e1a185231 input=933f8107993f23d0]*/
{
int have_old = 0;
long rc;
Py_UCS4 c = (Py_UCS4)chr;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0) {
/* unassigned */
have_old = 1;
rc = -1;
}
else if (old->decimal_changed != 0xFF) {
have_old = 1;
rc = old->decimal_changed;
}
}
if (!have_old)
rc = Py_UNICODE_TODECIMAL(c);
if (rc < 0) {
if (default_value == NULL) {
PyErr_SetString(PyExc_ValueError,
"not a decimal");
return NULL;
}
else {
Py_INCREF(default_value);
return default_value;
}
}
return PyLong_FromLong(rc);
}
/*[clinic input]
unicodedata.UCD.digit
self: self
chr: int(accept={str})
default: object=NULL
/
Converts a Unicode character into its equivalent digit value.
Returns the digit value assigned to the character chr as integer.
If no such value is defined, default is returned, or, if not given,
ValueError is raised.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_digit_impl(PyObject *self, int chr, PyObject *default_value)
/*[clinic end generated code: output=96e18c950171fd2f input=e27d6e4565cd29f2]*/
{
long rc;
Py_UCS4 c = (Py_UCS4)chr;
rc = Py_UNICODE_TODIGIT(c);
if (rc < 0) {
if (default_value == NULL) {
PyErr_SetString(PyExc_ValueError, "not a digit");
return NULL;
}
else {
Py_INCREF(default_value);
return default_value;
}
}
return PyLong_FromLong(rc);
}
/*[clinic input]
unicodedata.UCD.numeric
self: self
chr: int(accept={str})
default: object=NULL
/
Converts a Unicode character into its equivalent numeric value.
Returns the numeric value assigned to the character chr as float.
If no such value is defined, default is returned, or, if not given,
ValueError is raised.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_numeric_impl(PyObject *self, int chr,
PyObject *default_value)
/*[clinic end generated code: output=53ce281fe85b10c4 input=fdf5871a5542893c]*/
{
int have_old = 0;
double rc;
Py_UCS4 c = (Py_UCS4)chr;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0) {
/* unassigned */
have_old = 1;
rc = -1.0;
}
else if (old->decimal_changed != 0xFF) {
have_old = 1;
rc = old->decimal_changed;
}
}
if (!have_old)
rc = Py_UNICODE_TONUMERIC(c);
if (rc == -1.0) {
if (default_value == NULL) {
PyErr_SetString(PyExc_ValueError, "not a numeric character");
return NULL;
}
else {
Py_INCREF(default_value);
return default_value;
}
}
return PyFloat_FromDouble(rc);
}
/*[clinic input]
unicodedata.UCD.category
self: self
chr: int(accept={str})
/
Returns the general category assigned to the character chr as string.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_category_impl(PyObject *self, int chr)
/*[clinic end generated code: output=8571539ee2e6783a input=27d6f3d85050bc06]*/
{
int index;
Py_UCS4 c = (Py_UCS4)chr;
index = (int) _PyUnicode_GetRecord(c)->category;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed != 0xFF)
index = old->category_changed;
}
return PyUnicode_FromString(_PyUnicode_CategoryNames[index]);
}
/*[clinic input]
unicodedata.UCD.bidirectional
self: self
chr: int(accept={str})
/
Returns the bidirectional class assigned to the character chr as string.
If no such value is defined, an empty string is returned.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_bidirectional_impl(PyObject *self, int chr)
/*[clinic end generated code: output=d36310ce2039bb92 input=b3d8f42cebfcf475]*/
{
int index;
Py_UCS4 c = (Py_UCS4)chr;
index = (int) _PyUnicode_GetRecord(c)->bidirectional;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0)
index = 0; /* unassigned */
else if (old->bidir_changed != 0xFF)
index = old->bidir_changed;
}
return PyUnicode_FromString(_PyUnicode_BidirectionalNames[index]);
}
/*[clinic input]
unicodedata.UCD.combining -> int
self: self
chr: int(accept={str})
/
Returns the canonical combining class assigned to the character chr as integer.
Returns 0 if no combining class is defined.
[clinic start generated code]*/
static int
unicodedata_UCD_combining_impl(PyObject *self, int chr)
/*[clinic end generated code: output=cad056d0cb6a5920 input=9f2d6b2a95d0a22a]*/
{
int index;
Py_UCS4 c = (Py_UCS4)chr;
index = (int) _PyUnicode_GetRecord(c)->combining;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0)
index = 0; /* unassigned */
}
return index;
}
/*[clinic input]
unicodedata.UCD.mirrored -> int
self: self
chr: int(accept={str})
/
Returns the mirrored property assigned to the character chr as integer.
Returns 1 if the character has been identified as a "mirrored"
character in bidirectional text, 0 otherwise.
[clinic start generated code]*/
static int
unicodedata_UCD_mirrored_impl(PyObject *self, int chr)
/*[clinic end generated code: output=2532dbf8121b50e6 input=5dd400d351ae6f3b]*/
{
int index;
Py_UCS4 c = (Py_UCS4)chr;
index = (int) _PyUnicode_GetRecord(c)->mirrored;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0)
index = 0; /* unassigned */
else if (old->mirrored_changed != 0xFF)
index = old->mirrored_changed;
}
return index;
}
/*[clinic input]
unicodedata.UCD.east_asian_width
self: self
chr: int(accept={str})
/
Returns the east asian width assigned to the character chr as string.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_east_asian_width_impl(PyObject *self, int chr)
/*[clinic end generated code: output=484e8537d9ee8197 input=c4854798aab026e0]*/
{
int index;
Py_UCS4 c = (Py_UCS4)chr;
index = (int) _PyUnicode_GetRecord(c)->east_asian_width;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0)
index = 0; /* unassigned */
else if (old->east_asian_width_changed != 0xFF)
index = old->east_asian_width_changed;
}
return PyUnicode_FromString(_PyUnicode_EastAsianWidthNames[index]);
}
/*[clinic input]
unicodedata.UCD.decomposition
self: self
chr: int(accept={str})
/
Returns the character decomposition mapping assigned to the character chr as string.
An empty string is returned in case no such mapping is defined.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_decomposition_impl(PyObject *self, int chr)
/*[clinic end generated code: output=7d699f3ec7565d27 input=e4c12459ad68507b]*/
{
char decomp[256];
int code, index, count;
size_t i;
unsigned int prefix_index;
Py_UCS4 c = (Py_UCS4)chr;
code = (int)c;
if (self && UCD_Check(self)) {
const _PyUnicode_ChangeRecord *old = get_old_record(self, c);
if (old->category_changed == 0)
return PyUnicode_FromString(""); /* unassigned */
}
if (code < 0 || code >= 0x110000) {
index = 0;
} else {
index = _PyUnicode_DecompIndex1[(code>>_PyUnicode_DecompShift)];
index = _PyUnicode_DecompIndex2[(index<<_PyUnicode_DecompShift)+
(code&((1<<_PyUnicode_DecompShift)-1))];
}
/* high byte is number of hex bytes (usually one or two), low byte
is prefix code (from*/
count = _bextra(_PyUnicode_Decomp, index, _PyUnicode_DecompBits) >> 8;
/* XXX: could allocate the PyString up front instead
(strlen(prefix) + 5 * count + 1 bytes) */
/* Based on how index is calculated above and _PyUnicode_Decomp is
generated from Tools/unicode/makeunicodedata.py, it should not be
possible to overflow _PyUnicode_DecompPrefix. */
prefix_index = _bextra(_PyUnicode_Decomp, index, _PyUnicode_DecompBits) & 255;
assert(prefix_index < Py_ARRAY_LENGTH(_PyUnicode_DecompPrefix));
/* copy prefix */
i = strlen(_PyUnicode_DecompPrefix[prefix_index]);
memcpy(decomp, _PyUnicode_DecompPrefix[prefix_index], i);
while (count-- > 0) {
if (i)
decomp[i++] = ' ';
assert(i < sizeof(decomp));
PyOS_snprintf(decomp + i, sizeof(decomp) - i, "%04X",
_bextra(_PyUnicode_Decomp, ++index,
_PyUnicode_DecompBits));
i += strlen(decomp + i);
}
return PyUnicode_FromStringAndSize(decomp, i);
}
/*[clinic input]
unicodedata.UCD.normalize
self: self
form: str
unistr as input: object(subclass_of='&PyUnicode_Type')
/
Return the normal form 'form' for the Unicode string unistr.
Valid values for form are 'NFC', 'NFKC', 'NFD', and 'NFKD'.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_normalize_impl(PyObject *self, const char *form,
PyObject *input)
/*[clinic end generated code: output=62d1f8870027efdc input=cd092e631cf11883]*/
{
if (PyUnicode_READY(input) == -1)
return NULL;
if (PyUnicode_GET_LENGTH(input) == 0) {
/* Special case empty input strings, since resizing
them later would cause internal errors. */
Py_INCREF(input);
return input;
}
if (strcmp(form, "NFC") == 0) {
if (_PyUnicode_IsNormalized(self, input, 1, 0)) {
Py_INCREF(input);
return input;
}
return _PyUnicode_NfcNfkc(self, input, 0);
}
if (strcmp(form, "NFKC") == 0) {
if (_PyUnicode_IsNormalized(self, input, 1, 1)) {
Py_INCREF(input);
return input;
}
return _PyUnicode_NfcNfkc(self, input, 1);
}
if (strcmp(form, "NFD") == 0) {
if (_PyUnicode_IsNormalized(self, input, 0, 0)) {
Py_INCREF(input);
return input;
}
return _PyUnicode_NfdNfkd(self, input, 0);
}
if (strcmp(form, "NFKD") == 0) {
if (_PyUnicode_IsNormalized(self, input, 0, 1)) {
Py_INCREF(input);
return input;
}
return _PyUnicode_NfdNfkd(self, input, 1);
}
PyErr_SetString(PyExc_ValueError, "invalid normalization form");
return NULL;
}
/* -------------------------------------------------------------------- */
/* database code (cut and pasted from the unidb package) */
/* macros used to determine if the given code point is in the PUA range that
* we are using to store aliases and named sequences */
#define IS_ALIAS(cp) ((cp >= _PyUnicode_AliasesStart) && \
(cp < _PyUnicode_AliasesEnd))
#define IS_NAMED_SEQ(cp) ((cp >= _PyUnicode_NamedSequencesStart) && \
(cp < _PyUnicode_NamedSequencesEnd))
static const _PyUnicode_Name_CAPI hashAPI =
{
sizeof(_PyUnicode_Name_CAPI),
_PyUnicode_GetUcName,
_PyUnicode_GetCode,
};
/* -------------------------------------------------------------------- */
/* Python bindings */
/*[clinic input]
unicodedata.UCD.name
self: self
chr: int(accept={str})
default: object=NULL
/
Returns the name assigned to the character chr as a string.
If no name is defined, default is returned, or, if not given,
ValueError is raised.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_name_impl(PyObject *self, int chr, PyObject *default_value)
/*[clinic end generated code: output=6bbb37a326407707 input=3e0367f534de56d9]*/
{
char name[UNIDATA_NAME_MAXLEN+1];
Py_UCS4 c = (Py_UCS4)chr;
if (!_PyUnicode_GetUcName(self, c, name, UNIDATA_NAME_MAXLEN, 0)) {
if (default_value == NULL) {
PyErr_SetString(PyExc_ValueError, "no such name");
return NULL;
}
else {
Py_INCREF(default_value);
return default_value;
}
}
return PyUnicode_FromString(name);
}
/*[clinic input]
unicodedata.UCD.lookup
self: self
name: str(accept={str, robuffer}, zeroes=True)
/
Look up character by name.
If a character with the given name is found, return the
corresponding character. If not found, KeyError is raised.
[clinic start generated code]*/
static PyObject *
unicodedata_UCD_lookup_impl(PyObject *self, const char *name,
Py_ssize_clean_t name_length)
/*[clinic end generated code: output=765cb8186788e6be input=a557be0f8607a0d6]*/
{
Py_UCS4 code;
unsigned int index;
if (name_length > UNIDATA_NAME_MAXLEN) {
PyErr_SetString(PyExc_KeyError, "name too long");
return NULL;
}
if (!_PyUnicode_GetCode(self, name, (int)name_length, &code, 1)) {
PyErr_Format(PyExc_KeyError, "undefined character name '%s'", name);
return NULL;
}
/* check if code is in the PUA range that we use for named sequences
and convert it */
if (IS_NAMED_SEQ(code)) {
index = code - _PyUnicode_NamedSequencesStart;
return PyUnicode_FromKindAndData(PyUnicode_2BYTE_KIND,
_PyUnicode_NamedSequences[index].seq,
_PyUnicode_NamedSequences[index].seqlen);
}
return PyUnicode_FromOrdinal(code);
}
/* XXX Add doc strings. */
static PyMethodDef unicodedata_functions[] = {
UNICODEDATA_UCD_DECIMAL_METHODDEF
UNICODEDATA_UCD_DIGIT_METHODDEF
UNICODEDATA_UCD_NUMERIC_METHODDEF
UNICODEDATA_UCD_CATEGORY_METHODDEF
UNICODEDATA_UCD_BIDIRECTIONAL_METHODDEF
UNICODEDATA_UCD_COMBINING_METHODDEF
UNICODEDATA_UCD_MIRRORED_METHODDEF
UNICODEDATA_UCD_EAST_ASIAN_WIDTH_METHODDEF
UNICODEDATA_UCD_DECOMPOSITION_METHODDEF
UNICODEDATA_UCD_NAME_METHODDEF
UNICODEDATA_UCD_LOOKUP_METHODDEF
UNICODEDATA_UCD_NORMALIZE_METHODDEF
{NULL, NULL} /* sentinel */
};
PyDoc_STRVAR(unicodedata_docstring,
"This module provides access to the Unicode Character Database which\n\
defines character properties for all Unicode characters. The data in\n\
this database is based on the UnicodeData.txt file version\n\
" UNIDATA_VERSION " which is publically available from ftp://ftp.unicode.org/.\n\
\n\
The module uses the same names and symbols as defined by the\n\
UnicodeData File Format " UNIDATA_VERSION ".");
static struct PyModuleDef unicodedatamodule = {
PyModuleDef_HEAD_INIT,
"unicodedata",
unicodedata_docstring,
-1,
unicodedata_functions
};
PyMODINIT_FUNC
PyInit_unicodedata(void)
{
PyObject *m, *v;
UCD_Type.tp_dealloc = (destructor)PyObject_Del;
UCD_Type.tp_getattro = PyObject_GenericGetAttr;
UCD_Type.tp_flags = Py_TPFLAGS_DEFAULT;
UCD_Type.tp_methods = unicodedata_functions;
UCD_Type.tp_members = DB_members;
Py_TYPE(&UCD_Type) = &PyType_Type;
m = PyModule_Create(&unicodedatamodule);
if (!m)
return NULL;
PyModule_AddStringConstant(m, "unidata_version", UNIDATA_VERSION);
Py_INCREF(&UCD_Type);
PyModule_AddObject(m, "UCD", (PyObject*)&UCD_Type);
/* Previous versions */
v = new_previous_version("3.2.0",
_PyUnicode_GetChange_3_2_0,
_PyUnicode_Normalization_3_2_0);
if (v != NULL)
PyModule_AddObject(m, "ucd_3_2_0", v);
/* Export C API */
v = PyCapsule_New((void *)&hashAPI, PyUnicodeData_CAPSULE_NAME, NULL);
if (v != NULL)
PyModule_AddObject(m, "ucnhash_CAPI", v);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab_unicodedata = {
"unicodedata",
PyInit_unicodedata,
};
| 20,907 | 653 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_bz2module.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/bzip2/bzlib.h"
#include "third_party/python/Include/abstract.h"
#include "third_party/python/Include/bytesobject.h"
#include "third_party/python/Include/ceval.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/object.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/pythread.h"
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_bz2");
PYTHON_PROVIDE("_bz2.BZ2Compressor");
PYTHON_PROVIDE("_bz2.BZ2Decompressor");
#ifdef WITH_THREAD
#define ACQUIRE_LOCK(obj) do { \
if (!PyThread_acquire_lock((obj)->lock, 0)) { \
Py_BEGIN_ALLOW_THREADS \
PyThread_acquire_lock((obj)->lock, 1); \
Py_END_ALLOW_THREADS \
} } while (0)
#define RELEASE_LOCK(obj) PyThread_release_lock((obj)->lock)
#else
#define ACQUIRE_LOCK(obj)
#define RELEASE_LOCK(obj)
#endif
typedef struct {
PyObject_HEAD
bz_stream bzs;
int flushed;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
} BZ2Compressor;
typedef struct {
PyObject_HEAD
bz_stream bzs;
char eof; /* T_BOOL expects a char */
PyObject *unused_data;
char needs_input;
char *input_buffer;
size_t input_buffer_size;
/* bzs->avail_in is only 32 bit, so we store the true length
separately. Conversion and looping is encapsulated in
decompress_buf() */
size_t bzs_avail_in_real;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
} BZ2Decompressor;
static PyTypeObject BZ2Compressor_Type;
static PyTypeObject BZ2Decompressor_Type;
/* Helper functions. */
static int
catch_bz2_error(int bzerror)
{
switch(bzerror) {
case BZ_OK:
case BZ_RUN_OK:
case BZ_FLUSH_OK:
case BZ_FINISH_OK:
case BZ_STREAM_END:
return 0;
#ifdef BZ_CONFIG_ERROR
case BZ_CONFIG_ERROR:
PyErr_SetString(PyExc_SystemError,
"libbzip2 was not compiled correctly");
return 1;
#endif
case BZ_PARAM_ERROR:
PyErr_SetString(PyExc_ValueError,
"Internal error - "
"invalid parameters passed to libbzip2");
return 1;
case BZ_MEM_ERROR:
PyErr_NoMemory();
return 1;
case BZ_DATA_ERROR:
case BZ_DATA_ERROR_MAGIC:
PyErr_SetString(PyExc_IOError, "Invalid data stream");
return 1;
case BZ_IO_ERROR:
PyErr_SetString(PyExc_IOError, "Unknown I/O error");
return 1;
case BZ_UNEXPECTED_EOF:
PyErr_SetString(PyExc_EOFError,
"Compressed file ended before the logical "
"end-of-stream was detected");
return 1;
case BZ_SEQUENCE_ERROR:
PyErr_SetString(PyExc_RuntimeError,
"Internal error - "
"Invalid sequence of commands sent to libbzip2");
return 1;
default:
PyErr_Format(PyExc_IOError,
"Unrecognized error from libbzip2: %d", bzerror);
return 1;
}
}
#if BUFSIZ < 8192
#define INITIAL_BUFFER_SIZE 8192
#else
#define INITIAL_BUFFER_SIZE BUFSIZ
#endif
static int
grow_buffer(PyObject **buf, Py_ssize_t max_length)
{
/* Expand the buffer by an amount proportional to the current size,
giving us amortized linear-time behavior. Use a less-than-double
growth factor to avoid excessive allocation. */
size_t size = PyBytes_GET_SIZE(*buf);
size_t new_size = size + (size >> 3) + 6;
if (max_length > 0 && new_size > (size_t) max_length)
new_size = (size_t) max_length;
if (new_size > size) {
return _PyBytes_Resize(buf, new_size);
} else { /* overflow */
PyErr_SetString(PyExc_OverflowError,
"Unable to allocate buffer - output too large");
return -1;
}
}
/* BZ2Compressor class. */
static PyObject *
bz2_compress(BZ2Compressor *c, char *data, size_t len, int action)
{
size_t data_size = 0;
PyObject *result;
result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE);
if (result == NULL)
return NULL;
c->bzs.next_in = data;
c->bzs.avail_in = 0;
c->bzs.next_out = PyBytes_AS_STRING(result);
c->bzs.avail_out = INITIAL_BUFFER_SIZE;
for (;;) {
char *this_out;
int bzerror;
/* On a 64-bit system, len might not fit in avail_in (an unsigned int).
Do compression in chunks of no more than UINT_MAX bytes each. */
if (c->bzs.avail_in == 0 && len > 0) {
c->bzs.avail_in = (unsigned int)Py_MIN(len, UINT_MAX);
len -= c->bzs.avail_in;
}
/* In regular compression mode, stop when input data is exhausted. */
if (action == BZ_RUN && c->bzs.avail_in == 0)
break;
if (c->bzs.avail_out == 0) {
size_t buffer_left = PyBytes_GET_SIZE(result) - data_size;
if (buffer_left == 0) {
if (grow_buffer(&result, -1) < 0)
goto error;
c->bzs.next_out = PyBytes_AS_STRING(result) + data_size;
buffer_left = PyBytes_GET_SIZE(result) - data_size;
}
c->bzs.avail_out = (unsigned int)Py_MIN(buffer_left, UINT_MAX);
}
Py_BEGIN_ALLOW_THREADS
this_out = c->bzs.next_out;
bzerror = BZ2_bzCompress(&c->bzs, action);
data_size += c->bzs.next_out - this_out;
Py_END_ALLOW_THREADS
if (catch_bz2_error(bzerror))
goto error;
/* In flushing mode, stop when all buffered data has been flushed. */
if (action == BZ_FINISH && bzerror == BZ_STREAM_END)
break;
}
if (data_size != (size_t)PyBytes_GET_SIZE(result))
if (_PyBytes_Resize(&result, data_size) < 0)
goto error;
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*[clinic input]
module _bz2
class _bz2.BZ2Compressor "BZ2Compressor *" "&BZ2Compressor_Type"
class _bz2.BZ2Decompressor "BZ2Decompressor *" "&BZ2Decompressor_Type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=dc7d7992a79f9cb7]*/
#include "third_party/python/Modules/clinic/_bz2module.inc"
/*[clinic input]
_bz2.BZ2Compressor.compress
data: Py_buffer
/
Provide data to the compressor object.
Returns a chunk of compressed data if possible, or b'' otherwise.
When you have finished providing data to the compressor, call the
flush() method to finish the compression process.
[clinic start generated code]*/
static PyObject *
_bz2_BZ2Compressor_compress_impl(BZ2Compressor *self, Py_buffer *data)
/*[clinic end generated code: output=59365426e941fbcc input=85c963218070fc4c]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->flushed)
PyErr_SetString(PyExc_ValueError, "Compressor has been flushed");
else
result = bz2_compress(self, data->buf, data->len, BZ_RUN);
RELEASE_LOCK(self);
return result;
}
/*[clinic input]
_bz2.BZ2Compressor.flush
Finish the compression process.
Returns the compressed data left in internal buffers.
The compressor object may not be used after this method is called.
[clinic start generated code]*/
static PyObject *
_bz2_BZ2Compressor_flush_impl(BZ2Compressor *self)
/*[clinic end generated code: output=3ef03fc1b092a701 input=d64405d3c6f76691]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->flushed)
PyErr_SetString(PyExc_ValueError, "Repeated call to flush()");
else {
self->flushed = 1;
result = bz2_compress(self, NULL, 0, BZ_FINISH);
}
RELEASE_LOCK(self);
return result;
}
static PyObject *
BZ2Compressor_getstate(BZ2Compressor *self, PyObject *noargs)
{
PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
Py_TYPE(self)->tp_name);
return NULL;
}
static void*
BZ2_Malloc(void* ctx, int items, int size)
{
if (items < 0 || size < 0)
return NULL;
if (size != 0 && (size_t)items > (size_t)PY_SSIZE_T_MAX / (size_t)size)
return NULL;
/* PyMem_Malloc() cannot be used: compress() and decompress()
release the GIL */
return PyMem_RawMalloc((size_t)items * (size_t)size);
}
static void
BZ2_Free(void* ctx, void *ptr)
{
PyMem_RawFree(ptr);
}
/*[clinic input]
_bz2.BZ2Compressor.__init__
compresslevel: int = 9
Compression level, as a number between 1 and 9.
/
Create a compressor object for compressing data incrementally.
For one-shot compression, use the compress() function instead.
[clinic start generated code]*/
static int
_bz2_BZ2Compressor___init___impl(BZ2Compressor *self, int compresslevel)
/*[clinic end generated code: output=c4e6adfd02963827 input=4e1ff7b8394b6e9a]*/
{
int bzerror;
if (!(1 <= compresslevel && compresslevel <= 9)) {
PyErr_SetString(PyExc_ValueError,
"compresslevel must be between 1 and 9");
return -1;
}
#ifdef WITH_THREAD
self->lock = PyThread_allocate_lock();
if (self->lock == NULL) {
PyErr_SetString(PyExc_MemoryError, "Unable to allocate lock");
return -1;
}
#endif
self->bzs.opaque = NULL;
self->bzs.bzalloc = BZ2_Malloc;
self->bzs.bzfree = BZ2_Free;
bzerror = BZ2_bzCompressInit(&self->bzs, compresslevel, 0, 0);
if (catch_bz2_error(bzerror))
goto error;
return 0;
error:
#ifdef WITH_THREAD
PyThread_free_lock(self->lock);
self->lock = NULL;
#endif
return -1;
}
static void
BZ2Compressor_dealloc(BZ2Compressor *self)
{
BZ2_bzCompressEnd(&self->bzs);
#ifdef WITH_THREAD
if (self->lock != NULL)
PyThread_free_lock(self->lock);
#endif
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyMethodDef BZ2Compressor_methods[] = {
_BZ2_BZ2COMPRESSOR_COMPRESS_METHODDEF
_BZ2_BZ2COMPRESSOR_FLUSH_METHODDEF
{"__getstate__", (PyCFunction)BZ2Compressor_getstate, METH_NOARGS},
{NULL}
};
static PyTypeObject BZ2Compressor_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_bz2.BZ2Compressor", /* tp_name */
sizeof(BZ2Compressor), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)BZ2Compressor_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
_bz2_BZ2Compressor___init____doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
BZ2Compressor_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
_bz2_BZ2Compressor___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
/* BZ2Decompressor class. */
/* Decompress data of length d->bzs_avail_in_real in d->bzs.next_in. The output
buffer is allocated dynamically and returned. At most max_length bytes are
returned, so some of the input may not be consumed. d->bzs.next_in and
d->bzs_avail_in_real are updated to reflect the consumed input. */
static PyObject*
decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length)
{
/* data_size is strictly positive, but because we repeatedly have to
compare against max_length and PyBytes_GET_SIZE we declare it as
signed */
Py_ssize_t data_size = 0;
PyObject *result;
bz_stream *bzs = &d->bzs;
if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE)
result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE);
else
result = PyBytes_FromStringAndSize(NULL, max_length);
if (result == NULL)
return NULL;
bzs->next_out = PyBytes_AS_STRING(result);
for (;;) {
int bzret;
size_t avail;
/* On a 64-bit system, buffer length might not fit in avail_out, so we
do decompression in chunks of no more than UINT_MAX bytes
each. Note that the expression for `avail` is guaranteed to be
positive, so the cast is safe. */
avail = (size_t) (PyBytes_GET_SIZE(result) - data_size);
bzs->avail_out = (unsigned int)Py_MIN(avail, UINT_MAX);
bzs->avail_in = (unsigned int)Py_MIN(d->bzs_avail_in_real, UINT_MAX);
d->bzs_avail_in_real -= bzs->avail_in;
Py_BEGIN_ALLOW_THREADS
bzret = BZ2_bzDecompress(bzs);
data_size = bzs->next_out - PyBytes_AS_STRING(result);
d->bzs_avail_in_real += bzs->avail_in;
Py_END_ALLOW_THREADS
if (catch_bz2_error(bzret))
goto error;
if (bzret == BZ_STREAM_END) {
d->eof = 1;
break;
} else if (d->bzs_avail_in_real == 0) {
break;
} else if (bzs->avail_out == 0) {
if (data_size == max_length)
break;
if (data_size == PyBytes_GET_SIZE(result) &&
grow_buffer(&result, max_length) == -1)
goto error;
bzs->next_out = PyBytes_AS_STRING(result) + data_size;
}
}
if (data_size != PyBytes_GET_SIZE(result))
if (_PyBytes_Resize(&result, data_size) == -1)
goto error;
return result;
error:
Py_XDECREF(result);
return NULL;
}
static PyObject *
decompress(BZ2Decompressor *d, char *data, size_t len, Py_ssize_t max_length)
{
char input_buffer_in_use;
PyObject *result;
bz_stream *bzs = &d->bzs;
/* Prepend unconsumed input if necessary */
if (bzs->next_in != NULL) {
size_t avail_now, avail_total;
/* Number of bytes we can append to input buffer */
avail_now = (d->input_buffer + d->input_buffer_size)
- (bzs->next_in + d->bzs_avail_in_real);
/* Number of bytes we can append if we move existing
contents to beginning of buffer (overwriting
consumed input) */
avail_total = d->input_buffer_size - d->bzs_avail_in_real;
if (avail_total < len) {
size_t offset = bzs->next_in - d->input_buffer;
char *tmp;
size_t new_size = d->input_buffer_size + len - avail_now;
/* Assign to temporary variable first, so we don't
lose address of allocated buffer if realloc fails */
tmp = PyMem_Realloc(d->input_buffer, new_size);
if (tmp == NULL) {
PyErr_SetNone(PyExc_MemoryError);
return NULL;
}
d->input_buffer = tmp;
d->input_buffer_size = new_size;
bzs->next_in = d->input_buffer + offset;
}
else if (avail_now < len) {
memmove(d->input_buffer, bzs->next_in,
d->bzs_avail_in_real);
bzs->next_in = d->input_buffer;
}
memcpy((void*)(bzs->next_in + d->bzs_avail_in_real), data, len);
d->bzs_avail_in_real += len;
input_buffer_in_use = 1;
}
else {
bzs->next_in = data;
d->bzs_avail_in_real = len;
input_buffer_in_use = 0;
}
result = decompress_buf(d, max_length);
if(result == NULL) {
bzs->next_in = NULL;
return NULL;
}
if (d->eof) {
d->needs_input = 0;
if (d->bzs_avail_in_real > 0) {
Py_XSETREF(d->unused_data,
PyBytes_FromStringAndSize(bzs->next_in, d->bzs_avail_in_real));
if (d->unused_data == NULL)
goto error;
}
}
else if (d->bzs_avail_in_real == 0) {
bzs->next_in = NULL;
d->needs_input = 1;
}
else {
d->needs_input = 0;
/* If we did not use the input buffer, we now have
to copy the tail from the caller's buffer into the
input buffer */
if (!input_buffer_in_use) {
/* Discard buffer if it's too small
(resizing it may needlessly copy the current contents) */
if (d->input_buffer != NULL &&
d->input_buffer_size < d->bzs_avail_in_real) {
PyMem_Free(d->input_buffer);
d->input_buffer = NULL;
}
/* Allocate if necessary */
if (d->input_buffer == NULL) {
d->input_buffer = PyMem_Malloc(d->bzs_avail_in_real);
if (d->input_buffer == NULL) {
PyErr_SetNone(PyExc_MemoryError);
goto error;
}
d->input_buffer_size = d->bzs_avail_in_real;
}
/* Copy tail */
memcpy(d->input_buffer, bzs->next_in, d->bzs_avail_in_real);
bzs->next_in = d->input_buffer;
}
}
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*[clinic input]
_bz2.BZ2Decompressor.decompress
data: Py_buffer
max_length: Py_ssize_t=-1
Decompress *data*, returning uncompressed data as bytes.
If *max_length* is nonnegative, returns at most *max_length* bytes of
decompressed data. If this limit is reached and further output can be
produced, *self.needs_input* will be set to ``False``. In this case, the next
call to *decompress()* may provide *data* as b'' to obtain more of the output.
If all of the input data was decompressed and returned (either because this
was less than *max_length* bytes, or because *max_length* was negative),
*self.needs_input* will be set to True.
Attempting to decompress data after the end of stream is reached raises an
EOFError. Any data found after the end of the stream is ignored and saved in
the unused_data attribute.
[clinic start generated code]*/
static PyObject *
_bz2_BZ2Decompressor_decompress_impl(BZ2Decompressor *self, Py_buffer *data,
Py_ssize_t max_length)
/*[clinic end generated code: output=23e41045deb240a3 input=52e1ffc66a8ea624]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->eof)
PyErr_SetString(PyExc_EOFError, "End of stream already reached");
else
result = decompress(self, data->buf, data->len, max_length);
RELEASE_LOCK(self);
return result;
}
static PyObject *
BZ2Decompressor_getstate(BZ2Decompressor *self, PyObject *noargs)
{
PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
Py_TYPE(self)->tp_name);
return NULL;
}
/*[clinic input]
_bz2.BZ2Decompressor.__init__
Create a decompressor object for decompressing data incrementally.
For one-shot decompression, use the decompress() function instead.
[clinic start generated code]*/
static int
_bz2_BZ2Decompressor___init___impl(BZ2Decompressor *self)
/*[clinic end generated code: output=e4d2b9bb866ab8f1 input=95f6500dcda60088]*/
{
int bzerror;
#ifdef WITH_THREAD
PyThread_type_lock lock = PyThread_allocate_lock();
if (lock == NULL) {
PyErr_SetString(PyExc_MemoryError, "Unable to allocate lock");
return -1;
}
if (self->lock != NULL) {
PyThread_free_lock(self->lock);
}
self->lock = lock;
#endif
self->needs_input = 1;
self->bzs_avail_in_real = 0;
self->input_buffer = NULL;
self->input_buffer_size = 0;
Py_XSETREF(self->unused_data, PyBytes_FromStringAndSize(NULL, 0));
if (self->unused_data == NULL)
goto error;
bzerror = BZ2_bzDecompressInit(&self->bzs, 0, 0);
if (catch_bz2_error(bzerror))
goto error;
return 0;
error:
Py_CLEAR(self->unused_data);
#ifdef WITH_THREAD
PyThread_free_lock(self->lock);
self->lock = NULL;
#endif
return -1;
}
static void
BZ2Decompressor_dealloc(BZ2Decompressor *self)
{
if(self->input_buffer != NULL)
PyMem_Free(self->input_buffer);
BZ2_bzDecompressEnd(&self->bzs);
Py_CLEAR(self->unused_data);
#ifdef WITH_THREAD
if (self->lock != NULL)
PyThread_free_lock(self->lock);
#endif
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyMethodDef BZ2Decompressor_methods[] = {
_BZ2_BZ2DECOMPRESSOR_DECOMPRESS_METHODDEF
{"__getstate__", (PyCFunction)BZ2Decompressor_getstate, METH_NOARGS},
{NULL}
};
PyDoc_STRVAR(BZ2Decompressor_eof__doc__,
"True if the end-of-stream marker has been reached.");
PyDoc_STRVAR(BZ2Decompressor_unused_data__doc__,
"Data found after the end of the compressed stream.");
PyDoc_STRVAR(BZ2Decompressor_needs_input_doc,
"True if more input is needed before more decompressed data can be produced.");
static PyMemberDef BZ2Decompressor_members[] = {
{"eof", T_BOOL, offsetof(BZ2Decompressor, eof),
READONLY, BZ2Decompressor_eof__doc__},
{"unused_data", T_OBJECT_EX, offsetof(BZ2Decompressor, unused_data),
READONLY, BZ2Decompressor_unused_data__doc__},
{"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
BZ2Decompressor_needs_input_doc},
{NULL}
};
static PyTypeObject BZ2Decompressor_Type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_bz2.BZ2Decompressor", /* tp_name */
sizeof(BZ2Decompressor), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)BZ2Decompressor_dealloc,/* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
_bz2_BZ2Decompressor___init____doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
BZ2Decompressor_methods, /* tp_methods */
BZ2Decompressor_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
_bz2_BZ2Decompressor___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
/* Module initialization. */
static struct PyModuleDef _bz2module = {
PyModuleDef_HEAD_INIT,
"_bz2",
NULL,
-1,
NULL,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__bz2(void)
{
PyObject *m;
if (PyType_Ready(&BZ2Compressor_Type) < 0)
return NULL;
if (PyType_Ready(&BZ2Decompressor_Type) < 0)
return NULL;
m = PyModule_Create(&_bz2module);
if (m == NULL)
return NULL;
Py_INCREF(&BZ2Compressor_Type);
PyModule_AddObject(m, "BZ2Compressor", (PyObject *)&BZ2Compressor_Type);
Py_INCREF(&BZ2Decompressor_Type);
PyModule_AddObject(m, "BZ2Decompressor",
(PyObject *)&BZ2Decompressor_Type);
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__bz2 = {
"_bz2",
PyInit__bz2,
};
| 26,411 | 811 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/symtablemodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#include "third_party/python/Include/Python-ast.h"
#include "third_party/python/Include/code.h"
#include "third_party/python/Include/import.h"
#include "third_party/python/Include/modsupport.h"
#include "third_party/python/Include/pyerrors.h"
#include "third_party/python/Include/pymacro.h"
#include "third_party/python/Include/pymem.h"
#include "third_party/python/Include/symtable.h"
#include "third_party/python/Include/unicodeobject.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_symtable");
PYTHON_PROVIDE("_symtable.CELL");
PYTHON_PROVIDE("_symtable.DEF_ANNOT");
PYTHON_PROVIDE("_symtable.DEF_BOUND");
PYTHON_PROVIDE("_symtable.DEF_FREE");
PYTHON_PROVIDE("_symtable.DEF_FREE_CLASS");
PYTHON_PROVIDE("_symtable.DEF_GLOBAL");
PYTHON_PROVIDE("_symtable.DEF_IMPORT");
PYTHON_PROVIDE("_symtable.DEF_LOCAL");
PYTHON_PROVIDE("_symtable.DEF_PARAM");
PYTHON_PROVIDE("_symtable.FREE");
PYTHON_PROVIDE("_symtable.GLOBAL_EXPLICIT");
PYTHON_PROVIDE("_symtable.GLOBAL_IMPLICIT");
PYTHON_PROVIDE("_symtable.LOCAL");
PYTHON_PROVIDE("_symtable.SCOPE_MASK");
PYTHON_PROVIDE("_symtable.SCOPE_OFF");
PYTHON_PROVIDE("_symtable.TYPE_CLASS");
PYTHON_PROVIDE("_symtable.TYPE_FUNCTION");
PYTHON_PROVIDE("_symtable.TYPE_MODULE");
PYTHON_PROVIDE("_symtable.USE");
PYTHON_PROVIDE("_symtable.symtable");
static PyObject *
symtable_symtable(PyObject *self, PyObject *args)
{
struct symtable *st;
PyObject *t;
char *str;
PyObject *filename;
char *startstr;
int start;
if (!PyArg_ParseTuple(args, "sO&s:symtable",
&str, PyUnicode_FSDecoder, &filename, &startstr))
return NULL;
if (strcmp(startstr, "exec") == 0)
start = Py_file_input;
else if (strcmp(startstr, "eval") == 0)
start = Py_eval_input;
else if (strcmp(startstr, "single") == 0)
start = Py_single_input;
else {
PyErr_SetString(PyExc_ValueError,
"symtable() arg 3 must be 'exec' or 'eval' or 'single'");
Py_DECREF(filename);
return NULL;
}
st = Py_SymtableStringObject(str, filename, start);
Py_DECREF(filename);
if (st == NULL)
return NULL;
t = (PyObject *)st->st_top;
Py_INCREF(t);
PyMem_Free((void *)st->st_future);
PySymtable_Free(st);
return t;
}
static PyMethodDef symtable_methods[] = {
{"symtable", symtable_symtable, METH_VARARGS,
PyDoc_STR("Return symbol and scope dictionaries"
" used internally by compiler.")},
{NULL, NULL} /* sentinel */
};
static struct PyModuleDef symtablemodule = {
PyModuleDef_HEAD_INIT,
"_symtable",
NULL,
-1,
symtable_methods,
NULL,
NULL,
NULL,
NULL
};
PyMODINIT_FUNC
PyInit__symtable(void)
{
PyObject *m;
if (PyType_Ready(&PySTEntry_Type) < 0)
return NULL;
m = PyModule_Create(&symtablemodule);
if (m == NULL)
return NULL;
PyModule_AddIntMacro(m, USE);
PyModule_AddIntMacro(m, DEF_GLOBAL);
PyModule_AddIntMacro(m, DEF_LOCAL);
PyModule_AddIntMacro(m, DEF_PARAM);
PyModule_AddIntMacro(m, DEF_FREE);
PyModule_AddIntMacro(m, DEF_FREE_CLASS);
PyModule_AddIntMacro(m, DEF_IMPORT);
PyModule_AddIntMacro(m, DEF_BOUND);
PyModule_AddIntMacro(m, DEF_ANNOT);
PyModule_AddIntConstant(m, "TYPE_FUNCTION", FunctionBlock);
PyModule_AddIntConstant(m, "TYPE_CLASS", ClassBlock);
PyModule_AddIntConstant(m, "TYPE_MODULE", ModuleBlock);
PyModule_AddIntMacro(m, LOCAL);
PyModule_AddIntMacro(m, GLOBAL_EXPLICIT);
PyModule_AddIntMacro(m, GLOBAL_IMPLICIT);
PyModule_AddIntMacro(m, FREE);
PyModule_AddIntMacro(m, CELL);
PyModule_AddIntConstant(m, "SCOPE_OFF", SCOPE_OFFSET);
PyModule_AddIntMacro(m, SCOPE_MASK);
if (PyErr_Occurred()) {
Py_DECREF(m);
m = 0;
}
return m;
}
_Section(".rodata.pytab.1") const struct _inittab _PyImport_Inittab__symtable = {
"_symtable",
PyInit__symtable,
};
| 4,830 | 142 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/_lzmamodule.c | /*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-â
âvi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :viâ
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ¡
â Python 3 â
â https://docs.python.org/3/license.html â
ââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ*/
#define PY_SSIZE_T_CLEAN
#include "third_party/python/Include/structmember.h"
#include "third_party/python/Include/yoink.h"
/* clang-format off */
PYTHON_PROVIDE("_lzma");
PYTHON_PROVIDE("_lzma.CHECK_CRC32");
PYTHON_PROVIDE("_lzma.CHECK_CRC64");
PYTHON_PROVIDE("_lzma.CHECK_ID_MAX");
PYTHON_PROVIDE("_lzma.CHECK_NONE");
PYTHON_PROVIDE("_lzma.CHECK_SHA256");
PYTHON_PROVIDE("_lzma.CHECK_UNKNOWN");
PYTHON_PROVIDE("_lzma.FILTER_ARM");
PYTHON_PROVIDE("_lzma.FILTER_ARMTHUMB");
PYTHON_PROVIDE("_lzma.FILTER_DELTA");
PYTHON_PROVIDE("_lzma.FILTER_IA64");
PYTHON_PROVIDE("_lzma.FILTER_LZMA1");
PYTHON_PROVIDE("_lzma.FILTER_LZMA2");
PYTHON_PROVIDE("_lzma.FILTER_POWERPC");
PYTHON_PROVIDE("_lzma.FILTER_SPARC");
PYTHON_PROVIDE("_lzma.FILTER_X86");
PYTHON_PROVIDE("_lzma.FORMAT_ALONE");
PYTHON_PROVIDE("_lzma.FORMAT_AUTO");
PYTHON_PROVIDE("_lzma.FORMAT_RAW");
PYTHON_PROVIDE("_lzma.FORMAT_XZ");
PYTHON_PROVIDE("_lzma.LZMACompressor");
PYTHON_PROVIDE("_lzma.LZMADecompressor");
PYTHON_PROVIDE("_lzma.LZMAError");
PYTHON_PROVIDE("_lzma.MF_BT2");
PYTHON_PROVIDE("_lzma.MF_BT3");
PYTHON_PROVIDE("_lzma.MF_BT4");
PYTHON_PROVIDE("_lzma.MF_HC3");
PYTHON_PROVIDE("_lzma.MF_HC4");
PYTHON_PROVIDE("_lzma.MODE_FAST");
PYTHON_PROVIDE("_lzma.MODE_NORMAL");
PYTHON_PROVIDE("_lzma.PRESET_DEFAULT");
PYTHON_PROVIDE("_lzma.PRESET_EXTREME");
PYTHON_PROVIDE("_lzma._decode_filter_properties");
PYTHON_PROVIDE("_lzma._encode_filter_properties");
PYTHON_PROVIDE("_lzma.is_check_supported");
/* _lzma - Low-level Python interface to liblzma.
Initial implementation by Per Ãyvind Karlsen.
Rewritten by Nadeem Vawda.
*/
#ifdef WITH_THREAD
#include "third_party/python/Include/pythread.h"
#endif
#ifdef WITH_THREAD
#define ACQUIRE_LOCK(obj) do { \
if (!PyThread_acquire_lock((obj)->lock, 0)) { \
Py_BEGIN_ALLOW_THREADS \
PyThread_acquire_lock((obj)->lock, 1); \
Py_END_ALLOW_THREADS \
} } while (0)
#define RELEASE_LOCK(obj) PyThread_release_lock((obj)->lock)
#else
#define ACQUIRE_LOCK(obj)
#define RELEASE_LOCK(obj)
#endif
/* Container formats: */
enum {
FORMAT_AUTO,
FORMAT_XZ,
FORMAT_ALONE,
FORMAT_RAW,
};
#define LZMA_CHECK_UNKNOWN (LZMA_CHECK_ID_MAX + 1)
typedef struct {
PyObject_HEAD
lzma_allocator alloc;
lzma_stream lzs;
int flushed;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
} Compressor;
typedef struct {
PyObject_HEAD
lzma_allocator alloc;
lzma_stream lzs;
int check;
char eof;
PyObject *unused_data;
char needs_input;
uint8_t *input_buffer;
size_t input_buffer_size;
#ifdef WITH_THREAD
PyThread_type_lock lock;
#endif
} Decompressor;
/* LZMAError class object. */
static PyObject *Error;
/* An empty tuple, used by the filter specifier parsing code. */
static PyObject *empty_tuple;
/* Helper functions. */
static int
catch_lzma_error(lzma_ret lzret)
{
switch (lzret) {
case LZMA_OK:
case LZMA_GET_CHECK:
case LZMA_NO_CHECK:
case LZMA_STREAM_END:
return 0;
case LZMA_UNSUPPORTED_CHECK:
PyErr_SetString(Error, "Unsupported integrity check");
return 1;
case LZMA_MEM_ERROR:
PyErr_NoMemory();
return 1;
case LZMA_MEMLIMIT_ERROR:
PyErr_SetString(Error, "Memory usage limit exceeded");
return 1;
case LZMA_FORMAT_ERROR:
PyErr_SetString(Error, "Input format not supported by decoder");
return 1;
case LZMA_OPTIONS_ERROR:
PyErr_SetString(Error, "Invalid or unsupported options");
return 1;
case LZMA_DATA_ERROR:
PyErr_SetString(Error, "Corrupt input data");
return 1;
case LZMA_BUF_ERROR:
PyErr_SetString(Error, "Insufficient buffer space");
return 1;
case LZMA_PROG_ERROR:
PyErr_SetString(Error, "Internal error");
return 1;
default:
PyErr_Format(Error, "Unrecognized error from liblzma: %d", lzret);
return 1;
}
}
static void*
PyLzma_Malloc(void *opaque, size_t items, size_t size)
{
if (size != 0 && items > (size_t)PY_SSIZE_T_MAX / size)
return NULL;
/* PyMem_Malloc() cannot be used:
the GIL is not held when lzma_code() is called */
return PyMem_RawMalloc(items * size);
}
static void
PyLzma_Free(void *opaque, void *ptr)
{
PyMem_RawFree(ptr);
}
#if BUFSIZ < 8192
#define INITIAL_BUFFER_SIZE 8192
#else
#define INITIAL_BUFFER_SIZE BUFSIZ
#endif
static int
grow_buffer(PyObject **buf, Py_ssize_t max_length)
{
Py_ssize_t size = PyBytes_GET_SIZE(*buf);
Py_ssize_t newsize = size + (size >> 3) + 6;
if (max_length > 0 && newsize > max_length)
newsize = max_length;
return _PyBytes_Resize(buf, newsize);
}
/* Some custom type conversions for PyArg_ParseTupleAndKeywords(),
since the predefined conversion specifiers do not suit our needs:
uint32_t - the "I" (unsigned int) specifier is the right size, but
silently ignores overflows on conversion.
lzma_vli - the "K" (unsigned long long) specifier is the right
size, but like "I" it silently ignores overflows on conversion.
lzma_mode and lzma_match_finder - these are enumeration types, and
so the size of each is implementation-defined. Worse, different
enum types can be of different sizes within the same program, so
to be strictly correct, we need to define two separate converters.
*/
#define INT_TYPE_CONVERTER_FUNC(TYPE, FUNCNAME) \
static int \
FUNCNAME(PyObject *obj, void *ptr) \
{ \
unsigned long long val; \
\
val = PyLong_AsUnsignedLongLong(obj); \
if (PyErr_Occurred()) \
return 0; \
if ((unsigned long long)(TYPE)val != val) { \
PyErr_SetString(PyExc_OverflowError, \
"Value too large for " #TYPE " type"); \
return 0; \
} \
*(TYPE *)ptr = (TYPE)val; \
return 1; \
}
INT_TYPE_CONVERTER_FUNC(uint32_t, uint32_converter)
INT_TYPE_CONVERTER_FUNC(lzma_vli, lzma_vli_converter)
INT_TYPE_CONVERTER_FUNC(lzma_mode, lzma_mode_converter)
INT_TYPE_CONVERTER_FUNC(lzma_match_finder, lzma_mf_converter)
#undef INT_TYPE_CONVERTER_FUNC
/* Filter specifier parsing.
This code handles converting filter specifiers (Python dicts) into
the C lzma_filter structs expected by liblzma. */
static void *
parse_filter_spec_lzma(PyObject *spec)
{
static char *optnames[] = {"id", "preset", "dict_size", "lc", "lp",
"pb", "mode", "nice_len", "mf", "depth", NULL};
PyObject *id;
PyObject *preset_obj;
uint32_t preset = LZMA_PRESET_DEFAULT;
lzma_options_lzma *options;
/* First, fill in default values for all the options using a preset.
Then, override the defaults with any values given by the caller. */
preset_obj = PyMapping_GetItemString(spec, "preset");
if (preset_obj == NULL) {
if (PyErr_ExceptionMatches(PyExc_KeyError))
PyErr_Clear();
else
return NULL;
} else {
int ok = uint32_converter(preset_obj, &preset);
Py_DECREF(preset_obj);
if (!ok)
return NULL;
}
options = (lzma_options_lzma *)PyMem_Malloc(sizeof *options);
if (options == NULL)
return PyErr_NoMemory();
bzero(options, sizeof *options);
if (lzma_lzma_preset(options, preset)) {
PyMem_Free(options);
PyErr_Format(Error, "Invalid compression preset: %d", preset);
return NULL;
}
if (!PyArg_ParseTupleAndKeywords(empty_tuple, spec,
"|OOO&O&O&O&O&O&O&O&", optnames,
&id, &preset_obj,
uint32_converter, &options->dict_size,
uint32_converter, &options->lc,
uint32_converter, &options->lp,
uint32_converter, &options->pb,
lzma_mode_converter, &options->mode,
uint32_converter, &options->nice_len,
lzma_mf_converter, &options->mf,
uint32_converter, &options->depth)) {
PyErr_SetString(PyExc_ValueError,
"Invalid filter specifier for LZMA filter");
PyMem_Free(options);
options = NULL;
}
return options;
}
static void *
parse_filter_spec_delta(PyObject *spec)
{
static char *optnames[] = {"id", "dist", NULL};
PyObject *id;
uint32_t dist = 1;
lzma_options_delta *options;
if (!PyArg_ParseTupleAndKeywords(empty_tuple, spec, "|OO&", optnames,
&id, uint32_converter, &dist)) {
PyErr_SetString(PyExc_ValueError,
"Invalid filter specifier for delta filter");
return NULL;
}
options = (lzma_options_delta *)PyMem_Malloc(sizeof *options);
if (options == NULL)
return PyErr_NoMemory();
bzero(options, sizeof *options);
options->type = LZMA_DELTA_TYPE_BYTE;
options->dist = dist;
return options;
}
static void *
parse_filter_spec_bcj(PyObject *spec)
{
static char *optnames[] = {"id", "start_offset", NULL};
PyObject *id;
uint32_t start_offset = 0;
lzma_options_bcj *options;
if (!PyArg_ParseTupleAndKeywords(empty_tuple, spec, "|OO&", optnames,
&id, uint32_converter, &start_offset)) {
PyErr_SetString(PyExc_ValueError,
"Invalid filter specifier for BCJ filter");
return NULL;
}
options = (lzma_options_bcj *)PyMem_Malloc(sizeof *options);
if (options == NULL)
return PyErr_NoMemory();
bzero(options, sizeof *options);
options->start_offset = start_offset;
return options;
}
static int
lzma_filter_converter(PyObject *spec, void *ptr)
{
lzma_filter *f = (lzma_filter *)ptr;
PyObject *id_obj;
if (!PyMapping_Check(spec)) {
PyErr_SetString(PyExc_TypeError,
"Filter specifier must be a dict or dict-like object");
return 0;
}
id_obj = PyMapping_GetItemString(spec, "id");
if (id_obj == NULL) {
if (PyErr_ExceptionMatches(PyExc_KeyError))
PyErr_SetString(PyExc_ValueError,
"Filter specifier must have an \"id\" entry");
return 0;
}
f->id = PyLong_AsUnsignedLongLong(id_obj);
Py_DECREF(id_obj);
if (PyErr_Occurred())
return 0;
switch (f->id) {
case LZMA_FILTER_LZMA1:
case LZMA_FILTER_LZMA2:
f->options = parse_filter_spec_lzma(spec);
return f->options != NULL;
case LZMA_FILTER_DELTA:
f->options = parse_filter_spec_delta(spec);
return f->options != NULL;
case LZMA_FILTER_X86:
case LZMA_FILTER_POWERPC:
case LZMA_FILTER_IA64:
case LZMA_FILTER_ARM:
case LZMA_FILTER_ARMTHUMB:
case LZMA_FILTER_SPARC:
f->options = parse_filter_spec_bcj(spec);
return f->options != NULL;
default:
PyErr_Format(PyExc_ValueError, "Invalid filter ID: %llu", f->id);
return 0;
}
}
static void
free_filter_chain(lzma_filter filters[])
{
int i;
for (i = 0; filters[i].id != LZMA_VLI_UNKNOWN; i++)
PyMem_Free(filters[i].options);
}
static int
parse_filter_chain_spec(lzma_filter filters[], PyObject *filterspecs)
{
Py_ssize_t i, num_filters;
num_filters = PySequence_Length(filterspecs);
if (num_filters == -1)
return -1;
if (num_filters > LZMA_FILTERS_MAX) {
PyErr_Format(PyExc_ValueError,
"Too many filters - liblzma supports a maximum of %d",
LZMA_FILTERS_MAX);
return -1;
}
for (i = 0; i < num_filters; i++) {
int ok = 1;
PyObject *spec = PySequence_GetItem(filterspecs, i);
if (spec == NULL || !lzma_filter_converter(spec, &filters[i]))
ok = 0;
Py_XDECREF(spec);
if (!ok) {
filters[i].id = LZMA_VLI_UNKNOWN;
free_filter_chain(filters);
return -1;
}
}
filters[num_filters].id = LZMA_VLI_UNKNOWN;
return 0;
}
/* Filter specifier construction.
This code handles converting C lzma_filter structs into
Python-level filter specifiers (represented as dicts). */
static int
spec_add_field(PyObject *spec, _Py_Identifier *key, unsigned long long value)
{
int status;
PyObject *value_object;
value_object = PyLong_FromUnsignedLongLong(value);
if (value_object == NULL)
return -1;
status = _PyDict_SetItemId(spec, key, value_object);
Py_DECREF(value_object);
return status;
}
static PyObject *
build_filter_spec(const lzma_filter *f)
{
PyObject *spec;
spec = PyDict_New();
if (spec == NULL)
return NULL;
#define ADD_FIELD(SOURCE, FIELD) \
do { \
_Py_IDENTIFIER(FIELD); \
if (spec_add_field(spec, &PyId_##FIELD, SOURCE->FIELD) == -1) \
goto error;\
} while (0)
ADD_FIELD(f, id);
switch (f->id) {
/* For LZMA1 filters, lzma_properties_{encode,decode}() only look at the
lc, lp, pb, and dict_size fields. For LZMA2 filters, only the
dict_size field is used. */
case LZMA_FILTER_LZMA1: {
lzma_options_lzma *options = f->options;
ADD_FIELD(options, lc);
ADD_FIELD(options, lp);
ADD_FIELD(options, pb);
ADD_FIELD(options, dict_size);
break;
}
case LZMA_FILTER_LZMA2: {
lzma_options_lzma *options = f->options;
ADD_FIELD(options, dict_size);
break;
}
case LZMA_FILTER_DELTA: {
lzma_options_delta *options = f->options;
ADD_FIELD(options, dist);
break;
}
case LZMA_FILTER_X86:
case LZMA_FILTER_POWERPC:
case LZMA_FILTER_IA64:
case LZMA_FILTER_ARM:
case LZMA_FILTER_ARMTHUMB:
case LZMA_FILTER_SPARC: {
lzma_options_bcj *options = f->options;
ADD_FIELD(options, start_offset);
break;
}
default:
PyErr_Format(PyExc_ValueError, "Invalid filter ID: %llu", f->id);
goto error;
}
#undef ADD_FIELD
return spec;
error:
Py_DECREF(spec);
return NULL;
}
/*[clinic input]
module _lzma
class _lzma.LZMACompressor "Compressor *" "&Compressor_type"
class _lzma.LZMADecompressor "Decompressor *" "&Decompressor_type"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=2c14bbe05ff0c147]*/
#include "third_party/python/Modules/clinic/_lzmamodule.inc"
/*[python input]
class lzma_vli_converter(CConverter):
type = 'lzma_vli'
converter = 'lzma_vli_converter'
class lzma_filter_converter(CConverter):
type = 'lzma_filter'
converter = 'lzma_filter_converter'
c_default = c_ignored_default = "{LZMA_VLI_UNKNOWN, NULL}"
def cleanup(self):
name = ensure_legal_c_identifier(self.name)
return ('if (%(name)s.id != LZMA_VLI_UNKNOWN)\n'
' PyMem_Free(%(name)s.options);\n') % {'name': name}
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=74fe7631ce377a94]*/
/* LZMACompressor class. */
static PyObject *
compress(Compressor *c, uint8_t *data, size_t len, lzma_action action)
{
Py_ssize_t data_size = 0;
PyObject *result;
result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE);
if (result == NULL)
return NULL;
c->lzs.next_in = data;
c->lzs.avail_in = len;
c->lzs.next_out = (uint8_t *)PyBytes_AS_STRING(result);
c->lzs.avail_out = PyBytes_GET_SIZE(result);
for (;;) {
lzma_ret lzret;
Py_BEGIN_ALLOW_THREADS
lzret = lzma_code(&c->lzs, action);
data_size = (char *)c->lzs.next_out - PyBytes_AS_STRING(result);
if (lzret == LZMA_BUF_ERROR && len == 0 && c->lzs.avail_out > 0)
lzret = LZMA_OK; /* That wasn't a real error */
Py_END_ALLOW_THREADS
if (catch_lzma_error(lzret))
goto error;
if ((action == LZMA_RUN && c->lzs.avail_in == 0) ||
(action == LZMA_FINISH && lzret == LZMA_STREAM_END)) {
break;
} else if (c->lzs.avail_out == 0) {
if (grow_buffer(&result, -1) == -1)
goto error;
c->lzs.next_out = (uint8_t *)PyBytes_AS_STRING(result) + data_size;
c->lzs.avail_out = PyBytes_GET_SIZE(result) - data_size;
}
}
if (data_size != PyBytes_GET_SIZE(result))
if (_PyBytes_Resize(&result, data_size) == -1)
goto error;
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*[clinic input]
_lzma.LZMACompressor.compress
data: Py_buffer
/
Provide data to the compressor object.
Returns a chunk of compressed data if possible, or b'' otherwise.
When you have finished providing data to the compressor, call the
flush() method to finish the compression process.
[clinic start generated code]*/
static PyObject *
_lzma_LZMACompressor_compress_impl(Compressor *self, Py_buffer *data)
/*[clinic end generated code: output=31f615136963e00f input=64019eac7f2cc8d0]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->flushed)
PyErr_SetString(PyExc_ValueError, "Compressor has been flushed");
else
result = compress(self, data->buf, data->len, LZMA_RUN);
RELEASE_LOCK(self);
return result;
}
/*[clinic input]
_lzma.LZMACompressor.flush
Finish the compression process.
Returns the compressed data left in internal buffers.
The compressor object may not be used after this method is called.
[clinic start generated code]*/
static PyObject *
_lzma_LZMACompressor_flush_impl(Compressor *self)
/*[clinic end generated code: output=fec21f3e22504f50 input=6b369303f67ad0a8]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->flushed) {
PyErr_SetString(PyExc_ValueError, "Repeated call to flush()");
} else {
self->flushed = 1;
result = compress(self, NULL, 0, LZMA_FINISH);
}
RELEASE_LOCK(self);
return result;
}
static PyObject *
Compressor_getstate(Compressor *self, PyObject *noargs)
{
PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
Py_TYPE(self)->tp_name);
return NULL;
}
static int
Compressor_init_xz(lzma_stream *lzs, int check, uint32_t preset,
PyObject *filterspecs)
{
lzma_ret lzret;
if (filterspecs == Py_None) {
lzret = lzma_easy_encoder(lzs, preset, check);
} else {
lzma_filter filters[LZMA_FILTERS_MAX + 1];
if (parse_filter_chain_spec(filters, filterspecs) == -1)
return -1;
lzret = lzma_stream_encoder(lzs, filters, check);
free_filter_chain(filters);
}
if (catch_lzma_error(lzret))
return -1;
else
return 0;
}
static int
Compressor_init_alone(lzma_stream *lzs, uint32_t preset, PyObject *filterspecs)
{
lzma_ret lzret;
if (filterspecs == Py_None) {
lzma_options_lzma options;
if (lzma_lzma_preset(&options, preset)) {
PyErr_Format(Error, "Invalid compression preset: %d", preset);
return -1;
}
lzret = lzma_alone_encoder(lzs, &options);
} else {
lzma_filter filters[LZMA_FILTERS_MAX + 1];
if (parse_filter_chain_spec(filters, filterspecs) == -1)
return -1;
if (filters[0].id == LZMA_FILTER_LZMA1 &&
filters[1].id == LZMA_VLI_UNKNOWN) {
lzret = lzma_alone_encoder(lzs, filters[0].options);
} else {
PyErr_SetString(PyExc_ValueError,
"Invalid filter chain for FORMAT_ALONE - "
"must be a single LZMA1 filter");
lzret = LZMA_PROG_ERROR;
}
free_filter_chain(filters);
}
if (PyErr_Occurred() || catch_lzma_error(lzret))
return -1;
else
return 0;
}
static int
Compressor_init_raw(lzma_stream *lzs, PyObject *filterspecs)
{
lzma_filter filters[LZMA_FILTERS_MAX + 1];
lzma_ret lzret;
if (filterspecs == Py_None) {
PyErr_SetString(PyExc_ValueError,
"Must specify filters for FORMAT_RAW");
return -1;
}
if (parse_filter_chain_spec(filters, filterspecs) == -1)
return -1;
lzret = lzma_raw_encoder(lzs, filters);
free_filter_chain(filters);
if (catch_lzma_error(lzret))
return -1;
else
return 0;
}
/*[-clinic input]
_lzma.LZMACompressor.__init__
format: int(c_default="FORMAT_XZ") = FORMAT_XZ
The container format to use for the output. This can
be FORMAT_XZ (default), FORMAT_ALONE, or FORMAT_RAW.
check: int(c_default="-1") = unspecified
The integrity check to use. For FORMAT_XZ, the default
is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not support integrity
checks; for these formats, check must be omitted, or be CHECK_NONE.
preset: object = None
If provided should be an integer in the range 0-9, optionally
OR-ed with the constant PRESET_EXTREME.
filters: object = None
If provided should be a sequence of dicts. Each dict should
have an entry for "id" indicating the ID of the filter, plus
additional entries for options to the filter.
Create a compressor object for compressing data incrementally.
The settings used by the compressor can be specified either as a
preset compression level (with the 'preset' argument), or in detail
as a custom filter chain (with the 'filters' argument). For FORMAT_XZ
and FORMAT_ALONE, the default is to use the PRESET_DEFAULT preset
level. For FORMAT_RAW, the caller must always specify a filter chain;
the raw compressor does not support preset compression levels.
For one-shot compression, use the compress() function instead.
[-clinic start generated code]*/
static int
Compressor_init(Compressor *self, PyObject *args, PyObject *kwargs)
{
static char *arg_names[] = {"format", "check", "preset", "filters", NULL};
int format = FORMAT_XZ;
int check = -1;
uint32_t preset = LZMA_PRESET_DEFAULT;
PyObject *preset_obj = Py_None;
PyObject *filterspecs = Py_None;
if (!PyArg_ParseTupleAndKeywords(args, kwargs,
"|iiOO:LZMACompressor", arg_names,
&format, &check, &preset_obj,
&filterspecs))
return -1;
if (format != FORMAT_XZ && check != -1 && check != LZMA_CHECK_NONE) {
PyErr_SetString(PyExc_ValueError,
"Integrity checks are only supported by FORMAT_XZ");
return -1;
}
if (preset_obj != Py_None && filterspecs != Py_None) {
PyErr_SetString(PyExc_ValueError,
"Cannot specify both preset and filter chain");
return -1;
}
if (preset_obj != Py_None)
if (!uint32_converter(preset_obj, &preset))
return -1;
self->alloc.opaque = NULL;
self->alloc.alloc = PyLzma_Malloc;
self->alloc.free = PyLzma_Free;
self->lzs.allocator = &self->alloc;
#ifdef WITH_THREAD
self->lock = PyThread_allocate_lock();
if (self->lock == NULL) {
PyErr_SetString(PyExc_MemoryError, "Unable to allocate lock");
return -1;
}
#endif
self->flushed = 0;
switch (format) {
case FORMAT_XZ:
if (check == -1)
check = LZMA_CHECK_CRC64;
if (Compressor_init_xz(&self->lzs, check, preset, filterspecs) != 0)
break;
return 0;
case FORMAT_ALONE:
if (Compressor_init_alone(&self->lzs, preset, filterspecs) != 0)
break;
return 0;
case FORMAT_RAW:
if (Compressor_init_raw(&self->lzs, filterspecs) != 0)
break;
return 0;
default:
PyErr_Format(PyExc_ValueError,
"Invalid container format: %d", format);
break;
}
#ifdef WITH_THREAD
PyThread_free_lock(self->lock);
self->lock = NULL;
#endif
return -1;
}
static void
Compressor_dealloc(Compressor *self)
{
lzma_end(&self->lzs);
#ifdef WITH_THREAD
if (self->lock != NULL)
PyThread_free_lock(self->lock);
#endif
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyMethodDef Compressor_methods[] = {
_LZMA_LZMACOMPRESSOR_COMPRESS_METHODDEF
_LZMA_LZMACOMPRESSOR_FLUSH_METHODDEF
{"__getstate__", (PyCFunction)Compressor_getstate, METH_NOARGS},
{NULL}
};
PyDoc_STRVAR(Compressor_doc,
"LZMACompressor(format=FORMAT_XZ, check=-1, preset=None, filters=None)\n"
"\n"
"Create a compressor object for compressing data incrementally.\n"
"\n"
"format specifies the container format to use for the output. This can\n"
"be FORMAT_XZ (default), FORMAT_ALONE, or FORMAT_RAW.\n"
"\n"
"check specifies the integrity check to use. For FORMAT_XZ, the default\n"
"is CHECK_CRC64. FORMAT_ALONE and FORMAT_RAW do not suport integrity\n"
"checks; for these formats, check must be omitted, or be CHECK_NONE.\n"
"\n"
"The settings used by the compressor can be specified either as a\n"
"preset compression level (with the 'preset' argument), or in detail\n"
"as a custom filter chain (with the 'filters' argument). For FORMAT_XZ\n"
"and FORMAT_ALONE, the default is to use the PRESET_DEFAULT preset\n"
"level. For FORMAT_RAW, the caller must always specify a filter chain;\n"
"the raw compressor does not support preset compression levels.\n"
"\n"
"preset (if provided) should be an integer in the range 0-9, optionally\n"
"OR-ed with the constant PRESET_EXTREME.\n"
"\n"
"filters (if provided) should be a sequence of dicts. Each dict should\n"
"have an entry for \"id\" indicating the ID of the filter, plus\n"
"additional entries for options to the filter.\n"
"\n"
"For one-shot compression, use the compress() function instead.\n");
static PyTypeObject Compressor_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_lzma.LZMACompressor", /* tp_name */
sizeof(Compressor), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)Compressor_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
Compressor_doc, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
Compressor_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)Compressor_init, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
/* LZMADecompressor class. */
/* Decompress data of length d->lzs.avail_in in d->lzs.next_in. The output
buffer is allocated dynamically and returned. At most max_length bytes are
returned, so some of the input may not be consumed. d->lzs.next_in and
d->lzs.avail_in are updated to reflect the consumed input. */
static PyObject*
decompress_buf(Decompressor *d, Py_ssize_t max_length)
{
Py_ssize_t data_size = 0;
PyObject *result;
lzma_stream *lzs = &d->lzs;
if (lzs->avail_in == 0)
return PyBytes_FromStringAndSize(NULL, 0);
if (max_length < 0 || max_length >= INITIAL_BUFFER_SIZE)
result = PyBytes_FromStringAndSize(NULL, INITIAL_BUFFER_SIZE);
else
result = PyBytes_FromStringAndSize(NULL, max_length);
if (result == NULL)
return NULL;
lzs->next_out = (uint8_t *)PyBytes_AS_STRING(result);
lzs->avail_out = PyBytes_GET_SIZE(result);
for (;;) {
lzma_ret lzret;
Py_BEGIN_ALLOW_THREADS
lzret = lzma_code(lzs, LZMA_RUN);
data_size = (char *)lzs->next_out - PyBytes_AS_STRING(result);
Py_END_ALLOW_THREADS
if (catch_lzma_error(lzret))
goto error;
if (lzret == LZMA_GET_CHECK || lzret == LZMA_NO_CHECK)
d->check = lzma_get_check(&d->lzs);
if (lzret == LZMA_STREAM_END) {
d->eof = 1;
break;
} else if (lzs->avail_in == 0) {
break;
} else if (lzs->avail_out == 0) {
if (data_size == max_length)
break;
if (grow_buffer(&result, max_length) == -1)
goto error;
lzs->next_out = (uint8_t *)PyBytes_AS_STRING(result) + data_size;
lzs->avail_out = PyBytes_GET_SIZE(result) - data_size;
}
}
if (data_size != PyBytes_GET_SIZE(result))
if (_PyBytes_Resize(&result, data_size) == -1)
goto error;
return result;
error:
Py_XDECREF(result);
return NULL;
}
static PyObject *
decompress(Decompressor *d, uint8_t *data, size_t len, Py_ssize_t max_length)
{
char input_buffer_in_use;
PyObject *result;
lzma_stream *lzs = &d->lzs;
/* Prepend unconsumed input if necessary */
if (lzs->next_in != NULL) {
size_t avail_now, avail_total;
/* Number of bytes we can append to input buffer */
avail_now = (d->input_buffer + d->input_buffer_size)
- (lzs->next_in + lzs->avail_in);
/* Number of bytes we can append if we move existing
contents to beginning of buffer (overwriting
consumed input) */
avail_total = d->input_buffer_size - lzs->avail_in;
if (avail_total < len) {
size_t offset = lzs->next_in - d->input_buffer;
uint8_t *tmp;
size_t new_size = d->input_buffer_size + len - avail_now;
/* Assign to temporary variable first, so we don't
lose address of allocated buffer if realloc fails */
tmp = PyMem_Realloc(d->input_buffer, new_size);
if (tmp == NULL) {
PyErr_SetNone(PyExc_MemoryError);
return NULL;
}
d->input_buffer = tmp;
d->input_buffer_size = new_size;
lzs->next_in = d->input_buffer + offset;
}
else if (avail_now < len) {
memmove(d->input_buffer, lzs->next_in,
lzs->avail_in);
lzs->next_in = d->input_buffer;
}
memcpy((void*)(lzs->next_in + lzs->avail_in), data, len);
lzs->avail_in += len;
input_buffer_in_use = 1;
}
else {
lzs->next_in = data;
lzs->avail_in = len;
input_buffer_in_use = 0;
}
result = decompress_buf(d, max_length);
if (result == NULL) {
lzs->next_in = NULL;
return NULL;
}
if (d->eof) {
d->needs_input = 0;
if (lzs->avail_in > 0) {
Py_XSETREF(d->unused_data,
PyBytes_FromStringAndSize((char *)lzs->next_in, lzs->avail_in));
if (d->unused_data == NULL)
goto error;
}
}
else if (lzs->avail_in == 0) {
lzs->next_in = NULL;
d->needs_input = 1;
}
else {
d->needs_input = 0;
/* If we did not use the input buffer, we now have
to copy the tail from the caller's buffer into the
input buffer */
if (!input_buffer_in_use) {
/* Discard buffer if it's too small
(resizing it may needlessly copy the current contents) */
if (d->input_buffer != NULL &&
d->input_buffer_size < lzs->avail_in) {
PyMem_Free(d->input_buffer);
d->input_buffer = NULL;
}
/* Allocate if necessary */
if (d->input_buffer == NULL) {
d->input_buffer = PyMem_Malloc(lzs->avail_in);
if (d->input_buffer == NULL) {
PyErr_SetNone(PyExc_MemoryError);
goto error;
}
d->input_buffer_size = lzs->avail_in;
}
/* Copy tail */
memcpy(d->input_buffer, lzs->next_in, lzs->avail_in);
lzs->next_in = d->input_buffer;
}
}
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*[clinic input]
_lzma.LZMADecompressor.decompress
data: Py_buffer
max_length: Py_ssize_t=-1
Decompress *data*, returning uncompressed data as bytes.
If *max_length* is nonnegative, returns at most *max_length* bytes of
decompressed data. If this limit is reached and further output can be
produced, *self.needs_input* will be set to ``False``. In this case, the next
call to *decompress()* may provide *data* as b'' to obtain more of the output.
If all of the input data was decompressed and returned (either because this
was less than *max_length* bytes, or because *max_length* was negative),
*self.needs_input* will be set to True.
Attempting to decompress data after the end of stream is reached raises an
EOFError. Any data found after the end of the stream is ignored and saved in
the unused_data attribute.
[clinic start generated code]*/
static PyObject *
_lzma_LZMADecompressor_decompress_impl(Decompressor *self, Py_buffer *data,
Py_ssize_t max_length)
/*[clinic end generated code: output=ef4e20ec7122241d input=60c1f135820e309d]*/
{
PyObject *result = NULL;
ACQUIRE_LOCK(self);
if (self->eof)
PyErr_SetString(PyExc_EOFError, "Already at end of stream");
else
result = decompress(self, data->buf, data->len, max_length);
RELEASE_LOCK(self);
return result;
}
static PyObject *
Decompressor_getstate(Decompressor *self, PyObject *noargs)
{
PyErr_Format(PyExc_TypeError, "cannot serialize '%s' object",
Py_TYPE(self)->tp_name);
return NULL;
}
static int
Decompressor_init_raw(lzma_stream *lzs, PyObject *filterspecs)
{
lzma_filter filters[LZMA_FILTERS_MAX + 1];
lzma_ret lzret;
if (parse_filter_chain_spec(filters, filterspecs) == -1)
return -1;
lzret = lzma_raw_decoder(lzs, filters);
free_filter_chain(filters);
if (catch_lzma_error(lzret))
return -1;
else
return 0;
}
/*[clinic input]
_lzma.LZMADecompressor.__init__
format: int(c_default="FORMAT_AUTO") = FORMAT_AUTO
Specifies the container format of the input stream. If this is
FORMAT_AUTO (the default), the decompressor will automatically detect
whether the input is FORMAT_XZ or FORMAT_ALONE. Streams created with
FORMAT_RAW cannot be autodetected.
memlimit: object = None
Limit the amount of memory used by the decompressor. This will cause
decompression to fail if the input cannot be decompressed within the
given limit.
filters: object = None
A custom filter chain. This argument is required for FORMAT_RAW, and
not accepted with any other format. When provided, this should be a
sequence of dicts, each indicating the ID and options for a single
filter.
Create a decompressor object for decompressing data incrementally.
For one-shot decompression, use the decompress() function instead.
[clinic start generated code]*/
static int
_lzma_LZMADecompressor___init___impl(Decompressor *self, int format,
PyObject *memlimit, PyObject *filters)
/*[clinic end generated code: output=3e1821f8aa36564c input=81fe684a6c2f8a27]*/
{
const uint32_t decoder_flags = LZMA_TELL_ANY_CHECK | LZMA_TELL_NO_CHECK;
uint64_t memlimit_ = UINT64_MAX;
lzma_ret lzret;
if (memlimit != Py_None) {
if (format == FORMAT_RAW) {
PyErr_SetString(PyExc_ValueError,
"Cannot specify memory limit with FORMAT_RAW");
return -1;
}
memlimit_ = PyLong_AsUnsignedLongLong(memlimit);
if (PyErr_Occurred())
return -1;
}
if (format == FORMAT_RAW && filters == Py_None) {
PyErr_SetString(PyExc_ValueError,
"Must specify filters for FORMAT_RAW");
return -1;
} else if (format != FORMAT_RAW && filters != Py_None) {
PyErr_SetString(PyExc_ValueError,
"Cannot specify filters except with FORMAT_RAW");
return -1;
}
self->alloc.opaque = NULL;
self->alloc.alloc = PyLzma_Malloc;
self->alloc.free = PyLzma_Free;
self->lzs.allocator = &self->alloc;
self->lzs.next_in = NULL;
#ifdef WITH_THREAD
PyThread_type_lock lock = PyThread_allocate_lock();
if (lock == NULL) {
PyErr_SetString(PyExc_MemoryError, "Unable to allocate lock");
return -1;
}
if (self->lock != NULL) {
PyThread_free_lock(self->lock);
}
self->lock = lock;
#endif
self->check = LZMA_CHECK_UNKNOWN;
self->needs_input = 1;
self->input_buffer = NULL;
self->input_buffer_size = 0;
Py_XSETREF(self->unused_data, PyBytes_FromStringAndSize(NULL, 0));
if (self->unused_data == NULL)
goto error;
switch (format) {
case FORMAT_AUTO:
lzret = lzma_auto_decoder(&self->lzs, memlimit_, decoder_flags);
if (catch_lzma_error(lzret))
break;
return 0;
case FORMAT_XZ:
lzret = lzma_stream_decoder(&self->lzs, memlimit_, decoder_flags);
if (catch_lzma_error(lzret))
break;
return 0;
case FORMAT_ALONE:
self->check = LZMA_CHECK_NONE;
lzret = lzma_alone_decoder(&self->lzs, memlimit_);
if (catch_lzma_error(lzret))
break;
return 0;
case FORMAT_RAW:
self->check = LZMA_CHECK_NONE;
if (Decompressor_init_raw(&self->lzs, filters) == -1)
break;
return 0;
default:
PyErr_Format(PyExc_ValueError,
"Invalid container format: %d", format);
break;
}
error:
Py_CLEAR(self->unused_data);
#ifdef WITH_THREAD
PyThread_free_lock(self->lock);
self->lock = NULL;
#endif
return -1;
}
static void
Decompressor_dealloc(Decompressor *self)
{
if(self->input_buffer != NULL)
PyMem_Free(self->input_buffer);
lzma_end(&self->lzs);
Py_CLEAR(self->unused_data);
#ifdef WITH_THREAD
if (self->lock != NULL)
PyThread_free_lock(self->lock);
#endif
Py_TYPE(self)->tp_free((PyObject *)self);
}
static PyMethodDef Decompressor_methods[] = {
_LZMA_LZMADECOMPRESSOR_DECOMPRESS_METHODDEF
{"__getstate__", (PyCFunction)Decompressor_getstate, METH_NOARGS},
{NULL}
};
PyDoc_STRVAR(Decompressor_check_doc,
"ID of the integrity check used by the input stream.");
PyDoc_STRVAR(Decompressor_eof_doc,
"True if the end-of-stream marker has been reached.");
PyDoc_STRVAR(Decompressor_needs_input_doc,
"True if more input is needed before more decompressed data can be produced.");
PyDoc_STRVAR(Decompressor_unused_data_doc,
"Data found after the end of the compressed stream.");
static PyMemberDef Decompressor_members[] = {
{"check", T_INT, offsetof(Decompressor, check), READONLY,
Decompressor_check_doc},
{"eof", T_BOOL, offsetof(Decompressor, eof), READONLY,
Decompressor_eof_doc},
{"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
Decompressor_needs_input_doc},
{"unused_data", T_OBJECT_EX, offsetof(Decompressor, unused_data), READONLY,
Decompressor_unused_data_doc},
{NULL}
};
static PyTypeObject Decompressor_type = {
PyVarObject_HEAD_INIT(NULL, 0)
"_lzma.LZMADecompressor", /* tp_name */
sizeof(Decompressor), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)Decompressor_dealloc, /* tp_dealloc */
0, /* tp_print */
0, /* tp_getattr */
0, /* tp_setattr */
0, /* tp_reserved */
0, /* tp_repr */
0, /* tp_as_number */
0, /* tp_as_sequence */
0, /* tp_as_mapping */
0, /* tp_hash */
0, /* tp_call */
0, /* tp_str */
0, /* tp_getattro */
0, /* tp_setattro */
0, /* tp_as_buffer */
Py_TPFLAGS_DEFAULT, /* tp_flags */
_lzma_LZMADecompressor___init____doc__, /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
Decompressor_methods, /* tp_methods */
Decompressor_members, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
_lzma_LZMADecompressor___init__, /* tp_init */
0, /* tp_alloc */
PyType_GenericNew, /* tp_new */
};
/* Module-level functions. */
/*[clinic input]
_lzma.is_check_supported
check_id: int
/
Test whether the given integrity check is supported.
Always returns True for CHECK_NONE and CHECK_CRC32.
[clinic start generated code]*/
static PyObject *
_lzma_is_check_supported_impl(PyObject *module, int check_id)
/*[clinic end generated code: output=e4f14ba3ce2ad0a5 input=5518297b97b2318f]*/
{
return PyBool_FromLong(lzma_check_is_supported(check_id));
}
/*[clinic input]
_lzma._encode_filter_properties
filter: lzma_filter(c_default="{LZMA_VLI_UNKNOWN, NULL}")
/
Return a bytes object encoding the options (properties) of the filter specified by *filter* (a dict).
The result does not include the filter ID itself, only the options.
[clinic start generated code]*/
static PyObject *
_lzma__encode_filter_properties_impl(PyObject *module, lzma_filter filter)
/*[clinic end generated code: output=5c93c8e14e7be5a8 input=d4c64f1b557c77d4]*/
{
lzma_ret lzret;
uint32_t encoded_size;
PyObject *result = NULL;
lzret = lzma_properties_size(&encoded_size, &filter);
if (catch_lzma_error(lzret))
goto error;
result = PyBytes_FromStringAndSize(NULL, encoded_size);
if (result == NULL)
goto error;
lzret = lzma_properties_encode(
&filter, (uint8_t *)PyBytes_AS_STRING(result));
if (catch_lzma_error(lzret))
goto error;
return result;
error:
Py_XDECREF(result);
return NULL;
}
/*[clinic input]
_lzma._decode_filter_properties
filter_id: lzma_vli
encoded_props: Py_buffer
/
Return a bytes object encoding the options (properties) of the filter specified by *filter* (a dict).
The result does not include the filter ID itself, only the options.
[clinic start generated code]*/
static PyObject *
_lzma__decode_filter_properties_impl(PyObject *module, lzma_vli filter_id,
Py_buffer *encoded_props)
/*[clinic end generated code: output=714fd2ef565d5c60 input=246410800782160c]*/
{
lzma_filter filter;
lzma_ret lzret;
PyObject *result = NULL;
filter.id = filter_id;
lzret = lzma_properties_decode(
&filter, NULL, encoded_props->buf, encoded_props->len);
if (catch_lzma_error(lzret))
return NULL;
result = build_filter_spec(&filter);
/* We use vanilla free() here instead of PyMem_Free() - filter.options was
allocated by lzma_properties_decode() using the default allocator. */
free(filter.options);
return result;
}
/* Module initialization. */
static PyMethodDef module_methods[] = {
_LZMA_IS_CHECK_SUPPORTED_METHODDEF
_LZMA__ENCODE_FILTER_PROPERTIES_METHODDEF
_LZMA__DECODE_FILTER_PROPERTIES_METHODDEF
{NULL}
};
static PyModuleDef _lzmamodule = {
PyModuleDef_HEAD_INIT,
"_lzma",
NULL,
-1,
module_methods,
NULL,
NULL,
NULL,
NULL,
};
/* Some of our constants are more than 32 bits wide, so PyModule_AddIntConstant
would not work correctly on platforms with 32-bit longs. */
static int
module_add_int_constant(PyObject *m, const char *name, long long value)
{
PyObject *o = PyLong_FromLongLong(value);
if (o == NULL)
return -1;
if (PyModule_AddObject(m, name, o) == 0)
return 0;
Py_DECREF(o);
return -1;
}
#define ADD_INT_PREFIX_MACRO(m, macro) \
module_add_int_constant(m, #macro, LZMA_ ## macro)
PyMODINIT_FUNC
PyInit__lzma(void)
{
PyObject *m;
empty_tuple = PyTuple_New(0);
if (empty_tuple == NULL)
return NULL;
m = PyModule_Create(&_lzmamodule);
if (m == NULL)
return NULL;
if (PyModule_AddIntMacro(m, FORMAT_AUTO) == -1 ||
PyModule_AddIntMacro(m, FORMAT_XZ) == -1 ||
PyModule_AddIntMacro(m, FORMAT_ALONE) == -1 ||
PyModule_AddIntMacro(m, FORMAT_RAW) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_NONE) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_CRC32) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_CRC64) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_SHA256) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_ID_MAX) == -1 ||
ADD_INT_PREFIX_MACRO(m, CHECK_UNKNOWN) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_LZMA1) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_LZMA2) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_DELTA) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_X86) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_IA64) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_ARM) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_ARMTHUMB) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_SPARC) == -1 ||
ADD_INT_PREFIX_MACRO(m, FILTER_POWERPC) == -1 ||
ADD_INT_PREFIX_MACRO(m, MF_HC3) == -1 ||
ADD_INT_PREFIX_MACRO(m, MF_HC4) == -1 ||
ADD_INT_PREFIX_MACRO(m, MF_BT2) == -1 ||
ADD_INT_PREFIX_MACRO(m, MF_BT3) == -1 ||
ADD_INT_PREFIX_MACRO(m, MF_BT4) == -1 ||
ADD_INT_PREFIX_MACRO(m, MODE_FAST) == -1 ||
ADD_INT_PREFIX_MACRO(m, MODE_NORMAL) == -1 ||
ADD_INT_PREFIX_MACRO(m, PRESET_DEFAULT) == -1 ||
ADD_INT_PREFIX_MACRO(m, PRESET_EXTREME) == -1)
return NULL;
Error = PyErr_NewExceptionWithDoc(
"_lzma.LZMAError", "Call to liblzma failed.", NULL, NULL);
if (Error == NULL)
return NULL;
Py_INCREF(Error);
if (PyModule_AddObject(m, "LZMAError", Error) == -1)
return NULL;
if (PyType_Ready(&Compressor_type) == -1)
return NULL;
Py_INCREF(&Compressor_type);
if (PyModule_AddObject(m, "LZMACompressor",
(PyObject *)&Compressor_type) == -1)
return NULL;
if (PyType_Ready(&Decompressor_type) == -1)
return NULL;
Py_INCREF(&Decompressor_type);
if (PyModule_AddObject(m, "LZMADecompressor",
(PyObject *)&Decompressor_type) == -1)
return NULL;
return m;
}
| 50,209 | 1,568 | jart/cosmopolitan | false |
cosmopolitan/third_party/python/Modules/unicodedata_bidirectionalnames.c | #include "libc/nexgen32e/kompressor.h"
#include "third_party/python/Modules/unicodedata.h"
/* clang-format off */
/* GENERATED BY third_party/python/Tools/unicode/makeunicodedata.py 3.2 */
const char _PyUnicode_BidirectionalNames[24][4] = {
"",
"L",
"LRE",
"LRO",
"R",
"AL",
"RLE",
"RLO",
"PDF",
"EN",
"ES",
"ET",
"AN",
"CS",
"NSM",
"BN",
"B",
"S",
"WS",
"ON",
"LRI",
"RLI",
"FSI",
"PDI",
};
| 489 | 32 | jart/cosmopolitan | false |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.